开发者

Opencv copy 3 channel IplImage to 4 channel IplImage

When I try to use cvCopy a IplImage consisting of 3 channels to a IplImage with 4 channels (I 开发者_JAVA技巧need the extra channel later) all I get is an error message.

Is there another way to increase the channel count of an IplImage without loosing the data that it already holds?

Thanks!


Use cvMixChannels, like this:

CvMat * src; // your source image
CvMat * dst // your destination image
CvMat * zeros = cvCreateMat(src->cols, src->rows, CV_8UC1);
cvSet(zeros, cvScalar(0, 0, 0, 0));
CvArr * input[] = { src, zeros };
int from_to[] = { 0,0, 1,1, 2,2, 3,3 };
cvMixChannels(input, 2, &dst, 1, from_to, 4);

It will perform only the copy operations that are neccessary, unlike cvSplit and cvMerge.


I am not sure, the way i'm gonna suggest is the easiest one :

  1. You can first split your image with cvSplit() into 3 separate images (one for each channel)
  2. Then you recompose a 4 channels one with 3 channels + the one you will add using the function cvMerge()....

Look at the documentation here,

  • Doc here ==> cvSplit()
  • Doc here ==> cvMerge()

Julien,

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜