Skip to content

Instantly share code, notes, and snippets.

@rummanwaqar
Created June 8, 2016 16:48
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rummanwaqar/cdaddd5a175f617c0b107d353fd33695 to your computer and use it in GitHub Desktop.
Save rummanwaqar/cdaddd5a175f617c0b107d353fd33695 to your computer and use it in GitHub Desktop.
Convert opencv mat type to string
std::string type2str(int type) {
std::string r;
uchar depth = type & CV_MAT_DEPTH_MASK;
uchar chans = 1 + (type >> CV_CN_SHIFT);
switch ( depth ) {
case CV_8U: r = "8U"; break;
case CV_8S: r = "8S"; break;
case CV_16U: r = "16U"; break;
case CV_16S: r = "16S"; break;
case CV_32S: r = "32S"; break;
case CV_32F: r = "32F"; break;
case CV_64F: r = "64F"; break;
default: r = "User"; break;
}
r += "C";
r += (chans+'0');
return r;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment