
opencv
pauper
喜欢图像处理及机器视觉研究。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
opencv实现图像缩放及canny边缘处理
// ZoomCanny.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include "highgui.h" #include "cv.h" IplImage* doPyrDown(IplImage* in, int filter = IPL_GAUS原创 2012-01-09 11:09:47 · 1341 阅读 · 0 评论 -
色彩视频文件转换为灰度格式
// video.cpp : Defines the entry point for the console application. //convert a video to grayscale //argv[1]: input video file //argv[2]: name of new output file #include "stdafx.h" #include转载 2012-01-09 17:37:08 · 1181 阅读 · 0 评论 -
opencv第三章习题2
下面这个练习是帮助掌握矩阵类型。创造一个三通道二维矩阵,字节类型,大小为100× 100,并设置所有数值为 0。 a. 在矩阵中使用 void cvCircle(CvArr* img, CvPoint center, intradius, CvScalar color, int thickness=1, i nt line_type=8, int shift=0)画一个圆。原创 2012-05-24 16:14:02 · 1235 阅读 · 0 评论 -
opencv第三章习题参考
习题做的比较马虎,见谅。 3.2 // opencv_3_2.cpp : Defines the entry point for the console application. #include "stdafx.h" #include "highgui.h" #include "cv.h" int main(int argc, char* argv[]) { CvMat* m原创 2012-06-14 20:25:46 · 1192 阅读 · 0 评论 -
有关cvLaplace函数和cvSobel函数的参数及显示处理后的图片问题
openCV中 有关cvLaplace函数和cvSobel函数的参数及显示处理后的图片问题。 cvLaplace函数可以将IPL_DEPTH_8U的图像转换成IPL_DEPTH_16S,IPL_DEPTH_32S,IPL_DEPTH_16U等的图像,效果参见图一。但是目标图像不能也是IPL_DEPTH_8U,显示处理后的图像时(即使用cvShowImage时)又必须转换回IPL_DEPTH_8U转载 2012-10-29 19:30:35 · 1650 阅读 · 0 评论