mexopencv  0.1
mex interface for opencv library
moments.cpp
Go to the documentation of this file.
1 
8 #include "mexopencv.hpp"
9 using namespace std;
10 using namespace cv;
11 
19 void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
20 {
21  // Check the number of arguments
22  nargchk(nrhs>=1 && (nrhs%2)==1 && nlhs<=1);
23 
24  // Argument vector
25  vector<MxArray> rhs(prhs, prhs+nrhs);
26 
27  // Option processing
28  bool binaryImage = false;
29  for (int i=1; i<nrhs; i+=2) {
30  string key(rhs[i].toString());
31  if (key=="BinaryImage")
32  binaryImage = rhs[i+1].toBool();
33  else
34  mexErrMsgIdAndTxt("mexopencv:error","Unrecognized option");
35  }
36 
37  // Process
38  Moments m;
39  if (rhs[0].isNumeric() || rhs[0].isLogical()) {
40  // raster image
41  binaryImage |= rhs[0].isLogical();
42  Mat array(rhs[0].toMat()); // CV_8U, CV_16U, CV_16S, CV_32F, CV_64F
43  m = moments(array, binaryImage);
44  }
45  else if (rhs[0].isCell()) {
46  // contour points
47  if (!rhs[0].isEmpty() && rhs[0].at<MxArray>(0).isInt32()) {
48  vector<Point> array(rhs[0].toVector<Point>());
49  m = moments(array, binaryImage);
50  }
51  else {
52  vector<Point2f> array(rhs[0].toVector<Point2f>());
53  m = moments(array, binaryImage);
54  }
55  }
56  else
57  mexErrMsgIdAndTxt("mexopencv:error", "Invalid input");
58  plhs[0] = MxArray(m);
59 }
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.
Definition: moments.cpp:19