mexopencv  3.4.1
MEX interface for OpenCV library
fisheyeProjectPoints.cpp
Go to the documentation of this file.
1 
8 #include "mexopencv.hpp"
9 #include "opencv2/calib3d.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>=4 && (nrhs%2)==0 && nlhs<=2);
24 
25  // Argument vector
26  vector<MxArray> rhs(prhs, prhs+nrhs);
27 
28  // Option processing
29  Mat D;
30  double alpha = 0;
31  for (int i=4; i<nrhs; i+=2) {
32  string key(rhs[i].toString());
33  if (key == "DistCoeffs")
34  D = rhs[i+1].toMat(CV_64F);
35  else if (key == "Alpha")
36  alpha = rhs[i+1].toDouble();
37  else
38  mexErrMsgIdAndTxt("mexopencv:error",
39  "Unrecognized option %s", key.c_str());
40  }
41 
42  // Process
43  Mat rvec(rhs[1].toMat(CV_64F)),
44  tvec(rhs[2].toMat(CV_64F)),
45  K(rhs[3].toMat(CV_64F)),
46  jacobian;
47  if (rhs[0].isNumeric()) {
48  Mat objectPoints(rhs[0].toMat(CV_64F)),
49  imagePoints;
50  fisheye::projectPoints(objectPoints.reshape(3,0), imagePoints,
51  rvec, tvec, K, D, alpha, (nlhs>1 ? jacobian : noArray()));
52  if (objectPoints.channels() == 1 && objectPoints.cols == 3)
53  imagePoints = imagePoints.reshape(1,0); // Nx2
54  plhs[0] = MxArray(imagePoints);
55  }
56  else if (rhs[0].isCell()) {
57  vector<Point3d> objectPoints(rhs[0].toVector<Point3d>());
58  vector<Point2d> imagePoints;
59  fisheye::projectPoints(objectPoints, imagePoints,
60  rvec, tvec, K, D, alpha, (nlhs>1 ? jacobian : noArray()));
61  plhs[0] = MxArray(imagePoints);
62  }
63  else
64  mexErrMsgIdAndTxt("mexopencv:error", "Invalid points argument");
65  if (nlhs>1)
66  plhs[1] = MxArray(jacobian);
67 }
void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
Main entry called from Matlab.
STL namespace.
struct mxArray_tag mxArray
Forward declaration for mxArray.
Definition: matrix.h:259
Mat reshape(int cn, int rows=0) const
InputOutputArray noArray()
#define CV_64F
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 projectPoints(InputArray objectPoints, InputArray rvec, InputArray tvec, InputArray cameraMatrix, InputArray distCoeffs, OutputArray imagePoints, OutputArray jacobian=noArray(), double aspectRatio=0)
cv::Mat toMat() const