-
C#教程之C#调用OpenCV开发简易版美图工具(2)
效果图如下:
反转
代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
|
using ( var src = new Mat( @"..\..\Images\ocv02.jpg" , ImreadModes.AnyDepth | ImreadModes.AnyColor)) { using ( var dst = new Mat()) //复制以后处理 { Cv2.BitwiseNot(src, dst, new Mat()); var mem = dst.ToMemoryStream(); BitmapImage bmp = new BitmapImage(); bmp.BeginInit(); bmp.StreamSource = mem; bmp.EndInit(); imgOutput.Source = bmp; } } |
效果图如下:
亮度—变暗
代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
BitmapImage bmpSource = new BitmapImage( new Uri( "pack://application:,,,/images/ocv02.jpg" )); Mat mat = bmpSource.ToMat(); for ( var y = 0; y < mat.Height; y++) { for ( var x = 0; x < mat.Width; x++) { Vec3b color = mat.Get<Vec3b>(y, x); int item0 = color.Item0; int item1 = color.Item1; int item2 = color.Item2; #region 变暗 item0 -= 60; item1 -= 60; item2 -= 60; if (item0 < 0) item0 = 0; if (item1 < 0) item1 = 0; if (item2 < 0) item2 = 0; #endregion #region 变亮 //item0 += 80; //item1 += 80; //item2 += 80; //if (item0 > 255) // item0 = 255; //if (item1 > 255) // item1 = 255; //if (item2 > 255) // item2 = 255; #endregion color.Item0 = ( byte )item0; color.Item1 = ( byte )item1; color.Item2 = ( byte )item2; mat.Set(y, x, color); } } var mem = mat.ToMemoryStream(); BitmapImage bmp = new BitmapImage(); bmp.BeginInit(); bmp.StreamSource = mem; bmp.EndInit(); imgOutput.Source = bmp; mat.Dispose(); /// 该方法在mat里被重写了,可以释放资源,可以放心调用 |
栏目列表
最新更新
Python 中如何实现参数化测试?
Appium移动端测试--基础预热
自定义404页面
python redis模块详解
python爬虫--图片懒加载
Python抓取豆瓣电影top250!
Tornado—添加请求头允许跨域请求访问
pycharm设置开发模板/字体大小/背景颜色(
python爬虫公众号所有信息,并批量下载公
docker系列之一:初见docker
.Net Standard(.Net Core)实现获取配置信息
Linux PXE + Kickstart 自动装机
Shell 编程 基础
Shell 编程 条件语句
CentOS8-网卡配置及详解
Linux中LVM逻辑卷管理
1.数码相框-相框框架分析(1)
Ubuntu armhf 版本国内源
Linux中raid磁盘阵列
搭建简易网站
mysql 安装了最新版本8.x版本后的报错:
Mysql空间数据&空间索引(spatial)
如何远程连接SQL Server数据库的图文教程
复制SqlServer数据库的方法
搜索sql语句
sql中返回参数的值
sql中生成查询的模糊匹配字符串
数据定义功能
数据操作功能
将Session值储存于SQL Server中