38 int id = rhs[0].toInt();
39 string method(rhs[1].toString());
42 if (method ==
"new") {
55 if (method ==
"delete") {
60 else if (method ==
"typeid") {
62 plhs[0] =
MxArray(
string(
typeid(*obj).name()));
64 else if (method ==
"clear") {
68 else if (method ==
"load") {
69 nargchk(nrhs>=3 && (nrhs%2)==1 && nlhs==0);
71 bool loadFromString =
false;
72 for (
int i=3; i<nrhs; i+=2) {
73 string key(rhs[i].toString());
75 objname = rhs[i+1].toString();
76 else if (key ==
"FromString")
77 loadFromString = rhs[i+1].toBool();
80 "Unrecognized option %s", key.
c_str());
82 obj_[id] = (loadFromString ?
83 Algorithm::loadFromString<BriefDescriptorExtractor>(rhs[2].toString(), objname) :
84 Algorithm::load<BriefDescriptorExtractor>(rhs[2].toString(), objname));
86 else if (method ==
"save") {
88 obj->
save(rhs[2].toString());
90 else if (method ==
"empty") {
94 else if (method ==
"getDefaultName") {
98 else if (method ==
"defaultNorm") {
102 else if (method ==
"descriptorSize") {
106 else if (method ==
"descriptorType") {
110 else if (method ==
"compute") {
112 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);
144 "Unrecognized operation %s",method.
c_str());
virtual int descriptorType() const
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
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.
cv::Ptr< cv::xfeatures2d::BriefDescriptorExtractor > createBriefDescriptorExtractor(std::vector< MxArray >::const_iterator first, std::vector< MxArray >::const_iterator last)
Create an instance of BriefDescriptorExtractor using options in arguments.
Global constant definitions.
virtual void compute(InputArray image, std::vector< KeyPoint > &keypoints, OutputArray descriptors)
virtual bool empty() const
virtual void save(const String &filename) const