实例介绍
Learning OpenCV computer vision with the OpenCV library.pdf Mastering OpenCV with Practical Computer Visi.pdf OpenCV 2 Computer Vision Application Programming Cookbook.pdf (--OpenCV 2 计算机视觉编程手册) Opencv-reference-manual-2.3.1.pdf OpenCV 2 计算机视觉编程手册(随书源码及图片) OpenCV教程-基础篇.pdf
【实例截图】
【核心代码】
5a5ffa10-deb3-41be-9768-27c1c806672d
└── OpenCV
├── Learning OpenCV computer vision with the OpenCV library.pdf
├── Mastering OpenCV with Practical Computer Visi.pdf
├── OpenCV 2 Computer Vision Application Programming Cookbook.pdf
├── OpenCV 2 计算机视觉编程手册
│ └── opencv-2-cookbook-src-master
│ ├── Chapter 01
│ │ ├── anotherQtGUI
│ │ │ ├── anotherQtGUI.pro
│ │ │ ├── main.cpp
│ │ │ ├── mainwindow.cpp
│ │ │ ├── mainwindow.h
│ │ │ ├── mainwindow.ui
│ │ │ ├── Makefile
│ │ │ ├── Makefile.Debug
│ │ │ ├── Makefile.Release
│ │ │ └── ui_mainwindow.h
│ │ ├── main1.cpp
│ │ ├── main2.cpp
│ │ ├── myQtConsoleProject.pro
│ │ ├── myQtGUIApp
│ │ │ ├── main.cpp
│ │ │ ├── mainwindow.cpp
│ │ │ ├── mainwindow.h
│ │ │ ├── mainwindow.ui
│ │ │ ├── Makefile
│ │ │ ├── Makefile.Debug
│ │ │ ├── Makefile.Release
│ │ │ ├── myQtGUIApp.pro
│ │ │ └── ui_mainwindow.h
│ │ └── README.txt
│ ├── Chapter 02
│ │ ├── addImages.cpp
│ │ ├── colorReduce.cpp
│ │ ├── contrast.cpp
│ │ ├── README.txt
│ │ └── saltImage.cpp
│ ├── Chapter 03
│ │ ├── colorDetectController.cpp
│ │ ├── colorDetectController.h
│ │ ├── colorDetection.cpp
│ │ ├── color_detector
│ │ │ ├── colorDetectController.cpp
│ │ │ ├── colorDetectController.h
│ │ │ ├── colordetector.cpp
│ │ │ ├── colordetector.h
│ │ │ ├── color_detector.pro
│ │ │ ├── main.cpp
│ │ │ ├── mainwindow.cpp
│ │ │ ├── mainwindow.h
│ │ │ ├── mainwindow.ui
│ │ │ ├── Makefile
│ │ │ └── ui_mainwindow.h
│ │ ├── colordetector.cpp
│ │ ├── colordetector.h
│ │ ├── colordetectorLab.cpp
│ │ ├── colordetectorLab.h
│ │ └── README.txt
│ ├── Chapter 04
│ │ ├── colorhistogram.h
│ │ ├── finder.cpp
│ │ ├── histogram.h
│ │ ├── histograms.cpp
│ │ ├── imageComparator.h
│ │ ├── objectfinder.cpp
│ │ ├── objectFinder.h
│ │ ├── README.txt
│ │ └── retrieve.cpp
│ ├── Chapter 05
│ │ ├── morpho2.cpp
│ │ ├── morphoFeatures.h
│ │ ├── morphology.cpp
│ │ ├── README.txt
│ │ ├── segment.cpp
│ │ └── watershedSegmentation.h
│ ├── Chapter 06
│ │ ├── derivatives.cpp
│ │ ├── filters.cpp
│ │ ├── laplacianZC.h
│ │ └── README.txt
│ ├── Chapter 07
│ │ ├── blobs.cpp
│ │ ├── contours.cpp
│ │ ├── edgedetector.h
│ │ ├── linefinder.h
│ │ └── README.txt
│ ├── Chapter 08
│ │ ├── harrisDetector.h
│ │ ├── interestPoints.cpp
│ │ ├── README.txt
│ │ └── tracking.cpp
│ ├── Chapter 09
│ │ ├── calibrate.cpp
│ │ ├── CameraCalibrator.cpp
│ │ ├── CameraCalibrator.h
│ │ ├── estimateF.cpp
│ │ ├── estimateH.cpp
│ │ ├── matcher.h
│ │ ├── README.txt
│ │ └── robustmatching.cpp
│ ├── Chapter 10
│ │ ├── BGFGSegmentor.h
│ │ ├── featuretracker.h
│ │ ├── foreground.cpp
│ │ ├── README.txt
│ │ ├── tracking.cpp
│ │ ├── videoprocessing.cpp
│ │ └── videoprocessor.h
│ ├── images
│ │ ├── baboon1.jpg
│ │ ├── baboon2.jpg
│ │ ├── baboon3.jpg
│ │ ├── baboon4.jpg
│ │ ├── beach.jpg
│ │ ├── bear.jpg
│ │ ├── bike.avi
│ │ ├── binary.bmp
│ │ ├── binaryGroup.bmp
│ │ ├── boldt.jpg
│ │ ├── building.jpg
│ │ ├── canal1.jpg
│ │ ├── canal2.jpg
│ │ ├── chariot.jpg
│ │ ├── chessboards
│ │ │ ├── chessboard01.jpg
│ │ │ ├── chessboard02.jpg
│ │ │ ├── chessboard03.jpg
│ │ │ ├── chessboard04.jpg
│ │ │ ├── chessboard05.jpg
│ │ │ ├── chessboard06.jpg
│ │ │ ├── chessboard07.jpg
│ │ │ ├── chessboard08.jpg
│ │ │ ├── chessboard09.jpg
│ │ │ ├── chessboard10.jpg
│ │ │ ├── chessboard11.jpg
│ │ │ ├── chessboard12.jpg
│ │ │ ├── chessboard13.jpg
│ │ │ ├── chessboard14.jpg
│ │ │ ├── chessboard15.jpg
│ │ │ ├── chessboard16.jpg
│ │ │ ├── chessboard17.jpg
│ │ │ ├── chessboard18.jpg
│ │ │ ├── chessboard19.jpg
│ │ │ ├── chessboard20.jpg
│ │ │ ├── chessboard21.jpg
│ │ │ ├── chessboard22.jpg
│ │ │ ├── chessboard23.jpg
│ │ │ ├── chessboard24.jpg
│ │ │ ├── chessboard25.jpg
│ │ │ ├── chessboard26.jpg
│ │ │ ├── chessboard27.jpg
│ │ │ ├── chessboard28.jpg
│ │ │ ├── chessboard29.jpg
│ │ │ ├── chessboard30.jpg
│ │ │ ├── chessboard31.jpg
│ │ │ ├── chessboard32.jpg
│ │ │ ├── chessboard33.jpg
│ │ │ ├── chessboard34.jpg
│ │ │ ├── chessboard35.jpg
│ │ │ ├── chessboard36.jpg
│ │ │ ├── chessboard37.jpg
│ │ │ ├── chessboard38.jpg
│ │ │ ├── chessboard39.jpg
│ │ │ ├── chessboard40.jpg
│ │ │ ├── chessboard41.jpg
│ │ │ ├── chessboard42.jpg
│ │ │ └── chessboard43.jpg
│ │ ├── church01.jpg
│ │ ├── church02.jpg
│ │ ├── church03.jpg
│ │ ├── dog.jpg
│ │ ├── fundy.jpg
│ │ ├── group.jpg
│ │ ├── lake.jpg
│ │ ├── logo.bmp
│ │ ├── marais.jpg
│ │ ├── monument1.jpg
│ │ ├── monument2.jpg
│ │ ├── moose.jpg
│ │ ├── parliament1.bmp
│ │ ├── parliament2.bmp
│ │ ├── parliament3.bmp
│ │ ├── polar.jpg
│ │ ├── puppy.bmp
│ │ ├── rain.jpg
│ │ ├── road.jpg
│ │ ├── sagouine.jpg
│ │ ├── tiger.jpg
│ │ ├── tower.jpg
│ │ └── waves.jpg
│ └── README.md
├── Opencv-reference-manual-2.3.1.pdf
└── OpenCV教程-基础篇.pdf
18 directories, 175 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论