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<BRISK>(rhs[2].toString(), objname) :
82 Algorithm::load<BRISK>(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 ==
"defaultNorm") {
100 else if (method ==
"descriptorSize") {
104 else if (method ==
"descriptorType") {
108 else if (method ==
"detect") {
109 nargchk(nrhs>=3 && (nrhs%2)==1 && nlhs<=1);
110 if (rhs[2].isNumeric()) {
112 for (
int i=3; i<nrhs; i+=2) {
113 string key(rhs[i].toString());
115 mask = rhs[i+1].toMat(
CV_8U);
118 "Unrecognized option %s", key.
c_str());
122 obj->
detect(image, keypoints, mask);
125 else if (rhs[2].isCell()) {
127 for (
int i=3; i<nrhs; i+=2) {
128 string key(rhs[i].toString());
139 "Unrecognized option %s", key.
c_str());
150 obj->
detect(images, keypoints, masks);
156 else if (method ==
"compute") {
158 if (rhs[2].isNumeric()) {
161 obj->
compute(image, keypoints, descriptors);
162 plhs[0] =
MxArray(descriptors);
166 else if (rhs[2].isCell()) {
177 &MxArray::toVector<KeyPoint>)));
178 obj->
compute(images, keypoints, descriptors);
179 plhs[0] =
MxArray(descriptors);
186 else if (method ==
"detectAndCompute") {
187 nargchk(nrhs>=3 && (nrhs%2)==1 && nlhs<=2);
190 bool useProvidedKeypoints =
false;
191 for (
int i=3; i<nrhs; i+=2) {
192 string key(rhs[i].toString());
194 mask = rhs[i+1].toMat(
CV_8U);
195 else if (key ==
"Keypoints") {
196 keypoints = rhs[i+1].toVector<
KeyPoint>();
197 useProvidedKeypoints =
true;
201 "Unrecognized option %s", key.
c_str());
205 useProvidedKeypoints);
208 plhs[1] =
MxArray(descriptors);
212 "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.
void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
Main entry called from Matlab.
const ConstMap< int, std::string > NormTypeInv
Inverse norm type map for option processing.
virtual void detect(InputArray image, std::vector< KeyPoint > &keypoints, InputArray mask=noArray())
map< int, Ptr< BRISK > > obj_
Object container.
struct mxArray_tag mxArray
Forward declaration for mxArray.
virtual int defaultNorm() const
virtual String getDefaultName() 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...
int last_id
Last object id to allocate.
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 void detectAndCompute(InputArray image, InputArray mask, std::vector< KeyPoint > &keypoints, OutputArray descriptors, bool useProvidedKeypoints=false)
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
virtual void save(const String &filename) const
cv::Ptr< cv::BRISK > createBRISK(std::vector< MxArray >::const_iterator first, std::vector< MxArray >::const_iterator last)
Create an instance of BRISK using options in arguments.