ocvCvBox2DToMxArray
Convert OpenCV CvBox2D
to a
MATLAB struct
C++ Syntax
#include "opencvmex.hpp"
mxArray
*ocvCvBox2DToMxArray(const CvBox2D *in);
Arguments
in
Pointer to OpenCV
CvBox2D
.
Returns
Pointer to a MATLAB® structure, mxArray
, that represents a rectangle.
The structure must have five scalar-valued fields:
x_center
,
y_center
,
width
,
height
, and
angle
. The
(x_center
,
y_center
) fields represent the
center of the rectangle.
Description
The ocvCvBox2DToMxArray
function converts
a rectangle data structure from an OpenCV
CvBox2D
to a MATLAB struct.
See Also
mxArray
, ocvCvRectToBoundingBox_{DataType}
,
C Matrix API, Write C Functions Callable from MATLAB (MEX Files)
Version History
Introduced in R2015a