Basically I have 3 mat like this:
Mat descriptors1
Mat descriptors2
Mat descriptors3
Where each descriptors have been loaded like this:
extractor->compute( object, kp, descriptors );
How could I join in a single Mat all the descriptors (append one mat to the other) ?
Example:
Mat fullDesc = descriptors1 + descriptors2 + descriptors3;