37 int id = rhs[0].toInt();
38 string method(rhs[1].toString());
41 if (method ==
"new") {
53 if (method ==
"delete") {
58 else if (method ==
"typeid") {
60 plhs[0] =
MxArray(
string(
typeid(*obj).name()));
62 else if (method ==
"clear") {
66 else if (method ==
"load") {
67 nargchk(nrhs>=3 && (nrhs%2)==1 && nlhs==0);
69 bool loadFromString =
false;
70 for (
int i=3; i<nrhs; i+=2) {
71 string key(rhs[i].toString());
73 objname = rhs[i+1].toString();
74 else if (key ==
"FromString")
75 loadFromString = rhs[i+1].toBool();
78 "Unrecognized option %s", key.
c_str());
80 obj_[id] = (loadFromString ?
81 Algorithm::loadFromString<MSER>(rhs[2].toString(), objname) :
82 Algorithm::load<MSER>(rhs[2].toString(), objname));
84 else if (method ==
"save") {
86 obj->
save(rhs[2].toString());
88 else if (method ==
"empty") {
92 else if (method ==
"getDefaultName") {
96 else if (method ==
"detect") {
97 nargchk(nrhs>=3 && (nrhs%2)==1 && nlhs<=1);
98 if (rhs[2].isNumeric()) {
100 for (
int i=3; i<nrhs; i+=2) {
101 string key(rhs[i].toString());
103 mask = rhs[i+1].toMat(
CV_8U);
106 "Unrecognized option %s", key.
c_str());
110 obj->
detect(image, keypoints, mask);
113 else if (rhs[2].isCell()) {
115 for (
int i=3; i<nrhs; i+=2) {
116 string key(rhs[i].toString());
127 "Unrecognized option %s", key.
c_str());
138 obj->
detect(images, keypoints, masks);
144 else if (method ==
"detectRegions") {
160 plhs[1] =
MxArray(
Mat(bboxes,
false).reshape(1,0));
162 else if (method ==
"get") {
164 string prop(rhs[2].toString());
167 else if (prop ==
"MaxArea")
169 else if (prop ==
"MinArea")
171 else if (prop ==
"Pass2Only")
175 "Unrecognized property %s", prop.
c_str());
177 else if (method ==
"set") {
179 string prop(rhs[2].toString());
182 else if (prop ==
"MaxArea")
184 else if (prop ==
"MinArea")
186 else if (prop ==
"Pass2Only")
190 "Unrecognized property %s", prop.
c_str());
199 "Unrecognized operation %s",method.
c_str());
int last_id
Last object id to allocate.
cv::Ptr< cv::MSER > createMSER(std::vector< MxArray >::const_iterator first, std::vector< MxArray >::const_iterator last)
Create an instance of MSER using options in arguments.
LIBMWMEX_API_EXTERN_C void mexLock(void)
Lock a MEX-function so that it cannot be cleared from memory.
virtual String getDefaultName() const
virtual int getMaxArea() const=0
void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
Main entry called from Matlab.
virtual void detectRegions(InputArray image, std::vector< std::vector< Point > > &msers, std::vector< Rect > &bboxes)=0
virtual void detect(InputArray image, std::vector< KeyPoint > &keypoints, InputArray mask=noArray())
virtual int getMinArea() const=0
virtual int getDelta() const=0
struct mxArray_tag mxArray
Forward declaration for mxArray.
virtual void setDelta(int delta)=0
virtual void setPass2Only(bool f)=0
virtual void setMaxArea(int maxArea)=0
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...
LIBMWMEX_API_EXTERN_C void mexUnlock(void)
Unlock a locked MEX-function so that it can be cleared from memory.
virtual void setMinArea(int minArea)=0
mxArray object wrapper for data conversion and manipulation.
void nargchk(bool cond)
Alias for input/output arguments number check.
Common definitions for the features2d and xfeatures2d modules.
Global constant definitions.
map< int, Ptr< MSER > > obj_
Object container.
virtual bool empty() const
virtual void save(const String &filename) const
virtual bool getPass2Only() const=0