[转载]OpenCV中的channel是什么意思?

转载自https://answers.opencv.org/question/7585/meaning-of-channels/

简单来说,就是描述一个pixel的颜色用多少个独立的参数描述,这个个数就是channel的个数。原答案为:

Channels are different dimensions of an image that holds value for every pixel - mainly - independently from the value of the other channels. So for example in case of an RGB image all pixels are represented as a Red, a Green, and a Blue values and there is no one summed value for a single pixel.

Here you can find some more information about channels.

There are several image types with different channel sets, exact meaning and content of a channel depends on this image type.

OpenCV can handle lots of image types, the documentation of the cvtColor function defines the conversion rules among some of them.

Here is an example usage of the cvtColor function.

posted on 2022-10-21 16:08  无声烟雨  阅读(131)  评论(0编辑  收藏  举报

导航