You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

39 lines
924 B

//----------------------------------------------------------------------------
// Copyright (C) 2004-2018 by EMGU Corporation. All rights reserved.
//----------------------------------------------------------------------------
using System;
using System.Windows.Forms;
using Emgu.Util;
namespace Emgu.CV.UI
{
/// <summary>
/// A MatrixViewer that is used to visualize a matrix
/// </summary>
public partial class MatrixViewer : Form
{
/// <summary>
/// Create a MatrixViewer
/// </summary>
public MatrixViewer()
{
InitializeComponent();
}
/// <summary>
/// Get or Set the Matrix&lt;&gt; object; for this MatrixViewer
/// </summary>
public UnmanagedObject Matrix
{
get
{
return matrixBox.Matrix;
}
set
{
matrixBox.Matrix = value;
}
}
}
}