USBカメラから画像をキャプチャーする簡単なC#プログラム

表題のとおりUSBに接続されているカメラから画像をキャプチャーする簡単なプログラムです。
※当然のことながらUSBカメラはちゃんと接続してください。
WPFの画面上のキャップチャーボタンを押すと画面上のImageに表示します。

Nuget情報
OpenCvをc#から使用できるようにします。



WPF定義

<Window x:Class="CameraCapture02.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:local="clr-namespace:CameraCapture02"
        mc:Ignorable="d"
        Title="MainWindow" Height="450" Width="800">
    <Grid>
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="1*"/>
            <ColumnDefinition Width="5*"/>
            <ColumnDefinition Width="1*"/>
        </Grid.ColumnDefinitions>
        <Grid.RowDefinitions>
            <RowDefinition Height="*"/>
            <RowDefinition Height="5*"/>
            <RowDefinition Height="*"/>
        </Grid.RowDefinitions>
        <Image x:Name="imgCap" Grid.Column="1" HorizontalAlignment="Left" Height="249" Margin="18,27,0,0" Grid.Row="1" VerticalAlignment="Top" Width="521"/>
        <Button x:Name="btnCap" Grid.Column="2" Content="Capture" HorizontalAlignment="Center" Margin="0,58,0,0" Grid.Row="1" VerticalAlignment="Top" Width="76" Click="btnCap_Click"/>
    </Grid>
</Window>


画面のレイアウト
Imageとボタンしか配置していません。



MainWindow.xaml.cs
OpenCvを使うと簡単にカメラ画像を取り込めます
Imageに表示するにはBitmapからBitmapSourceに変換しないといけません。

using OpenCvSharp;
using OpenCvSharp.Extensions;
using System.Drawing;
using System.Windows;
using System.Windows.Interop;
using System.Windows.Media.Imaging;

namespace CameraCapture02;

public partial class MainWindow : System.Windows.Window
{
    public MainWindow()
    {
        InitializeComponent();
    }

    private void btnCap_Click(object sender, RoutedEventArgs e)
    {
        VideoCap();
    }

    private void  VideoCap()
    {
        using (VideoCapture vcap = new VideoCapture(0))
        using (Mat img = new Mat())
        {
            vcap.Read(img);
            imgCap.Source = B2S(BitmapConverter.ToBitmap(img));
        }
    }

    private BitmapSource B2S(Bitmap bitmap)
    {
        IntPtr hbitmap = bitmap.GetHbitmap();

        BitmapSource bs = Imaging.CreateBitmapSourceFromHBitmap(
            hbitmap, IntPtr.Zero, Int32Rect.Empty,
            BitmapSizeOptions.FromEmptyOptions()
        );

        DeleteObject(hbitmap);

        return bs;
    }

    [System.Runtime.InteropServices.DllImport("gdi32.dll")]
    public static extern bool DeleteObject(IntPtr hObject);

}




実行結果
世にも恐ろしい顔が写っているので見せられません^^;

Follow me!

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です