フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

How to do side filling of an image

2 ビュー (過去 30 日間)
Abdullah bashanfer
Abdullah bashanfer 2016 年 7 月 17 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
We need to detect the ground using simple filling starting from the bottom of the image shown below. Any suggestions?
This codes what i have done so far,
rgb=imread('obstacle_scene_1.jpg');
figure, imshow(rgb);
rgbImage = imread('obstacle_scene_1.jpg');
hsvInt = rgb2hsv(rgbImage);
hsvDouble = rgb2hsv(double(rgbImage));
figure, imshow(hsvInt);
figure, imshow(hsvDouble);
level = graythresh(hsvInt);
bw = im2bw(hsvInt,level);
bw = bwareaopen(bw, 50);
figure, imshow(bw)
what i want is

回答 (1 件)

Image Analyst
Image Analyst 2016 年 7 月 17 日
Perhaps this:
bw = imfill(bw, 'holes');

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by