computeOrientation method
The function computes orientation from edge image.
Implementation
Mat computeOrientation(Mat src) {
final dst = Mat.empty();
cvRun(
() =>
ccontrib.cv_ximgproc_StructuredEdgeDetection_computeOrientation(ref, src.ref, dst.ref, ffi.nullptr),
);
return dst;
}