フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

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

1 回表示 (過去 30 日間)
Adil Mukhtar
Adil Mukhtar 2014 年 9 月 18 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
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);

回答 (1 件)

Image Analyst
Image Analyst 2014 年 9 月 18 日
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 件のコメント
Adil Mukhtar
Adil Mukhtar 2014 年 12 月 29 日
Classification for the geographical background. Like from which region person belongs (country, province etc).
Image Analyst
Image Analyst 2014 年 12 月 29 日
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).

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by