I tried a lot of constant values but I cannot find any difference between cvtype values.
What is it used for?
I tried values like CV_8UC4 and CV_16S.
I did not find this information in references.
I tried a lot of constant values but I cannot find any difference between
Share
The naming sheme for the types is
CV_<bit-depth>{U|S|F}C<number_of_channels>.So
CV_8UC4translates to: four channels of unsigned char andCV_16Stranslates to: 1 channel of signed 2-byte integer.Of course the topic is handled in the documentation. Here you can find more information.