compute method
Compute computes hash of the input image using RadialVarianceHash. For further information, see: https://docs.opencv.org/master/de/d29/classcv_1_1img__hash_1_1ImgHashBase.html#ae2d9288db370089dfd8aab85d5e0b0f3
Implementation
//
/// For further information, see:
/// https://docs.opencv.org/master/de/d29/classcv_1_1img__hash_1_1ImgHashBase.html#ae2d9288db370089dfd8aab85d5e0b0f3
@override
Mat compute(InputArray inputArr, [OutputArray? outputArr]) {
final p = outputArr?.ptr ?? calloc<cvg.Mat>();
cvRun(
() => cffi.radialVarianceHashCompute(
inputArr.ref,
p,
sigma,
numOfAngleLine,
),
);
return outputArr ?? Mat.fromPointer(p);
}