作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用Kinect制作广告应用程序,我想做的是,当男人进入Kinect范围内时,它应该展示与男士产品相关的广告,并且与女性相同。
能做到吗我应该从哪里开始?
最佳答案
我已经通过face.com API做到了,这是代码片段:
FaceRestAPI obj = new FaceRestAPI("key", "secret", "", true, "xml", "", "");
string userid = ""; // registeredemailID;
List<string> str = new List<string>();
str.Add(userid);
List<string> urls = new List<string>();
urls.Add(txtImageURL.Text); // http location of the picture
FaceRestAPI.FaceAPI objFaces = obj.faces_detect(urls, string.Empty, null, null, null);
XmlDocument xml = new XmlDocument();
xml.LoadXml(objFaces.rawData);
XmlNodeList xnList = xml.SelectNodes(@"response/photos/photo/tags/tag/attributes/gender");
foreach (XmlNode xn in xnList)
{
Label lbl = new Label();
lbl.Text = "I've recognized it as a " + xn["value"].InnerText + "!";
phMessage.Controls.Add(lbl);
}
关于kinect - Kinect可以区分男人和女人吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10862904/
我有一个新网站,其左上角有一张女性图片。图像位于完美位置,但我无法将图像的上半部分置于其他图层之上。这显然是一个 z-index 问题。我已经尝试了所有可能的组合来显示图像的上半部分。运气不好。 你能
我是一名优秀的程序员,十分优秀!