join close lines in one thicker
3 ビュー (過去 30 日間)
古いコメントを表示
I have this image
How could I close the borders with just one continuous line? To something like this
Thank you
0 件のコメント
回答 (2 件)
Image Analyst
2017 年 11 月 19 日
Take the coordinates of the green lines and burn them into a binary image. See attached demo and adapt it.
Then use imclose() to enlarge and blend them into a bigger connected mass.
binaryImage = imclose(binaryImage, ones(9));
Then use bwareafilt() to extract out the largest blob:
binaryImage = bwareafilt(binaryImage, 1);
Then blacken the image where the white pixels are
% Mask the image using bsxfun() function to multiply the mask by each channel individually.
maskedRgbImage = bsxfun(@times, rgbImage, cast(~binaryImage, 'like', rgbImage));
2 件のコメント
Image Analyst
2017 年 11 月 19 日
Maybe try calling plot() onto the image, then use getframe() to get the frame (though it might not be the same size anymore) and find the pure green pixels, then use imclose(). Might be a lot faster.
prasanth s
2018 年 12 月 3 日
why matlab did not have functions to draw and burn basic shapes (line, triange,..) in image.i did not find any file exchange also.
2 件のコメント
Image Analyst
2018 年 12 月 3 日
It does. See attached demos.
If you have the Computer Vision System Toolbox, you can also use insertShape().
参考
カテゴリ
Help Center および File Exchange で Image Processing and Computer Vision についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!