IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 人工智能 -> OpenCV各模块 -> 正文阅读

[人工智能]OpenCV各模块

OpenCV最新版本号为 4.5.5,发行版本中共有 72 个模块,其中主要模块有16个,附加模块有 56 个。

主模块源码地址 opencv/opencv at 4.5.5 (github.com)

附加模块源码地址 opencv/opencv_contrib at 4.5.5 (github.com)

主模块就是从官网下载的预编译版的opencv库中包含的模块,下载后开箱即用。额外模块是一些额外提供的功能模块,这里的模块可能是没有测试稳定的新功能,所以没能作为官方发行版本的一部分,也可能是涉及到一些专利代码,只能放到附加模块中。

主模块

  • core. Core functionality,核心模块,定义了基础类型和基本函数,是其他模块的基础。
  • imgproc. Image Processing,图像处理算法模块,线性或非线性滤波,图像变换等功能。
  • imgcodecs. Image file reading and writing,各图像格式的编解码功能。
  • videoio. Video I/O,视频捕捉和视频编解码器。
  • highgui. High-level GUI,实现了一个简单好用的界面库,显示图像,创建简单的控件等。
  • video. Video Analysis,视频分析模块,包括运动估计,背景减法和目标跟踪算法。
  • calib3d. Camera Calibration and 3D Reconstruction,多视图几何算法,单一和立体相机校准,目标位姿估计,立体匹配,以及三维重建等算法,相机校准。
  • features2d. 2D Features Framework,二维特征检测器、描述符和描述符匹配器。
  • objdetect. Object Detection,人脸、眼睛、人体、车辆等目标检测。
  • dnn. Deep Neural Network module,神经网络相关,构造神经网络、模型加载推理等。
  • ml. Machine Learning,机器学习相关,包含 SVM, MLP, LR, DT 等常见的统计机器学习模型,支持模型训练和预测。 flann. Clustering and Search in Multi-Dimensional Spaces,快速最近邻逼近搜索函数库,角点特征匹配。
  • photo. Computational Photography,计算摄影相关,包含图像修复和去噪等功能。
  • stitching. Images stitching,图像拼接函数库,特征点提取和配准、接缝估计、曝光补偿、图片混合等。
  • gapi. Graph API,即Graph API,高效图像处理 pipeline 引擎集成为opencv_gapi模块,用来加速图像处理。添加CPU_BASELINE=AVX2编译选项可以获得比原来15~30%的速度提升。

附加模块

alphamat. Alpha Matting

aruco. ArUco Marker Detection

barcode. Barcode detecting and decoding methods

bgsegm. Improved Background-Foreground Segmentation Methods

bioinspired. Biologically inspired vision models and derivated tools

ccalib. Custom Calibration Pattern for 3D reconstruction

cudaarithm. Operations on Matrices

cudabgsegm. Background Segmentation

cudacodec. Video Encoding/Decoding

cudafeatures2d. Feature Detection and Description

cudafilters. Image Filtering

cudaimgproc. Image Processing

cudalegacy. Legacy support

cudaobjdetect. Object Detection

cudaoptflow. Optical Flow

cudastereo. Stereo Correspondence

cudawarping. Image Warping

cudev. Device layer

cvv. GUI for Interactive Visual Debugging of Computer Vision Programs

datasets. Framework for working with different datasets

dnn_objdetect. DNN used for object detection

dnn_superres. DNN used for super resolution

dpm. Deformable Part-based Models

face. Face Analysis

freetype. Drawing UTF-8 strings with freetype/harfbuzz

fuzzy. Image processing based on fuzzy mathematics

hdf. Hierarchical Data Format I/O routines

hfs. Hierarchical Feature Selection for Efficient Image Segmentation

img_hash. The module brings implementations of different image hashing algorithms.

intensity_transform. The module brings implementations of intensity transformation algorithms to adjust image contrast.

julia. Julia bindings for OpenCV

line_descriptor. Binary descriptors for lines extracted from an image

mcc. Macbeth Chart module

optflow. Optical Flow Algorithms

ovis. OGRE 3D Visualiser

phase_unwrapping. Phase Unwrapping API

plot. Plot function for Mat data

quality. Image Quality Analysis (IQA) API

rapid. silhouette based 3D object tracking

reg. Image Registration

rgbd. RGB-Depth Processing

saliency. Saliency API

sfm. Structure From Motion

shape. Shape Distance and Matching

stereo. Stereo Correspondance Algorithms

structured_light. Structured Light API

superres. Super Resolution

surface_matching. Surface Matching

text. Scene Text Detection and Recognition

tracking. Tracking API

videostab. Video Stabilization

viz. 3D Visualizer

wechat_qrcode. WeChat QR code detector for detecting and parsing QR code.

xfeatures2d. Extra 2D Features Framework

ximgproc. Extended Image Processing

xobjdetect. Extended object detection

xphoto. Additional photo processing algorithms

  人工智能 最新文章
2022吴恩达机器学习课程——第二课(神经网
第十五章 规则学习
FixMatch: Simplifying Semi-Supervised Le
数据挖掘Java——Kmeans算法的实现
大脑皮层的分割方法
【翻译】GPT-3是如何工作的
论文笔记:TEACHTEXT: CrossModal Generaliz
python从零学(六)
详解Python 3.x 导入(import)
【答读者问27】backtrader不支持最新版本的
上一篇文章      下一篇文章      查看所有文章
加:2022-05-05 11:19:11  更:2022-05-05 11:21:09 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/26 7:33:57-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码