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<VGG>(rhs[2].toString(), objname) :
83 Algorithm::load<VGG>(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());
145 else if (prop ==
"UseNormalizeImage")
147 else if (prop ==
"UseScaleOrientation")
149 else if (prop ==
"ScaleFactor")
151 else if (prop ==
"UseNormalizeDescriptor")
155 "Unrecognized property %s", prop.
c_str());
157 else if (method ==
"set") {
159 string prop(rhs[2].toString());
162 else if (prop ==
"UseNormalizeImage")
164 else if (prop ==
"UseScaleOrientation")
166 else if (prop ==
"ScaleFactor")
168 else if (prop ==
"UseNormalizeDescriptor")
172 "Unrecognized property %s", prop.
c_str());
178 "Unrecognized operation %s",method.
c_str());
virtual float getScaleFactor() const=0
virtual int descriptorType() const
map< int, Ptr< VGG > > obj_
Object container.
virtual void setUseNormalizeDescriptor(const bool dsc_normalize)=0
LIBMWMEX_API_EXTERN_C void mexLock(void)
Lock a MEX-function so that it cannot be cleared from memory.
const ConstMap< int, std::string > NormTypeInv
Inverse norm type map for option processing.
struct mxArray_tag mxArray
Forward declaration for mxArray.
virtual int defaultNorm() const
virtual void setScaleFactor(const float scale_factor)=0
virtual bool getUseNormalizeDescriptor() const=0
virtual bool getUseNormalizeImage() const=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...
void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
Main entry called from Matlab.
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 bool getUseScaleOrientation() const=0
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 setSigma(const float isigma)=0
virtual void compute(InputArray image, std::vector< KeyPoint > &keypoints, OutputArray descriptors)
cv::Ptr< cv::xfeatures2d::VGG > createVGG(std::vector< MxArray >::const_iterator first, std::vector< MxArray >::const_iterator last)
Create an instance of VGG using options in arguments.
virtual bool empty() const
virtual void save(const String &filename) const
virtual float getSigma() const=0
int last_id
Last object id to allocate.
virtual void setUseNormalizeImage(const bool img_normalize)=0
virtual void setUseScaleOrientation(const bool use_scale_orientation)=0