How to find intersection point

1 visualizzazione (ultimi 30 giorni)
Ezdihar
Ezdihar il 29 Giu 2013
Hi, I have an image with 4 colors.
I want to find the intersection points between four colors. How can I do that?
Thanks

Risposta accettata

Matt J
Matt J il 29 Giu 2013
Modificato: Matt J il 29 Giu 2013
Maybe as follows,
A=imdilate(img==color1, ones(3));
B=imdilate(img==color2, ones(3));
C=imdilate(img==color3, ones(3));
D=imdilate(img==color4, ones(3));
S=regionprops(A & B & C & D,'Centroid');
locations=vertcat(S.Centroid),

Più risposte (0)

Categorie

Scopri di più su Modify Image Colors in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by