Mihai Sprinceana
Un forum de programare cu de toate. Va astept sa va inscrieti si sa deveniti moderatori. Oricine este binevenit aici sa se inscrie si sa aiba acces la informatie free! Fiecare este liber sa adauge proiecte programe free etc. Ajutati acest forum sa devina o comunitate puternica unde fiecare invata de la fiecare! Tot ce trebuie sa faceti este sa va inregistrati si fiecare contributie se poate dovedi utila in timp! Forumul este free informatia free dk aveti timp liber ajutati si pe ceilalti si invatati si voi in acelasi timp! Haideti sa facem ceva pt.a ne ajuta intre noi! Cititi regulament postare forum inainte de a posta!
Lista Forumurilor Pe Tematici
Mihai Sprinceana | Inregistrare | Login

POZE MIHAI SPRINCEANA

Nu sunteti logat.
Nou pe simpatie:
beatrice17 pe Simpatie.ro
Femeie
24 ani
Bucuresti
cauta Barbat
24 - 80 ani
Mihai Sprinceana / Matlab / Linear hough transform pt.edge detection Moderat de andreeamp, fireratbat, profu.info, sade5000
Autor
Mesaj Pagini: 1
mihaispr
Administrator

Inregistrat: acum 17 ani
Postari: 2142
Fisierul houghline.m contine:

img = imread('102.jpg');
imshow(img)

I =rgb2gray(img);
figure,imshow(I);
       %I  = imread('102.jpg');
       rotI = imrotate(I,33,'crop');
       BW = edge(rotI,'canny');
       [H,T,R] = hough(BW);
       figure,imshow(H,[],'XData',T,'YData',R,'InitialMagnification','fit');
       xlabel('\theta'), ylabel('\rho');
       axis on, axis normal, hold on;
       P  = houghpeaks(H,5,'threshold',ceil(0.3*max(H(: ))));
       x = T(P(:,2)); y = R(P(:,1));
       plot(x,y,'s','color','white');

       % Find lines and plot them
       lines = houghlines(BW,T,R,P,'FillGap',5,'MinLength',7);
       figure, imshow(rotI), hold on
       max_len = 0;
       for k = 1:length(lines)
         xy = [lines(k).point1; lines(k).point2];
         plot(xy(:,1),xy(:,2),'LineWidth',2,'Color','green');

         % plot beginnings and ends of lines
         plot(xy(1,1),xy(1,2),'x','LineWidth',2,'Color','yellow');
         plot(xy(2,1),xy(2,2),'x','LineWidth',2,'Color','red');

         % determine the endpoints of the longest line segment
         len = norm(lines(k).point1 - lines(k).point2);
         if ( len > max_len)
           max_len = len;
           xy_long = xy;
         end
       end

       % highlight the longest line segment
       plot(xy_long(:,1),xy_long(:,2),'LineWidth',2,'Color','cyan');

Pt.rulare in command window:

>>houghline


Poza de test este aceasta: (numiti-o 102.jpg ca sa poata functiona scriptul)



Fisierele e bine sa le puneti in folderul work sau in pwd-ul matlabului pwd in consola pt a vedea calea matlab unde puneti aceste fisiere.


pus acum 14 ani
   
Pagini: 1  

Mergi la