使用 WIA 控制相机

发布于 2024-12-21 04:02:11 字数 208 浏览 2 评论 0原文

首先,这是我在 stackoverflow 上的第一篇文章。我经常使用这一面,几乎找到了我需要的一切。

现在我的问题。我搜索了这个问题,但我没有真正找到任何东西。我想编写一个应用程序,我可以单击一个按钮并制作一个人的照片,并将该照片与数据库中的用户链接起来。可以用WIA控制相机吗?我需要一个特殊的相机吗?

如果有人可以发布有关 WIA 一般使用的好教程,我将不胜感激。

First of all, this is my first post in stackoverflow. I use this side very often and I found nearly everything I needed.

And now to my Question. I searched for this Question but I didn't really found anything. I wanted to write an application where I can click on a button and make a picture of a person and link that photo with the user in the database. Is it possible to control a camera with WIA? Do I need a special camera for that?

I would appreciate, if somebody could post a good Tutorial for the general use of WIA.

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

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

发布评论

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

评论(4

爱本泡沫多脆弱 2024-12-28 04:02:11

C# 中的 WIA 相机测试示例。花了我一整夜的时间!

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using WIA;


namespace WindowsFormsApplication1
{

    public partial class Form1 : Form
    {

    public Form1()
    {
        InitializeComponent();
        this.button1.Text = "Select Camera";
        this.label1.Text = "[ no camera selected ]";
    }

    private void Form1_Load(object sender, EventArgs e) { }
    private String _label = null;

    private void button1_Click_1(object sender, EventArgs e)
    {
        try
        {
        // create a new WIA common dialog box for the user to select a device from
        WIA.CommonDialog dlg = new WIA.CommonDialog();

        // show user the WIA device dialog
        Device d = dlg.ShowSelectDevice(WiaDeviceType.CameraDeviceType, true, false);

        // check if a device was selected
        if (d != null)
        {
            // Print camera properties
            richTextBox1.AppendText("\n\n Print properties:\n");
            foreach (Property p in d.Properties)
            {
            richTextBox1.AppendText(p.Name + ": " + p.get_Value() + "  ("+ p.PropertyID + ":" + p.IsReadOnly + ") \n");

            // Update UI
            if (p.PropertyID == 3) _label = (String) p.get_Value();
            if (p.PropertyID == 4) _label = _label + " - " + p.get_Value();
            this.label1.Text = _label;
            }

            // Print commands
            richTextBox1.AppendText("\n\n Print commands:\n");
            foreach (DeviceCommand dvc in d.Commands)
            {
            richTextBox1.AppendText(dvc.Name + ": " + dvc.Description + "  ("+ dvc.CommandID +") \n");
            }

            // Print events
            richTextBox1.AppendText("\n\n Print events:\n");
            foreach (DeviceEvent dve in d.Events)
            {
            richTextBox1.AppendText(dve.Name + ": " + dve.Description + "  (" + dve.Type + ") \n");
            }

            // Print item properties
            richTextBox1.AppendText("\n\n Print item properties:\n");
            foreach (Property item in d.Items[1].Properties)
            {
            richTextBox1.AppendText(item.IsReadOnly + ": " + item.Name + "  (" + item.PropertyID + ") \n");
            }


            foreach (WIA.Property p in d.Properties)
            {
            Object tempNewProperty;


            // change Exposure Compensation: value 0 to 2 (ID 2053, isReadonly False)
            if (p.PropertyID == 2053)
            {
                tempNewProperty = (int) -2000;  // can not be set to minus values, why???
                ((IProperty)p).set_Value(ref tempNewProperty);
                richTextBox1.AppendText(">>>>" + p.get_Value());
            }
            }

            // Now let's take a picture !
            d.ExecuteCommand(CommandID.wiaCommandTakePicture);
            richTextBox1.AppendText(".");

        }
        else
        {
            d = null;
            richTextBox1.AppendText("Result: no device selected or device could not be read. ");
        }
        }
        catch (Exception ex)
        {
        MessageBox.Show(ex.Message, "WIA Error!", MessageBoxButtons.OK, MessageBoxIcon.Error);
        }
    }


    }


}



namespace WindowsFormsApplication1
{
    partial class Form1
    {
        /// <summary>
        /// Required designer variable.
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// Clean up any resources being used.
        /// </summary>
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Windows Form Designer generated code

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.button1 = new System.Windows.Forms.Button();
            this.label1 = new System.Windows.Forms.Label();
            this.richTextBox1 = new System.Windows.Forms.RichTextBox();
            this.button2 = new System.Windows.Forms.Button();
            this.SuspendLayout();
            // 
            // button1
            // 
            this.button1.Location = new System.Drawing.Point(12, 12);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(137, 23);
            this.button1.TabIndex = 0;
            this.button1.Text = "button1";
            this.button1.UseVisualStyleBackColor = true;
            this.button1.Click += new System.EventHandler(this.button1_Click_1);
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(9, 44);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(35, 13);
            this.label1.TabIndex = 1;
            this.label1.Text = "label1";
            // 
            // richTextBox1
            // 
            this.richTextBox1.Location = new System.Drawing.Point(12, 60);
            this.richTextBox1.Name = "richTextBox1";
            this.richTextBox1.Size = new System.Drawing.Size(946, 445);
            this.richTextBox1.TabIndex = 2;
            this.richTextBox1.Text = "";
            // 
            // button2
            // 
            this.button2.Location = new System.Drawing.Point(156, 11);
            this.button2.Name = "button2";
            this.button2.Size = new System.Drawing.Size(173, 23);
            this.button2.TabIndex = 3;
            this.button2.Text = "button2";
            this.button2.UseVisualStyleBackColor = true;
            this.button2.Click += new System.EventHandler(this.button2_Click_1);
            // 
            // Form1
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(970, 517);
            this.Controls.Add(this.button2);
            this.Controls.Add(this.richTextBox1);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.button1);
            this.Name = "Form1";
            this.Text = "Form1";
            this.Load += new System.EventHandler(this.Form1_Load);
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.Button button1;
        private System.Windows.Forms.Label label1;
        private System.Windows.Forms.RichTextBox richTextBox1;
        private System.Windows.Forms.Button button2;
    }
}

WIA Camera test example in C#. Took me a whole night!

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using WIA;


namespace WindowsFormsApplication1
{

    public partial class Form1 : Form
    {

    public Form1()
    {
        InitializeComponent();
        this.button1.Text = "Select Camera";
        this.label1.Text = "[ no camera selected ]";
    }

    private void Form1_Load(object sender, EventArgs e) { }
    private String _label = null;

    private void button1_Click_1(object sender, EventArgs e)
    {
        try
        {
        // create a new WIA common dialog box for the user to select a device from
        WIA.CommonDialog dlg = new WIA.CommonDialog();

        // show user the WIA device dialog
        Device d = dlg.ShowSelectDevice(WiaDeviceType.CameraDeviceType, true, false);

        // check if a device was selected
        if (d != null)
        {
            // Print camera properties
            richTextBox1.AppendText("\n\n Print properties:\n");
            foreach (Property p in d.Properties)
            {
            richTextBox1.AppendText(p.Name + ": " + p.get_Value() + "  ("+ p.PropertyID + ":" + p.IsReadOnly + ") \n");

            // Update UI
            if (p.PropertyID == 3) _label = (String) p.get_Value();
            if (p.PropertyID == 4) _label = _label + " - " + p.get_Value();
            this.label1.Text = _label;
            }

            // Print commands
            richTextBox1.AppendText("\n\n Print commands:\n");
            foreach (DeviceCommand dvc in d.Commands)
            {
            richTextBox1.AppendText(dvc.Name + ": " + dvc.Description + "  ("+ dvc.CommandID +") \n");
            }

            // Print events
            richTextBox1.AppendText("\n\n Print events:\n");
            foreach (DeviceEvent dve in d.Events)
            {
            richTextBox1.AppendText(dve.Name + ": " + dve.Description + "  (" + dve.Type + ") \n");
            }

            // Print item properties
            richTextBox1.AppendText("\n\n Print item properties:\n");
            foreach (Property item in d.Items[1].Properties)
            {
            richTextBox1.AppendText(item.IsReadOnly + ": " + item.Name + "  (" + item.PropertyID + ") \n");
            }


            foreach (WIA.Property p in d.Properties)
            {
            Object tempNewProperty;


            // change Exposure Compensation: value 0 to 2 (ID 2053, isReadonly False)
            if (p.PropertyID == 2053)
            {
                tempNewProperty = (int) -2000;  // can not be set to minus values, why???
                ((IProperty)p).set_Value(ref tempNewProperty);
                richTextBox1.AppendText(">>>>" + p.get_Value());
            }
            }

            // Now let's take a picture !
            d.ExecuteCommand(CommandID.wiaCommandTakePicture);
            richTextBox1.AppendText(".");

        }
        else
        {
            d = null;
            richTextBox1.AppendText("Result: no device selected or device could not be read. ");
        }
        }
        catch (Exception ex)
        {
        MessageBox.Show(ex.Message, "WIA Error!", MessageBoxButtons.OK, MessageBoxIcon.Error);
        }
    }


    }


}



namespace WindowsFormsApplication1
{
    partial class Form1
    {
        /// <summary>
        /// Required designer variable.
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// Clean up any resources being used.
        /// </summary>
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Windows Form Designer generated code

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.button1 = new System.Windows.Forms.Button();
            this.label1 = new System.Windows.Forms.Label();
            this.richTextBox1 = new System.Windows.Forms.RichTextBox();
            this.button2 = new System.Windows.Forms.Button();
            this.SuspendLayout();
            // 
            // button1
            // 
            this.button1.Location = new System.Drawing.Point(12, 12);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(137, 23);
            this.button1.TabIndex = 0;
            this.button1.Text = "button1";
            this.button1.UseVisualStyleBackColor = true;
            this.button1.Click += new System.EventHandler(this.button1_Click_1);
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(9, 44);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(35, 13);
            this.label1.TabIndex = 1;
            this.label1.Text = "label1";
            // 
            // richTextBox1
            // 
            this.richTextBox1.Location = new System.Drawing.Point(12, 60);
            this.richTextBox1.Name = "richTextBox1";
            this.richTextBox1.Size = new System.Drawing.Size(946, 445);
            this.richTextBox1.TabIndex = 2;
            this.richTextBox1.Text = "";
            // 
            // button2
            // 
            this.button2.Location = new System.Drawing.Point(156, 11);
            this.button2.Name = "button2";
            this.button2.Size = new System.Drawing.Size(173, 23);
            this.button2.TabIndex = 3;
            this.button2.Text = "button2";
            this.button2.UseVisualStyleBackColor = true;
            this.button2.Click += new System.EventHandler(this.button2_Click_1);
            // 
            // Form1
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(970, 517);
            this.Controls.Add(this.button2);
            this.Controls.Add(this.richTextBox1);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.button1);
            this.Name = "Form1";
            this.Text = "Form1";
            this.Load += new System.EventHandler(this.Form1_Load);
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.Button button1;
        private System.Windows.Forms.Label label1;
        private System.Windows.Forms.RichTextBox richTextBox1;
        private System.Windows.Forms.Button button2;
    }
}
优雅的叶子 2024-12-28 04:02:11

It looks like Microsoft has provided a tutorial here.

I think you'd be specifically interested in the section Capturing a Still Image from Streaming Video.

夏日落 2024-12-28 04:02:11

我去过那里并且我已经做到了。您需要一台具有 WIA 驱动程序的相机。有几个人这样做。这并不容易,但肯定可以做到。

I've been there and I've done that. You need a camera that has WIA drivers. Several ones do it. It's not easy but can be done for sure.

我们只是彼此的过ke 2024-12-28 04:02:11

至于 WIA C# 包装器,我在 Codeplex 上发现了 ScanWIA。它没有大量的文档。不过,阅读源代码可能会有所帮助。此外,该项目还有一个演示项目,您可以定制该项目以从相机获取照片。

As for a WIA C# wrapper, I came across ScanWIA on Codeplex. It doesn't have a whole lot of documentation. However, reading the source code might help. Also, the project has a demo project that you may tailor to get pictures from a camera.

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