mortar block boundary detection

1 view (last 30 days)
khaled mahmood ehsan
khaled mahmood ehsan on 9 Oct 2015
How can i determine this mortar block boundary more precisely??? i have tried canny edge detection and ROI using but i couldn't get a precise result. here is main portion of my code-
clc;`` close all; clear all; a=imread('bef90_c1w5-1_crop.jpg'); a=rgb2gray(a); a=histeq(a); a=imresize(a,[512 512]); figure(45) imshow(a); figure(40) imhist(a); b=im2bw(a); figure(2) imshow(b); k=medfilt2(b,[3 3]); k=imcomplement(k); figure(3) imshow(k); % k=imcomplement(k); se=strel('disk',3); s4=imdilate(k,se); figure(4) imshow(s4); s1=strel('disk',2); d=imerode(s4,s1); d=imfill(d,'holes'); figure(5) imshow(d); % j=imsubtract(s,d); % figure(6) % imshow(j); n = edge(d,'canny'); figure(6) imshow(n);

Answers (0)

Categories

Find more on Graphics Object Programming in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!