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);
32 for (
int i=2; i<nrhs; i+=2) {
33 string key(rhs[i].toString());
35 alpha = rhs[i+1].toFloat();
36 else if (key ==
"Beta")
37 beta = 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)),
47 mask(rhs[1].toMat(CV_8U)),
50 if (flip && src.channels() == 3)
51 cvtColor(src, src, cv::COLOR_RGB2BGR);
52 if (flip && mask.channels() == 3)
53 cvtColor(mask, mask, cv::COLOR_RGB2BGR);
54 illuminationChange(src, mask, dst, alpha, beta);
56 if (flip && dst.channels() == 3)
57 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.