mexopencv  0.1
mex interface for opencv library
pencilSketch.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<=2);
24 
25  // Argument vector
26  vector<MxArray> rhs(prhs, prhs+nrhs);
27 
28  // Option processing
29  float sigma_s = 60;
30  float sigma_r = 0.07f;
31  float shade_factor = 0.02f;
32  bool flip = true;
33  for (int i=1; i<nrhs; i+=2) {
34  string key(rhs[i].toString());
35  if (key == "SigmaS")
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();
43  else
44  mexErrMsgIdAndTxt("mexopencv:error",
45  "Unrecognized option %s", key.c_str());
46  }
47 
48  // Process
49  Mat src(rhs[0].toMat(CV_8U)), dst1, dst2;
50  if (flip && src.channels() == 3) {
51  // MATLAB's default is RGB while OpenCV's is BGR
52  cvtColor(src, src, cv::COLOR_RGB2BGR);
53  }
54  pencilSketch(src, dst1, dst2, sigma_s, sigma_r, shade_factor);
55  if (flip && dst2.channels() == 3) {
56  // OpenCV's default is BGR while MATLAB's is RGB
57  cvtColor(dst2, dst2, cv::COLOR_BGR2RGB);
58  }
59  plhs[0] = MxArray(dst1);
60  if (nlhs > 1)
61  plhs[1] = MxArray(dst2);
62 }
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.
void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
Main entry called from Matlab.