Verfasst am: 23.09.2015, 15:43
Titel: Schwarze Nachbarpixel finden und dann weiß färben
Guten Tag,
ich soll als Hausarbeit an der Uni die Nachbarpixel finden. Im angehängten Bild soll ich also mit einer Schleife alle Pixel durchlaufen, um dann zu schauen, welche Pixel alle schwarz sind. Das erste Objekt, dass ich auf diese Weise identifiziert habe, soll weiß gefärbt werden, also alle schwarzen Pixel durch weiße Pixel ersetzt werden.
Ich habe schon einen Code für die Nachbarpixel:
Code:
function[row,cul]=vizinho(ro,cu,N,BW,omg) %ro cu = Nachbarn von welchem Pixel, N='8' für alle Pixel um das Pixel, N='4' für Pixel links rechts oben und unten um das Pixel, N='d' für diagonale Pixel um das Pixel, BW = 1 für schwarze Pixel
tamanho=size(img);
img=im2bw(img);
row=zeros;
cul=zeros;
pt=1;
if(strcmp(N,'8'))
a=img(ro-1,cu-1);
if(a==BW)
row(pt)=(ro-1);
cul(pt)=(cu-1);
pt=pt+1;
end
b=img(ro-1,cu);
if(b==BW)
row(pt)=(ro-1);
cul(pt)=(cu);
pt=pt+1;
end
c=img(ro-1,cu+1);
if(c==BW)
row(pt)=(ro-1);
cul(pt)=(cu+1);
pt=pt+1;
end
d=img(ro,cu-1);
if(d==BW)
row(pt)=(ro);
cul(pt)=(cu-1);
pt=pt+1;
end
e=img(ro,cu+1);
if(e==BW)
row(pt)=(ro-1);
cul(pt)=(cu+1);
pt=pt+1;
end
f=img(ro+1,cu-1);
if(f==BW)
row(pt)=(ro+1);
cul(pt)=(cu-1);
p(x,y)
pt=pt+1;
end
g=img(ro+1,cu);
if(g==BW)
row(pt)=(ro+1);
cul(pt)=cu;
pt=pt+1;
end
h=img(ro+1,cu+1);
if(h==BW)
row(pt)=(ro+1);
cul(pt)=(cu+1);
end elseif(strcmp(N,'4'))
a=img(ro-1,cu);
if(a==BW)
row(pt)=(ro-1);
cul(pt)=cu;
pt=pt+1;
end
b=img(ro,cu-1);
if(b==BW)
row(pt)=ro;
cul(pt)=(cu-1);
pt=pt+1;
end
c=img(ro,cu+1);
if(c==BW)
row(pt)=(ro-1);
cul(pt)=(cu+1);
pt=pt+1;
end
d=img(ro+1,cu);
if(d==BW)
row(pt)=(ro+1);
cul(pt)=cu;
end elseif(strcmp(N,'d'))
a=img(ro-1,cu-1);
if(a==BW)
row(pt)=(ro-1);
cul(pt)=(cu-1);
pt=pt+1;
end
b=img(ro-1,cu+1);
if(b==BW)
row(pt)=(ro-1);
cul(pt)=(cu+1);
pt=pt+1;
end
c=img(ro+1,cu-1);
if(c==BW)
row(pt)=(ro+1);
cul(pt)=(cu-1);
pt=pt+1;
end
d=img(ro+1,cu+1);
if(d==BW)
row(pt)=(ro+1);
cul(pt)=(cu+1);
end end
Nun habe ich mir gedacht, dass ich die 8-er Methode aus dem Code rausnehme, dann eine for Schleife schreibe um alle Pixel des Bildes zu durchlaufen und das Objekt zu identifizieren. Beim implementieren des Codes bin ich jetzt allerdings unsicher. Kann mir jemand helfen, ich habe z.B. auch keine Idee, wie ich die Schleife beenden könnte, wenn das erste Objekt vollständig identifiziert und die Farbe geändert wurde.
Du kannst Beiträge in dieses Forum schreiben. Du kannst auf Beiträge in diesem Forum antworten. Du kannst deine Beiträge in diesem Forum nicht bearbeiten. Du kannst deine Beiträge in diesem Forum nicht löschen. Du kannst an Umfragen in diesem Forum nicht mitmachen. Du kannst Dateien in diesem Forum posten Du kannst Dateien in diesem Forum herunterladen
MATLAB, Simulink, Stateflow, Handle Graphics, Real-Time Workshop, SimBiology, SimHydraulics, SimEvents, and xPC TargetBox are registered trademarks and The MathWorks, the L-shaped membrane logo, and Embedded MATLAB are trademarks of The MathWorks, Inc.