代码之家  ›  专栏  ›  技术社区  ›  user1106340

如何裁剪图像中的顶部、左侧、底部和右侧边界?

  •  2
  • user1106340  · 技术社区  · 11 年前

    我正在尝试裁剪下图的上、左、下和右边界。

    Image to Crop

    所以,基本上,我想创建一些东西,将上面的图像作为输入并输出这些图像:

    North Crop

    West Crop

    South Crop

    East Crop

    直线及其尺寸可以使用 houghlines 在MATLAB中,但是我如何才能找到图像中凸块和凹块的位置?我试过使用 regionprops 以及 extrema 属性,但它不会检测凹曲线(仅为凸曲线的极值提供点)。我需要找出凹曲线/凸曲线中的最低/最高点,但我不确定如何做到这一点。我已经想好了之后的步骤;我可以轻松使用 imcrop 一旦我知道了各自的界限。

    1 回复  |  直到 6 年前
        1
  •  2
  •   Shai    11 年前

    密码

    %%// Tolerance in percentage for the outliers/noise in the image because 
    %%// of which the edges are not perfectly vertical or horizontal and 
    %%// the ovalish blobs are not "round" enough
    f=2;
    
    %%// Read in your image
    img = im2bw(imread('patt1.png'));
    
    %%// Main processing
    sum1 = sum(img,1);
    box_startx = find(sum1>0.33*size(img,1),1);
    box_stopx = size(img,2) - find(fliplr(sum1)>0.33*size(img,1),1) + 1;
    
    sum2 = sum(img,2)'; %'
    box_starty = find(sum2>0.33*size(img,2),1);
    box_stopy = size(img,1) - find(fliplr(sum2)>0.33*size(img,2),1) + 1;
    
    blob_leftx = find(sum1>(1-0.01*f)*max(sum1),1);
    blob_rightx = size(img,2) - find(fliplr(sum1)>(1-0.01*f)*max(sum1),1) + 1;
    
    blob_topy = find(sum2>(1-0.01*f)*max(sum2),1);
    blob_bottomy = size(img,1) - find(fliplr(sum2)>(1-0.01*f)*max(sum2),1) + 1;
    
    top1 = img(1:blob_topy,box_startx+1:box_stopx);
    left1 = img(box_starty:box_stopy-1,1:blob_leftx);
    bottom1 = img(blob_bottomy:end,box_startx:box_stopx);
    right1 = img(box_starty:box_stopy,blob_rightx:end);
    
    %// Debug
    figure,
    subplot(2,2,1);imshow(top1)
    subplot(2,2,2);imshow(bottom1)
    subplot(2,2,3);imshow(left1)
    subplot(2,2,4);imshow(right1)
    

    输出

    enter image description here