How to find the valley areas of the image?

6 ビュー (過去 30 日間)
Sk
Sk 2020 年 1 月 12 日
コメント済み: Sk 2020 年 1 月 20 日
How to calculate the depth of the letters in the given image, so that i can find the valley areas ? Please help me.1.jpg

採用された回答

Image Analyst
Image Analyst 2020 年 1 月 14 日

その他の回答 (1 件)

KALYAN ACHARJYA
KALYAN ACHARJYA 2020 年 1 月 12 日
編集済み: KALYAN ACHARJYA 2020 年 1 月 12 日
The segmention approach for this image is already answerd, for localizing valley region please see the watershed algorithm. It would be great if you follow the Gonzalez Book (Digital Image Processing using MATLAB), where detail explanation is discussed with matlab code. Please note that here you can get the area of valley or basin, not the depth.
rgb=imread('rgb.jpg');
BW1=im2bw(rgb2gray(rgb));
BW2=bwareaopen(~BW1,60);
%% This Part @Image Analyst
windowSize=5;
kernel=ones(windowSize)/windowSize^2;
blurryImage=conv2(single(BW2),kernel,'same');
BW3=blurryImage>0.5;
%% Morpho Operation
se=strel('disk',2);
BW3=imclose(BW3,se);
rgb(~BW3)=0; % Mask Apply
imshow(rgb);
  13 件のコメント
KALYAN ACHARJYA
KALYAN ACHARJYA 2020 年 1 月 20 日
編集済み: KALYAN ACHARJYA 2020 年 1 月 20 日
May be it can slightly improved by preprocessing & appropriate morpho operation.
Sk
Sk 2020 年 1 月 20 日
Fine sir. I will try.

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

Community Treasure Hunt

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

Start Hunting!

Translated by