OpenCV
惜缘865
与其朝三暮四,不如选择一个领域深扎下去。
展开
-
opencv windows
OpenCV: Installation in WindowsOpenCV: How to build applications with OpenCV inside the "Microsoft Visual Studio"原创 2021-10-22 09:37:53 · 205 阅读 · 0 评论 -
HSV颜色空间
1.HSV是一种将RGB色彩空间中的点在倒圆锥体中的表示方法。HSV即色相(Hue)、饱和度(Saturation)、亮度(Value)。色调(H):用角度度量,取值范围为0°~360°,从红色开始按逆时针方向计算,红色为0°,绿色为120°,蓝色为240°。它们的补色是:黄色为60°,青色为180°,品红为300°;饱和度(S)表示颜色接近光谱色的程度。一种颜色,可以看成是某种光谱色与白...原创 2019-01-17 16:00:20 · 29733 阅读 · 1 评论 -
目标跟踪算法分类
本文转载自:https://www.cnblogs.com/necp-zwl/p/6486326.html上一篇文章写了:跟踪颜色块,自我感觉优化的空间很大,转载他人文章学习一下。运动目标跟踪主流算法大致分类主要基于两种思路:a)不依赖于先验知识,直接从图像序列中检测到运动目标,并进行目标识别,最终跟踪感兴趣的运动目标; b)依赖于目标的先验知识,首先为运动目标建模,然后在图像序...转载 2019-01-17 15:33:01 · 5802 阅读 · 0 评论 -
Android JNI 中使用OpenCV (颜色块跟踪)
Pre:Android NDK 开发:https://blog.csdn.net/u011608180/article/details/85063634 Android JNI 中使用OpenCV:https://blog.csdn.net/u011608180/article/details/85244329 HSV颜色空间详解:https://blog....原创 2019-01-17 14:30:28 · 1055 阅读 · 1 评论 -
Android JNI 中使用OpenCV (RGB图像转灰度图像)
前面两篇blog:1.Android 获取Camera图像数据:https://blog.csdn.net/u011608180/article/details/850722522.Android NDK 开发:https://blog.csdn.net/u011608180/article/details/85063634本篇blog的内容是:如何在JNI中使用OpenCV处理Cam...原创 2018-12-25 11:47:47 · 1488 阅读 · 0 评论 -
Histogram of Oriented Gradients
原文链接:https://www.learnopencv.com/histogram-of-oriented-gradients/In this post, we will learn the details of the Histogram of Oriented Gradients (HOG) feature descriptor. We will learn what is unde...转载 2018-12-18 11:51:12 · 651 阅读 · 0 评论 -
Image Recognition and Object Detection
原文地址:https://www.learnopencv.com/image-recognition-and-object-detection-part1/In this part, we will briefly explain image recognition using traditional computer vision techniques. I refer to techniq...转载 2018-12-18 11:11:25 · 1099 阅读 · 0 评论 -
OpenCV split函数与merge函数
splitDivides a multi-channel array into several single-channel arrays.C++: void split(const Mat& src, Mat* mvbegin)C++: void split(InputArray m, OutputArrayOfArrays mv)Python: cv2.split(m[...原创 2018-12-17 16:06:58 · 1200 阅读 · 0 评论 -
OpenCV Introduction(译)
原文链接:https://blog.csdn.net/u011608180/article/details/84842086介绍¶OpenCV(开源计算机视觉库:http://opencv.org)是一个开源的BSD许可库,包含数百种计算机视觉算法。该文档描述了所谓的OpenCV 2.x API,它本质上是一个C ++ API,与基于C的OpenCV 1.x API相反。后者在opencv...翻译 2018-12-10 20:10:30 · 284 阅读 · 0 评论