Remove line object from the image

1 次查看(过去 30 天)
Sanzhar Askaruly
Sanzhar Askaruly 2018-5-29
编辑: KSSV 2018-5-29
I must remove this red part from the image. How can I do that in MATLAB, anyone has ideas? Please help :)
  1 个评论
KSSV
KSSV 2018-5-29
Select the part manually...and fill the values? Did you try this?

请先登录,再进行评论。

回答(1 个)

KSSV
KSSV 2018-5-29
编辑:KSSV 2018-5-29
I = imread('wrong_part.jpg') ;
[J,rect] = imcrop(I) ; % select the part you want to remove when image pops
x0 = round(rect(1)) ; x1 = x0+round(rect(3)) ;
y0 = round(rect(2)) ; y1 = y0+round(rect(4)) ;
x = x0:x1 ;
y = y0:y1 ;
[X,Y] = meshgrid(y,x) ;
I(X,Y,:) = 0 ;

类别

Help CenterFile Exchange 中查找有关 Image Processing Toolbox 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by