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

黑白色反轉(zhuǎn)

彩色反轉(zhuǎn)

項(xiàng)目

代碼
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_顏色反轉(zhuǎn)
{
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);
}
}
}下載
到此這篇關(guān)于C# OpenCvSharp 顏色反轉(zhuǎn)的文章就介紹到這了,更多相關(guān)C# OpenCvSharp 顏色反轉(zhuǎn)內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
C#利用微軟自帶庫進(jìn)行中文繁體和簡體之間轉(zhuǎn)換的方法
這篇文章主要介紹了C#利用微軟自帶庫進(jìn)行中文繁體和簡體之間轉(zhuǎn)換的方法,涉及C#使用Microsoft.VisualBasic類庫操作中文繁簡字體轉(zhuǎn)換的技巧,非常具有實(shí)用價(jià)值,需要的朋友可以參考下2015-04-04
sqlserver備份還原數(shù)據(jù)庫功能封裝分享
這篇文章主要介紹了sqlserver備份還原數(shù)據(jù)庫功能封裝示例,需要的朋友可以參考下2014-03-03
C#對桌面應(yīng)用程序自定義鼠標(biāo)光標(biāo)
這篇文章介紹了C#對桌面應(yīng)用程序自定義鼠標(biāo)光標(biāo)的方法,文中通過示例代碼介紹的非常詳細(xì)。對大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2022-06-06

