摘要:
作者:gnuhpc 出处:http://www.cnblogs.com/gnuhpc/ 1.RGBA色彩空间基本知识: RGBA stands for R ed G reen B lue A lpha. While it is sometimes described as a color space, it is actually simply a use of the... 阅读全文
摘要:
作者:gnuhpc 出处:http://www.cnblogs.com/gnuhpc/ /*文中出现的注释若为三项注释,则依次为:Offset Size Purpose */#include <iostream>#include <cstdio>#include <cstdlib>#include <cv.h>#include <highgui.h>using name... 阅读全文
摘要:
作者:gnuhpc 出处:http://www.cnblogs.com/gnuhpc/ #!/usr/bin/expect -fset timeout 30spawn ssh -l root 192.168.191.244expect "password:"send "passw0rd/r"send "cd /var/bin/r"send "./apachectl stop/r"sen... 阅读全文
摘要:
作者:gnuhpc 出处:http://www.cnblogs.com/gnuhpc/ #include "cv.h"#include "highgui.h"#include <stdio.h>int ImageAdjust(IplImage *src,IplImage *dst, double low,double high, //x di... 阅读全文
摘要:
作者:gnuhpc 出处:http://www.cnblogs.com/gnuhpc/ #include "cv.h"#include "highgui.h"#include <time.h>#include <math.h>#include <ctype.h>#include <stdio.h>#include <string.h>// various tracking paramet... 阅读全文
摘要:
作者:gnuhpc 出处:http://www.cnblogs.com/gnuhpc/ #include "cv.h"#include "highgui.h"#include <stdio.h>#include <stdlib.h>IplImage* color_img0;IplImage* mask;IplImage* color_img;IplImage* gray_img0 = ... 阅读全文
摘要:
作者:gnuhpc 出处:http://www.cnblogs.com/gnuhpc/ /*******************************数学形态运算,最常见的基本运算有七种,分别为:腐蚀、膨胀、开运算、闭运算、击中、细化和粗化,它们是全部形态学的基础。********************************/#include "cv.h"#include "hig... 阅读全文
摘要:
作者:gnuhpc 出处:http://www.cnblogs.com/gnuhpc/ Linux/Unix 区别于微软平台最大的优点就是真正的多用户,多任务。因此在任务管理上也有别具特色的管理思想。 我们知道,在 Windows 上面,要么让一个程序作为服务在后台一直运行,要么停止这个服务。而不能让程序在前台后台之间切换。而 Linux 提供了 fg 和 bg 命令,让你轻松调度正... 阅读全文
摘要:
作者:gnuhpc 出处:http://www.cnblogs.com/gnuhpc/ #include "cv.h"#include "highgui.h"int main(int argc, char** argv){ IplImage *src; if( argc == 2 && (src=/blog.armyourlife.info/cvLoadImage(argv[... 阅读全文
摘要:
作者:gnuhpc 出处:http://www.cnblogs.com/gnuhpc/ 1.边缘检测: 边缘检测是图像处理和计算机视觉中的基本问题,边缘检测的目的是标识数字图像中亮度变化明显的点。图像属性中的显著变化通常反映了属性的重要事件和变化。这些包括(i)深度上的不连续、(ii)表面方向不连续、(iii)物质属性变化和(iv)场景照明变化。 边缘检测是图像处理和计算... 阅读全文