FaceDetectorYNAsync extension

on

Methods

detectAsync(Mat image) Future<Mat>
getInputSizeAsync() Future<(int, int)>
getNmsThresholdAsync() Future<double>
getScoreThresholdAsync() Future<double>
getTopKAsync() Future<int>
setInputSizeAsync((int, int) inputSize) Future<void>
setNMSThresholdAsync(double nmsThreshold) Future<void>
setScoreThresholdAsync(double scoreThreshold) Future<void>
setTopKAsync(int topK) Future<void>

Static Methods

emptyNewAsync() Future<CascadeClassifier>
fromBufferAsync(String framework, Uint8List bufferModel, Uint8List bufferConfig, (int, int) inputSize, {double scoreThreshold = 0.9, double nmsThreshold = 0.3, int topK = 5000, int backendId = 0, int targetId = 0}) Future<FaceDetectorYN>
fromFileAsync(String model, String config, (int, int) inputSize, {double scoreThreshold = 0.9, double nmsThreshold = 0.3, int topK = 5000, int backendId = 0, int targetId = 0}) Future<FaceDetectorYN>