19 void mexFunction(
int nlhs, mxArray *plhs[],
int nrhs,
const mxArray *prhs[])
25 vector<MxArray> rhs(prhs, prhs+nrhs);
29 if (rhs[0].isNumeric()) {
30 Mat points(rhs[0].toMat(rhs[0].isInt32() ? CV_32S : CV_32F));
31 b = isContourConvex(points);
33 else if (rhs[0].isCell()) {
34 vector<Point2f> points(rhs[0].toVector<Point2f>());
35 b = isContourConvex(points);
38 mexErrMsgIdAndTxt(
"mexopencv:error",
"Invalid argument");
mxArray object wrapper for data conversion and manipulation.
void nargchk(bool cond)
Alias for input/ouput arguments number check.
Global constant definitions.
void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
Main entry called from Matlab.