In my project, i read some images, find their keypoints and compute descriptors. And, then i store these descriptors in another image called featureUnclustered.
Now, i want to know the "Datatype" (i.e. float / Uchar / int) of this featureUnclustered image. How can i do so?
Mat input = ("sample.jpg", 1);
Mat descriptor, featureUnclustered;
detector.detect(input, keypoints);
detector.compute(input, keypoints,descriptor);
featuresUnclustered.push_back(descriptor);
How can i know the datatype of "featureUnclustered"?