computeOrientation method

Mat computeOrientation(
  1. Mat src
)

Implementation

Mat computeOrientation(Mat src) {
  final dst = Mat.empty();
  cvRun(
    () =>
        ccontrib.cv_ximgproc_StructuredEdgeDetection_computeOrientation(ref, src.ref, dst.ref, ffi.nullptr),
  );
  return dst;
}