Remove unwanted area of image ?

3 ビュー (過去 30 日間)
Jenifer NG
Jenifer NG 2022 年 10 月 6 日
コメント済み: Jenifer NG 2022 年 10 月 14 日
Hi Everyone,
I want to remove unwanted area of an image by apply image processing. But i stuck to remove area after thresholding.
Could anyone help ?
Bellow is my step.
Img = imread('image.png')
img = im2gray(img)
img = img<150
imshow(img)
Thanks and Regards!
Han

採用された回答

Matt J
Matt J 2022 年 10 月 6 日
A=im2gray(imread('https://www.mathworks.com/matlabcentral/answers/uploaded_files/1147135/image.png'));
A(205:260,:)=[];
imshow(A)
  5 件のコメント
Matt J
Matt J 2022 年 10 月 6 日
Did you try it? It worked for me.
Jenifer NG
Jenifer NG 2022 年 10 月 6 日
Oh it work for me also.
I used wrong image
Thanks you

サインインしてコメントする。

その他の回答 (1 件)

Taru
Taru 2022 年 10 月 7 日
Hi,
Try the below code, it performs image matrix manipulation to get the required output.
img=imread('image.png');
im2=img>150;
sz=size(img)
row=sz(1,1);
col=sz(1,2);
psz=0;
for i=1:row
if im2(i,:)==im2(1,:)
psz=psz+1;
end
end
patchsize=psz;
nimg=[img(1:sz/2-patchsize,:);img(1:patchsize,:);img(sz/2+patchsize:end,:)];
imshow(nimg)
  3 件のコメント
Image Analyst
Image Analyst 2022 年 10 月 13 日
Try this:
grayImage = imread('boxes.png');
subplot(2, 2, 1);
imshow(grayImage, []);
impixelinfo;
% Get mask
mask = grayImage > 143;
% Get rid of stripe
mask = imclearborder(mask);
% Enlarge by one layer
mask = imdilate(mask, true(3));
subplot(2, 2, 2);
imshow(mask, []);
impixelinfo;
% Fill in the mask regions in the original image.
grayImage(mask) = 0;
grayImage = regionfill(grayImage, mask);
subplot(2, 2, 3);
imshow(grayImage, []);
impixelinfo;
Jenifer NG
Jenifer NG 2022 年 10 月 14 日
Thanks you so much!
I got it

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeImage Processing Toolbox についてさらに検索

製品


リリース

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by