computeOrientation method
The function computes orientation from edge image.
Implementation
Mat computeOrientation(Mat src) {
final p = calloc<ccontrib.Mat>();
cvRun(() => ccontrib.ximgproc_StructuredEdgeDetection_computeOrientation(ref, src.ref, p));
return Mat.fromPointer(p);
}