compute method
Computes BRISQUE quality score for input image.
Implementation
Scalar compute(Mat img) {
final p = calloc<cvg.Scalar>();
cvRun(() => cffi.QualityBRISQUE_compute(ref, img.ref, p));
return Scalar.fromPointer(p);
}
Computes BRISQUE quality score for input image.
Scalar compute(Mat img) {
final p = calloc<cvg.Scalar>();
cvRun(() => cffi.QualityBRISQUE_compute(ref, img.ref, p));
return Scalar.fromPointer(p);
}