9 #include "opencv2/photo.hpp" 20 void mexFunction(
int nlhs, mxArray *plhs[],
int nrhs,
const mxArray *prhs[])
23 nargchk(nrhs>=1 && (nrhs%2)==1 && nlhs<=1);
26 vector<MxArray> rhs(prhs, prhs+nrhs);
31 int templateWindowSize = 7;
32 int searchWindowSize = 21;
34 for (
int i=1; i<nrhs; i+=2) {
35 string key(rhs[i].toString());
37 h = rhs[i+1].toFloat();
38 else if (key ==
"HColor")
39 hColor = rhs[i+1].toFloat();
40 else if (key ==
"TemplateWindowSize")
41 templateWindowSize = rhs[i+1].toInt();
42 else if (key ==
"SearchWindowSize")
43 searchWindowSize = rhs[i+1].toInt();
44 else if (key ==
"FlipChannels")
45 flip = rhs[i+1].toBool();
47 mexErrMsgIdAndTxt(
"mexopencv:error",
48 "Unrecognized option %s", key.c_str());
52 Mat src(rhs[0].toMat(CV_8U)), dst;
53 if (flip && (src.channels() == 3 || src.channels() == 4)) {
55 cvtColor(src, src, (src.channels()==3 ?
56 cv::COLOR_RGB2BGR : cv::COLOR_RGBA2BGRA));
58 fastNlMeansDenoisingColored(src, dst, h, hColor,
59 templateWindowSize, searchWindowSize);
60 if (flip && (dst.channels() == 3 || dst.channels() == 4)) {
62 cvtColor(dst, dst, (dst.channels()==3 ?
63 cv::COLOR_BGR2RGB : cv::COLOR_BGRA2RGBA));
void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
Main entry called from Matlab.
mxArray object wrapper for data conversion and manipulation.
void nargchk(bool cond)
Alias for input/ouput arguments number check.
Global constant definitions.