
C#数字图像处理
文章平均质量分 55
u012677972
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
RGB to Gray
Gray = R*0.299 + G*0.587 + B*0.114原创 2015-07-02 23:36:43 · 434 阅读 · 0 评论 -
C#打开、保存图像
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; namespace Gray原创 2015-07-03 11:07:43 · 15780 阅读 · 2 评论 -
24位bmp图像转成灰度图像
private void 灰度转换ToolStripMenuItem_Click(object sender, EventArgs e) { if (curBitmap != null) { //位图矩形,0, 0, curBitmap.Width, curBitmap.Height分别表示左上角x,y原创 2015-07-03 23:30:01 · 917 阅读 · 0 评论