
Graphics Image/OpenCV
文章平均质量分 82
fanbird2008
这个作者很懒,什么都没留下…
展开
-
win 7+ Vs2008 Pro+opencv2.0 编程环境设置
http://blog.sina.com.cn/s/blog_731e24cd0100rca1.html win 7+ Vs2008 Pro+opencv2.0 编程环境设置(2011-03-10 22:18:58)转载▼标签:机器视觉分类: 编程操作系统:win7Vs2008 Pro 版本+ open转载 2013-10-17 17:44:12 · 833 阅读 · 0 评论 -
Histgram Equalization Algorithm Notes
w: width of imageh: height of imageLmin : Min gray level of some gray imageLmax: Max gray level of some gray image 1. statistics occuring frequency of gray level for(i =原创 2013-12-14 16:34:52 · 803 阅读 · 0 评论 -
OpenCV Intro - Back Projection
opencv中计算Back Projection的函数为calcBackProject,mixChannels是用来从输入中拷贝某通道到输出中特定的通道。还是以例子说明(1)例如灰度图像如下Image= 0 1 2 3 4 5 6 7 8 9 10 11 8 9 14 15(2)该灰转载 2015-03-27 15:06:08 · 532 阅读 · 0 评论 -
图像处理与计算机视觉基础,经典以及最近发展
图像处理与计算机视觉基础,经典以及最近发展 By xdyang(杨晓冬xdyang.ustc@gmail.com)一、 绪论转载 2015-04-01 11:03:49 · 1517 阅读 · 0 评论 -
Compile opencv
Notes: When such error, CMake Error: The current CMakeCache.txt is different than the directory /home/opencv where CMackeCache, the fast way for fix the problem is thatdeleting the CMakeCache.txt fi原创 2013-05-12 00:01:41 · 977 阅读 · 0 评论 -
Canny Edge Detector
Goal¶In this tutorial you will learn how to:Use the OpenCV function Canny to implement the Canny Edge Detector.Theory¶The Canny Edge detector was developed by John F. Canny in 1986转载 2013-12-23 12:08:20 · 979 阅读 · 0 评论 -
Hough Circle Example
#include "opencv2/opencv.hpp"#include "opencv2/imgproc/imgproc.hpp"#include "opencv2/highgui/highgui.hpp"#include using namespace cv;int main(int argc, char** argv){ Mat img, gray;转载 2013-12-23 12:00:57 · 886 阅读 · 0 评论 -
Harris corner detector algorithm
Harris and Stephens[3] improved upon Moravec's corner detector by considering the differential of the corner score with respect to direction directly, instead of using shifted patches. (This corner转载 2013-12-21 19:36:12 · 2462 阅读 · 0 评论 -
OpenCV2 cookbook source code analyse - histogram match
ColorHistogram.h#if !defined COLHISTOGRAM#define COLHISTOGRAM#include #include class ColorHistogram { private: int histSize[3];float hranges[2]; const float* ranges[3]; int channels[3]; public:ColorHi原创 2013-12-04 22:07:00 · 1697 阅读 · 0 评论 -
OpenCV Color System and Channels
1. BGR color system B - channel 0 G - channel 1 R - channel 2 2. HSV color system HSV - Hue, Saturation, Value color system H - channel 0 S - channel 1 V - chann原创 2013-12-04 11:03:04 · 1083 阅读 · 0 评论 -
OpenCV2 cookbook source code analyse - histogram
Histogram.h #if !defined HISTOGRAM#define HISTOGRAM#include #include class Histogram1D { private: int histSize[1]; float hranges[2]; const float* ranges[1]; int ch原创 2013-12-04 21:56:49 · 1026 阅读 · 0 评论 -
Histogram Matching
http://paulbourke.net/texture_colour/equalisation/ Histogram MatchingWritten by Paul BourkeJanuary 2011 Histogram matching is a process where a time series, image, or higher转载 2013-12-14 17:09:40 · 3405 阅读 · 1 评论 -
Computer Graphics and Vision - Technical Annovation
前Google资深研究员赵勇回国创业 专注计算机视觉/模式识别发表于4小时前| 次阅读| 来源优快云| 8 条评论| 作者付江计算机视觉模式识别三维图像传感器摘要:日前,前Google Research研究员、格灵深瞳创始人赵勇在优快云参加主题为“可穿戴计算”的视频谈话节目间隙接受了记者采访,谈到了自己在国内的创业项目。优快云报道(付江/文)日转载 2013-03-12 11:50:04 · 1190 阅读 · 0 评论 -
opencv with opengl support
转载 2013-12-20 18:36:58 · 1411 阅读 · 0 评论 -
windows opengl compile error solution
some .cpp file include header files as followings:#include #include compile this .cpp file on window platform, following errors are arising.1>c:\program files\microsoft sdks\windows\v7.1\原创 2013-12-20 11:47:15 · 2007 阅读 · 0 评论