C#?OpenCvSharp?顏色反轉實例詳解
1、什么是OpenCVSharp
為了解決在Csharp下編寫OpenCV程序的問題,我做過比較深入的研究,并且實現(xiàn)了高效可用的方法(GOCW);這幾天在搜集資料的時候,偶爾看見了OpenCVSharp,從時間上來看,它已經(jīng)經(jīng)過了更久的發(fā)展,應該有許多直接借鑒、或者直接使用的地方。
OpenCVSharp有一名日本工程師開發(fā),項目地址為:https://github.com/shimat/opencvsharp。其是OpenCV的.NET wrapper,它比Emgucv更接近于原始的OpenCV,并且有很多的樣例參考,其采用LGPL發(fā)行,對商業(yè)應用友好(基本上相當于BSD)。
2、OpenCVSharp有什么特點
- 直接封裝了更多的OpenCV方法,降低了學習的難度,比EmguCV更便于使用
- 大部分繼承了IDisposable接口,方便使用using語句
- 可以直接調(diào)用原始風格的OpenCV方法
- 可以將圖像對象直接轉換成GDI使用的Bitmap和WPF的WriteBitmap
- 支持Mono。
在C#中使用OpenCV(使用OpenCVSharp)的實現(xiàn)
效果
灰度圖

黑白色反轉

彩色反轉

項目

代碼
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using OpenCvSharp;
using OpenCvSharp.Extensions;
namespace OpenCvSharp_顏色反轉
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private string fileFilter = "*.*|*.bmp;*.jpg;*.jpeg;*.tiff;*.tiff;*.png";
Bitmap bmp;
String imgPath = "";
private void button2_Click(object sender, EventArgs e)
{
OpenFileDialog ofd = new OpenFileDialog();
ofd.Filter = fileFilter;
if (ofd.ShowDialog() != DialogResult.OK) return;
imgPath = ofd.FileName;
bmp = new Bitmap(imgPath);
pictureBox1.Image = bmp;
}
private void button1_Click(object sender, EventArgs e)
{
if (imgPath == "")
{
return;
}
Mat mat = new Mat(imgPath);
Cv2.CvtColor(mat, mat, ColorConversionCodes.BGR2GRAY);
Mat dst = new Mat(mat.Height, mat.Width, mat.Type(), Scalar.White);
byte grayPixel = 0;
for (int r = 0; r < dst.Rows; r++)
{
for (int c = 0; c < dst.Cols; c++)
{
grayPixel = mat.At<byte>(r, c);
dst.Set<byte>(r, c, (byte)(255 - grayPixel));
}
}
if (pictureBox2.Image != null)
{
pictureBox2.Image.Dispose();
}
pictureBox2.Image = BitmapConverter.ToBitmap(dst);
}
private void button4_Click(object sender, EventArgs e)
{
if (imgPath == "")
{
return;
}
Mat mat = new Mat(imgPath);
Cv2.CvtColor(mat, mat, ColorConversionCodes.BGR2GRAY);
if (pictureBox2.Image != null)
{
pictureBox2.Image.Dispose();
}
pictureBox2.Image = BitmapConverter.ToBitmap(mat);
}
private void button3_Click(object sender, EventArgs e)
{
if (imgPath == "")
{
return;
}
Mat mat = new Mat(imgPath);
Mat dst = new Mat(mat.Height, mat.Width, mat.Type(), Scalar.White);
Vec3b vec3B;
for (int r = 0; r < dst.Rows; r++)
{
for (int c = 0; c < dst.Cols; c++)
{
vec3B = mat.At<Vec3b>(r, c);
vec3B.Item0 = (byte)(255 - vec3B.Item0);
vec3B.Item1 = (byte)(255 - vec3B.Item1);
vec3B.Item2 = (byte)(255 - vec3B.Item2);
dst.Set<Vec3b>(r, c, vec3B);
}
}
if (pictureBox2.Image != null)
{
pictureBox2.Image.Dispose();
}
pictureBox2.Image = BitmapConverter.ToBitmap(dst);
}
}
}下載
到此這篇關于C# OpenCvSharp 顏色反轉的文章就介紹到這了,更多相關C# OpenCvSharp 顏色反轉內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關文章希望大家以后多多支持腳本之家!
相關文章
sqlserver備份還原數(shù)據(jù)庫功能封裝分享
這篇文章主要介紹了sqlserver備份還原數(shù)據(jù)庫功能封裝示例,需要的朋友可以參考下2014-03-03

