Windows Mobile:在 C# 中使用手机的摄像头

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/1082625/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-06 07:45:49  来源:igfitidea点击:

Windows Mobile: using phone's camera with C#

c#windows-mobilecompact-frameworkcamera

提问by VansFannel

I want to show the image that mobile phone's camera its taking on a control in a WinForm. The idea is that my application works like camera's program. I want to show the image like if the user is going to take a photo.

我想在 WinForm 中显示手机摄像头在控件上的图像。这个想法是我的应用程序像相机的程序一样工作。我想显示图像,就像用户要拍照一样。

How can I do that? Can I do that?

我怎样才能做到这一点?我可以这样做吗?

If you need more details ask me.

如果您需要更多详细信息,请询问我。

Thank you!

谢谢!

采纳答案by Adi

Not very sure what you need, but you may try using Microsoft.WindowsMobile.Forms.CameraCaptureDialog:

不太确定您需要什么,但您可以尝试使用 Microsoft.WindowsMo​​bile.Forms.CameraCaptureDialog:

    string originalFileName;
    using (CameraCaptureDialog dlg = new CameraCaptureDialog()) {
        dlg.Mode = CameraCaptureMode.Still;
        dlg.StillQuality = CameraCaptureStillQuality.Low;
        //dlg.Resolution = new Size(800, 600);
        dlg.Title = "Take the picture";
        DialogResult res;
        try {
            res = dlg.ShowDialog();
        }
        catch (Exception ex) {
            Trace.WriteLine(ex);
            return null;
        }

        if (res != DialogResult.OK)
            return null;
        this.Refresh();
        originalFileName = pictureFileName = dlg.FileName;
    }

Later Edit:Some of you might find useful this link, too: http://community.intermec.com/t5/General-Development-Developer/CN50-MS-Camera-Capture-Dialog-generates-error/m-p/12881#M4083

稍后编辑:你们中的一些人可能会发现这个链接也很有用:http: //community.intermec.com/t5/General-Development-Developer/CN50-MS-Camera-Capture-Dialog-generates-error/mp/12881# M4083

回答by Henri

I think you should program against the hardware directly using a sdk or something similar.

我认为您应该直接使用 sdk 或类似的东西对硬件进行编程。

Since programming against hardware directly is usually in c/c++ the sdk will probably be native. So either you probably have to use pinvoke and the unsafe keyword.

由于直接针对硬件进行编程通常是在 c/c++ 中,因此 sdk 可能是本机的。因此,您可能必须使用 pinvoke 和 unsafe 关键字。

But first you should find the way to access the camera, and since this is hardware dependant you can start on the website of the phone's manufacturere.

但首先你应该找到访问相机的方法,因为这取决于硬件,你可以从手机制造商的网站上开始。

回答by pedrofernandes

Check SmartDeviceFramework from OpenNetCF.orghave some tools for PocketPC including capturing frames from Camera.

检查来自OpenNetCF.org 的SmartDeviceFramework有一些用于 PocketPC 的工具,包括从相机捕获帧。

回答by ctacke

What you want is a preview, not the capture, which is far more difficult. The best (and maybe only) solution is to insert a DShow Filter into the filtergraph to pipe the preview window to where you want.

您想要的是预览,而不是捕获,这要困难得多。最好的(也可能是唯一的)解决方案是将 DShow 过滤器插入过滤器图中,以通过管道将预览窗口传送到您想要的位置。

COM is a bear in the Compact Framework, and DShow is tough no matter what platform you're on. There are some resources online, like the DShow.NET library at sourceforge, and Alex Mogurenko's blog, but nothing specific to creating a capture.

COM 是 Compact Framework 中的一员,而无论您在哪个平台上,DShow 都很难。网上有一些资源,例如sourceforge 上DShow.NET 库Alex Mogurenko 的博客,但没有专门针对创建捕获的资源。

There is a native capture sample in the WinMo SDK that would be a useful guide to getting you there.

WinMo SDK 中有一个本机捕获示例,它是帮助您实现目标的有用指南。