<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/255225</link>
    <title>MATLAB Central Newsreader - Gender detection</title>
    <description>Feed for thread: Gender detection</description>
    <language>en-us</language>
    <copyright>&amp;copy;1994-2012 by MathWorks, Inc.</copyright>
    <webmaster>webmaster@mathworks.com</webmaster>
    <generator>MATLAB Central Newsreader</generator>
    <docs>http://blogs.law.harvard.edu/tech/rss</docs>
    <ttl>60</ttl>
    <image>
      <title>MathWorks</title>
      <url>http://www.mathworks.com/images/membrane_icon.gif</url>
    </image>
    <item>
      <pubDate>Thu, 02 Jul 2009 21:57:01 -0400</pubDate>
      <title>Gender detection</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/255225#662392</link>
      <author>Sprinceana </author>
      <description>After I detect the face of a person which I stored in an axes component(guide matlab) and compute the haussdorf distance using that formula between the eyes for example(which represent the distance between two points)&lt;br&gt;
&lt;br&gt;
Formula for distance Hausdorff:&lt;br&gt;
&lt;br&gt;
distance_Hausdorff=sqrt( (x1-x2)*(x1-x2) + (y1-y2)*(y1-y2) ) ; for instance is the generalisde Pytagora theorem in analytical geometry. That works!&lt;br&gt;
&lt;br&gt;
My problem is now how can I determine if the person which I load the picture in axes component is a man or female.&lt;br&gt;
&lt;br&gt;
Any ideas of links or topics?&lt;br&gt;
&lt;br&gt;
Thanks!</description>
    </item>
    <item>
      <pubDate>Fri, 03 Jul 2009 00:44:26 -0400</pubDate>
      <title>Re: Gender detection</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/255225#662407</link>
      <author>TideMan</author>
      <description>On Jul 3, 9:57&#160;am, &quot;Sprinceana &quot; &amp;lt;mihai...@yahoo.com&amp;gt; wrote:&lt;br&gt;
&amp;gt; After I detect the face of a person which I stored in an axes component(guide matlab) and compute the haussdorf distance using that formula between the eyes for example(which represent the distance between two points)&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Formula for distance Hausdorff:&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; distance_Hausdorff=sqrt( (x1-x2)*(x1-x2) + (y1-y2)*(y1-y2) ) ; for instance is the generalisde Pytagora theorem in analytical geometry. That works!&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; My problem is now how can I determine if the person which I load the picture in axes component is a man or female.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Any ideas of links or topics?&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Thanks!&lt;br&gt;
&lt;br&gt;
IMHO, the distance between the eyes does not determine gender.&lt;br&gt;
What determines gender is located somewhat south of the eyes.</description>
    </item>
    <item>
      <pubDate>Fri, 03 Jul 2009 01:16:10 -0400</pubDate>
      <title>Re: Gender detection</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/255225#662409</link>
      <author>ImageAnalyst</author>
      <description>On Jul 2, 5:57&#160;pm, &quot;Sprinceana &quot; &amp;lt;mihai...@yahoo.com&amp;gt; wrote:&lt;br&gt;
&amp;gt; After I detect the face of a person which I stored in an axes component(guide matlab) and compute the haussdorf distance using that formula between the eyes for example(which represent the distance between two points)&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Formula for distance Hausdorff:&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; distance_Hausdorff=sqrt( (x1-x2)*(x1-x2) + (y1-y2)*(y1-y2) ) ; for instance is the generalisde Pytagora theorem in analytical geometry. That works!&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; My problem is now how can I determine if the person which I load the picture in axes component is a man or female.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Any ideas of links or topics?&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Thanks!&lt;br&gt;
----------------------------------------------------------------------&lt;br&gt;
I like Tidman's response.  But this has been a well studied topic.  A&lt;br&gt;
Google search on &quot;male female face differences&quot; turns up over 4&lt;br&gt;
million hits.  There was even a famous article about it about 3-5&lt;br&gt;
years ago.  I forget which - Nature or Scientific American or&lt;br&gt;
something like that.  I don't know who are the most prominent&lt;br&gt;
researchers in the field.  I saw one site where they could use sliders&lt;br&gt;
to change a person's gender, ethnicity, and something else (age?) on a&lt;br&gt;
continuous scale - very cool!  A theory was put forth many years ago&lt;br&gt;
that the most beautiful face is the average of all faces, and that set&lt;br&gt;
forth a flurry of experiments to see if that's true.  It's a&lt;br&gt;
complicated subject but perhaps you'll find something.&lt;br&gt;
&lt;br&gt;
But how can you say that is the Hausdorf distance?  You gave the&lt;br&gt;
formula for a simple Euclidean distance - square root of the sum of&lt;br&gt;
the squares.  Here's a link on Hausdorf distance that you might use to&lt;br&gt;
better understand it:&lt;br&gt;
&lt;a href=&quot;http://cgm.cs.mcgill.ca/~godfried/teaching/cg-projects/98/normand/main.html&quot;&gt;http://cgm.cs.mcgill.ca/~godfried/teaching/cg-projects/98/normand/main.html&lt;/a&gt;&lt;br&gt;
If you have the very special case of only two isolated points, you'd&lt;br&gt;
be right, but the Hausdorf distance was made for shapes (collections&lt;br&gt;
of points) and in that more general situation (which it was designed&lt;br&gt;
for), your formula is wrong.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://www.virtualffs.co.uk/difference%20examples.htm&quot;&gt;http://www.virtualffs.co.uk/difference%20examples.htm&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://www.theage.com.au/news/national/beautiful-computer-says-yes/2007/03/17/1174080223528.html&quot;&gt;http://www.theage.com.au/news/national/beautiful-computer-says-yes/2007/03/17/1174080223528.html&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://www.cs.cmu.edu/afs/andrew/scs/cs/15-463/f07/proj3/www/lisachan/&quot;&gt;http://www.cs.cmu.edu/afs/andrew/scs/cs/15-463/f07/proj3/www/lisachan/&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://morph.cs.st-andrews.ac.uk//fof/index.html&quot;&gt;http://morph.cs.st-andrews.ac.uk//fof/index.html&lt;/a&gt;</description>
    </item>
    <item>
      <pubDate>Fri, 03 Jul 2009 06:35:02 -0400</pubDate>
      <title>Re: Gender detection</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/255225#662434</link>
      <author>Sprinceana </author>
      <description>Ok.&lt;br&gt;
&lt;br&gt;
Thanks for your responses!&lt;br&gt;
&lt;br&gt;
I'll study and read this and if I have questions I'll continue this topic.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Yes that formula is for euclidian distance you're wright mea culpa!&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Thanks again!</description>
    </item>
    <item>
      <pubDate>Fri, 03 Jul 2009 06:42:02 -0400</pubDate>
      <title>Re: Gender detection</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/255225#662436</link>
      <author>Sprinceana </author>
      <description>I think this link give me an idea on how to achieve that (in the way also it looks my matlab gui).&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://morph.cs.st-andrews.ac.uk//fof/index.html&quot;&gt;http://morph.cs.st-andrews.ac.uk//fof/index.html&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
Thanks again!</description>
    </item>
    <item>
      <pubDate>Fri, 03 Jul 2009 07:27:48 -0400</pubDate>
      <title>Re: Gender detection</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/255225#662452</link>
      <author>Rune Allnor</author>
      <description>On 2 Jul, 23:57, &quot;Sprinceana &quot; &amp;lt;mihai...@yahoo.com&amp;gt; wrote:&lt;br&gt;
&lt;br&gt;
&amp;gt; My problem is now how can I determine if the person which I load the picture in axes component is a man or female.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Any ideas of links or topics?&lt;br&gt;
&lt;br&gt;
Pick up a book on art, on drawing or painting portraits.&lt;br&gt;
&lt;br&gt;
Artists need to be aware of the characteristics that&lt;br&gt;
separate male and female faces, like the proportions&lt;br&gt;
of certain features, thickness of bone structures and&lt;br&gt;
so on.&lt;br&gt;
&lt;br&gt;
Just be aware that you are playing with deceptive&lt;br&gt;
concepts. You might think that &quot;heck, *I* can see&lt;br&gt;
if that person is a male or a female, it should be&lt;br&gt;
easy to have the computer do the discrimination&quot;.&lt;br&gt;
&lt;br&gt;
What happens in reality is that you base the discrimunation&lt;br&gt;
on the whole evolutionary history of Homo Sapiens.&lt;br&gt;
The human brain is fine-tuned to size up every single&lt;br&gt;
person you see:&lt;br&gt;
&lt;br&gt;
- Male or female?&lt;br&gt;
- Age?&lt;br&gt;
- Physical health?&lt;br&gt;
- Social status?&lt;br&gt;
- Ethnical genealogy?&lt;br&gt;
- State of mind?&lt;br&gt;
&lt;br&gt;
From an evolutionary perspective, it is vital for everybody&lt;br&gt;
to size other people up quickly. Those who don't tend to end&lt;br&gt;
up in trouble. Or miss a potential spouse. So you will *always*&lt;br&gt;
come up with characteristics like those above, if you have to.&lt;br&gt;
They will not always be correct, but you will come up with&lt;br&gt;
them nonetheless.&lt;br&gt;
&lt;br&gt;
In other words, you might be trying to replicate decisions&lt;br&gt;
that in real life are made deep down in the human brains,&lt;br&gt;
based on very subtle clues.&lt;br&gt;
&lt;br&gt;
Rune</description>
    </item>
    <item>
      <pubDate>Fri, 03 Jul 2009 10:44:55 -0400</pubDate>
      <title>Re: Gender detection</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/255225#662491</link>
      <author>fburton@nyx.net (Francis Burton)</author>
      <description>In article &amp;lt;588e84fa-295b-44a1-b53d-63b87911735e@v15g2000prn.googlegroups.com&amp;gt;,&lt;br&gt;
TideMan  &amp;lt;mulgor@gmail.com&amp;gt; wrote:&lt;br&gt;
&amp;gt;IMHO, the distance between the eyes does not determine gender.&lt;br&gt;
&amp;gt;What determines gender is located somewhat south of the eyes.&lt;br&gt;
&lt;br&gt;
That is sex, surely? However, gender may be located behind the eyes.&lt;br&gt;
;-)&lt;br&gt;
&lt;br&gt;
Some discussion of gender vs sex here:&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://en.wikipedia.org/wiki/Gender#The_word_gender_in_English&quot;&gt;http://en.wikipedia.org/wiki/Gender#The_word_gender_in_English&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
&quot;Among the reasons that working scientists have given me for choosing&lt;br&gt;
gender rather than sex in biological contexts are desires to signal&lt;br&gt;
sympathy with feminist goals, to use a more academic term, or to avoid&lt;br&gt;
the connotation of copulation.&quot;&lt;br&gt;
- David Haig, The Inexorable Rise of Gender and the Decline of Sex.&lt;br&gt;
&lt;br&gt;
Francis</description>
    </item>
    <item>
      <pubDate>Fri, 03 Jul 2009 14:35:07 -0400</pubDate>
      <title>Re: Gender detection</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/255225#662527</link>
      <author>ImageAnalyst</author>
      <description>Very true Rune, as borne out by this study where people were able to&lt;br&gt;
detect homosexuality in men based on very small portions of their&lt;br&gt;
face:&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://www.scientificamerican.com/article.cfm?id=something-queer-about-that-face&quot;&gt;http://www.scientificamerican.com/article.cfm?id=something-queer-about-that-face&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
&quot;.....Furthermore, in an even more rigorously controlled series of&lt;br&gt;
experiments published in the Journal of Personality and Social&lt;br&gt;
Psychology, Rule and his colleagues replicated their discovery that&lt;br&gt;
people are able to accurately guess male sexual orientation. This&lt;br&gt;
time, the researchers demonstrated that perceivers were able to do&lt;br&gt;
this even when they were shown only individual features of the&lt;br&gt;
target's face. For example, when shown only the eye region (&quot;without&lt;br&gt;
brows and cropped to the outer canthi so that not even &quot;crow's-feet&quot;&lt;br&gt;
were visible&quot;), perceivers were amazingly still able to accurately&lt;br&gt;
identify a man as being gay. The same happened when shown the mouth&lt;br&gt;
region alone. Curiously, most of the participants underestimated their&lt;br&gt;
ability to identify gay faces from these features alone. That is to&lt;br&gt;
say, people seem to have honed and calibrated their gaydar without&lt;br&gt;
knowing they've done so......&quot;</description>
    </item>
    <item>
      <pubDate>Mon, 06 Jul 2009 00:27:58 -0400</pubDate>
      <title>Re: Gender detection</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/255225#662769</link>
      <author>Steven Lord</author>
      <description>&lt;br&gt;
&quot;Rune Allnor&quot; &amp;lt;allnor@tele.ntnu.no&amp;gt; wrote in message &lt;br&gt;
news:d30b2db0-96a6-453e-80b5-c3d572253d05@a36g2000yqc.googlegroups.com...&lt;br&gt;
&lt;br&gt;
*snip*&lt;br&gt;
&lt;br&gt;
&amp;gt; What happens in reality is that you base the discrimunation&lt;br&gt;
&amp;gt; on the whole evolutionary history of Homo Sapiens.&lt;br&gt;
&amp;gt; The human brain is fine-tuned to size up every single&lt;br&gt;
&amp;gt; person you see:&lt;br&gt;
&lt;br&gt;
And even at that, it's not always easy for humans to make that &lt;br&gt;
determination.&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://en.wikipedia.org/wiki/Pat_(Saturday_Night_Live)&quot;&gt;http://en.wikipedia.org/wiki/Pat_(Saturday_Night_Live)&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
-- &lt;br&gt;
Steve Lord&lt;br&gt;
slord@mathworks.com </description>
    </item>
  </channel>
</rss>

