sqrt method
Calculates a square root of array elements.
Implementation
Mat sqrt() {
cvAssert(type.depth == MatType.CV_32F || type.depth == MatType.CV_64F);
final p = calloc<ccore.Mat>();
cvRun(() => ccore.Mat_Sqrt(ref, p));
final dst = Mat._(p);
return dst;
}