Isolate the root image from the background

3 ビュー (過去 30 日間)
Tekan Rana
Tekan Rana 2020 年 3 月 21 日
回答済み: Prabhan Purwar 2020 年 3 月 27 日
I want to create a good binary image with root(white) and background(black) from this image. Problem is that in binary image of this picture, top part is all white(similar to root color) and lower part has more contrast between root and background. How should I edit this image with white root and dark background?

回答 (1 件)

Prabhan Purwar
Prabhan Purwar 2020 年 3 月 27 日
Hey,
Color Thresholder app can be used to segment out the roots and background as illustrated (using colorThresholder command) with spectrum settings as shown
Further Median Filter along with imbinarize() can be used to remove noise and highlight roots.
% Ir is output from colorThresholder
im=medfilt3(Ir);
im=rgb2gray(im);
ib=imbinarize(im,0.001);
imshow(ib);
Output:
For further insights kindly refer to the following links:

タグ

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by