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);
30 float sigma_r = 0.15f;
32 for (
int i=1; i<nrhs; i+=2) {
33 string key(rhs[i].toString());
35 sigma_s = rhs[i+1].toFloat();
36 else if (key ==
"SigmaR")
37 sigma_r = rhs[i+1].toFloat();
38 else if (key ==
"FlipChannels")
39 flip = rhs[i+1].toBool();
41 mexErrMsgIdAndTxt(
"mexopencv:error",
42 "Unrecognized option %s", key.c_str());
46 Mat src(rhs[0].toMat(CV_8U)), dst;
47 if (flip && src.channels() == 3) {
49 cvtColor(src, src, cv::COLOR_RGB2BGR);
51 detailEnhance(src, dst, sigma_s, sigma_r);
52 if (flip && dst.channels() == 3) {
54 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.