有没有办法通过 iPhone 应用程序测量物体的肤色
我正在尝试找到一种方法来编程/购买一个应用程序,以使用 iPhone 根据某人拍摄的照片中的 RGB 客观比例来检测某人的肤色。有人有任何指点吗?
Im trying to find a way to programme/buy an app to use the iphone to detect someones skin tone against an objective scale using RGB froma phot they take of themselves. Anyone got any pointers?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为对此的反对意见是正确的——校准它是一项非常艰巨的工作。然而,任何解决方案都依赖于能够获取图像中特定像素的颜色(在本例中为 UIImageView...)
- (UIColor*) getPixelColorAtLocation:(CGPoint)point {
}
此代码来自 colorPicker 类,该类包含以下内容 (c)
// 由 markj 于 3/6/09 创建。
// 版权所有 2009 马克·约翰逊。版权所有。
完整的文章在这里
http://www.markj.net/iphone-uiimage-pixel-color/< /a>
I think the objections to this are correct - its going to be pretty hard work to calibrate it. However, any solution is going to rely on being able to get the colour of a specific pixel in an image (in this case a UIImageView...)
- (UIColor*) getPixelColorAtLocation:(CGPoint)point {
}
This code is from a colourPicker class which carries the following (c)
// Created by markj on 3/6/09.
// Copyright 2009 Mark Johnson. All rights reserved.
The full article is here
http://www.markj.net/iphone-uiimage-pixel-color/