-2

我想从图像的各个方面裁剪 1 个像素。我的代码在某些边距中运行良好,但在某些边距中运行不佳(例如 widthleft=widthright=heightup=heightdown=1)。我应该使用 C 而不是 C++。

IplImage* edgecuter_v3(unsigned int height, unsigned int width,
    IplImage* p_in_img_grey) {
unsigned int widthleft, widthright, heightup, heightdown, heighteff;
unsigned int widtheff;
widthleft = 1;
widthright = 1;
heightup = 1;
heightdown = 1;
widtheff = width - widthleft - widthright;
heighteff = height - heightup - heightdown;

IplImage *p_out_img;

unsigned char *p_in_img_data;
p_in_img_data = (unsigned char *) p_in_img_grey->imageData;
unsigned char (*p_char_array_in)[width];
p_char_array_in = (unsigned char (*)[width]) p_in_img_data;

p_out_img = cvCreateImage(cvSize(widtheff, heighteff), IPL_DEPTH_8U, 1);
unsigned char *p_out_img_data;
p_out_img_data = (unsigned char *) p_out_img->imageData;
unsigned char (*p_char_array_out)[widtheff];
p_char_array_out = (unsigned char (*)[widtheff]) p_out_img_data;

unsigned int row_indx;
unsigned int col_indx;
for (row_indx = 0; row_indx < heighteff ; row_indx++) {
    for (col_indx = 0; col_indx < widtheff; col_indx++) {
        p_char_array_out[row_indx ][col_indx ] =
                p_char_array_in[row_indx+heightup][col_indx+widthleft];
    }
}
cvNamedWindow("one", CV_WINDOW_AUTOSIZE);
cvShowImage("one", p_out_img);
cvWaitKey(0);
return p_out_img;}

我用其他方法和任务扫描索引,比如但不起作用。

            p_char_array_out[row_indx ][col_indx ] =
                p_char_array_in[row_indx+heightup][col_indx+widthleft];

非常感谢

4

1 回答 1

1

我找到了解决方案。也许对其他人有用。

  1. 根据此链接32 位边界“如果列数 * 像素大小不是 4 的倍数,则每行如果图像将被填充”
  2. 扫描的正确方法是使用“widthStep”而不是“width”来考虑pad

widthStep_r = p_in_img->widthStep;

于 2015-05-06T15:58:44.163 回答