9 #include "opencv2/photo.hpp" 20 void mexFunction(
int nlhs, mxArray *plhs[],
int nrhs,
const mxArray *prhs[])
23 nargchk(nrhs>=2 && (nrhs%2)==0 && nlhs<=1);
26 vector<MxArray> rhs(prhs, prhs+nrhs);
29 float low_threshold = 30;
30 float high_threshold = 45;
33 for (
int i=2; i<nrhs; i+=2) {
34 string key(rhs[i].toString());
35 if (key ==
"LowThreshold")
36 low_threshold = rhs[i+1].toFloat();
37 else if (key ==
"HighThreshold")
38 high_threshold = rhs[i+1].toFloat();
39 else if (key ==
"KernelSize")
40 kernel_size = rhs[i+1].toInt();
41 else if (key ==
"FlipChannels")
42 flip = rhs[i+1].toBool();
44 mexErrMsgIdAndTxt(
"mexopencv:error",
45 "Unrecognized option %s", key.c_str());
49 Mat src(rhs[0].toMat(CV_8U)),
50 mask(rhs[1].toMat(CV_8U)),
53 if (flip && src.channels() == 3)
54 cvtColor(src, src, cv::COLOR_RGB2BGR);
55 if (flip && mask.channels() == 3)
56 cvtColor(mask, mask, cv::COLOR_RGB2BGR);
57 textureFlattening(src, mask, dst, low_threshold, high_threshold, kernel_size);
59 if (flip && dst.channels() == 3)
60 cvtColor(dst, dst, cv::COLOR_BGR2RGB);
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.