AlignMTB.empty constructor

AlignMTB.empty()

AlignMTB for converts images to median threshold bitmaps. of type AlignMTB converts images to median threshold bitmaps (1 for pixels brighter than median luminance and 0 otherwise) and than aligns the resulting bitmaps using bit operations. For further details, please see: https://docs.opencv.org/master/d6/df5/group__photo__hdr.html https://docs.opencv.org/master/d7/db6/classcv_1_1AlignMTB.html https://docs.opencv.org/master/d6/df5/group__photo__hdr.html#ga2f1fafc885a5d79dbfb3542e08db0244

Implementation

factory AlignMTB.empty() {
  final p = calloc<cphoto.AlignMTB>();
  cvRun(() => cphoto.AlignMTB_Create(p));
  return AlignMTB._(p);
}