38 int id = rhs[0].toInt();
39 string method(rhs[1].toString());
42 if (method ==
"new") {
54 if (method ==
"delete") {
59 else if (method ==
"typeid") {
61 plhs[0] =
MxArray(
string(
typeid(*obj).name()));
63 else if (method ==
"clear") {
67 else if (method ==
"load") {
68 nargchk(nrhs>=3 && (nrhs%2)==1 && nlhs==0);
70 bool loadFromString =
false;
71 for (
int i=3; i<nrhs; i+=2) {
72 string key(rhs[i].toString());
74 objname = rhs[i+1].toString();
75 else if (key ==
"FromString")
76 loadFromString = rhs[i+1].toBool();
79 "Unrecognized option %s", key.
c_str());
81 obj_[id] = (loadFromString ?
82 Algorithm::loadFromString<BoostDesc>(rhs[2].toString(), objname) :
83 Algorithm::load<BoostDesc>(rhs[2].toString(), objname));
85 else if (method ==
"save") {
87 obj->
save(rhs[2].toString());
89 else if (method ==
"empty") {
93 else if (method ==
"getDefaultName") {
97 else if (method ==
"defaultNorm") {
101 else if (method ==
"descriptorSize") {
105 else if (method ==
"descriptorType") {
109 else if (method ==
"compute") {
111 if (rhs[2].isNumeric()) {
115 obj->
compute(image, keypoints, descriptors);
116 plhs[0] =
MxArray(descriptors);
120 else if (rhs[2].isCell()) {
131 &MxArray::toVector<KeyPoint>)));
132 obj->
compute(images, keypoints, descriptors);
133 plhs[0] =
MxArray(descriptors);
140 else if (method ==
"get") {
142 string prop(rhs[2].toString());
143 if (prop ==
"UseScaleOrientation")
145 else if (prop ==
"ScaleFactor")
149 "Unrecognized property %s", prop.
c_str());
151 else if (method ==
"set") {
153 string prop(rhs[2].toString());
154 if (prop ==
"UseScaleOrientation")
156 else if (prop ==
"ScaleFactor")
160 "Unrecognized property %s", prop.
c_str());
166 "Unrecognized operation %s",method.
c_str());
map< int, Ptr< BoostDesc > > obj_
Object container.
virtual int descriptorType() const
LIBMWMEX_API_EXTERN_C void mexLock(void)
Lock a MEX-function so that it cannot be cleared from memory.
virtual void setUseScaleOrientation(const bool use_scale_orientation)=0
const ConstMap< int, std::string > NormTypeInv
Inverse norm type map for option processing.
virtual bool getUseScaleOrientation() const=0
struct mxArray_tag mxArray
Forward declaration for mxArray.
virtual float getScaleFactor() const=0
virtual int defaultNorm() const
virtual void setScaleFactor(const float scale_factor)=0
int last_id
Last object id to allocate.
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 int descriptorSize() const
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.
virtual String getDefaultName() const
const ConstMap< int, std::string > ClassNameInvMap
Translates data type definition used in OpenCV to that of MATLAB.
Global constant definitions.
virtual void compute(InputArray image, std::vector< KeyPoint > &keypoints, OutputArray descriptors)
virtual bool empty() const
void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
Main entry called from Matlab.
virtual void save(const String &filename) const
cv::Ptr< cv::xfeatures2d::BoostDesc > createBoostDesc(std::vector< MxArray >::const_iterator first, std::vector< MxArray >::const_iterator last)
Create an instance of BoostDesc using options in arguments.