photo-tagging

What is the best way to get list of photos with me and a friend tagged in them?

旧城冷巷雨未停 提交于 2020-01-01 17:27:09
问题 I'm doing this fql: SELECT object_id, pid, src_big, src_big_height, src_big_width, src, src_height, src_width FROM photo WHERE pid IN (SELECT pid FROM photo_tag WHERE subject= [me_uid]) AND pid IN (SELECT pid FROM photo_tag WHERE subject= [friend_uid] ) limit 0, 20 This works fine until I use 2 users ids who have thousands of photos with hundreds of them tagged with both uids. In this scenario, FB returns a 500 error: "Error loading script", error code 1 I need to incrementally retrieve data

Delphi Components for Face Identification and Tagging

时间秒杀一切 提交于 2019-12-04 13:13:12
问题 Are there any good components, free or commercial, available for Delphi (I use Delphi 2009) that will allow me to easily implement face detection and tagging of the faces in photos (i.e. graphics/images)? I need to do something similar to what Google Picasa's Web Albums can do, but from within my application. 回答1: Here is what you wanted http://delphimagic.blogspot.com/2011/08/reconocimiento-de-caras-con-delphi.html 回答2: Did you see the SDK's that come in the answer Face recognition Library.

Delphi Components for Face Identification and Tagging

主宰稳场 提交于 2019-12-03 08:02:16
Are there any good components, free or commercial, available for Delphi (I use Delphi 2009) that will allow me to easily implement face detection and tagging of the faces in photos (i.e. graphics/images)? I need to do something similar to what Google Picasa's Web Albums can do, but from within my application. Here is what you wanted http://delphimagic.blogspot.com/2011/08/reconocimiento-de-caras-con-delphi.html gjutras Did you see the SDK's that come in the answer Face recognition Library . The one from nuerotechnology has an activex component that you could use. 来源: https://stackoverflow.com