mexopencv  3.4.1
MEX interface for OpenCV library
getOptimalNewCameraMatrix.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>=3 && (nrhs%2)==1 && nlhs<=2);
24 
25  // Argument vector
26  vector<MxArray> rhs(prhs, prhs+nrhs);
27 
28  // Option processing
29  double alpha = 0.8;
30  Size newImageSize;
31  bool centerPrincipalPoint = false;
32  for (int i=3; i<nrhs; i+=2) {
33  string key(rhs[i].toString());
34  if (key == "Alpha")
35  alpha = rhs[i+1].toDouble();
36  else if (key == "NewImageSize")
37  newImageSize = rhs[i+1].toSize();
38  else if (key == "CenterPrincipalPoint")
39  centerPrincipalPoint = rhs[i+1].toBool();
40  else
41  mexErrMsgIdAndTxt("mexopencv:error",
42  "Unrecognized option %s", key.c_str());
43  }
44 
45  // Process
46  Mat cameraMatrix(rhs[0].toMat(rhs[0].isSingle() ? CV_32F : CV_64F)),
47  distCoeffs(rhs[1].toMat(rhs[1].isSingle() ? CV_32F : CV_64F));
48  Size imageSize(rhs[2].toSize());
49  Rect validPixROI;
50  Mat A = getOptimalNewCameraMatrix(cameraMatrix, distCoeffs, imageSize,
51  alpha, newImageSize, (nlhs>1 ? &validPixROI : NULL),
52  centerPrincipalPoint);
53  plhs[0] = MxArray(A);
54  if (nlhs>1)
55  plhs[1] = MxArray(validPixROI);
56 }
STL namespace.
struct mxArray_tag mxArray
Forward declaration for mxArray.
Definition: matrix.h:259
Mat getOptimalNewCameraMatrix(InputArray cameraMatrix, InputArray distCoeffs, Size imageSize, double alpha, Size newImgSize=Size(), Rect *validPixROI=0, bool centerPrincipalPoint=false)
#define CV_32F
#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
void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
Main entry called from Matlab.
STL class.
Global constant definitions.
T c_str(T... args)
cv::Mat toMat() const