搜索资源列表
watermark-openCV2.3.1
- 给图像添加任意文字水印,可传入参数是文字内容,输入图片路径,文字颜色,大小,保存图片路径。支持中文输出!VS下C++编程,使用openCV 2.3.1-To add any text watermark image, but to parameter is the text content, input image path, text color, size, save image path. Support Chinese output! Under the VS C++ programmi
FaceDetection
- 采用openCV编写的人脸检测程序,可直接运行,输入参数为一幅图像,输出图像中将人脸的位置圈出来-Prepared by openCV face detection process, can be directly run, input parameters for an image, the output image will circle the location of the face
Cell
- 细胞图像分析输入:图像文件cell1.bmp 输出要求: 1. 该图像中的细胞数量; 2. 最大细胞的面积、周长(以像素为单位)、方向、该细胞的中心位置; 3. 最小细胞的面积、周长(以像素为单位)、方向、该细胞的中心位置; 4. 所有细胞的平均面积(以像素为单位); 5. 将主要的中间步骤处理结果的图像都用OpenCV 的cvShowImage 显示出来。-Cell image analysis type: image file cell1.bmp output req
Oval
- 圆及椭圆拟合输入: 图像文件seal1.jpg、seal2.jpg、coin1.jpg 任务: 尝试将上述三个文件中圆或椭圆的外轮廓拟合出来 输出要求: 1. 每个拟合圆或椭圆的中心坐标,半径或长短轴长度; 2. 将主要的中间步骤及最终拟合结果用OpenCV的cvShowImage 显示出来。-Circle and ellipse fitting type: image file seal1.jpg, seal2.jpg, coin1.jpg task: Try the
CV_Pro
- 利用openvc对视频的处理,输入为yuv视频,输出也是yuv视频,中值滤波、膨胀、腐蚀等。里面包含yuv到rgb的转换-Processing video with OpenCV,including median filtering, expansion, corrosion, etc.the file format is yuv.This program contain the convert of yuv to rgb too.
FrameStatistics
- 对输入的视频进行直方图统计,并以最终输出得到的直方图。-Histogram of the input video and the histogram of the final output.
3
- 输入: 自拍两幅同一个场景(或物体)的角度/远近有差别的图像 (对于学有余力的同学,建议多测试几张角度/远近差别较大的图像) 任务: 在每张图像中检测特征点位置并将匹配画出匹配得最好的10-20对特征点 输出要求(以下三个结果分别输出,不要重叠在一张图上): 1. 在两张图上分别画出检测到的特征点位置 2. 对匹配得最好的10-20对特征点:每对特征点对用连接线画出 3. 用椭圆形式在图上画出上述每个特征点的描述子方向与尺度等信息 编程工具: Visual
ImageHist
- 直接输入一张图片,输出图像三通道直方图显示-Direct input of a picture, three-channel output image histogram display
1GHY3249TIQU1
- 基于canny算子的边界提取 cvCanny 采用 CANNY 算法发现输入图像的边缘而且在输出图像中标识这些边缘-Based on the the canny operator' s boundary extracted cvCanny CANNY algorithms found the edge of the input image and identify these edge in the output image
crop
- 一个图像裁剪程序,输入两张图片,一张原图,另一张原图的重要性区域特征图,输出为基于原图裁剪的一张缩略图-The a image cropping program, enter the two pictures, one artwork, another Original importance of regional characteristics diagram, the output is based on the original image cropped a thumbnail
lib0
- OPCV源码,一组OPCV输入/输出/显示函数的集合-A group OPCV input/output/display aggregate functions
opencv
- 学习使用OpenCV,对输入的一段彩色视频,用OpenCV实现以下功能或要求: 1. 对输入视频的每一帧图像都用同一个阈值进行二值化; 2.在每帧二值化图像上叠加上含自己学号与姓名等信息的版权字幕; 3. 在处理的过程中,实时显示每帧图片处理之后的效果; 4.将所有这些二值化图像按视频原来顺序合成输出一个视频文件,按原输入视频播放速度的两倍合成; 5. 做成如下的命令行格式,xxx.exe 输入视频文件名 二值化阈值 输出视频文件名(例如 MyBiVideo.exe in
2_1
- 实现视频的输入和输出,基于opencv的操作,简单方便-For video input and output, opencv based operation, simple and convenient
binary-video
- 学习使用OpenCV,对输入的一段彩色视频,用OpenCV实现以下功能或要求: 1. 对输入视频的每一帧图像都用同一个阈值进行二值化; 2.在每帧二值化图像上叠加上含自己学号与姓名等信息的版权字幕; 3. 在处理的过程中,实时显示每帧图片处理之后的效果; 4.将所有这些二值化图像按视频原来顺序合成输出一个视频文件,按原输入视频播放速度的两倍合成; 5. 做成如下的命令行格式,xxx.exe 输入视频文件名 二值化阈值 输出视频文件名(例如 MyBiVideo.exe in
MinAreaFilter
- 用OPENCV中的序列实现将低于设定阈值面积的连通域从图像中去除的函数,输入输出图像需为二值图像.-With OPENCV in sequence implements will be lower than the set threshold value of the communication area removed the image domain function, for an input-output image is a binary image.
calcHist
- 对输入的视频进行直方图统计,并以最终输出得到的直方图-The video input histogram statistics, and the final output resulting histogram
HarrisCorner
- 对输入的一张彩色图像,自己写代码实现Harris Corner 检测算法: 1. 不能直接调用OpenCV 里面与Harris 角点检测相关的一些函数; 2. 只能用C/C++,不能用其他语言; 3. GUI 只能用自带的HighGUI,不能用QT 或其他的; 4. 平台可以用Windows, Linux, MacOS; 5. 显示中间的处理结果及最终的检测结果,包括最大特征值图,最小特征值图,R 图(可以考虑彩色 展示),原图上叠加检测结果等,并将这些中间结果都输出成图
mirror_horizontally_image
- 利用Opencv,对输入图像进行水平镜像翻转操作,输出镜像后的图像。(mirror_horizontally_image)
readvideo
- 我们要指定一个函数(回调函数),视频序列的每一帧都会调用它。该函数定义为输入一个mat视力,输出一个处理完毕的帧。(vs c++ use opencv to image canny)
基本载入输出
- 实现基本图像的输入输出,opencv入门教程,可以实现加载图片,有注释,方便入门(Realize the input and output of basic image)