IDLive Face C# API 1.46.0
|
Liveness detection pipeline. More...
Inherits IDisposable.
Public Member Functions | |
Pipeline (string pipelineName, InitConfig initConfig) | |
Constructor. | |
PipelineResult | CheckLiveness (ImageBatch imageBatch, Meta meta) |
Perform liveness check on a sequence of photos (image batch). A single results corresponding to the whole image batch will be produced. | |
PipelineResult | CheckLiveness (ImageBatch imageBatch) |
Perform liveness check on a sequence of photos (image batch). A single results corresponding to the whole image batch will be produced. | |
PipelineResult | CheckLiveness (Image image, Meta meta) |
Check liveness of face from input image. | |
PipelineResult | CheckLiveness (Image image) |
Check liveness of face from input image. | |
OptionalResult< PipelineResult >[] | CheckLivenessBatch (Image[] images, Meta[] meta) |
This method implements batched liveness check. | |
OptionalResult< PipelineResult >[] | CheckLivenessBatch (Image[] images) |
This method implements batched liveness check. | |
Liveness detection pipeline.
Idrnd.FaceSdk.Pipeline.Pipeline | ( | string | pipelineName, |
InitConfig | initConfig | ||
) |
Constructor.
pipelineName | Pipeline name |
initConfig | Configuration object |
PipelineResult Idrnd.FaceSdk.Pipeline.CheckLiveness | ( | Image | image | ) |
Check liveness of face from input image.
image | Input image |
PipelineResult Idrnd.FaceSdk.Pipeline.CheckLiveness | ( | Image | image, |
Meta | meta | ||
) |
Check liveness of face from input image.
image | Input image |
meta | Meta information about device |
PipelineResult Idrnd.FaceSdk.Pipeline.CheckLiveness | ( | ImageBatch | imageBatch | ) |
Perform liveness check on a sequence of photos (image batch). A single results corresponding to the whole image batch will be produced.
imageBatch | Input batch of images (a sequence of photos) |
PipelineResult Idrnd.FaceSdk.Pipeline.CheckLiveness | ( | ImageBatch | imageBatch, |
Meta | meta | ||
) |
Perform liveness check on a sequence of photos (image batch). A single results corresponding to the whole image batch will be produced.
imageBatch | Input batch of images (a sequence of photos) |
meta | Meta information about device |
OptionalResult< PipelineResult >[] Idrnd.FaceSdk.Pipeline.CheckLivenessBatch | ( | Image[] | images | ) |
This method implements batched liveness check.
images | Input images |
images
array size. OptionalResult< PipelineResult >[] Idrnd.FaceSdk.Pipeline.CheckLivenessBatch | ( | Image[] | images, |
Meta[] | meta | ||
) |
This method implements batched liveness check.
images | Input images |
meta | Meta information about device for all images |
images
array size.