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 5s 是垂直 61.4,水平 48.0。称之为阿尔法。
然后你通过这种方式计算对象的宽度:
viewWidth = 距离 * tan(alpha / 2) * 2;
objWidth = viewWidth * (imageWidth / screenWidth)