cv使用openCV库在c ++中添加异常

时间:2013-04-22 13:26:53

标签: opencv

我使用openCV编写这个c ++代码进行anding操作,我也使用了bitwise_and和cvAnd,但它没有用。我确信没有语法错误但是当我运行它时它会给我一个异常

代码:

IplImage* result1 = cvCreateImage( cvGetSize(v_plane), 8, 3 );

    cvAdd(h_plane, s_plane, result1,NULL);

1 个答案:

答案 0 :(得分:0)

h_plane,s_plane和result1必须具有相同的格式。

  • 相同尺寸
  • 相同深度
  • 相同数量的频道

cvConvertImage()在这里很有帮助。