19 map<int,Ptr<GFTTDetector> > obj_;
29 void mexFunction(
int nlhs, mxArray *plhs[],
int nrhs,
const mxArray *prhs[])
35 vector<MxArray> rhs(prhs, prhs+nrhs);
36 int id = rhs[0].toInt();
37 string method(rhs[1].toString());
40 if (method ==
"new") {
48 Ptr<GFTTDetector> obj = obj_[id];
49 if (method ==
"delete") {
53 else if (method ==
"typeid") {
55 plhs[0] =
MxArray(
string(
typeid(*obj).name()));
57 else if (method ==
"clear") {
61 else if (method ==
"load") {
62 nargchk(nrhs>=3 && (nrhs%2)==1 && nlhs==0);
64 bool loadFromString =
false;
65 for (
int i=3; i<nrhs; i+=2) {
66 string key(rhs[i].toString());
68 objname = rhs[i+1].toString();
69 else if (key ==
"FromString")
70 loadFromString = rhs[i+1].toBool();
72 mexErrMsgIdAndTxt(
"mexopencv:error",
73 "Unrecognized option %s", key.c_str());
75 obj_[id] = (loadFromString ?
76 Algorithm::loadFromString<GFTTDetector>(rhs[2].toString(), objname) :
77 Algorithm::load<GFTTDetector>(rhs[2].toString(), objname));
79 else if (method ==
"save") {
81 obj->save(rhs[2].toString());
83 else if (method ==
"empty") {
85 plhs[0] =
MxArray(obj->empty());
87 else if (method ==
"getDefaultName") {
89 plhs[0] =
MxArray(obj->getDefaultName());
91 else if (method ==
"detect") {
92 nargchk(nrhs>=3 && (nrhs%2)==1 && nlhs<=1);
93 if (rhs[2].isNumeric()) {
95 for (
int i=3; i<nrhs; i+=2) {
96 string key(rhs[i].toString());
98 mask = rhs[i+1].toMat(CV_8U);
100 mexErrMsgIdAndTxt(
"mexopencv:error",
101 "Unrecognized option %s", key.c_str());
103 Mat image(rhs[2].toMat(CV_8U));
104 vector<KeyPoint> keypoints;
105 obj->detect(image, keypoints, mask);
108 else if (rhs[2].isCell()) {
110 for (
int i=3; i<nrhs; i+=2) {
111 string key(rhs[i].toString());
114 vector<MxArray> arr(rhs[i+1].toVector<MxArray>());
116 masks.reserve(arr.size());
117 for (vector<MxArray>::const_iterator it = arr.begin(); it != arr.end(); ++it)
118 masks.push_back(it->toMat(CV_8U));
121 mexErrMsgIdAndTxt(
"mexopencv:error",
122 "Unrecognized option %s", key.c_str());
127 vector<MxArray> arr(rhs[2].toVector<MxArray>());
128 images.reserve(arr.size());
129 for (vector<MxArray>::const_iterator it = arr.begin(); it != arr.end(); ++it)
130 images.push_back(it->toMat(CV_8U));
132 vector<vector<KeyPoint> > keypoints;
133 obj->detect(images, keypoints, masks);
137 mexErrMsgIdAndTxt(
"mexopencv:error",
"Invalid arguments");
139 else if (method ==
"get") {
141 string prop(rhs[2].toString());
142 if (prop ==
"BlockSize")
143 plhs[0] =
MxArray(obj->getBlockSize());
144 else if (prop ==
"HarrisDetector")
145 plhs[0] =
MxArray(obj->getHarrisDetector());
146 else if (prop ==
"K")
147 plhs[0] =
MxArray(obj->getK());
148 else if (prop ==
"MaxFeatures")
149 plhs[0] =
MxArray(obj->getMaxFeatures());
150 else if (prop ==
"MinDistance")
151 plhs[0] =
MxArray(obj->getMinDistance());
152 else if (prop ==
"QualityLevel")
153 plhs[0] =
MxArray(obj->getQualityLevel());
155 mexErrMsgIdAndTxt(
"mexopencv:error",
156 "Unrecognized property %s", prop.c_str());
158 else if (method ==
"set") {
160 string prop(rhs[2].toString());
161 if (prop ==
"BlockSize")
162 obj->setBlockSize(rhs[3].toInt());
163 else if (prop ==
"HarrisDetector")
164 obj->setHarrisDetector(rhs[3].toBool());
165 else if (prop ==
"K")
166 obj->setK(rhs[3].toDouble());
167 else if (prop ==
"MaxFeatures")
168 obj->setMaxFeatures(rhs[3].toInt());
169 else if (prop ==
"MinDistance")
170 obj->setMinDistance(rhs[3].toDouble());
171 else if (prop ==
"QualityLevel")
172 obj->setQualityLevel(rhs[3].toDouble());
174 mexErrMsgIdAndTxt(
"mexopencv:error",
175 "Unrecognized property %s", prop.c_str());
183 mexErrMsgIdAndTxt(
"mexopencv:error",
184 "Unrecognized operation %s",method.c_str());
cv::Ptr< cv::GFTTDetector > createGFTTDetector(std::vector< MxArray >::const_iterator first, std::vector< MxArray >::const_iterator last)
Create an instance of GFTTDetector using options in arguments.
void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
Main entry called from Matlab.
mxArray object wrapper for data conversion and manipulation.
void nargchk(bool cond)
Alias for input/ouput arguments number check.
Common definitions for the features2d and xfeatures2d modules.
Global constant definitions.