sum method
Sum calculates the per-channel pixel sum of an image.
Implementation
Scalar sum() {
final s = calloc<cvg.Scalar>();
cvRun(() => cffi.Mat_Sum(ref, s));
return Scalar.fromPointer(s);
}
Sum calculates the per-channel pixel sum of an image.
Scalar sum() {
final s = calloc<cvg.Scalar>();
cvRun(() => cffi.Mat_Sum(ref, s));
return Scalar.fromPointer(s);
}