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<=2);
26 vector<MxArray> rhs(prhs, prhs+nrhs);
30 float sigma_r = 0.07f;
31 float shade_factor = 0.02f;
33 for (
int i=1; i<nrhs; i+=2) {
34 string key(rhs[i].toString());
36 sigma_s = rhs[i+1].toFloat();
37 else if (key ==
"SigmaR")
38 sigma_r = rhs[i+1].toFloat();
39 else if (key ==
"ShadeFactor")
40 shade_factor = rhs[i+1].toFloat();
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)), dst1, dst2;
50 if (flip && src.channels() == 3) {
52 cvtColor(src, src, cv::COLOR_RGB2BGR);
54 pencilSketch(src, dst1, dst2, sigma_s, sigma_r, shade_factor);
55 if (flip && dst2.channels() == 3) {
57 cvtColor(dst2, dst2, cv::COLOR_BGR2RGB);
mxArray object wrapper for data conversion and manipulation.
void nargchk(bool cond)
Alias for input/ouput arguments number check.
Global constant definitions.
void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
Main entry called from Matlab.