mexopencv  0.1
mex interface for opencv library
denoise_TVL1.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>=1 && (nrhs%2)==1 && nlhs<=1);
24 
25  // Argument vector
26  vector<MxArray> rhs(prhs, prhs+nrhs);
27 
28  // Option processing
29  double lambda = 1.0;
30  int niters = 30;
31  for (int i=1; i<nrhs; i+=2) {
32  string key(rhs[i].toString());
33  if (key == "Lambda")
34  lambda = rhs[i+1].toDouble();
35  else if (key == "NIters")
36  niters = rhs[i+1].toInt();
37  else
38  mexErrMsgIdAndTxt("mexopencv:error",
39  "Unrecognized option %s", key.c_str());
40  }
41 
42  // Process
43  vector<Mat> observations;
44  {
45  vector<MxArray> arr(rhs[0].toVector<MxArray>());
46  observations.reserve(arr.size());
47  for (vector<MxArray>::const_iterator it = arr.begin(); it != arr.end(); ++it)
48  observations.push_back(it->toMat(CV_8U));
49  }
50  Mat result;
51  denoise_TVL1(observations, result, lambda, niters);
52  plhs[0] = MxArray(result);
53 }
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.