11 #include "opencv2/xfeatures2d.hpp" 21 map<int,Ptr<FREAK> > obj_;
31 void mexFunction(
int nlhs, mxArray *plhs[],
int nrhs,
const mxArray *prhs[])
37 vector<MxArray> rhs(prhs, prhs+nrhs);
38 int id = rhs[0].toInt();
39 string method(rhs[1].toString());
42 if (method ==
"new") {
44 obj_[++last_id] = createFREAK(rhs.begin() + 2, rhs.end());
50 Ptr<FREAK> obj = obj_[id];
51 if (method ==
"delete") {
55 else if (method ==
"typeid") {
57 plhs[0] =
MxArray(
string(
typeid(*obj).name()));
59 else if (method ==
"clear") {
63 else if (method ==
"load") {
64 nargchk(nrhs>=3 && (nrhs%2)==1 && nlhs==0);
66 bool loadFromString =
false;
67 for (
int i=3; i<nrhs; i+=2) {
68 string key(rhs[i].toString());
70 objname = rhs[i+1].toString();
71 else if (key ==
"FromString")
72 loadFromString = rhs[i+1].toBool();
74 mexErrMsgIdAndTxt(
"mexopencv:error",
75 "Unrecognized option %s", key.c_str());
77 obj_[id] = (loadFromString ?
78 Algorithm::loadFromString<FREAK>(rhs[2].toString(), objname) :
79 Algorithm::load<FREAK>(rhs[2].toString(), objname));
81 else if (method ==
"save") {
83 obj->save(rhs[2].toString());
85 else if (method ==
"empty") {
87 plhs[0] =
MxArray(obj->empty());
89 else if (method ==
"getDefaultName") {
91 plhs[0] =
MxArray(obj->getDefaultName());
93 else if (method ==
"defaultNorm") {
97 else if (method ==
"descriptorSize") {
99 plhs[0] =
MxArray(obj->descriptorSize());
101 else if (method ==
"descriptorType") {
105 else if (method ==
"compute") {
107 if (rhs[2].isNumeric()) {
108 Mat image(rhs[2].toMat(rhs[2].isUint16() ? CV_16U : CV_8U)),
110 vector<KeyPoint> keypoints(rhs[3].toVector<KeyPoint>());
111 obj->compute(image, keypoints, descriptors);
112 plhs[0] =
MxArray(descriptors);
116 else if (rhs[2].isCell()) {
118 vector<Mat> images, descriptors;
120 vector<MxArray> arr(rhs[2].toVector<MxArray>());
121 images.reserve(arr.size());
122 for (vector<MxArray>::const_iterator it = arr.begin(); it != arr.end(); ++it)
123 images.push_back(it->toMat(it->isUint16() ? CV_16U : CV_8U));
125 vector<vector<KeyPoint> > keypoints(rhs[3].toVector(
126 const_mem_fun_ref_t<vector<KeyPoint>,
MxArray>(
127 &MxArray::toVector<KeyPoint>)));
128 obj->compute(images, keypoints, descriptors);
129 plhs[0] =
MxArray(descriptors);
134 mexErrMsgIdAndTxt(
"mexopencv:error",
"Invalid arguments");
139 mexErrMsgIdAndTxt(
"mexopencv:error",
140 "Unrecognized operation %s",method.c_str());
const ConstMap< int, std::string > NormTypeInv
Inverse norm type map for option processing.
mxArray object wrapper for data conversion and manipulation.
void nargchk(bool cond)
Alias for input/ouput arguments number check.
void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
Main entry called from Matlab.
Common definitions for the features2d and xfeatures2d modules.
const ConstMap< int, std::string > ClassNameInvMap
Translates data type definition used in OpenCV to that of MATLAB.
Global constant definitions.