本文整理汇总了C#中OpenCvSharp.IplImage.Smooth方法的典型用法代码示例。如果您正苦于以下问题:C# IplImage.Smooth方法的具体用法?C# IplImage.Smooth怎么用?C# IplImage.Smooth使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类OpenCvSharp.IplImage
的用法示例。
在下文中一共展示了IplImage.Smooth方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ConvertToWriteableBitmap
public ConvertToWriteableBitmap()
{
WriteableBitmap wb = null;
// OpenCVによる画像処理 (Threshold)
using (IplImage src = new IplImage(Const.ImageLenna, LoadMode.GrayScale))
using (IplImage dst = new IplImage(src.Size, BitDepth.U8, 1))
{
src.Smooth(src, SmoothType.Gaussian, 5);
src.Threshold(dst, 0, 255, ThresholdType.Otsu);
// IplImage -> WriteableBitmap
wb = dst.ToWriteableBitmap(PixelFormats.BlackWhite);
//wb = WriteableBitmapConverter.ToWriteableBitmap(dst, PixelFormats.BlackWhite);
}
// WPFのWindowに表示してみる
Image image = new Image { Source = wb };
Window window = new Window
{
Title = "from IplImage to WriteableBitmap",
Width = wb.PixelWidth,
Height = wb.PixelHeight,
Content = image
};
Application app = new Application();
app.Run(window);
}
示例2: ConvertToBitmapSource
public ConvertToBitmapSource()
{
BitmapSource bs = null;
// OpenCVによる画像処理 (Threshold)
using (IplImage src = new IplImage(Const.ImageLenna, LoadMode.GrayScale))
using (IplImage dst = new IplImage(src.Size, BitDepth.U8, 1))
{
src.Smooth(src, SmoothType.Gaussian, 5);
src.Threshold(dst, 0, 255, ThresholdType.Otsu);
// IplImage -> BitmapSource
bs = dst.ToBitmapSource();
//bs = BitmapSourceConverter.ToBitmapSource(dst);
}
// WPFのWindowに表示してみる
Image image = new Image { Source = bs };
Window window = new Window
{
Title = "from IplImage to BitmapSource",
Width = bs.PixelWidth,
Height = bs.PixelHeight,
Content = image
};
Application app = new Application();
app.Run(window);
}
示例3: ConvertToWriteableBitmap
public ConvertToWriteableBitmap()
{
WriteableBitmap wb = null;
// OpenCV processing
using (var src = new IplImage(FilePath.Image.Lenna, LoadMode.GrayScale))
using (var dst = new IplImage(src.Size, BitDepth.U8, 1))
{
src.Smooth(src, SmoothType.Gaussian, 5);
src.Threshold(dst, 0, 255, ThresholdType.Otsu);
// IplImage -> WriteableBitmap
wb = dst.ToWriteableBitmap(PixelFormats.BlackWhite);
//wb = WriteableBitmapConverter.ToWriteableBitmap(dst, PixelFormats.BlackWhite);
}
// Shows WriteableBitmap to WPF window
var image = new Image { Source = wb };
var window = new Window
{
Title = "from IplImage to WriteableBitmap",
Width = wb.PixelWidth,
Height = wb.PixelHeight,
Content = image
};
var app = new Application();
app.Run(window);
}
示例4: ConvertToBitmap
public ConvertToBitmap()
{
Bitmap bitmap = null;
// do cvThreshold
using (IplImage src = new IplImage(FilePath.Image.Lenna, LoadMode.GrayScale))
using (IplImage dst = new IplImage(src.Size, BitDepth.U8, 1))
{
src.Smooth(src, SmoothType.Gaussian, 5);
src.Threshold(dst, 0, 255, ThresholdType.Otsu);
// IplImage -> Bitmap
bitmap = dst.ToBitmap();
//bitmap = BitmapConverter.ToBitmap(dst);
}
// visualize using WindowsForm
Form form = new Form
{
Text = "from IplImage to Bitmap",
ClientSize = bitmap.Size,
};
PictureBox pictureBox = new PictureBox
{
Dock = DockStyle.Fill,
SizeMode = PictureBoxSizeMode.StretchImage,
Image = bitmap
};
form.Controls.Add(pictureBox);
form.ShowDialog();
form.Dispose();
bitmap.Dispose();
}
示例5: Threshold
public Threshold()
{
using (IplImage src = new IplImage(Const.ImageLenna, LoadMode.Color))
using (IplImage srcGray = new IplImage(src.Size, BitDepth.U8, 1))
using (IplImage dst = new IplImage(src.Size, BitDepth.U8, 1))
using (CvWindow window = new CvWindow("SampleThreshold"))
{
src.CvtColor(srcGray, ColorConversion.BgrToGray);
srcGray.Smooth(srcGray, SmoothType.Gaussian, 5);
int threshold = 90;
window.CreateTrackbar("threshold", threshold, 255, delegate(int pos)
{
srcGray.Threshold(dst, pos, 255, ThresholdType.Binary);
window.Image = dst;
});
srcGray.Threshold(dst, threshold, 255, ThresholdType.Binary);
window.Image = dst;
CvWindow.WaitKey();
}
}
示例6: ConvertToBitmap
public ConvertToBitmap()
{
Bitmap bitmap = null;
// OpenCVによる画像処理 (Threshold)
using (IplImage src = new IplImage(Const.ImageLenna, LoadMode.GrayScale))
using (IplImage dst = new IplImage(src.Size, BitDepth.U8, 1))
{
src.Smooth(src, SmoothType.Gaussian, 5);
src.Threshold(dst, 0, 255, ThresholdType.Otsu);
// IplImage -> Bitmap
bitmap = dst.ToBitmap();
//bitmap = BitmapConverter.ToBitmap(dst);
}
// WindowsFormに表示してみる
Form form = new Form
{
Text = "from IplImage to Bitmap",
ClientSize = bitmap.Size,
};
PictureBox pictureBox = new PictureBox
{
Dock = DockStyle.Fill,
SizeMode = PictureBoxSizeMode.StretchImage,
Image = bitmap
};
/*
Imageプロパティに設定するのはもしかするとちょっと微妙、できればこのように
pictureBox.Paint += delegate(object sender, PaintEventArgs e) {
e.Graphics.DrawImage(bitmap, new Rectangle(new Point(0, 0), form.ClientSize));
};
*/
form.Controls.Add(pictureBox);
form.ShowDialog();
form.Dispose();
bitmap.Dispose();
}