mexopencv  0.1
mex interface for opencv library
fastNlMeansDenoisingColoredMulti.cpp
Go to the documentation of this file.
1 
8 #include "mexopencv.hpp"
9 #include "opencv2/photo.hpp"
10 using namespace std;
11 using namespace cv;
12 
20 void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
21 {
22  // Check the number of arguments
23  nargchk(nrhs>=3 && (nrhs%2)==1 && nlhs<=1);
24 
25  // Argument vector
26  vector<MxArray> rhs(prhs, prhs+nrhs);
27 
28  // Option processing
29  float h = 3;
30  float hColor = 3;
31  int templateWindowSize = 7;
32  int searchWindowSize = 21;
33  bool flip = true;
34  for (int i=3; i<nrhs; i+=2) {
35  string key(rhs[i].toString());
36  if (key == "H")
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();
46  else
47  mexErrMsgIdAndTxt("mexopencv:error",
48  "Unrecognized option %s", key.c_str());
49  }
50 
51  // Process
52  vector<Mat> srcImgs;
53  {
54  vector<MxArray> arr(rhs[0].toVector<MxArray>());
55  srcImgs.reserve(arr.size());
56  for (vector<MxArray>::const_iterator it = arr.begin(); it != arr.end(); ++it)
57  srcImgs.push_back(it->toMat(CV_8U));
58  }
59  for (vector<Mat>::iterator it = srcImgs.begin(); it != srcImgs.end(); ++it) {
60  if (flip && (it->channels() == 3 || it->channels() == 4)) {
61  // MATLAB's default is RGB/RGBA while OpenCV's is BGR/BGRA
62  cvtColor(*it, *it, (it->channels()==3 ?
63  cv::COLOR_BGR2RGB : cv::COLOR_BGRA2RGBA));
64  }
65  }
66  int imgToDenoiseIndex = rhs[1].toInt();
67  int temporalWindowSize = rhs[2].toInt();
68  Mat dst;
69  fastNlMeansDenoisingColoredMulti(srcImgs, dst, imgToDenoiseIndex,
70  temporalWindowSize, h, hColor, templateWindowSize, searchWindowSize);
71  if (flip && (dst.channels() == 3 || dst.channels() == 4)) {
72  // OpenCV's default is BGR/BGRA while MATLAB's is RGB/RGBA
73  cvtColor(dst, dst, (dst.channels()==3 ?
74  cv::COLOR_BGR2RGB : cv::COLOR_BGRA2RGBA));
75  }
76  plhs[0] = MxArray(dst);
77 }
void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
Main entry called from Matlab.
mxArray object wrapper for data conversion and manipulation.
Definition: MxArray.hpp:123
void nargchk(bool cond)
Alias for input/ouput arguments number check.
Definition: mexopencv.hpp:166
Global constant definitions.