
opencv
文章平均质量分 57
走投无路的乐乐
这个作者很懒,什么都没留下…
展开
-
ubuntu下配置opencv3.4.1+opencv_contrib3.4.1
首先,你所下载的opencv与opencv_contrib一定要版本一致!!!注意:不要直接使用从官网上clone下来的opencv_contrib-master。不然的话会导致很多编译错误。之前我就一直使用opencv_contrib-master和opencv3.4.1一起编译,结果一直出错,然后网上又有大量的博客告诉你怎样解决,结果发现都是在扯淡,都是在误导人。你只需要opencv和open...原创 2018-05-21 19:12:23 · 5011 阅读 · 2 评论 -
Canny边缘检测原理
GoalIn this chapter, we will learn aboutConcept of Canny edge detection OpenCV functions for that : cv.Canny()TheoryCanny Edge Detection is a popular edge detection algorithm. It was developed...原创 2019-01-03 11:24:15 · 764 阅读 · 0 评论 -
Moments
原创 2019-01-07 10:45:35 · 491 阅读 · 0 评论 -
Bilateral Filtering for Gray and Color Images
Introduction The Idea The Gaussian Case Experiments with Black-and-White Images Experiments with Color Images ReferencesIntroductionFiltering is perhaps the most fundamental operation of image...原创 2019-01-07 08:47:10 · 1745 阅读 · 0 评论 -
Hough Transform
Hough Transform Common Names: Hough transform Brief DescriptionThe Hough transform is a technique which can be used to isolate features of a particular shape within an image. Because it requ...原创 2019-01-03 16:18:40 · 489 阅读 · 0 评论 -
摄像机标定2 原理篇
转载 摄像机标定http://blog.youkuaiyun.com/tiemaxiaosu/article/details/51728961一、概述1、摄像机标定内容 摄像机标定实际上是要求出6个外参数、5个内参数,即旋转和平移矩阵 R 和 T 中的三个坐标系旋转角度和坐标系平移量 (fu = f/Sx, fv = f/Sy, u0, v0, u),以及各种畸变系数 k1、k2、...转载 2018-12-10 08:42:58 · 1974 阅读 · 0 评论 -
SIFT
// tt.cpp : 定义控制台应用程序的入口点。//// Text1.cpp : 定义控制台应用程序的入口点。// #include "stdafx.h"#include<stdlib.h>#include "stdlib.h" #include "string.h" #include "malloc.h" #include "math.h"转载 2018-11-30 15:14:58 · 667 阅读 · 0 评论 -
HOG做目标检测步骤
This method can be broken into a 6-step process, including:Sampling positive images Sampling negative images Training a Linear SVM Performing hard-negative mining Re-training your Linear SVM usi...原创 2018-11-15 20:19:36 · 437 阅读 · 0 评论 -
opencv中的函数
gray = cv2.bilateralFilter(gray, 11, 17, 17)双边滤波器(Bilateral filter)是一种可以保边去噪的滤波器。可以滤除图像数据中的噪声,且还会保留住图像的边缘、纹理等(因噪声是高频信号,边缘、纹理也是高频信息,高斯滤波会在滤除噪声的同时使得边缘模糊)。那这么优秀的一个滤波器,他到底是个什么呢,其实,它和我们普通的高斯滤波器一样,也是使用一个卷...原创 2018-10-24 15:31:09 · 485 阅读 · 0 评论 -
LBP
What are Local Binary Patterns?Local Binary Patterns, or LBPs for short, are a texture descriptor made popular by the work of Ojala et al. in their 2002 paper, Multiresolution Grayscale and Rotation...转载 2019-01-13 13:54:18 · 1921 阅读 · 1 评论