mexopencv  3.4.1
MEX interface for OpenCV library
getTextSize.cpp
Go to the documentation of this file.
1 
8 #include "mexopencv.hpp"
9 #include "opencv2/imgproc.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>=1 && (nrhs%2)==1 && nlhs<=2);
24 
25  // Argument vector
26  vector<MxArray> rhs(prhs, prhs+nrhs);
27 
28  // Option processing
29  int fontFace = cv::FONT_HERSHEY_SIMPLEX;
30  int fontStyle = 0;
31  double fontScale = 1.0;
32  int thickness = 1;
33  for (int i=1; i<nrhs; i+=2) {
34  string key(rhs[i].toString());
35  if (key == "FontFace")
36  fontFace = FontFace[rhs[i+1].toString()];
37  else if (key == "FontStyle")
38  fontStyle = FontStyle[rhs[i+1].toString()];
39  else if (key == "FontScale")
40  fontScale = rhs[i+1].toDouble();
41  else if (key == "Thickness")
42  thickness = (rhs[i+1].isChar()) ?
43  ThicknessType[rhs[i+1].toString()] : rhs[i+1].toInt();
44  else
45  mexErrMsgIdAndTxt("mexopencv:error",
46  "Unrecognized option %s", key.c_str());
47  }
48  fontFace |= fontStyle;
49 
50  // Process
51  const string text(rhs[0].toString());
52  int baseLine = 0;
53  Size s = getTextSize(text, fontFace, fontScale, thickness, &baseLine);
54  plhs[0] = MxArray(s);
55  if (nlhs>1)
56  plhs[1] = MxArray(baseLine);
57 }
const ConstMap< std::string, int > FontStyle
Font styles for drawing.
Definition: mexopencv.hpp:145
STL namespace.
struct mxArray_tag mxArray
Forward declaration for mxArray.
Definition: matrix.h:259
void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
Main entry called from Matlab.
Definition: getTextSize.cpp:20
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
const ConstMap< std::string, int > ThicknessType
Thickness type for drawing.
Definition: mexopencv.hpp:130
STL class.
Global constant definitions.
T c_str(T... args)
FONT_HERSHEY_SIMPLEX
Size getTextSize(const String &text, int fontFace, double fontScale, int thickness, int *baseLine)
const ConstMap< std::string, int > FontFace
Font faces for drawing.
Definition: mexopencv.hpp:134