23 nargchk(nrhs>=2 && (nrhs%2)==0 && nlhs<=1);
31 int flags = DrawMatchesFlags::DEFAULT;
32 for (
int i=2; i<nrhs; i+=2) {
33 string key(rhs[i].toString());
35 color = (rhs[i+1].isChar()) ?
36 ColorType[rhs[i+1].toString()] : rhs[i+1].toScalar();
37 else if (key ==
"DrawRichKeypoints")
39 DrawMatchesFlags::DRAW_RICH_KEYPOINTS);
40 else if (key ==
"OutImage") {
41 outImg = rhs[i+1].toMat(
CV_8U);
42 flags |= DrawMatchesFlags::DRAW_OVER_OUTIMG;
46 "Unrecognized option %s", key.
c_str());
void drawKeypoints(InputArray image, const std::vector< KeyPoint > &keypoints, InputOutputArray outImage, const Scalar &color=Scalar::all(-1), int flags=DrawMatchesFlags::DEFAULT)
struct mxArray_tag mxArray
Forward declaration for mxArray.
void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
Main entry called from Matlab.
#define UPDATE_FLAG(NUM, TF, BIT)
set or clear a bit in flag depending on bool value
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.
void nargchk(bool cond)
Alias for input/output arguments number check.
Global constant definitions.
const ConstMap< std::string, cv::Scalar > ColorType
Translates MATLAB color names (see ColorSpec) into OpenCV scalars.
static Scalar_< double > all(double v0)