TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: Does Hair recognition exist?

6 点作者 arturmakly超过 10 年前
im doing an automated art experiment. My goal is to draw 1 set of vector points around the face and a 2nd set around just the hair. Is there anything out there that an do this with a 95% accuracy?

1 comment

trcollinson超过 10 年前
Obligatory XKCD [1]<p>With quite a bit of work, a research team, a development team, and quite a few servers I was able to finish a project which did face recognition at just about the accuracy you are talking about [2]. With that we increased the accuracy of the hair and scalp recognition within the OpenCV project. However, this required quite a bit of algorithmic training [3]. Also, this did not include a set of vector points drawn around the subject, just a bounding box. This is a rather difficult problem set.<p>Now, if you have seen these fun little apps which show you what your hair would look like with a new style (or what you would look like with a set of glasses, or a new dress), this uses very little actual recognition. Basically they take a picture of you within a general &quot;person shaped bounding box&quot; or for hair a &quot;head shaped bounding box&quot; and then overlay the new style on top of the area where your hair, glasses, or clothes should be. This is relatively simple (especially in comparison to actual recognition). Might it solve some of your problem?<p>[1] <a href="http://xkcd.com/1425/" rel="nofollow">http:&#x2F;&#x2F;xkcd.com&#x2F;1425&#x2F;</a><p>[2] This accuracy was for the entire algorithmic set. It did not include a single datapoint set like &quot;hair&quot;. It was also highly dependent on the image quality and how the subject was positioned within the image.<p>[3] Our test image set was 50,000. Our production training image set was 1,500,000 images.