mexopencv  3.4.1
MEX interface for OpenCV library
colorChange.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>=2 && (nrhs%2)==0 && nlhs<=1);
24 
25  // Argument vector
26  vector<MxArray> rhs(prhs, prhs+nrhs);
27 
28  // Option processing
29  float red_mul = 1.0f;
30  float green_mul = 1.0f;
31  float blue_mul = 1.0f;
32  bool flip = false;
33  for (int i=2; i<nrhs; i+=2) {
34  string key(rhs[i].toString());
35  if (key == "R")
36  red_mul = rhs[i+1].toFloat();
37  else if (key == "G")
38  green_mul = rhs[i+1].toFloat();
39  else if (key == "B")
40  blue_mul = 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)),
50  mask(rhs[1].toMat(CV_8U)),
51  dst;
52  // MATLAB's default is RGB while OpenCV's is BGR
53  if (flip) {
54  if (src.channels() == 3)
55  cvtColor(src, src, cv::COLOR_RGB2BGR);
56  if (mask.channels() == 3)
57  cvtColor(mask, mask, cv::COLOR_RGB2BGR);
58  }
59  colorChange(src, mask, dst, red_mul, green_mul, blue_mul);
60  // OpenCV's default is BGR while MATLAB's is RGB
61  if (flip && dst.channels() == 3)
62  cvtColor(dst, dst, cv::COLOR_BGR2RGB);
63  plhs[0] = MxArray(dst);
64 }
COLOR_RGB2BGR
void cvtColor(InputArray src, OutputArray dst, int code, int dstCn=0)
void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
Main entry called from Matlab.
Definition: colorChange.cpp:20
COLOR_BGR2RGB
#define CV_8U
STL namespace.
struct mxArray_tag mxArray
Forward declaration for mxArray.
Definition: matrix.h:259
LIBMWMEX_API_EXTERN_C void mexErrMsgIdAndTxt(const char *identifier, const char *err_msg,...)
Issue formatted error message with corresponding error identifier and return to MATLAB prompt...
mxArray object wrapper for data conversion and manipulation.
Definition: MxArray.hpp:123
void nargchk(bool cond)
Alias for input/output arguments number check.
Definition: mexopencv.hpp:181
STL class.
Global constant definitions.
T c_str(T... args)
void flip(InputArray src, OutputArray dst, int flipCode)
cv::Mat toMat() const
int channels() const
void colorChange(InputArray src, InputArray mask, OutputArray dst, float red_mul=1.0f, float green_mul=1.0f, float blue_mul=1.0f)