自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(16)
  • 资源 (28)
  • 收藏
  • 关注

原创 emgu cv 图像三色的直方图

结果如图所示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;us

2013-08-29 20:07:09 5950 11

原创 C#读取C++编写的DLL

#include "stdafx.h"#define DLL1_API extern "C" _declspec(dllexport)#include "Dll1.h"#include #include int _stdcall add(int a,int b){ return a+b;}int _stdcall subtract(int a,int b){ return

2013-08-29 11:41:48 1046

原创 emgu cv hog 特征提取 与opencv 生成的结果略有区别

//////////////////////////////////////////////////////////////////参数设定////////////////////////////////根据自己的参数设置/////////////////////// Rectangle rc = new Rectangle(); rc.Width

2013-08-28 15:55:14 3298

原创 emgu cv 读取摄像头图像

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 Emgu.CV;u

2013-08-29 20:12:09 5366 7

原创 emgu cv 轮廓提取

第一步:建c#窗体 添加好COM和引用在窗体上添加两个picturebox 控件和一个按键using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using Sy

2013-08-29 19:12:42 7740 16

原创 C++读取C# .cs 生成的dll

第一步:   打开VS2010(我用的是这个版本的)文件->新建->项目->类库->using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace add_dll{ public class Class1 { pub

2013-08-29 18:38:14 1009

原创 c# 调用 .cs 生成的 dll 文件

第一步:打开VS2010(我用的是这个版本的)文件->新建->项目->类库->using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace add_dll{ public class Class1 { public sta

2013-08-29 16:41:25 1237

原创 双向链表

#include #include "dlist.h"int main()//测试程序{ Dlist dlist; int i=dlist.size(); std::cout<<i<<std::endl; dlist.push_back(2); for (int j1=0; j1<dlist.size(); ++j1) std::cout<<dlist.value(j1+

2013-08-29 08:42:32 733

原创 c# 读取 Excel的内容

//excel 的读取namespace Csharp_excel_读{ public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(obj

2013-08-28 19:42:09 942

原创 c# Excel 的写入

//需要添加COM,Microsoft Excel 11.0 object Librarynamespace Csharp_EXCEL_写{ public partial class Form1 : Form { Excel.Application m_objExcel = null; Excel._Workbook m_objBook = nu

2013-08-28 19:03:15 1095

原创 -0-1排序---遗忘比较交换算法

//-----------0-1排序---遗忘比较交换算法--------------------------templatevoid compare_exchange(T a[],int i,int j){if(a[i]>a[j]){exchange(a[i],a[j]);}}templatevoid insertion_sort(T a[],int size){for(int j = 1;j=

2013-08-28 15:32:30 1573

原创 找数组中第i小的元素

//----------------找数组中第i小的元素---------------------templateint randomized_select(T a[],int p,int r,int i){if(p==r)return a[p];int q = randomized_partition(a,p,r);int k = q-p+1;if(i==k)

2013-08-28 10:54:51 802

原创 排序算法_计数排序

//-----------counting_sort------------------templatevoid counting_sort(T a[],T b[],int k,int size){int *c = new int [k+1];for(int i =0;i{c[i]=0;}for(int j=0;j{c[a[j]]=c[a[j]]+1;

2013-08-28 10:31:19 707

原创 排序算法_堆排序(最大堆、最小堆)

//*****************************************void swap(int &a,int &b){    a=a+b;    b=a-b;    a=a-b;}void Heapify(int a[],int k,int m)   //整理堆{    int k1=2*k;    int k2=2*k+1;    i

2013-08-27 21:37:07 881

原创 排序算法_快速排序、随机快速排序

//------------------------快速排序--------------------------int Partion(int a[],int low,int high)                                    //找出分割位置{    int key;    key=a[low];    while(low    {

2013-08-27 21:33:46 710

原创 排序算法_插入排序、归并算法

//---------------------归并算法-------------------------templatevoid merge(T a[],int p, int q , int n){int n1=q-p+1;int n2 = n-q;int *l=new int[q-p+1];int *r=new int[n-q];for(int i

2013-08-27 17:25:49 746

metslib-0.5.3

metslib 应用于pcl-1.8.1的编译 如果没有可能会报错 metslib 应用于pcl-1.8.1的编译 如果没有可能会报错 metslib 应用于pcl-1.8.1的编译 如果没有可能会报错

2018-04-04

抠图工具,用于扣取图像中的ROI

抠图工具,用于扣取图像中的ROI。 文件名会显示 扣取的位置

2017-04-03

逆透视变换matlab 代码

逆透视变换详解 及 代码实现(二) 中的相关代码!! http://blog.csdn.net/yeyang911/article/details/51915348 轻松掌握逆透视变换!

2016-07-15

OpenCV3.1.0(bin,lib,include)VS2012 x86 扩展版本

OpenCV3.1.0(bin,lib,include)VS2012 x86 扩展版本, 方便大家调用扩展包里面的内容,当然你也可以自己编译自己想用的版本。

2016-06-18

OpenCV3.1.0 VS2015编译后的版本

OpenCV3.1.0 VS2015编译后的版本,如果大家不愿意花时间,可以直接下载使用

2016-01-10

OpenCV3.1.0(bin,lib,include)VS2012

OpenCV3.1.0(bin,lib,include)VS2012环境中编译的,可以用于直接配置调用

2016-01-10

ICA 运动检测matlab工程

ICA 运动检测matlab工程,通过ICA 算法 将背景去除,通过判断将需要的前景框出来。

2015-10-30

ICA 用到的声音资料

独立成分分析(Independent Component Analysis,ICA)是近年来提出的非常有效的数据分析工具,它主要用来从混合数据中提取出原始的独立信号。 这里是 ICA算法所用到的声音资料

2015-09-25

SMO 算法python源代码

SMO 算法python源代码 有兴趣了解的朋友可以下载来运行看看效果 这个是关于SVM中的优化算法

2015-06-24

coursera 上 Machine Learning 编程源码解答5-8

coursera 上 Machine Learning 编程源码解答从第5-8的测试解答,都采用矢量化编程,速度都很快,如有不对的地方欢迎大家指出

2015-05-28

coursera 上 Machine Learning 编程源码

coursera 上 Machine Learning 编程源码 方便大家一次性全部下载

2015-05-26

Pattern Recognition And Machine Learning

Pattern Recognition And Machine Learning - Bishop 经典的机器学习书籍

2014-12-04

贝叶斯网引论-清晰版

贝叶斯网引论-清晰版,张连文,郭海鹏 编写的

2014-12-04

libsvm-3.1-[FarutoUltimate3.1Mcode

libsvm-3.1-[FarutoUltimate3.1Mcode, psoSVM gaSVM 等算法

2014-11-05

mnist-leveldb.7z

mnist-leveldb.7z 深度学习caffe mnist 数据集在windows上可以使用

2014-10-26

Optimization for Computer Vision

Optimization for Computer Vision 一本讲述计算机视觉优化的书,对于搞计算机是觉得的人很有用,有空来看看。

2014-08-08

Theano 安装包

Theano 安装包 对于在https://github.com/Theano/Theano 上面下载不能用的情况下可以尝试这个包

2014-06-19

mexopencv——matlab

mexopencv利用matlab调用opencv 实现

2014-05-04

DeepLearningTutorials-master

DeepLearningTutorials-master 深度学习的 theano 代码

2014-02-19

“inttypes.h","stdint.h" 这两个头文件

“inttypes.h","stdint.h" 这两个头文件

2013-12-21

C# 范例开发大全源码

C# 范例开发大全源码 有助于提高c#编程

2013-09-03

c# 制作和读取的条形码

c# 制作条形码 读取条形码 给大家参考下

2013-09-03

c# 编写的记事本

c# 编写的记事本 基本功能都有!可以下载学习交流

2013-08-29

c#贪食蛇——简易版

c# 编写的简单版的贪食蛇,想扩展的可以在此基础上扩展

2013-08-28

麻省理工学院算法导论_笔记

麻省理工学院算法导论_笔记 算法导论,学习计算机必备

2013-08-28

概率论与数理统计第四版(第一章)课后答案

概率论与数理统计浙江大学第四版 好东西与大家分享

2009-12-09

空空如也

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

TA关注的人

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