如何获取Android相机的物体距离?

发布于 2024-11-29 22:14:43 字数 753 浏览 0 评论 0原文

在自动对焦模式下如何计算物体与相机的距离?我尝试使用 Camera.Parameters.getFocusDistances(float[]) 方法,但在 Galaxy S2 上它始终返回值 0.15、1.2 和 Infinity。任何帮助将不胜感激。 这是我正在使用的代码:-

..........
cam=Camera.open();
Camera.Parameters pa=cam.getParameters();
pa.setFocusMode(Camera.Parameters.FOCUS_MODE_AUTO);
cam.setParameters(pa);
cam.startPreview();
cam.autoFocus(this);
..........


@Override
public void onAutoFocus(boolean arg0, Camera arg1) {
    // TODO Auto-generated method stub
        float f[]=new float[3];
        arg1.getParameters().getFocusDistances(f);
        text.setText(""+f[1]);  //Always returns 1.2
        t2.setText(""+f[0]);    //Always returns .15
        t3.setText(""+f[2]);    //Always returns Infinity

    }

还有其他方法可以实现此目的吗?

How can i calculate the distance of object from camera in autofocus mode? I have tried using the Camera.Parameters.getFocusDistances(float[]) method, but it always returns the values .15, 1.2, and Infinity on my Galaxy S2. Any help will be appreciated.
Here is the code i am using:-

..........
cam=Camera.open();
Camera.Parameters pa=cam.getParameters();
pa.setFocusMode(Camera.Parameters.FOCUS_MODE_AUTO);
cam.setParameters(pa);
cam.startPreview();
cam.autoFocus(this);
..........


@Override
public void onAutoFocus(boolean arg0, Camera arg1) {
    // TODO Auto-generated method stub
        float f[]=new float[3];
        arg1.getParameters().getFocusDistances(f);
        text.setText(""+f[1]);  //Always returns 1.2
        t2.setText(""+f[0]);    //Always returns .15
        t3.setText(""+f[2]);    //Always returns Infinity

    }

Is there any other way to accomplish this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

倾城月光淡如水﹏ 2024-12-06 22:14:43

Nope :( Check out this other stackoverflow answer. "Nope. The camera can only give you image data and an image alone doesn't give you enough information to give you depth information. If you had multiple images that you had location information for or even video you could then process it to triangulate the distance, but a single image alone would not be enough to give you a distance"

梦初启 2024-12-06 22:14:43

也许可以使用公式 1/f=1/v+1/u 来解决,其中 f 是焦距,v 是 CCD/CMOS 到镜头的距离,u 是物体到相机的距离。问题是,我们能得到v的值吗?

Maybe there is a solution by using the formula 1/f=1/v+1/u, in which f is the focal length, v is the distance of CCD/CMOS from the lens, u is the distance of object from camera. The problem is, can we get the value of v ?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文