Content deleted Content added
Ectech2000 (talk | contribs) No edit summary |
Ectech2000 (talk | contribs) |
||
Line 251:
[[File:Testbuilding.jpg|thumb|Original Image]]
[[File:LineImage.jpg.png|thumb|line detection]]
<syntaxhighlight lang="matlab
clear all
clc
Line 260:
%it may not appear to be
[~,angle] = imgradient(building);
out = (angle >= 180 - tol | angle <= -180 + tol);
%this part will filter the out_filter = bwareaopen(out, 50);
figure,imshow(crazy),title('Original Image');
|