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 for (
int i=1; i<nrhs; i+=2) {
32 string key(rhs[i].toString());
34 lambda = rhs[i+1].toDouble();
35 else if (key ==
"NIters")
36 niters = rhs[i+1].toInt();
38 mexErrMsgIdAndTxt(
"mexopencv:error",
39 "Unrecognized option %s", key.c_str());
43 vector<Mat> observations;
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));
51 denoise_TVL1(observations, result, lambda, niters);
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.