demosaicing function

VARP demosaicing(
  1. VARP src,
  2. int code, {
  3. int dstCn = 0,
})

Implementation

VARP demosaicing(VARP src, int code, {int dstCn = 0}) {
  throw UnimplementedError();
  // final pOut = c.mnn_cv_demosaicing(src.ptr, code, dstCn);
  // final rval = VARP.fromPointer(pOut);
  // return rval;
}