- 博客(6)
- 资源 (2)
- 收藏
- 关注
原创 opencv批量读取图片并剪裁成固定大小存入本地文件夹
运行环境为vs2017+opencv3.4 debug模式 x64#include <iostream>#include <fstream>#include <stdlib.h> //srand()和rand()函数#include <time.h> //time()函数#include <opencv2/core/core.hpp&g...
2018-03-25 17:33:39
3552
原创 openCV3 Mat图像转化为IplImage图像并显示
#include<opencv2\opencv.hpp>#include<highgui.h>using namespace cv;int main(){ Mat image = imread ("1.jpg"); IplImage result = IplImage(image); const CvArr* I = (CvArr*)&result;...
2018-03-23 11:16:27
1813
原创 爬出某电影网站上电影下载地址的简单爬虫程序
# -*- coding: utf-8 -*-"""Created on Mon Jan 29 10:19:26 2018@author: dell"""#导入模块import requests#网络请求模块import re#提取数据#import time#time.sleepfor n in range(1,10): #网址 a_url = 'htt
2018-01-29 21:09:59
3061
原创 利用颜色直方图计算8张图片的相似度,并按相似度的高低依次显示出图片
#include "opencv2/highgui/highgui.hpp"#include "opencv2/imgproc/imgproc.hpp"using namespace cv;int main(){ Mat srcImage_test1, hsvImage_test1; Mat srcImage_test2, hsvImage_test2; Mat srcImage_
2018-01-28 10:11:54
4203
2
原创 输出图像的BGR三个通道的颜色直方图
#include #include using namespace cv; int main( ){ Mat srcImage; srcImage=imread("8.jpg"); imshow( "素材图", srcImage ); int bins = 256; int hist_size[] = {bins}; float range[] = { 0, 25
2018-01-28 10:03:41
4723
1
原创 vs2010+opencv249人脸正侧脸摄像头实时检测并调用对应不同小视频
#include #include #include #include #include #include #include#include void facedetection(int x);void avatar0();void avatar1();int main (){ CvCapture *capture=cvCreateCamera
2017-12-24 16:01:59
1723
ransac_circle.py
2019-12-02
图像清晰度评价指标Matlab 熵、交叉熵、峰值信噪比、Qabf、平均梯度、SSIM、互信息、NMI.zip
2019-11-07
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人