Effacer les filtres
Effacer les filtres

Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

How can I classify faces for their geographical background? My code is below, but I don't think it'll work for classification.

2 vues (au cours des 30 derniers jours)
cartman=imread('5.jpg');
l=size(cartman);
counter = 0;
for i=1:l(1)
for j=1:l(2)
for k=1:3
if (cartman(i,j,k) > 100)
cartman(i,j,k) = 255;
counter = counter+1;
else
cartman(i,j,k) = 0;
end
end
end
end
fprintf('i:%d\nj:%d\nk:%d\ncounter:%d\n',i,j,k,counter);
image(cartman);
imshow(cartman);

Réponses (1)

Image Analyst
Image Analyst le 18 Sep 2014
Do you mean like you want to identify the name of the person based on where you think the background is (desert, boat, football stadium, etc.)? Please attach a sample image. Classify the face into what categories? Race, gender, what???
  2 commentaires
Adil Mukhtar
Adil Mukhtar le 29 Déc 2014
Classification for the geographical background. Like from which region person belongs (country, province etc).
Image Analyst
Image Analyst le 29 Déc 2014
Do you think a 20 line program can do that? Not even a human observer can do that. A few have tried to classify a face's race:
Fu, S., He, H., Hou, Z., Learning Race from Face: A Survey, PAMI(36), No. 12, December 2014, pp. 2483-2509.
Roomi, S.M.M., Virasundarii, S.L., Selvamegala, S., Jeevanandham, S., Hariharasudhan, D., Race Classification Based on Facial Features, NCVPRIPG11(54-57).

Cette question est clôturée.

Community Treasure Hunt

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

Start Hunting!

Translated by