会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
西北逍遥
每一个不能早起的日子,都是对生命的浪费!
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
85
86
87
88
89
90
91
92
93
···
96
下一页
2018年10月8日
Opencv 计算图片旋转角度
摘要: vector<vector<Point>> vec_point;vector<Vec4i> hireachy;findContours(img_canny1, vec_point, hireachy, RETR_TREE, CHAIN_APPROX_SIMPLE, Point(0, 0));//绘制
阅读全文
posted @ 2018-10-08 15:26 西北逍遥
阅读(2656)
评论(0)
推荐(0)
2018年10月5日
Opencv HOG特征检测
摘要: HOGDescriptor hogDescriptor = HOGDescriptor(); hogDescriptor.setSVMDetector(hogDescriptor.getDefaultPeopleDetector()); vector<Rect> vec_rect; hogDescr
阅读全文
posted @ 2018-10-05 09:50 西北逍遥
阅读(618)
评论(0)
推荐(0)
2018年10月4日
Opencv normalize
摘要: #include <iostream>#include <opencv2/opencv.hpp> using namespace std;using namespace cv; Mat img1, img2, img3, img4, img5, img6, img_result, img_gray1
阅读全文
posted @ 2018-10-04 15:01 西北逍遥
阅读(701)
评论(0)
推荐(0)
Opencv 亚像素级别角点检测
摘要: Size winSize = Size(5,5); Size zerozone = Size(-1,-1); TermCriteria tc = TermCriteria(TermCriteria::EPS + TermCriteria::MAX_ITER, 40, 0.001); cornerSu
阅读全文
posted @ 2018-10-04 12:43 西北逍遥
阅读(639)
评论(0)
推荐(0)
2018年10月3日
Opencv convertScaleAbs
摘要: void cv::convertScaleAbs( cv::InputArray src, // 输入数组 cv::OutputArray dst, // 输出数组 double alpha = 1.0, // 乘数因子 double beta = 0.0 // 偏移量); // Copyright
阅读全文
posted @ 2018-10-03 20:43 西北逍遥
阅读(3041)
评论(0)
推荐(0)
Opencv Shi-Tomasi角点检测
摘要: #include <iostream>#include <opencv2/opencv.hpp> using namespace std;using namespace cv; Mat img1, img2, img3, img4, img5, img6, img_result, img_gray1
阅读全文
posted @ 2018-10-03 20:38 西北逍遥
阅读(739)
评论(0)
推荐(0)
Opencv Harris角点检测
摘要: #include <iostream>#include <opencv2/opencv.hpp> using namespace std;using namespace cv; Mat img1, img2, img3, img4, img5, img6, img_result, img_gray1
阅读全文
posted @ 2018-10-03 20:24 西北逍遥
阅读(1145)
评论(0)
推荐(0)
Opencv 分水岭分割图片
摘要: #include <iostream>#include <opencv2/opencv.hpp> using namespace std;using namespace cv; Mat img1, img2, img3, img4, img5,img6,img_result, img_gray1,
阅读全文
posted @ 2018-10-03 13:17 西北逍遥
阅读(906)
评论(0)
推荐(0)
Opencv Laplace算子
摘要: //通过拉普拉斯-锐化边缘 kernel = (Mat_<float>(3,3)<<1,1,1,1,-8,1,1,1,1);//Laplace算子 filter2D(img2, img_laplance, CV_32F,kernel, Point(-1, -1), 0, BORDER_DEFAULT
阅读全文
posted @ 2018-10-03 10:04 西北逍遥
阅读(475)
评论(0)
推荐(0)
2018年10月2日
Opencv 图像矩
摘要: #include <iostream>#include <opencv2/opencv.hpp> using namespace std;using namespace cv; Mat img1, img2, img3, img4, img_result, img_gray1, img_gray2,
阅读全文
posted @ 2018-10-02 19:50 西北逍遥
阅读(210)
评论(0)
推荐(0)
Opencv Convex Hull (凸包)
摘要: #include <iostream>#include <opencv2/opencv.hpp> using namespace std;using namespace cv; Mat img1, img2, img3, img4, img_result, img_gray1, img_gray2,
阅读全文
posted @ 2018-10-02 16:47 西北逍遥
阅读(798)
评论(0)
推荐(0)
Opencv 发现轮廓 findContours
摘要: vector<vector<Point>> vec_p; vector<Vec4i> vec_4f; findContours(img_canny1, vec_p, vec_4f,RETR_TREE, CHAIN_APPROX_SIMPLE, Point(0, 0)); drawContours(i
阅读全文
posted @ 2018-10-02 16:25 西北逍遥
阅读(2719)
评论(0)
推荐(0)
Opencv Match Template(轮廓匹配)
摘要: #include <iostream>#include <opencv2/opencv.hpp> using namespace std;using namespace cv; Mat img1, img2, img3, img4,img_result, img_gray1, img_gray2,
阅读全文
posted @ 2018-10-02 16:00 西北逍遥
阅读(3725)
评论(0)
推荐(0)
Opencv 直方图比较
摘要: #include <iostream>#include <opencv2/opencv.hpp> using namespace std;using namespace cv; Mat img1, img2, img3, img_result, img_gray1, img_gray2, img_g
阅读全文
posted @ 2018-10-02 15:18 西北逍遥
阅读(214)
评论(0)
推荐(0)
Opencv 图片直方图
摘要: #include <iostream>#include <opencv2/opencv.hpp> using namespace std;using namespace cv; Mat img1, img2, img3, img_gray, map_x, map_y; char win1[] = "
阅读全文
posted @ 2018-10-02 13:49 西北逍遥
阅读(300)
评论(0)
推荐(0)
2018年10月1日
Opencv Canny
摘要: #include <iostream>#include <opencv2/opencv.hpp> using namespace std;using namespace cv; Mat img1, img2, img3, img_gray, kernel_x, kernel_y; char win1
阅读全文
posted @ 2018-10-01 20:42 西北逍遥
阅读(223)
评论(0)
推荐(0)
Opencv threshold
摘要: 图像的二值化就是将图像上的像素点的灰度值设置为0或255,这样将使整个图像呈现出明显的黑白效果。在数字图像处理中,二值图像占有非常重要的地位,图像的二值化使图像中数据量大为减少,从而能凸显出目标的轮廓。 threshold( InputArray src, OutputArray dst, doub
阅读全文
posted @ 2018-10-01 20:33 西北逍遥
阅读(368)
评论(0)
推荐(0)
Opencv3 Robert算子 Sobel算子 拉普拉斯算子 自定义卷积核——实现渐进模糊
摘要: #include <iostream>#include <opencv2/opencv.hpp> using namespace std;using namespace cv; //Robert算子int Demo_Robert(){ char win1[] = "window1"; char wi
阅读全文
posted @ 2018-10-01 17:16 西北逍遥
阅读(2504)
评论(3)
推荐(0)
Opencv3 形态学操作
摘要: #include <iostream>#include <opencv2/opencv.hpp> using namespace std;using namespace cv; //形态学操作int Demo_Morphology(){ char win1[] = "window1"; char w
阅读全文
posted @ 2018-10-01 10:10 西北逍遥
阅读(156)
评论(0)
推荐(0)
Opencv3 图片膨胀与腐蚀
摘要: #include <iostream>#include <opencv2/opencv.hpp> using namespace std;using namespace cv; int elementSize = 3;int maxSize = 260; int Demo_Load_Img(); /
阅读全文
posted @ 2018-10-01 08:57 西北逍遥
阅读(642)
评论(0)
推荐(0)
2018年9月30日
opencv3 图片模糊操作-均值滤波 高斯滤波 中值滤波 双边滤波
摘要: #include <iostream>#include <opencv2/opencv.hpp> using namespace std;using namespace cv; //均值滤波模糊处理int demo_blur(){ char win1[] = "window1"; char win2
阅读全文
posted @ 2018-09-30 21:24 西北逍遥
阅读(349)
评论(0)
推荐(0)
2018年9月26日
Realsense D430 python pointclound
摘要: 来自:https://github.com/IntelRealSense/librealsense/issues/1231 import pyrealsense2 as rs pipeline = rs.pipeline() pipe_profile = pipeline.start() frame
阅读全文
posted @ 2018-09-26 20:56 西北逍遥
阅读(1543)
评论(0)
推荐(0)
2018年9月22日
opencv3读取视频并保存为图片
摘要: #include <iostream> #include <vector> #include <opencv2/opencv.hpp> using namespace std;using namespace cv; void readvideoandsaveimage(string video, s
阅读全文
posted @ 2018-09-22 20:09 西北逍遥
阅读(627)
评论(0)
推荐(0)
2018年9月21日
Opencv3 Mat对象构造函数与常用方法
摘要: 构造函数 Mat() Mat(int rows,int cols,int type) Mat(Size size,int type) Mat(int rows,int cols,int type,const Scalar &s) Mat(Size size,int type,const Scalar
阅读全文
posted @ 2018-09-21 13:50 西北逍遥
阅读(1474)
评论(0)
推荐(0)
2018年9月20日
掩膜
摘要: Mat kernel = (Mat_<char>(3, 3) << 0, -1, 0, -1, 5, -1, 0, -1, 0); filter2D(img1, img2, img1.depth(), kernel);
阅读全文
posted @ 2018-09-20 13:55 西北逍遥
阅读(208)
评论(0)
推荐(0)
2018年9月19日
Opencv图像变成灰度图像、取反图像
摘要: #include <iostream>#include <opencv2/opencv.hpp> using namespace cv;using namespace std; int main(int argc,char** argv) { Mat img1, img2,img3,img1_1;
阅读全文
posted @ 2018-09-19 17:28 西北逍遥
阅读(3488)
评论(0)
推荐(0)
ubuntu16.04 安装openpose
摘要: 安装 Anaconda3 Tensorflow-cpu python3tensorflow 1.4.1+opencv3, protobuf, python3-tk (flappbird) luo@luo-ThinkPad-W540:OpenPose$ (flappbird) luo@luo-Thin
阅读全文
posted @ 2018-09-19 17:05 西北逍遥
阅读(3320)
评论(0)
推荐(0)
Mask_RCNN openpose AlphaPose Kinect姿态识别
摘要: 1、Mask_RCNN 2、openpose 3、AlphaPose 4、Kinect
阅读全文
posted @ 2018-09-19 15:50 西北逍遥
阅读(3347)
评论(0)
推荐(0)
2018年9月18日
opencv掩膜操作
摘要: #include <iostream>#include <opencv2/opencv.hpp> using namespace std;using namespace cv; /***opencv自带的掩膜操作API*/int test2(){ Mat img1, img2, img3; img1
阅读全文
posted @ 2018-09-18 15:51 西北逍遥
阅读(253)
评论(0)
推荐(0)
2018年9月17日
AlphaPose ubuntu16 python2安装
摘要: #https://www.tensorflow.org/install/install_linux#ValidateYourInstallation #https://github.com/MVIG-SJTU/AlphaPose #https://github.com/torch/distro gb
阅读全文
posted @ 2018-09-17 12:12 西北逍遥
阅读(1466)
评论(0)
推荐(0)
上一页
1
···
85
86
87
88
89
90
91
92
93
···
96
下一页
公告