IDLive Face C++ API 1.46.0
|
Interface of liveness detection pipeline. More...
#include <facesdk/Pipeline.h>
Public Member Functions | |
virtual PipelineResult | checkLiveness (ImagePtr image, Meta meta={})=0 |
Check liveness of face from input image. | |
virtual PipelineResult | checkLiveness (const ImageBatch &image_batch, Meta meta={})=0 |
Perform liveness check on a sequence of photos (image batch). A single results corresponding to the whole image batch will be produced. | |
virtual std::vector< OptionalPipelineResult > | checkLivenessBatch (const std::vector< facesdk::ImagePtr > &images, const std::vector< Meta > &meta={})=0 |
This method implements batched liveness check. | |
Interface of liveness detection pipeline.
|
pure virtual |
Perform liveness check on a sequence of photos (image batch). A single results corresponding to the whole image batch will be produced.
image_batch | Input batch of images (a sequence of photos) |
meta | Meta information about device |
FaceException |
|
pure virtual |
Check liveness of face from input image.
image | Input image |
meta | Meta information about device |
FaceException |
|
pure virtual |
This method implements batched liveness check.
images | Input images |
meta | Meta information about device for all or none images |
images
vector size. FaceException |
checkLiveness
method.