How can I find the plot boundaries from a scanned cadastral Map using Matlab code. The scanned village map is attached. Each plot is also numbered.

3 views (last 30 days)
How can I find the plot boundaries from a scanned cadastral Map using Matlab code. I have tried
I1 = imread('D:\ganesh\scan\scan755.tif'); red = I1(:,:,1); imshow(red); BW= medfilt2(red,[5 5]);
[L,num] = bwlabel(im2bw(BW),8); RGB = label2rgb(L); figure, imshow(RGB) y=ones(901); for k=1,10 [r,c] = find(L == k);
figure, plot(r,c,'g','LineWidth',2);
end

Answers (0)

Products

Community Treasure Hunt

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

Start Hunting!