vecopTypeToStr function

String vecopTypeToStr(
  1. int t
)

Implementation

String vecopTypeToStr(int t) {
  // NOTE: the returned pointer is an OpenCV-owned static string (NOT heap allocated), do NOT free it.
  final p = ccore.cv_ocl_vecopTypeToStr(t);
  return p.toDartString();
}