VecPoint3i.fromMat constructor

VecPoint3i.fromMat(
  1. Mat mat
)

Implementation

factory VecPoint3i.fromMat(Mat mat) {
  final p = VecPoint3i();
  cvRun(() => ccore.cv_Mat_toVecPoint3i(mat.ref, p.ptr, ffi.nullptr));
  return p;
}