实例介绍
OpenCV教程——基础篇(pdf),以及教程源代码,于仕琪,刘瑞祯版,学习OpenCV的初级教程,很好很实用
【实例截图】
【核心代码】
4744302543430518416.zip
└── OpenCV教程--基础篇,于仕琪版
├── opencv-slides
│ ├── examples
│ │ ├── ex01
│ │ │ ├── ex01.c
│ │ │ └── Makefile
│ │ ├── ex02
│ │ │ ├── ex02.c
│ │ │ └── Makefile
│ │ ├── ex03
│ │ │ ├── canny.c
│ │ │ └── Makefile
│ │ ├── ex04
│ │ │ ├── contour.c
│ │ │ ├── Makefile
│ │ │ └── silh.png
│ │ ├── ex05
│ │ │ ├── bkgrd.c
│ │ │ └── Makefile
│ │ ├── images
│ │ │ ├── fruits.jpg
│ │ │ ├── lena.jpg
│ │ │ └── Thumbs.db
│ │ └── Makefile
│ └── opencv-intro.pdf
├── OpenCV教程--基础篇--刘瑞祯,于仕其.pdf
└── 实例源代码
├── blobtrack
│ ├── blobtrack.cpp
│ ├── blobtrack.dsp
│ ├── blobtrack.dsw
│ └── Makefile
├── myblobtrack
│ ├── blobtrack.cpp
│ ├── Makefile
│ ├── myblobtrack.dsp
│ ├── myblobtrack.dsw
│ ├── myfgdetector.cpp
│ └── myfgdetector.h
├── 例2-1
│ ├── hello.c
│ ├── hello.dsp
│ ├── hello.dsw
│ ├── lena.jpg
│ └── Makefile
├── 例2-2
│ ├── image.cpp
│ ├── image.dsp
│ ├── image.dsw
│ ├── lena.jpg
│ └── Makefile
├── 例3-1
│ ├── cvmat.c
│ ├── cvmat.dsp
│ ├── cvmat.dsw
│ └── Makefile
├── 例3-2
│ ├── Debug
│ │ ├── invImage.exe
│ │ ├── invImage.ilk
│ │ ├── invImage.obj
│ │ ├── invImage.pdb
│ │ ├── vc60.idb
│ │ └── vc60.pdb
│ ├── invImage.c
│ ├── invImage.dsp
│ ├── invImage.dsw
│ ├── invImage.ncb
│ ├── invImage.opt
│ ├── invImage.plg
│ ├── lena.jpg
│ └── Makefile
├── 例3-3
│ ├── convert.c
│ ├── convert.dsp
│ ├── convert.dsw
│ ├── convert.ncb
│ ├── convert.opt
│ ├── convert.plg
│ ├── Debug
│ │ ├── convert.obj
│ │ ├── convert.pdb
│ │ ├── vc60.idb
│ │ └── vc60.pdb
│ ├── lena.jpg
│ └── Makefile
├── 例3-4
│ ├── drawing.c
│ ├── drawing.dsp
│ ├── drawing.dsw
│ └── Makefile
├── 例3-5
│ ├── laplace.c
│ ├── laplace.dsp
│ ├── laplace.dsw
│ └── Makefile
├── 例3-6
│ ├── cvcam.c
│ ├── cvcam.dsp
│ └── cvcam.dsw
├── 例4-1
│ ├── cvmatop.c
│ ├── cvmatop.dsp
│ ├── cvmatop.dsw
│ └── Makefile
├── 例4-2
│ ├── dft.c
│ ├── dft.dsp
│ ├── dft.dsw
│ ├── lena.jpg
│ └── Makefile
├── 例4-3
│ ├── contour.cpp
│ ├── contour.dsp
│ ├── contour.dsw
│ ├── Makefile
│ └── pic1.png
├── 例4-4
│ ├── Makefile
│ ├── storage.cpp
│ ├── storage.dsp
│ └── storage.dsw
├── 例4-5
│ ├── Makefile
│ ├── points.yaml
│ ├── readseq.cpp
│ ├── readseq.dsp
│ └── readseq.dsw
├── 例4-6
│ ├── kmean.cpp
│ ├── kmean.dsp
│ ├── kmean.dsw
│ └── Makefile
├── 例4-7
│ ├── Makefile
│ ├── pointset.cpp
│ ├── pointset.dsp
│ └── pointset.dsw
├── 例4-8
│ ├── errhandle.cpp
│ ├── errhandle.dsp
│ ├── errhandle.dsw
│ └── Makefile
├── 例5-1
│ ├── edge.cpp
│ ├── edge.dsp
│ ├── edge.dsw
│ ├── fruits.jpg
│ └── Makefile
├── 例5-10
│ ├── imadjust.cpp
│ ├── imadjust.dsp
│ ├── imadjust.dsw
│ ├── Makefile
│ └── rice.png
├── 例5-11
│ ├── imhist.c
│ ├── imhist.dsp
│ ├── imhist.dsw
│ ├── lena.jpg
│ └── Makefile
├── 例5-12
│ ├── hue.cpp
│ ├── hue.dsp
│ ├── hue.dsw
│ ├── lena.jpg
│ └── Makefile
├── 例5-13
│ ├── histeq.c
│ ├── histeq.dsp
│ ├── histeq.dsw
│ ├── Makefile
│ └── rice.png
├── 例5-14
│ ├── building.jpg
│ ├── houghlines.cpp
│ ├── houghlines.dsp
│ ├── houghlines.dsw
│ └── Makefile
├── 例5-15
│ ├── circles.png
│ ├── houghcircles.cpp
│ ├── houghcircles.dsp
│ ├── houghcircles.dsw
│ └── Makefile
├── 例5-16
│ ├── distrans.c
│ ├── distrans.dsp
│ ├── distrans.dsw
│ ├── Makefile
│ └── stuff.jpg
├── 例5-17
│ ├── circles.png
│ ├── fitellipse.c
│ ├── fitellipse.dsp
│ ├── fitellipse.dsw
│ ├── Makefile
│ └── rice.png
├── 例5-18
│ ├── hull.cpp
│ ├── hull.dsp
│ ├── hull.dsw
│ └── Makefile
├── 例5-19
│ ├── delaunay.c
│ ├── delaunay.dsp
│ ├── delaunay.dsw
│ └── Makefile
├── 例5-2
│ ├── lena.jpg
│ ├── Makefile
│ ├── rotate.cpp
│ ├── rotate.dsp
│ └── rotate.dsw
├── 例5-20
│ ├── bkgrd.c
│ ├── bkgrd.dsp
│ ├── bkgrd.dsw
│ ├── Makefile
│ └── video.avi
├── 例5-21
│ ├── Makefile
│ ├── motempl.c
│ ├── motempl.dsp
│ ├── motempl.dsw
│ └── video.avi
├── 例5-22
│ ├── camshift.c
│ ├── camshift.dsp
│ ├── camshift.dsw
│ └── Makefile
├── 例5-23
│ ├── kalman.cpp
│ ├── kalman.dsp
│ ├── kalman.dsw
│ └── Makefile
├── 例5-24
│ ├── haarcascade.cpp
│ ├── haarcascade.dsp
│ ├── haarcascade.dsw
│ ├── haarcascade_frontalface_alt2.xml
│ ├── lena.jpg
│ └── Makefile
├── 例5-3
│ ├── corner.cpp
│ ├── corner.dsp
│ ├── corner.dsw
│ ├── Makefile
│ └── pic3.png
├── 例5-4
│ ├── fruits.jpg
│ ├── logpolar.cpp
│ ├── logpolar.dsp
│ ├── logpolar.dsw
│ └── Makefile
├── 例5-5
│ ├── baboon.jpg
│ ├── Makefile
│ ├── morphology.c
│ ├── morphology.dsp
│ └── morphology.dsw
├── 例5-6
│ ├── filter.c
│ ├── filter.dsp
│ ├── filter.dsw
│ ├── lena.jpg
│ └── Makefile
├── 例5-7
│ ├── filldemo.c
│ ├── filldemo.dsp
│ ├── filldemo.dsw
│ ├── fruits.jpg
│ └── Makefile
├── 例5-8
│ ├── Makefile
│ ├── motiondetect.c
│ ├── motiondetect.dsp
│ └── motiondetect.dsw
└── 例5-9
├── fruits.jpg
├── Makefile
├── pyramid_segmentation.c
├── pyramid_segmentation.dsp
└── pyramid_segmentation.dsw
54 directories, 230 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论