Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我要为 iphone/Ipad 创建一个应用程序。我想计算 PD(瞳孔距离)。请告诉我是否有任何解决方案。
当然。简单的部分:使用一些计算机视觉库(例如,OpenCV)来获取两个视网膜的位置。困难的部分:记住 Pithagoras 的定理:
distance = sqrt((x2 - x1) ^ 2 + (y2 - y1) ^ 2)