自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

q123456789098的专栏

自信来自实力,实力来自学习! 美好的生活只有靠自己努力!!  

  • 博客(28)
  • 资源 (2353)
  • 收藏
  • 关注

原创 一维颜色分布直方图

// 一维颜色分布直方图.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include #include #include using namespace std;int main(int argc, char* argv[]){ IplImage * src=

2016-03-24 10:45:08 1004

原创 颜色空间分布直方图

// 颜色空间分布直方图.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include #include #include using namespace std;int main(int argc, char* argv[]){ IplImage * src=

2016-03-24 10:43:33 1785

原创 图像颜色分布直方图

// 图像颜色分布直方图.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include #include #include using namespace std;int main(int argc, char* argv[]){ IplImage * src

2016-03-24 10:41:05 489

原创 图像旋转与缩放

// 图像旋转与缩放.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include "cv.h"#include "cxcore.h"#include "highgui.h"#include "math.h"int main(int argc, char* argv[

2016-03-24 10:39:30 449

原创 鼠标截图

// 鼠标截取图像.cpp : Defines the entry point for the console application.//#include "stdafx.h" #include "cv.h" #include "highgui.h" #include #include bool drawing = false;CvRect rect;CvPoint o

2016-03-24 10:37:27 496

原创 鼠标事件回放

#include "stdafx.h"#ifdef _CH_#pragma package #endif#include "cv.h"#include "highgui.h"#include #include IplImage* inpaint_mask = 0;IplImage* img0 = 0, *img = 0, *inpainted = 0;CvPoint pre

2016-03-24 10:32:12 356

原创 视频 背景建模,运动物体检测

/************************************************** * 背景建模,运动物体检测 * **************************************************/ /********************************************************************

2016-03-24 10:29:41 853

原创 人脸识别 cam

#include "stdafx.h"#include "cv.h"#include "highgui.h"#include #include #include #include //用于防御式编程#include #include //与一样是定义边界值的,定义的是浮点数的边界值#include #include #include //在调用字符函数时,在源文件中包含的

2016-03-24 10:22:32 939

原创 人脸识别

// 人脸识别.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include "cv.h"#include "highgui.h"#include static CvHaarClassifierCascade* cascade = 0;static CvMemStor

2016-03-24 10:19:48 454

原创 轮廓5

// 轮廓提取2.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include "cv.h"#include "cxcore.h"#include "stdafx.h"#include "cv.h"#include "cxcore.h"#include "highg

2016-03-24 10:17:09 356

原创 轮廓4

#include "cv.h" #include "highgui.h" #include "cxcore.h" #include #include int main( int argc, char** argv ) { int i, j; CvMemStorage* storage = cvCreateMemStorage(0);

2016-03-24 10:15:10 351

原创 轮廓3

#include "cv.h"#include "cxcore.h"#include "highgui.h"#include #define w 500int levels = 3;CvSeq* contours = 0; void on_trackbar(int pos){ IplImage* cnt_img = cvCreateImage( cvSize(w,w)

2016-03-24 10:12:59 294

原创 轮廓2

// 轮廓2.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include "cv.h"#include "cxcore.h"#include "highgui.h"int main(int argc, char* argv[]){ //声明IplImage指针

2016-03-24 10:10:46 307

原创 轮廓1

// 轮廓.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include "cv.h"#include "cxcore.h"#include "highgui.h"int main(int argc, char* argv[]){ int i,j; //声明Ipl

2016-03-24 10:08:31 335

原创 读视频文件和运动物体检测cvCaptureFromCAM cvQueryFrame

// 读视频文件和运动物体检测.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include #include "cv.h"#include "cxcore.h"#include "highgui.h"int main(int argc, char* argv[])

2016-03-24 09:58:57 1564

原创 cvCamShift得到掩膜内的反向投影

// camshift.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include "cv.h"#include "highgui.h"#include "stdio.h"#include "ctype.h"IplImage *image=0,*hsv=0,*hue

2016-03-24 09:55:38 665

原创 cvCalcHist计算和显示彩色图像的 2D 色调-饱和度图像

// calcbackprojectt.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include "cv.h"#include "highgui.h"#include "cxcore.h"//#include "opencv2"int mai

2016-03-24 09:51:58 992

原创 cvSnakeImage

// TrainingTools.cpp : 定义控制台应用程序的入口点。// #include "stdafx.h"#include #include #include #include #include #include IplImage *image = 0 ; //原始图像IplImage *image2 = 0 ; //原始图像copy using na

2016-03-24 09:41:41 824

原创 hough变换

// Hough.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include "cv.h"#include "cxcore.h"#include "highgui.h"int main(int argc, char* argv[]){ const char* fi

2016-03-24 09:34:18 347

原创 canny边沿检测2

#include "cv.h"#include "highgui.h"char wndname[] = "Edge";char tbarname[] = "Threshold";int edge_thresh = 1;IplImage *image = 0, *cedge = 0, *gray = 0, *edge = 0;// 定义跟踪条的 callback 函数void o

2016-03-24 09:27:14 318

原创 验证码识别

项目背景:针对互联网站上需要填写验证码的应用,当时的验证码图像背景干扰不是很明显,识别类型保存数字识别,数学运算例图:具体实施方案:1.、图像二值化,针对图像特点,选择的是OSTU的二值化方法;2、去除干扰连通区域,主要基于区域的宽、高尺寸特征以及面积大小特征,去除典型非数字区域;3、字符分割,基于垂直投影法;4、数字识别,基于模板匹配算法,因为数字较为清晰且只

2016-03-23 16:45:06 421

原创 cvfindcontours边沿检测

#include #include int main() { IplImage* src = NULL; IplImage* img = NULL; IplImage* dst = NULL; CvMemStorage* storage = cvCreat

2016-03-23 16:31:07 263

原创 Laplace算子

#include "StdAfx.h" #include "cv.h" #include "highgui.h" #include "stdio.h" #include "stdlib.h" int main(int argc, char ** argv) { IplImage * src, *dst ;

2016-03-23 16:14:45 374

原创 sobel算子

#include "stdafx.h"#include "highgui.h"#include "cv.h" void Soble(IplImage *img,IplImage* gradientImage){ IplImage* H = cvCreateImage(cvGetSize(img), 32,1); IplImage* V =

2016-03-23 15:59:46 489

原创 canny边沿检测

#include "stdafx.h" #include #include #include #include int main(int argc ,char ** argv){ IplImage * pImg=NULL; IplImage * pCannyImg=NULL; if (pImg=cvLoadImage("F:\\vc\\cv\

2016-03-23 15:47:46 307

原创 显示一幅图像

#include"cv.h"#include"highgui.h"int main(int argc,char**argv){IplImage*img=cvLoadImage("F:\\vc\\cv\\adc.jpg",1);if(NULL==img)exit(1); //if (argc==2&&(pImg==cvLoadImage(argv[1],1))!=0) //{

2016-03-23 15:30:33 360

原创 opencv

一 数据结构1.1 cvpoint1.2 cvpoint2d32f1.3 cvpoint3d32f1.4 cvsize1.5 cvsize2d32f1.6 cvrect1.7 cvscalar1.8 cvtermcriteria1.9 cvmat1.10 cvmatnd1.11 cvsparsemat1.12 iplimage1.13 cvarr

2016-03-21 09:05:25 650

原创 matlab编程

1.For 循环    For循环允许一条语句或一组语句被重复执行预先指定的次数。For循环的一般形式是:              for x =array                  语句              end在for和end语句之间的语句按数组中的每一列执行一次。在每一次迭代中,x被指定为数组的下一列,即在第n次循环中,x=array(:, n)。例

2016-03-14 15:29:41 6556 1

la2010.rar

la2010驱动程序,亲测可用,之前光盘里的内容 下载解压安装即可 安全下载 下载后双击安装就可以,驱动也会顺便安装

2020-08-28

arm so注入代码

arm elf格式so注入,研究elf格式,ARM1136J-S发布于2003年,是针对高性能和高能效的应用而设计的。ARM1136J-S是第一个执行ARMv6架构指令的处理器,它集成了一条具有独立的load-store和算术流水线的8级流水线。ARMv6指令包含了针对媒体处理的单指令多数据流(SIMD)扩展,采用特殊的设计以改善视频处理性能

2018-06-22

32机器pe hook以及进程调试工具源代码

32机器pe hook已经进程调试工具源代码 进程枚举 进程插入dll 进程attach 进程字符串枚举 进程模块枚举 进程句柄枚举

2016-09-03

linux x86平台elf 进程注入so并且实现基于rel的hook ubuntu14.01测试通过

linux x86平台elf 进程注入so并且实现基于rel的hook ubuntu14.01测试通过

2016-08-21

fft的vc模拟以及wav文件的波形解析

fft的vc模拟以及wav文件的波形解析

2016-03-25

asm2cpp.rar x86汇编转换为cpp

asm2cpp.rar x86汇编转换为cpp

2014-05-23

OllyICe_WIN7.rar

OllyICe_WIN7.rar

2014-02-20

sed for windows

sed for windows

2013-06-20

elmo资料合集

elmo资料合集

2013-04-09

openGL超级宝典

openGL超级宝典中文版第三版 [OPENGL编程指南].(美)Dave.Shreiner.扫描版 vc几款3D游戏源码

2013-04-07

halcon-11.0-windows.part2.rar

halcon-11.0-windows.part2.rar

2013-03-31

halcon-11.0-windows.part1.rar

halcon-11.0-windows.part1.rar

2013-03-31

opencv2.4.rar

opencv2.4.rar

2013-03-31

opencv2.1.rar

opencv2.1.rar

2013-03-31

halcon-11.0-images-windows.part3.rar

halcon-11.0-images-windows.part3.rar

2013-03-31

halcon-11.0-images-windows.part2.rar

halcon-11.0-images-windows.part2.rar

2013-03-31

halcon-11.0-images-windows.part1.rar

halcon-11.0-images-windows.part1.rar

2013-03-31

vc2010下配置halcon.doc

vc2010下配置halcon.doc

2013-03-31

cppmark

cppmark

2013-03-25

OpenCV_1.0.exe

OpenCV_1.0.exe

2013-03-12

安装DirectX 9.0b及在VC6.0下配置成功

安装DirectX 9.0b及在VC6.0下配置成功 opencv 资料合集

2012-12-31

看雪论坛合集1到9

看雪合集1到9 不解释 地球人都知道 一般人我不告诉他

2012-10-05

LWIP相关资料

LWIP 相关资料

2012-09-29

Visual+C+++6.0(支持win7)

Visual+C+++6.0(支持win7)

2012-09-26

ModelSim 6.5安装包以及破解方法文档

ModelSim 6.5安装包以及破解方法文档ModelSim 6.5安装包以及破解方法文档

2012-09-22

minix操作系统设计实现上下pdf

minix操作系统设计实现

2012-09-18

操作系统原理与实现

操作系统原理与实现

2012-09-18

用TCPIP实现网际互联3本PDF.rar

用TCPIP实现网际互联3本PDF.rar

2012-09-18

vc安装盘.rar

vc安装盘.rar

2012-08-27

寒江独钓-Windows内核安全编程(清晰完整版).pdf

寒江独钓-Windows内核安全编程(清晰完整版).pdf

2012-08-16

linux内核源代码情景分析.pdf

linux内核源代码情景分析.pdf

2012-08-16

xen4.1.3源代码

xen-4.1.3.tar.gz

2012-08-15

GRUB源代码分析.pdf

GRUB源代码分析.pdf

2012-08-09

虚拟机的设计与实现——C_C++.zip

虚拟机的设计与实现——C_C++.zip虚拟机的设计与实现——C_C++.zip

2012-08-07

Xen虚拟化技术.rar

Xen虚拟化技术.rar

2012-08-07

Xen虚拟机的一些常用操作.pdf

Xen虚拟机的一些常用操作.pdf

2012-08-02

虚拟机xen体系结构分析.pdf

虚拟机xen体系结构分析.pdf

2012-07-28

x86体系结构的虚拟机研究.kdh

x86体系结构的虚拟机研究.kdh 用cajviewer打开

2012-07-28

WPS安装盘19.996

WPS安装盘

2012-07-26

android模拟器安装环境python adt

android模拟器安装环境python adt

2012-07-26

空空如也

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

TA关注的人

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