fastNlMeansDenoisingColoredAsync function
Future<Mat>
fastNlMeansDenoisingColoredAsync(
- InputArray src, {
- double h = 3,
- double hColor = 3,
- int templateWindowSize = 7,
- int searchWindowSize = 21,
Implementation
Future<Mat> fastNlMeansDenoisingColoredAsync(
InputArray src, {
double h = 3,
double hColor = 3,
int templateWindowSize = 7,
int searchWindowSize = 21,
}) async {
final dst = Mat.empty();
return cvRunAsync0(
(callback) => cphoto.cv_fastNlMeansDenoisingColored_1(
src.ref,
dst.ref,
h,
hColor,
templateWindowSize,
searchWindowSize,
callback,
),
(c) {
return c.complete(dst);
},
);
}