基本信息
源码名称:Qt-5-and-OpenCV-4-Computer-Vision-Projects-master.zip
源码大小:3.34M
文件格式:.zip
开发语言:C/C++
更新时间:2023-07-23
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
Qt-5-and-OpenCV-4-Computer-Vision-Projects-master 书本配套源码
.
├── Qt-5-and-OpenCV-4-Computer-Vision-Projects-master
│ ├── Chapter-01
│ │ └── ImageViewer
│ │ ├── ImageViewer.pro
│ │ ├── main.cpp
│ │ ├── mainwindow.cpp
│ │ └── mainwindow.h
│ ├── Chapter-02
│ │ ├── AffinePlugin
│ │ │ ├── AffinePlugin.pro
│ │ │ ├── affine_plugin.cpp
│ │ │ └── affine_plugin.h
│ │ ├── CartoonPlugin
│ │ │ ├── CartoonPlugin.pro
│ │ │ ├── cartoon_plugin.cpp
│ │ │ └── cartoon_plugin.h
│ │ ├── ErodePlugin
│ │ │ ├── ErodePlugin.pro
│ │ │ ├── erode_plugin.cpp
│ │ │ └── erode_plugin.h
│ │ ├── ImageEditor
│ │ │ ├── ImageEditor.pro
│ │ │ ├── editor_plugin_interface.h
│ │ │ ├── main.cpp
│ │ │ ├── mainwindow.cpp
│ │ │ ├── mainwindow.h
│ │ │ └── plugins
│ │ ├── RotatePlugin
│ │ │ ├── RotatePlugin.pro
│ │ │ ├── rotate_plugin.cpp
│ │ │ └── rotate_plugin.h
│ │ └── SharpenPlugin
│ │ ├── SharpenPlugin.pro
│ │ ├── sharpen_plugin.cpp
│ │ └── sharpen_plugin.h
│ ├── Chapter-03
│ │ └── Gazer
│ │ ├── Gazer.pro
│ │ ├── capture_thread.cpp
│ │ ├── capture_thread.h
│ │ ├── main.cpp
│ │ ├── mainwindow.cpp
│ │ ├── mainwindow.h
│ │ ├── utilities.cpp
│ │ └── utilities.h
│ ├── Chapter-04
│ │ └── Facetious
│ │ ├── Facetious.pro
│ │ ├── capture_thread.cpp
│ │ ├── capture_thread.h
│ │ ├── data
│ │ │ └── README.txt
│ │ ├── images
│ │ │ ├── glasses.jpg
│ │ │ ├── mouse-nose.jpg
│ │ │ └── mustache.jpg
│ │ ├── images.qrc
│ │ ├── main.cpp
│ │ ├── mainwindow.cpp
│ │ ├── mainwindow.h
│ │ ├── utilities.cpp
│ │ └── utilities.h
│ ├── Chapter-05
│ │ └── Literacy
│ │ ├── Literacy.pro
│ │ ├── main.cpp
│ │ ├── mainwindow.cpp
│ │ ├── mainwindow.h
│ │ ├── screencapturer.cpp
│ │ └── screencapturer.h
│ ├── Chapter-06
│ │ ├── Detective
│ │ │ ├── Detective.pro
│ │ │ ├── capture_thread.cpp
│ │ │ ├── capture_thread.h
│ │ │ ├── main.cpp
│ │ │ ├── mainwindow.cpp
│ │ │ ├── mainwindow.h
│ │ │ ├── utilities.cpp
│ │ │ └── utilities.h
│ │ ├── boston-bull
│ │ │ ├── bg.txt
│ │ │ ├── boston-bull-predict.png
│ │ │ ├── cascade.xml
│ │ │ ├── info.txt
│ │ │ ├── test-visualisation.png
│ │ │ └── train.sh
│ │ └── no-entry
│ │ ├── background
│ │ │ ├── traffic-sign-bg-0.png
│ │ │ ├── traffic-sign-bg-1.png
│ │ │ ├── traffic-sign-bg-2.png
│ │ │ └── traffic-sign-bg-3.png
│ │ ├── bg.txt
│ │ ├── cascade.xml
│ │ ├── no-entry-predict.png
│ │ ├── no-entry.png
│ │ └── train.sh
│ ├── Chapter-07
│ │ └── DiGauge
│ │ ├── DiGauge.pro
│ │ ├── capture_thread.cpp
│ │ ├── capture_thread.h
│ │ ├── main.cpp
│ │ ├── mainwindow.cpp
│ │ ├── mainwindow.h
│ │ ├── utilities.cpp
│ │ └── utilities.h
│ ├── Chapter-08
│ │ ├── CVGLContext
│ │ │ ├── Makefile
│ │ │ └── main.c
│ │ ├── GLFilter
│ │ │ ├── GLFilter.pro
│ │ │ ├── glpanel.cpp
│ │ │ ├── glpanel.h
│ │ │ ├── images
│ │ │ │ └── lizard.jpg
│ │ │ ├── main.cpp
│ │ │ ├── res.qrc
│ │ │ └── shaders
│ │ │ ├── fragment.shader
│ │ │ └── vertex.shader
│ │ ├── Hello-OpenGL
│ │ │ ├── Makefile
│ │ │ └── main.c
│ │ └── QtGL
│ │ ├── QtGL.pro
│ │ ├── glpanel.cpp
│ │ ├── glpanel.h
│ │ ├── main.cpp
│ │ ├── shaders
│ │ │ ├── fragment.shader
│ │ │ └── vertex.shader
│ │ └── shaders.qrc
│ ├── LICENSE
│ ├── README.md
│ └── WireFrames.epgz
└── Qt-5-and-OpenCV-4-Computer-Vision-Projects-master 书本配套源码_Qt-5-and-OpenCV-4-Computer-Vision-Projects-master.zip
34 directories, 105 files
Qt-5-and-OpenCV-4-Computer-Vision-Projects-master 书本配套源码
.
├── Qt-5-and-OpenCV-4-Computer-Vision-Projects-master
│ ├── Chapter-01
│ │ └── ImageViewer
│ │ ├── ImageViewer.pro
│ │ ├── main.cpp
│ │ ├── mainwindow.cpp
│ │ └── mainwindow.h
│ ├── Chapter-02
│ │ ├── AffinePlugin
│ │ │ ├── AffinePlugin.pro
│ │ │ ├── affine_plugin.cpp
│ │ │ └── affine_plugin.h
│ │ ├── CartoonPlugin
│ │ │ ├── CartoonPlugin.pro
│ │ │ ├── cartoon_plugin.cpp
│ │ │ └── cartoon_plugin.h
│ │ ├── ErodePlugin
│ │ │ ├── ErodePlugin.pro
│ │ │ ├── erode_plugin.cpp
│ │ │ └── erode_plugin.h
│ │ ├── ImageEditor
│ │ │ ├── ImageEditor.pro
│ │ │ ├── editor_plugin_interface.h
│ │ │ ├── main.cpp
│ │ │ ├── mainwindow.cpp
│ │ │ ├── mainwindow.h
│ │ │ └── plugins
│ │ ├── RotatePlugin
│ │ │ ├── RotatePlugin.pro
│ │ │ ├── rotate_plugin.cpp
│ │ │ └── rotate_plugin.h
│ │ └── SharpenPlugin
│ │ ├── SharpenPlugin.pro
│ │ ├── sharpen_plugin.cpp
│ │ └── sharpen_plugin.h
│ ├── Chapter-03
│ │ └── Gazer
│ │ ├── Gazer.pro
│ │ ├── capture_thread.cpp
│ │ ├── capture_thread.h
│ │ ├── main.cpp
│ │ ├── mainwindow.cpp
│ │ ├── mainwindow.h
│ │ ├── utilities.cpp
│ │ └── utilities.h
│ ├── Chapter-04
│ │ └── Facetious
│ │ ├── Facetious.pro
│ │ ├── capture_thread.cpp
│ │ ├── capture_thread.h
│ │ ├── data
│ │ │ └── README.txt
│ │ ├── images
│ │ │ ├── glasses.jpg
│ │ │ ├── mouse-nose.jpg
│ │ │ └── mustache.jpg
│ │ ├── images.qrc
│ │ ├── main.cpp
│ │ ├── mainwindow.cpp
│ │ ├── mainwindow.h
│ │ ├── utilities.cpp
│ │ └── utilities.h
│ ├── Chapter-05
│ │ └── Literacy
│ │ ├── Literacy.pro
│ │ ├── main.cpp
│ │ ├── mainwindow.cpp
│ │ ├── mainwindow.h
│ │ ├── screencapturer.cpp
│ │ └── screencapturer.h
│ ├── Chapter-06
│ │ ├── Detective
│ │ │ ├── Detective.pro
│ │ │ ├── capture_thread.cpp
│ │ │ ├── capture_thread.h
│ │ │ ├── main.cpp
│ │ │ ├── mainwindow.cpp
│ │ │ ├── mainwindow.h
│ │ │ ├── utilities.cpp
│ │ │ └── utilities.h
│ │ ├── boston-bull
│ │ │ ├── bg.txt
│ │ │ ├── boston-bull-predict.png
│ │ │ ├── cascade.xml
│ │ │ ├── info.txt
│ │ │ ├── test-visualisation.png
│ │ │ └── train.sh
│ │ └── no-entry
│ │ ├── background
│ │ │ ├── traffic-sign-bg-0.png
│ │ │ ├── traffic-sign-bg-1.png
│ │ │ ├── traffic-sign-bg-2.png
│ │ │ └── traffic-sign-bg-3.png
│ │ ├── bg.txt
│ │ ├── cascade.xml
│ │ ├── no-entry-predict.png
│ │ ├── no-entry.png
│ │ └── train.sh
│ ├── Chapter-07
│ │ └── DiGauge
│ │ ├── DiGauge.pro
│ │ ├── capture_thread.cpp
│ │ ├── capture_thread.h
│ │ ├── main.cpp
│ │ ├── mainwindow.cpp
│ │ ├── mainwindow.h
│ │ ├── utilities.cpp
│ │ └── utilities.h
│ ├── Chapter-08
│ │ ├── CVGLContext
│ │ │ ├── Makefile
│ │ │ └── main.c
│ │ ├── GLFilter
│ │ │ ├── GLFilter.pro
│ │ │ ├── glpanel.cpp
│ │ │ ├── glpanel.h
│ │ │ ├── images
│ │ │ │ └── lizard.jpg
│ │ │ ├── main.cpp
│ │ │ ├── res.qrc
│ │ │ └── shaders
│ │ │ ├── fragment.shader
│ │ │ └── vertex.shader
│ │ ├── Hello-OpenGL
│ │ │ ├── Makefile
│ │ │ └── main.c
│ │ └── QtGL
│ │ ├── QtGL.pro
│ │ ├── glpanel.cpp
│ │ ├── glpanel.h
│ │ ├── main.cpp
│ │ ├── shaders
│ │ │ ├── fragment.shader
│ │ │ └── vertex.shader
│ │ └── shaders.qrc
│ ├── LICENSE
│ ├── README.md
│ └── WireFrames.epgz
└── Qt-5-and-OpenCV-4-Computer-Vision-Projects-master 书本配套源码_Qt-5-and-OpenCV-4-Computer-Vision-Projects-master.zip
34 directories, 105 files