摘要: 环境变量分为系统环境变量和用户环境变量。 你所说的环境变量是指系统环境变量,对所有用户起作用 而用户环境变量只对当前用户起作用。 例如你要用java,那么你把java的bin目录加入到path变量下面,那么它就是系统环境变量,所用用户登陆,在命令行输入java都会有java的帮助信息出来。而如果你在 阅读全文
posted @ 2016-05-06 22:37 张飞online 阅读(1209) 评论(0) 推荐(0) 编辑
摘要: JDK : Java Development Toolkit (java 开发工具包)。 JDK是整个JAVA的核心,包括了java运行环境(Java Runtime Envirnmet),一堆java工具(javac、java,jdb等)和java基础的类库(即 java API 包括rt.jar 阅读全文
posted @ 2016-05-06 22:14 张飞online 阅读(207) 评论(0) 推荐(0) 编辑
摘要: 《将博客搬至CSDN》的文章,并将文章地址填写在上方的"搬家通知博文地址"中。) 阅读全文
posted @ 2016-05-06 13:22 张飞online 阅读(138) 评论(0) 推荐(0) 编辑
摘要: (12) man作用:查询man手册,获得帮助信息man 1 ls 1表示查询的是linux命令man 2 xxx 2表示查询的是linux apiman 3 xxx 3表示查询的是C库函数注意:在man手册中查询时,退出按Q键(Q就是quit的缩写) (12) apt-get作用:在ubuntu中 阅读全文
posted @ 2016-05-06 13:13 张飞online 阅读(266) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <cv.h> #include <highgui.h> #include <cvaux.h> int main(void) { int i = 40; IplImage *img = cvLoadImage("6013202130.bmp", 阅读全文
posted @ 2016-05-06 13:05 张飞online 阅读(1960) 评论(0) 推荐(0) 编辑
摘要: #include <opencv2/opencv.hpp> #include<opencv2/highgui/highgui.hpp> #include<opencv2/imgproc/imgproc.hpp> using namespace cv; int main() { Mat grad_x, 阅读全文
posted @ 2016-05-06 13:04 张飞online 阅读(2317) 评论(0) 推荐(0) 编辑
摘要: #include <cv.h> #include <highgui.h> #define GrayScale 256 int mytsu( IplImage *frame); int main() { int a=0; IplImage * test; IplImage * test_1; test 阅读全文
posted @ 2016-05-06 13:03 张飞online 阅读(1232) 评论(0) 推荐(0) 编辑
摘要: #include <cv.h> #include <highgui.h> //图像视频输出/输入头文件 using namespace std; IplImage* AddGuassianNoise(IplImage* src) //添加高斯噪声 { IplImage* dst = cvCreate 阅读全文
posted @ 2016-05-06 13:02 张飞online 阅读(931) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <opencv2\core\core.hpp> #include <opencv2\highgui\highgui.hpp> #include <opencv2\imgproc\imgproc.hpp> using namespace std 阅读全文
posted @ 2016-05-06 12:54 张飞online 阅读(1342) 评论(0) 推荐(0) 编辑
摘要: #include <opencv2/opencv.hpp> #include <highgui.h> #include <cv.h> IplImage* TO_junhenghua(IplImage *pImage); int main(int argc, char** argv) { // 从文件 阅读全文
posted @ 2016-05-06 12:52 张飞online 阅读(453) 评论(0) 推荐(0) 编辑
摘要: 实验八 #include <cv.h> #include <highgui.h> //图像视频输出/输入头文件 int main() { IplImage * test; IplImage * test_1; test = cvLoadImage("6013202130.bmp",0);//图片路径 阅读全文
posted @ 2016-05-06 12:51 张飞online 阅读(808) 评论(0) 推荐(0) 编辑
摘要: #include <cxcore.h> #include <cv.h> #include <highgui.h> void cvDcT(CvArr * src_arr, CvArr * dst_arr) { CvMat * tmp; CvMat q1stub, q2stub; CvMat q3stu 阅读全文
posted @ 2016-05-06 12:49 张飞online 阅读(794) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <cv.h> #include <cxcore.h> #include <highgui.h> void fft2(IplImage *src, IplImage *dst) { IplImage *image_Re = 0, *image_I 阅读全文
posted @ 2016-05-06 12:41 张飞online 阅读(7377) 评论(0) 推荐(0) 编辑
摘要: #include <cv.h> #include <highgui.h> # include <math.h> #define M_PI 3.1415 void RGB_to_HSI(IplImage *src, IplImage *dst); int main(void) { IplImage * 阅读全文
posted @ 2016-05-06 12:40 张飞online 阅读(814) 评论(0) 推荐(0) 编辑
摘要: #include <cv.h> #include <highgui.h> int main(void) { IplImage* oo = cvLoadImage("6013202130.jpg", 1); IplImage * Red = cvCreateImage(cvGetSize(oo), 8 阅读全文
posted @ 2016-05-06 12:38 张飞online 阅读(607) 评论(0) 推荐(0) 编辑
摘要: #include <opencv/cv.h> #include <opencv/highgui.h> IplImage *rotateImage(const IplImage *src, int angleDegrees) { IplImage *imageRotated = cvCloneImag 阅读全文
posted @ 2016-05-06 12:37 张飞online 阅读(509) 评论(0) 推荐(0) 编辑
摘要: 实验二 #include "cv.h" #include<stdio.h> #include "highgui.h" IplImage *PingYi(IplImage *src, int h0, int w0); int main(int argc, char** argv) { IplImage 阅读全文
posted @ 2016-05-06 12:35 张飞online 阅读(484) 评论(0) 推荐(0) 编辑