本文整理匯總了C#中OpenCvSharp.Mat.ToBitmap方法的典型用法代碼示例。如果您正苦於以下問題:C# Mat.ToBitmap方法的具體用法?C# Mat.ToBitmap怎麽用?C# Mat.ToBitmap使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類OpenCvSharp.Mat
的用法示例。
在下文中一共展示了Mat.ToBitmap方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: UpdatePictureBox
/// <summary>
/// カラー表示PictureBoxの表示を更新
/// <param name="image">表示畫像。colorBitmapと同じサイズ・色深度でなければならない</param>
/// </summary>
private void UpdatePictureBox(Mat image)
{
// 指定された畫像でBitmapを更新
image.ToBitmap(this.colorBitmap);
// PictureBoxの描畫を要求
this.pictureBoxColor.Invalidate();
}
示例2: UpdateDepthPictureBox
/// <summary>
/// 深度表示PictureBoxを更新
/// <param name="image">表示畫像。depthBitmapと同じサイズ・色深度でなければならない
/// Kinectから得られる16bitの深度ではないので注意。</param>
/// </summary>
private void UpdateDepthPictureBox(Mat image)
{
// 指定された畫像でBitmapを更新
image.ToBitmap(this.depthBitmap);
// PictureBoxの描畫を要求
this.pictureBoxDepth.Invalidate();
}
示例3: ToMatGrayScale
public void ToMatGrayScale()
{
Mat img = new Mat(FilePath.Image.Lenna511, ImreadModes.GrayScale);
Bitmap bitmap = img.ToBitmap();
Mat converted = BitmapConverter.ToMat(bitmap);
//Mat converted = Mat.FromBitmap(bitmap);
using (new Window("Grayscale Bitmap to Mat test", converted))
{
Cv2.WaitKey();
}
}