WPFでOpenCVを扱うにあたりOpenCVSharpの画像オブジェクトのMatからBitmapSourceに変換する方法を調べてみました。
プロジェクトの作成
mkdir プロジェクト名
cd プロジェクト名
dotnet new wpf
dotnet add package OpenCvSharp4.Windows
code .
ソースコード
ファイル名:MainWindow.xaml
<Window x:Class="BitmapSourceConv.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:BitmapSourceConv"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800">
<Grid>
<Image x:Name="Image1"/>
</Grid>
</Window>
ファイル名:MainWindow.xaml.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using OpenCvSharp;
using OpenCvSharp.WpfExtensions;
namespace BitmapSourceConv
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : System.Windows.Window
{
public MainWindow()
{
InitializeComponent();
var file = @"C:\Users\asagao\Pictures\202009170937.png";
using(Mat mat = new(file))
{
Image1.Source = BitmapSourceConverter.ToBitmapSource(mat);
}
}
}
}
説明
以前WinForm向けにBitmapオブジェクトに変換してみましたが、今回はWPF向けにBitmapSourceに変換しています。
OpenCVSharpのMatオブジェクトをBitmapオブジェクトに変換
WinFormsでデスクトップアプリケーションにOpenCVを組み込む場合、UIに表示する部分はBitmapオブジェクト、OpenCVのフィルターでつかうMatと画像を扱部2つのオブジェクトを使うことになります。相互に変換する必要があるので...
コメント