自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(14)
  • 收藏
  • 关注

原创 Emgu 获取图片第一个数字

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 Em

2016-11-30 12:10:34 2448

转载 C#方法的参数关键字:ref、out、params

http://www.cnblogs.com/fishtreeyu/archive/2011/02/26/1965734.htmlC#方法的参数关键字:ref、out、params?using System; namespace方法的参数传递机制{     classMethod    {       

2016-11-30 11:03:04 416

转载 SVM

http://blog.csdn.net/alvine008/article/details/9097105http://blog.csdn.net/xiaowei_cqu/article/details/8515164什么是机器学习 (Machine Learning)      机器学习是研究计算机怎样模拟或实现人类的学习行为,以获取新的知识或技能,重新组织已有的知识结构使之不断改

2016-11-29 17:26:29 263

原创 灰度图、黑白图,彩色图理解

黑白图,是指每个像素的颜色用二进制的1位来表示,那末颜色只有“1”和“0”这两个值 ,(Data值为0)这也就是说,要么是黑,要么是白。灰度图为单通道图,Data值为0到255彩色图为多通道图,不同通道Data值为0到255

2016-11-25 16:44:55 6756

原创 emgu对图片的像素进行直接操作

Image img = new Image(480, 320, new Bgr(0, 255, 0));        //直接通过索引访问,速度较慢,返回TColor类型        Bgr color = img[100, 100];        img[100, 100] = color;        //通过Data索引访问,速度快        //最后一个参数

2016-11-24 22:09:51 3529

原创 emgu 图像列获取

public Form1()        {                        InitializeComponent();            Image src = new Image("b.png");  //读取图片并进行灰度化处理            Image submat = new Image(src.Width, 1);         

2016-11-24 17:46:53 823

原创 QR码定位

http://blog.csdn.net/c602273091/article/details/41879053

2016-11-24 16:57:04 2385

原创 傅里叶变换经典讲解

1 傅里叶分析之掐死教程(完整版)更新于2014.06.06https://zhuanlan.zhihu.com/p/19763358?columnSlug=wille2  如果看了这篇文章你还不懂傅里叶变换,那就过来掐死我吧https://zhuanlan.zhihu.com/p/19759362?columnSlug=wille3 如果看了这篇文章你还不懂傅里叶变换,那就过来掐

2016-11-24 10:20:13 1069

转载 一维二码实时识别

using System;using System.Collections.Generic;using System.ComponentModel;using System.Threading; using System.Drawing; using System.Text;using System.Windows.Forms;using System.IO;u

2016-11-20 21:55:51 1269

翻译 一维码生成器

进行数字及字母输入有效

2016-11-18 23:32:48 3758

翻译 二维码生成器

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 ZX

2016-11-18 23:26:47 483

原创 一维二维码识别

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 Sy

2016-11-18 23:21:34 501

转载 傅里叶

转载:http://blog.csdn.net/tt2767/article/details/47301849

2016-11-10 15:32:54 614

原创 图像翻转 学习遍历像素

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;//EMGU

2016-11-05 16:30:39 418

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除