# EXAMPLES OF HOW TO RUN THE PROGRAMS ASSUMING YOU ARE IN THEIR DIRECTORY
# On Linux, make the files using "make" (which will invoke Makefile in the directory)
# If you just copy programs from the pdf of the book, watch out that the
# quote characters aren't special characters.
#
# I put a calibration pattern, OpenCV_Chessboard.png in this directory
# print it out and tape it to any rigid object like a book or binder. It's
# for use with the camera calibration programs in Chapter 11.
#
#------------------------------------------------------------------------#
#CHAPTER 2 PROGRAMS:
./ch2_ex2_1 stuff.jpg
./ch2_ex2_2 test.avi
./ch2_ex2_3 test.avi
./ch2_ex2_4 stuff.jpg
./ch2_ex2_5 stuff.jpg
./ch2_ex2_6 stuff.jpg
./ch2_ex2_7 stuff.jpg
./ch2_ex2_8 stuff.jpg
# With video camera:
./ch2_ex2_9
# Using movie file:
./ch2_ex2_9 test.avi
# Writing won't work if you are using gstreamer. Use ffmpeg but might have to have developer libs from ffmpeg
./ch2_ex2_10 test.avi log_polar_out.avi
#------------------------------------------------------------------------#
#CHAPTER 3 PROGRAMS:
ch3_ex3_1.txt [not a program]
ch3_ex3_2.txt [not a program]
./ch3_ex3_3
./ch3_ex3_4
./ch3_ex3_5
ch3_ex3_6.txt [not a program]
ch3_ex3_7.txt [not a program]
ch3_ex3_8.txt [not a program]
./ch3_ex3_9
ch3_ex3_10.txt [not a program]
./ch3_ex3_11 stuff.jpg
./ch3_ex3_12 stuff.jpg 50 100 300 200 100
./ch3_ex3_13 stuff.jpg 50 100 300 200 100
./ch3_ex3_14 stuff.jpg adrian.jpg 50 100 300 200 0.5 0.5
./ch3_ex3_15
ch3_ex3_16.txt [not a program]
./ch3_ex3_17
ch3_ex3_18.xml [not a program]
./ch3_ex3_19
./ch3_ex3_20
#------------------------------------------------------------------------#
#CHAPTER 4 PROGRAMS
./ch4_ex4_1
./ch4_ex4_2 test.avi
./ch4_ex4_3 test.avi
#------------------------------------------------------------------------#
#CHAPTER 5 PROGRAMS
./ch5_ex5_1 stuff.jpg
./ch5_ex5_2 adrian.jpg
./ch5_ex5_3 adrian.jpg
./ch5_ex5_4 15 1 1 71 15 adrian.jpg
#------------------------------------------------------------------------#
#CHAPTER 6
./ch6_ex6_1 stuff.jpg
./ch6_ex6_2 stuff.jpg
./ch6_ex6_3 adrian.jpg
./ch6_ex6_4 stuff.jpg 100
./ch6_ex6_5
#------------------------------------------------------------------------#
#CHAPTER 7
./ch7_ex7_1 adrian.jpg
ch7_ex7_2.txt [not a program]
./ch7_ex7_3_expanded HandIndoorColor.jpg HandOutdoorSunColor.jpg HandOutdoorColor.jpg adrian.jpg
ch7_ex7_4.txt [not a program]
./ch7_ex7_5_HistBackProj BlueCup.jpg adrian.jpg 0
./ch7_ex7_5 faceTemplate.jpg faceScene.jpg
#------------------------------------------------------------------------#
#CHAPTER 8
ch8_ex8_1.txt [not a program]
./ch8_ex8_2 adrian.jpg
./ch8_ex8_3 faceTemplate.jpg
#------------------------------------------------------------------------#
#CHAPTER 9
./ch9_ex9_1 test.avi
# The background demo shows 2 background modeling methods: Averaging and YUV Codebook
# I've set the parameters to work well with tree.avi == we learn the model for 50 frames
# The parameters following tree.avi below are optional, but pretty good for that sequence
# You can adjust them on the fly. Best to pause "p", adjust, single step a bit with "s"
# and then resume running with "r" or "p". To adjust, the video window and NOT the consul
# window must be active. I put a built in pause in the short tree.avi sequence so you
# can experiment with parmeters as you single step "s", adjust" and step "s" along. -- Gary
./ch9_background 1 50 tree.avi 9 2 35 16 2 15 11 16
# Copy of watershed.cpp in samples/c directory is also here
./ch9_watershed fruits.jpg
#This one isn't a stand alone program, it is a function that does frame differencing as in the book
ch9_backgroundDiff.cpp [not built as a program]
#This is a potentially add on function to ch9_backgroundAVG.cpp -- it clears stale codebook entries
ch9_ClearStaleCB_Entries.cpp [not built as a program]
#------------------------------------------------------------------------#
#CHAPTER 10
./ch10_ex10_1
# Decided to do the same example, except using the Horn-Schunck algorithm
./ch10_ex10_1b_Horn_Schunck
# For fun, here's motion template code copied from samples/c. Uses a video camera. Point the camera
# away from you. Start the program, wait a few seconds until it goes black. Then move in front
# of the camera.
./ch10_motempl
./ch10_ex10_2
#------------------------------------------------------------------------#
#CHAPTER 11
# Calibration using video camera
# Parameters are chessboard_width height num_to_collect wait_frames
# The num_to_collect is how many valid chessboard captures we should use to calibrate
# The wait_frames is how many frames to skip before attempting to find a chessboard (this allows you to move it around).
# NOTE: The "9 6" work with OpenCV_Chessboard.png which you can print out and use for this.
./ch11_ex11_1 9 6 10 60
# We can also calibrate from a list of images on disk. You will need to run this in order for the birdseye demo to work.
./ch11_ex11_1_fromdisk 12 12 ch11_chessboards.txt
#------------------------------------------------------------------------#
#CHAPTER 12
./ch12_ex12_1 12 12 Intrinsics.xml Distortion.xml ch12_birdseye.jpg
# Just a belabored example of computing the fundamental matrix
# NOTE: The "9 6" work with OpenCV_Chessboard.png which you can print out and use for this.
./ch12_ex12_2 9 6 8 40
# Stereo calibration, rectification and depth
./ch12_ex12_3
./ch12_ex12_4
#------------------------------------------------------------------------#
#CHAPTER 13
./ch13_ex13_1
./ch13_ex13_2
./ch13_ex13_3
./ch13_ex13_4
#------------------------------------------------------------------------#
#CHAPTER 14
# You fill in these
没有合适的资源?快使用搜索试试~ 我知道了~
资源推荐
资源详情
资源评论
收起资源包目录
Learning opencv 源代码 (175个子文件)
test.avi 3.36MB
tree.avi 1.25MB
ch13_ex13_3.cpp 17KB
ch9_backgroundAVG.cpp 14KB
ch12_ex12_3.cpp 14KB
ch13_ex13_2.cpp 12KB
cv_yuv_codebook.cpp 11KB
ch12_ex12_2.cpp 10KB
ch13_ex13_4.cpp 9KB
ch11_ex11_1.cpp 9KB
ch11_ex11_1_fromdisk.cpp 8KB
ch10_motempl.cpp 8KB
ch7_ex7_3_expanded.cpp 8KB
ch12_ex12_1.cpp 6KB
ch7_ex7_5_HistBackProj.cpp 6KB
ch9_AvgBackground.cpp 6KB
ch9_watershed.cpp 6KB
ch10_ex10_2.cpp 4KB
ch7_ex7_5.cpp 4KB
ch13_dtree.cpp 4KB
ch2_ex2_3.cpp 4KB
ch10_ex10_1.cpp 4KB
ch13_ex13_1.cpp 4KB
ch10_ex10_1b_Horn_Schunck.cpp 4KB
ch4_ex4_1.cpp 4KB
ch7_ex7_1.cpp 3KB
ch12_ex12_4.cpp 3KB
ch2_ex2_10.cpp 3KB
ch8_ex8_3.cpp 3KB
ch6_ex6_5.cpp 3KB
ch9_ex9_1.cpp 3KB
ch5_ex5_4.cpp 3KB
ch6_ex6_2.cpp 3KB
ch2_ex2_7.cpp 3KB
ch5_ex5_3.cpp 3KB
ch6_ex6_1.cpp 3KB
ch4_ex4_2.cpp 3KB
ch5_ex5_2.cpp 3KB
ch6_ex6_3.cpp 2KB
ch2_ex2_8.cpp 2KB
ch3_ex3_13.cpp 2KB
ch8_ex8_2.cpp 2KB
ch6_ex6_4.cpp 2KB
ch5_ex5_1.cpp 2KB
ch2_ex2_4.cpp 2KB
ch2_ex2_6.cpp 2KB
ch3_ex3_14.cpp 2KB
ch2_ex2_5.cpp 2KB
ch3_ex3_19.cpp 2KB
ch3_ex3_12.cpp 2KB
ch4_ex4_3.cpp 2KB
ch3_ex3_17.cpp 2KB
ch3_ex3_15.cpp 2KB
ch2_ex2_9.cpp 2KB
ch3_ex3_9.cpp 2KB
ch3_ex3_11.cpp 2KB
ch2_ex2_2.cpp 1KB
ch9_backgroundDiff.cpp 1KB
ch3_ex3_5.cpp 1KB
ch3_ex3_3.cpp 1KB
ch3_ex3_20.cpp 1KB
ch2_ex2_1.cpp 1KB
ch9_ClearStaleCB_Entries.cpp 1KB
ch3_ex3_4.cpp 1KB
ch8_ex2.cpp 1KB
cvx_defs.cpp 870B
ch13_ex3.cpp 1B
letter-recognition.data 696KB
agaricus-lepiota.data 365KB
Thumbs.db 127KB
Thumbs.db 80KB
Thumbs.db 33KB
.DS_Store 6KB
.DS_Store 6KB
.DS_Store 6KB
cv_yuv_codebook.h 10KB
cvx_defs.h 3KB
ch9_AvgBackground.h 2KB
subversion.tigris.org.html 22KB
IMG_0207.jpg 544KB
IMG_0206.jpg 530KB
IMG_0203.jpg 491KB
IMG_0205.jpg 490KB
IMG_0209.jpg 484KB
IMG_0195.jpg 479KB
IMG_0208.jpg 474KB
IMG_0202.jpg 456KB
IMG_0201.jpg 454KB
IMG_0213.jpg 454KB
IMG_0191.jpg 453KB
IMG_0212.jpg 451KB
IMG_0200.jpg 447KB
IMG_0194.jpg 441KB
IMG_0210.jpg 440KB
IMG_0196.jpg 440KB
IMG_0193.jpg 437KB
IMG_0211.jpg 428KB
IMG_0197.jpg 423KB
IMG_0199.jpg 421KB
IMG_0198.jpg 419KB
共 175 条
- 1
- 2
资源评论
- sunchaoliang832018-07-01If you want to be the master of master, you should go through the source code, not only just read the documentation and call the methods.
叶子长新芽
- 粉丝: 70
- 资源: 3
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功