实例介绍
基于Matlab的三维重建代码,可以作为学习!
【实例截图】
【核心代码】
cae7ffae-688f-48fd-baa2-fab168ed90c7
├── __MACOSX
│ └── SFMedu2
│ ├── denseMatch
│ │ └── priority_queue_1.0
│ ├── images
│ ├── matchSIFT
│ │ ├── MatlabFns
│ │ └── vlfeat
│ │ ├── apps
│ │ ├── bin
│ │ │ ├── glnx86
│ │ │ ├── glnxa64
│ │ │ ├── maci
│ │ │ ├── maci64
│ │ │ ├── win32
│ │ │ └── win64
│ │ ├── data
│ │ ├── doc
│ │ │ ├── api
│ │ │ ├── applications
│ │ │ ├── demo
│ │ │ ├── figures
│ │ │ ├── images
│ │ │ ├── man
│ │ │ ├── man-src
│ │ │ ├── mdoc
│ │ │ ├── overview
│ │ │ └── toolbox-src
│ │ ├── docsrc
│ │ │ ├── dtd
│ │ │ │ └── xhtml1
│ │ │ ├── figures
│ │ │ └── images
│ │ ├── make
│ │ ├── src
│ │ ├── toolbox
│ │ │ ├── aib
│ │ │ ├── demo
│ │ │ ├── geometry
│ │ │ ├── imop
│ │ │ ├── kmeans
│ │ │ ├── mex
│ │ │ │ ├── mexa64
│ │ │ │ ├── mexglx
│ │ │ │ ├── mexmaci
│ │ │ │ ├── mexmaci64
│ │ │ │ ├── mexw32
│ │ │ │ └── mexw64
│ │ │ ├── misc
│ │ │ ├── mser
│ │ │ ├── noprefix
│ │ │ ├── plotop
│ │ │ ├── quickshift
│ │ │ ├── sift
│ │ │ ├── slic
│ │ │ ├── special
│ │ │ ├── test
│ │ │ └── xtest
│ │ ├── vl
│ │ └── vlfeat.xcodeproj
│ │ └── xcshareddata
│ │ └── xcschemes
│ └── RtToolbox
└── SFMedu2
├── bundleAdjustment.m
├── denseMatch
│ ├── denseMatch.m
│ ├── priority_queue_1.0
│ │ ├── CHANGES
│ │ ├── license.txt
│ │ ├── MyHeap.h
│ │ ├── MyHeap_old.h
│ │ ├── pq_create.cpp
│ │ ├── pq_create.m
│ │ ├── pq_create.mexa64
│ │ ├── pq_create.mexmaci
│ │ ├── pq_create.mexmaci64
│ │ ├── pq_create.mexw64
│ │ ├── pq_delete.cpp
│ │ ├── pq_delete.m
│ │ ├── pq_delete.mexa64
│ │ ├── pq_delete.mexmaci
│ │ ├── pq_delete.mexmaci64
│ │ ├── pq_delete.mexw64
│ │ ├── pq_demo.cpp
│ │ ├── pq_demo.m
│ │ ├── pq_demo.mexa64
│ │ ├── pq_pop.cpp
│ │ ├── pq_pop.m
│ │ ├── pq_pop.mexa64
│ │ ├── pq_pop.mexmaci
│ │ ├── pq_pop.mexmaci64
│ │ ├── pq_pop.mexw64
│ │ ├── pq_push.cpp
│ │ ├── pq_push.m
│ │ ├── pq_push.mexa64
│ │ ├── pq_push.mexmaci
│ │ ├── pq_push.mexmaci64
│ │ ├── pq_push.mexw64
│ │ ├── pq_size.cpp
│ │ ├── pq_size.m
│ │ ├── pq_size.mexa64
│ │ ├── pq_size.mexmaci
│ │ ├── pq_size.mexmaci64
│ │ ├── pq_size.mexw64
│ │ ├── pq_top.cpp
│ │ ├── pq_top.m
│ │ ├── pq_top.mexa64
│ │ ├── pq_top.mexmaci
│ │ ├── pq_top.mexmaci64
│ │ ├── pq_top.mexw64
│ │ └── README
│ ├── propagate.m
│ ├── ReliableArea.m
│ └── ZNCCpatch_all.m
├── drawCamera.m
├── estimateE.m
├── estimateF.m
├── extractFocalFromEXIF.m
├── f2K.m
├── images
│ ├── B21.jpg
│ ├── B22.jpg
│ ├── B23.jpg
│ ├── B24.jpg
│ ├── B25.jpg
│ └── source.txt
├── match2viewSURF.m
├── matchSIFT
│ ├── match2viewSIFT.m
│ ├── matchSIFTdesImagesBidirectional.m
│ ├── MatlabFns
│ │ ├── fundmatrix.m
│ │ ├── normalise2dpts.m
│ │ ├── ransacfitfundmatrix.m
│ │ └── ransac.m
│ ├── up_sift.m
│ └── vlfeat
│ ├── apps
│ │ ├── phow_caltech101.m
│ │ └── sift_mosaic.m
│ ├── bin
│ │ ├── glnx86
│ │ │ ├── aib
│ │ │ ├── libvl.so
│ │ │ ├── mser
│ │ │ ├── sift
│ │ │ ├── test_getopt_long
│ │ │ ├── test_heap-def
│ │ │ ├── test_host
│ │ │ ├── test_imopv
│ │ │ ├── test_mathop
│ │ │ ├── test_mathop_abs
│ │ │ ├── test_nan
│ │ │ ├── test_qsort-def
│ │ │ ├── test_rand
│ │ │ ├── test_stringop
│ │ │ ├── test_threads
│ │ │ └── test_vec_comp
│ │ ├── glnxa64
│ │ │ ├── aib
│ │ │ ├── libvl.so
│ │ │ ├── mser
│ │ │ ├── sift
│ │ │ ├── test_getopt_long
│ │ │ ├── test_heap-def
│ │ │ ├── test_host
│ │ │ ├── test_imopv
│ │ │ ├── test_mathop
│ │ │ ├── test_mathop_abs
│ │ │ ├── test_nan
│ │ │ ├── test_qsort-def
│ │ │ ├── test_rand
│ │ │ ├── test_stringop
│ │ │ ├── test_threads
│ │ │ └── test_vec_comp
│ │ ├── maci
│ │ │ ├── aib
│ │ │ ├── libvl.dylib
│ │ │ ├── mser
│ │ │ ├── sift
│ │ │ ├── test_getopt_long
│ │ │ ├── test_heap-def
│ │ │ ├── test_host
│ │ │ ├── test_imopv
│ │ │ ├── test_mathop
│ │ │ ├── test_mathop_abs
│ │ │ ├── test_nan
│ │ │ ├── test_qsort-def
│ │ │ ├── test_rand
│ │ │ ├── test_stringop
│ │ │ ├── test_threads
│ │ │ └── test_vec_comp
│ │ ├── maci64
│ │ │ ├── aib
│ │ │ ├── libvl.dylib
│ │ │ ├── mser
│ │ │ ├── sift
│ │ │ ├── test_getopt_long
│ │ │ ├── test_heap-def
│ │ │ ├── test_host
│ │ │ ├── test_imopv
│ │ │ ├── test_mathop
│ │ │ ├── test_mathop_abs
│ │ │ ├── test_nan
│ │ │ ├── test_qsort-def
│ │ │ ├── test_rand
│ │ │ ├── test_stringop
│ │ │ ├── test_threads
│ │ │ └── test_vec_comp
│ │ ├── win32
│ │ │ ├── aib.exe
│ │ │ ├── Microsoft.VC90.CRT.manifest
│ │ │ ├── mser.exe
│ │ │ ├── msvcr90.dll
│ │ │ ├── sift.exe
│ │ │ ├── test_getopt_long.exe
│ │ │ ├── test_heap-def.exe
│ │ │ ├── test_host.exe
│ │ │ ├── test_imopv.exe
│ │ │ ├── test_mathop_abs.exe
│ │ │ ├── test_mathop.exe
│ │ │ ├── test_nan.exe
│ │ │ ├── test_qsort-def.exe
│ │ │ ├── test_rand.exe
│ │ │ ├── test_stringop.exe
│ │ │ ├── test_threads.exe
│ │ │ ├── test_vec_comp.exe
│ │ │ ├── vl.dll
│ │ │ └── vl.lib
│ │ └── win64
│ │ ├── aib.exe
│ │ ├── Microsoft.VC90.CRT.manifest
│ │ ├── mser.exe
│ │ ├── msvcr90.dll
│ │ ├── sift.exe
│ │ ├── test_getopt_long.exe
│ │ ├── test_heap-def.exe
│ │ ├── test_host.exe
│ │ ├── test_imopv.exe
│ │ ├── test_mathop_abs.exe
│ │ ├── test_mathop.exe
│ │ ├── test_nan.exe
│ │ ├── test_qsort-def.exe
│ │ ├── test_rand.exe
│ │ ├── test_stringop.exe
│ │ ├── test_threads.exe
│ │ ├── test_vec_comp.exe
│ │ ├── vl.dll
│ │ └── vl.lib
│ ├── COPYING
│ ├── data
│ │ ├── a.jpg
│ │ ├── b.jpg
│ │ ├── box.pgm
│ │ ├── box.sift
│ │ ├── river1.jpg
│ │ ├── river2.jpg
│ │ └── spots.jpg
│ ├── doc
│ │ ├── about.html
│ │ ├── api
│ │ │ ├── aib_8c.html
│ │ │ ├── aib_8h.html
│ │ │ ├── aib.html
│ │ │ ├── annotated.html
│ │ │ ├── array_8h.html
│ │ │ ├── bc_s.png
│ │ │ ├── bug.html
│ │ │ ├── citelist.html
│ │ │ ├── classes.html
│ │ │ ├── closed.png
│ │ │ ├── deprecated.html
│ │ │ ├── design.html
│ │ │ ├── doxygen.css
│ │ │ ├── doxygen.png
│ │ │ ├── dsift_8c.html
│ │ │ ├── dsift_8h.html
│ │ │ ├── dsift-geom.png
│ │ │ ├── dsift.html
│ │ │ ├── files.html
│ │ │ ├── form_0.png
│ │ │ ├── form_100.png
│ │ │ ├── form_101.png
│ │ │ ├── form_102.png
│ │ │ ├── form_103.png
│ │ │ ├── form_104.png
│ │ │ ├── form_105.png
│ │ │ ├── form_106.png
│ │ │ ├── form_107.png
│ │ │ ├── form_108.png
│ │ │ ├── form_109.png
│ │ │ ├── form_10.png
│ │ │ ├── form_110.png
│ │ │ ├── form_111.png
│ │ │ ├── form_112.png
│ │ │ ├── form_113.png
│ │ │ ├── form_114.png
│ │ │ ├── form_115.png
│ │ │ ├── form_116.png
│ │ │ ├── form_117.png
│ │ │ ├── form_118.png
│ │ │ ├── form_119.png
│ │ │ ├── form_11.png
│ │ │ ├── form_120.png
│ │ │ ├── form_121.png
│ │ │ ├── form_122.png
│ │ │ ├── form_123.png
│ │ │ ├── form_124.png
│ │ │ ├── form_125.png
│ │ │ ├── form_126.png
│ │ │ ├── form_127.png
│ │ │ ├── form_128.png
│ │ │ ├── form_129.png
│ │ │ ├── form_12.png
│ │ │ ├── form_130.png
│ │ │ ├── form_131.png
│ │ │ ├── form_132.png
│ │ │ ├── form_133.png
│ │ │ ├── form_134.png
│ │ │ ├── form_135.png
│ │ │ ├── form_136.png
│ │ │ ├── form_137.png
│ │ │ ├── form_138.png
│ │ │ ├── form_139.png
│ │ │ ├── form_13.png
│ │ │ ├── form_140.png
│ │ │ ├── form_141.png
│ │ │ ├── form_142.png
│ │ │ ├── form_143.png
│ │ │ ├── form_144.png
│ │ │ ├── form_145.png
│ │ │ ├── form_146.png
│ │ │ ├── form_147.png
│ │ │ ├── form_148.png
│ │ │ ├── form_149.png
│ │ │ ├── form_14.png
│ │ │ ├── form_150.png
│ │ │ ├── form_151.png
│ │ │ ├── form_152.png
│ │ │ ├── form_153.png
│ │ │ ├── form_154.png
│ │ │ ├── form_155.png
│ │ │ ├── form_156.png
│ │ │ ├── form_157.png
│ │ │ ├── form_158.png
│ │ │ ├── form_159.png
│ │ │ ├── form_15.png
│ │ │ ├── form_160.png
│ │ │ ├── form_161.png
│ │ │ ├── form_162.png
│ │ │ ├── form_163.png
│ │ │ ├── form_164.png
│ │ │ ├── form_165.png
│ │ │ ├── form_166.png
│ │ │ ├── form_167.png
│ │ │ ├── form_168.png
│ │ │ ├── form_169.png
│ │ │ ├── form_16.png
│ │ │ ├── form_170.png
│ │ │ ├── form_171.png
│ │ │ ├── form_172.png
│ │ │ ├── form_173.png
│ │ │ ├── form_174.png
│ │ │ ├── form_175.png
│ │ │ ├── form_176.png
│ │ │ ├── form_177.png
│ │ │ ├── form_178.png
│ │ │ ├── form_179.png
│ │ │ ├── form_17.png
│ │ │ ├── form_180.png
│ │ │ ├── form_181.png
│ │ │ ├── form_182.png
│ │ │ ├── form_183.png
│ │ │ ├── form_184.png
│ │ │ ├── form_185.png
│ │ │ ├── form_186.png
│ │ │ ├── form_187.png
│ │ │ ├── form_188.png
│ │ │ ├── form_189.png
│ │ │ ├── form_18.png
│ │ │ ├── form_190.png
│ │ │ ├── form_191.png
│ │ │ ├── form_192.png
│ │ │ ├── form_193.png
│ │ │ ├── form_194.png
│ │ │ ├── form_195.png
│ │ │ ├── form_196.png
│ │ │ ├── form_197.png
│ │ │ ├── form_198.png
│ │ │ ├── form_199.png
│ │ │ ├── form_19.png
│ │ │ ├── form_1.png
│ │ │ ├── form_200.png
│ │ │ ├── form_201.png
│ │ │ ├── form_202.png
│ │ │ ├── form_203.png
│ │ │ ├── form_204.png
│ │ │ ├── form_205.png
│ │ │ ├── form_206.png
│ │ │ ├── form_207.png
│ │ │ ├── form_208.png
│ │ │ ├── form_209.png
│ │ │ ├── form_20.png
│ │ │ ├── form_210.png
│ │ │ ├── form_211.png
│ │ │ ├── form_212.png
│ │ │ ├── form_213.png
│ │ │ ├── form_214.png
│ │ │ ├── form_215.png
│ │ │ ├── form_216.png
│ │ │ ├── form_217.png
│ │ │ ├── form_218.png
│ │ │ ├── form_219.png
│ │ │ ├── form_21.png
│ │ │ ├── form_220.png
│ │ │ ├── form_221.png
│ │ │ ├── form_222.png
│ │ │ ├── form_223.png
│ │ │ ├── form_224.png
│ │ │ ├── form_225.png
│ │ │ ├── form_226.png
│ │ │ ├── form_227.png
│ │ │ ├── form_228.png
│ │ │ ├── form_229.png
│ │ │ ├── form_22.png
│ │ │ ├── form_230.png
│ │ │ ├── form_231.png
│ │ │ ├── form_232.png
│ │ │ ├── form_233.png
│ │ │ ├── form_234.png
│ │ │ ├── form_235.png
│ │ │ ├── form_236.png
│ │ │ ├── form_237.png
│ │ │ ├── form_238.png
│ │ │ ├── form_239.png
│ │ │ ├── form_23.png
│ │ │ ├── form_240.png
│ │ │ ├── form_241.png
│ │ │ ├── form_242.png
│ │ │ ├── form_243.png
│ │ │ ├── form_244.png
│ │ │ ├── form_245.png
│ │ │ ├── form_246.png
│ │ │ ├── form_247.png
│ │ │ ├── form_248.png
│ │ │ ├── form_249.png
│ │ │ ├── form_24.png
│ │ │ ├── form_250.png
│ │ │ ├── form_251.png
│ │ │ ├── form_252.png
│ │ │ ├── form_253.png
│ │ │ ├── form_254.png
│ │ │ ├── form_255.png
│ │ │ ├── form_256.png
│ │ │ ├── form_257.png
│ │ │ ├── form_258.png
│ │ │ ├── form_259.png
│ │ │ ├── form_25.png
│ │ │ ├── form_260.png
│ │ │ ├── form_261.png
│ │ │ ├── form_262.png
│ │ │ ├── form_263.png
│ │ │ ├── form_264.png
│ │ │ ├── form_265.png
│ │ │ ├── form_266.png
│ │ │ ├── form_267.png
│ │ │ ├── form_268.png
│ │ │ ├── form_269.png
│ │ │ ├── form_26.png
│ │ │ ├── form_270.png
│ │ │ ├── form_271.png
│ │ │ ├── form_272.png
│ │ │ ├── form_273.png
│ │ │ ├── form_274.png
│ │ │ ├── form_275.png
│ │ │ ├── form_276.png
│ │ │ ├── form_277.png
│ │ │ ├── form_278.png
│ │ │ ├── form_279.png
│ │ │ ├── form_27.png
│ │ │ ├── form_280.png
│ │ │ ├── form_281.png
│ │ │ ├── form_282.png
│ │ │ ├── form_283.png
│ │ │ ├── form_284.png
│ │ │ ├── form_285.png
│ │ │ ├── form_286.png
│ │ │ ├── form_287.png
│ │ │ ├── form_288.png
│ │ │ ├── form_289.png
│ │ │ ├── form_28.png
│ │ │ ├── form_290.png
│ │ │ ├── form_291.png
│ │ │ ├── form_292.png
│ │ │ ├── form_293.png
│ │ │ ├── form_294.png
│ │ │ ├── form_295.png
│ │ │ ├── form_296.png
│ │ │ ├── form_297.png
│ │ │ ├── form_298.png
│ │ │ ├── form_299.png
│ │ │ ├── form_29.png
│ │ │ ├── form_2.png
│ │ │ ├── form_300.png
│ │ │ ├── form_301.png
│ │ │ ├── form_302.png
│ │ │ ├── form_303.png
│ │ │ ├── form_304.png
│ │ │ ├── form_305.png
│ │ │ ├── form_306.png
│ │ │ ├── form_307.png
│ │ │ ├── form_308.png
│ │ │ ├── form_309.png
│ │ │ ├── form_30.png
│ │ │ ├── form_310.png
│ │ │ ├── form_311.png
│ │ │ ├── form_312.png
│ │ │ ├── form_313.png
│ │ │ ├── form_314.png
│ │ │ ├── form_315.png
│ │ │ ├── form_316.png
│ │ │ ├── form_317.png
│ │ │ ├── form_318.png
│ │ │ ├── form_319.png
│ │ │ ├── form_31.png
│ │ │ ├── form_320.png
│ │ │ ├── form_321.png
│ │ │ ├── form_322.png
│ │ │ ├── form_323.png
│ │ │ ├── form_324.png
│ │ │ ├── form_325.png
│ │ │ ├── form_326.png
│ │ │ ├── form_327.png
│ │ │ ├── form_328.png
│ │ │ ├── form_329.png
│ │ │ ├── form_32.png
│ │ │ ├── form_330.png
│ │ │ ├── form_331.png
│ │ │ ├── form_332.png
│ │ │ ├── form_333.png
│ │ │ ├── form_334.png
│ │ │ ├── form_335.png
│ │ │ ├── form_336.png
│ │ │ ├── form_337.png
│ │ │ ├── form_338.png
│ │ │ ├── form_339.png
│ │ │ ├── form_33.png
│ │ │ ├── form_340.png
│ │ │ ├── form_341.png
│ │ │ ├── form_342.png
│ │ │ ├── form_343.png
│ │ │ ├── form_344.png
│ │ │ ├── form_345.png
│ │ │ ├── form_346.png
│ │ │ ├── form_347.png
│ │ │ ├── form_348.png
│ │ │ ├── form_349.png
│ │ │ ├── form_34.png
│ │ │ ├── form_350.png
│ │ │ ├── form_351.png
│ │ │ ├── form_352.png
│ │ │ ├── form_353.png
│ │ │ ├── form_354.png
│ │ │ ├── form_355.png
│ │ │ ├── form_356.png
│ │ │ ├── form_357.png
│ │ │ ├── form_358.png
│ │ │ ├── form_359.png
│ │ │ ├── form_35.png
│ │ │ ├── form_360.png
│ │ │ ├── form_361.png
│ │ │ ├── form_362.png
│ │ │ ├── form_363.png
│ │ │ ├── form_36.png
│ │ │ ├── form_37.png
│ │ │ ├── form_38.png
│ │ │ ├── form_39.png
│ │ │ ├── form_3.png
│ │ │ ├── form_40.png
│ │ │ ├── form_41.png
│ │ │ ├── form_42.png
│ │ │ ├── form_43.png
│ │ │ ├── form_44.png
│ │ │ ├── form_45.png
│ │ │ ├── form_46.png
│ │ │ ├── form_47.png
│ │ │ ├── form_48.png
│ │ │ ├── form_49.png
│ │ │ ├── form_4.png
│ │ │ ├── form_50.png
│ │ │ ├── form_51.png
│ │ │ ├── form_52.png
│ │ │ ├── form_53.png
│ │ │ ├── form_54.png
│ │ │ ├── form_55.png
│ │ │ ├── form_56.png
│ │ │ ├── form_57.png
│ │ │ ├── form_58.png
│ │ │ ├── form_59.png
│ │ │ ├── form_5.png
│ │ │ ├── form_60.png
│ │ │ ├── form_61.png
│ │ │ ├── form_62.png
│ │ │ ├── form_63.png
│ │ │ ├── form_64.png
│ │ │ ├── form_65.png
│ │ │ ├── form_66.png
│ │ │ ├── form_67.png
│ │ │ ├── form_68.png
│ │ │ ├── form_69.png
│ │ │ ├── form_6.png
│ │ │ ├── form_70.png
│ │ │ ├── form_71.png
│ │ │ ├── form_72.png
│ │ │ ├── form_73.png
│ │ │ ├── form_74.png
│ │ │ ├── form_75.png
│ │ │ ├── form_76.png
│ │ │ ├── form_77.png
│ │ │ ├── form_78.png
│ │ │ ├── form_79.png
│ │ │ ├── form_7.png
│ │ │ ├── form_80.png
│ │ │ ├── form_81.png
│ │ │ ├── form_82.png
│ │ │ ├── form_83.png
│ │ │ ├── form_84.png
│ │ │ ├── form_85.png
│ │ │ ├── form_86.png
│ │ │ ├── form_87.png
│ │ │ ├── form_88.png
│ │ │ ├── form_89.png
│ │ │ ├── form_8.png
│ │ │ ├── form_90.png
│ │ │ ├── form_91.png
│ │ │ ├── form_92.png
│ │ │ ├── form_93.png
│ │ │ ├── form_94.png
│ │ │ ├── form_95.png
│ │ │ ├── form_96.png
│ │ │ ├── form_97.png
│ │ │ ├── form_98.png
│ │ │ ├── form_99.png
│ │ │ ├── form_9.png
│ │ │ ├── functions.html
│ │ │ ├── functions_vars.html
│ │ │ ├── generic_8c.html
│ │ │ ├── generic_8h.html
│ │ │ ├── generic.html
│ │ │ ├── getopt__long_8c.html
│ │ │ ├── getopt__long_8h.html
│ │ │ ├── globals_0x61.html
│ │ │ ├── globals_0x63.html
│ │ │ ├── globals_0x64.html
│ │ │ ├── globals_0x65.html
│ │ │ ├── globals_0x66.html
│ │ │ ├── globals_0x67.html
│ │ │ ├── globals_0x68.html
│ │ │ ├── globals_0x69.html
│ │ │ ├── globals_0x6e.html
│ │ │ ├── globals_0x6f.html
│ │ │ ├── globals_0x70.html
│ │ │ ├── globals_0x72.html
│ │ │ ├── globals_0x75.html
│ │ │ ├── globals_0x76.html
│ │ │ ├── globals_0x78.html
│ │ │ ├── globals_defs.html
│ │ │ ├── globals_enum.html
│ │ │ ├── globals_eval.html
│ │ │ ├── globals_func_0x61.html
│ │ │ ├── globals_func_0x63.html
│ │ │ ├── globals_func_0x64.html
│ │ │ ├── globals_func_0x66.html
│ │ │ ├── globals_func_0x67.html
│ │ │ ├── globals_func_0x69.html
│ │ │ ├── globals_func_0x6e.html
│ │ │ ├── globals_func_0x72.html
│ │ │ ├── globals_func_0x75.html
│ │ │ ├── globals_func_0x76.html
│ │ │ ├── globals_func_0x78.html
│ │ │ ├── globals_func.html
│ │ │ ├── globals.html
│ │ │ ├── globals_type.html
│ │ │ ├── globals_vars.html
│ │ │ ├── heap-def_8h.html
│ │ │ ├── hikmeans_8c.html
│ │ │ ├── hikmeans_8h.html
│ │ │ ├── homkermap_8c.html
│ │ │ ├── homkermap_8h.html
│ │ │ ├── homkermap.html
│ │ │ ├── host_8c.html
│ │ │ ├── host_8h.html
│ │ │ ├── ikmeans_8c.html
│ │ │ ├── ikmeans_8h.html
│ │ │ ├── ikmeans__elkan_8tc.html
│ │ │ ├── ikmeans__init_8tc.html
│ │ │ ├── ikmeans__lloyd_8tc.html
│ │ │ ├── imopv_8c.html
│ │ │ ├── imopv_8h.html
│ │ │ ├── imopv__sse2_8c.html
│ │ │ ├── imopv__sse2_8h.html
│ │ │ ├── index.html
│ │ │ ├── kdtree_8c.html
│ │ │ ├── kdtree_8h.html
│ │ │ ├── kdtree.html
│ │ │ ├── kmeans_8c.html
│ │ │ ├── kmeans_8h.html
│ │ │ ├── kmeans.html
│ │ │ ├── lbp_8c.html
│ │ │ ├── lbp_8h.html
│ │ │ ├── main-glossary.html
│ │ │ ├── mathop_8c.html
│ │ │ ├── mathop_8h.html
│ │ │ ├── mathop__sse2_8c.html
│ │ │ ├── mathop__sse2_8h.html
│ │ │ ├── mexutils_8h.html
│ │ │ ├── mser_8c.html
│ │ │ ├── mser_8h.html
│ │ │ ├── mser-er.png
│ │ │ ├── mser.html
│ │ │ ├── mser-tree.png
│ │ │ ├── nav_f.png
│ │ │ ├── nav_h.png
│ │ │ ├── open.png
│ │ │ ├── pages.html
│ │ │ ├── pegasos_8c.html
│ │ │ ├── pegasos_8h.html
│ │ │ ├── pegasos.html
│ │ │ ├── pgm_8c.html
│ │ │ ├── pgm_8h.html
│ │ │ ├── qsort-def_8h.html
│ │ │ ├── quickshift_8c.html
│ │ │ ├── quickshift_8h.html
│ │ │ ├── quickshift.html
│ │ │ ├── random_8c.html
│ │ │ ├── random_8h.html
│ │ │ ├── rodrigues_8h.html
│ │ │ ├── shuffle-def_8h.html
│ │ │ ├── sift_8c.html
│ │ │ ├── sift_8h.html
│ │ │ ├── sift-can.png
│ │ │ ├── sift-conv.png
│ │ │ ├── sift-conv-vlfeat.png
│ │ │ ├── sift-descr-easy.png
│ │ │ ├── sift-frame.png
│ │ │ ├── sift.html
│ │ │ ├── sift-image-frame.png
│ │ │ ├── sift-orient.png
│ │ │ ├── sift-ss.png
│ │ │ ├── slic_8c.html
│ │ │ ├── slic_8h.html
│ │ │ ├── slic.html
│ │ │ ├── stringop_8c.html
│ │ │ ├── stringop_8h.html
│ │ │ ├── structoption.html
│ │ │ ├── structVlAIB.html
│ │ │ ├── structVlArray.html
│ │ │ ├── structVlDsiftDescriptorGeometry.html
│ │ │ ├── structVlDsiftFilter.html
│ │ │ ├── structVlDsiftKeypoint.html
│ │ │ ├── struct__VlFileMeta.html
│ │ │ ├── structVlHIKMNode.html
│ │ │ ├── structVlHIKMTree.html
│ │ │ ├── structVlHomogeneousKernelMap.html
│ │ │ ├── structVlIKMFilt.html
│ │ │ ├── structVlKDForest.html
│ │ │ ├── structVlKDForestNeighbor.html
│ │ │ ├── structVlKMeans.html
│ │ │ ├── structVlLbp.html
│ │ │ ├── struct__VlMserExtrReg.html
│ │ │ ├── struct__VlMserFilt.html
│ │ │ ├── struct__VlMserReg.html
│ │ │ ├── struct__VlMserStats.html
│ │ │ ├── struct__vlmxOption.html
│ │ │ ├── structVlPgmImage.html
│ │ │ ├── structVlQS.html
│ │ │ ├── structVlRand.html
│ │ │ ├── structVlSiftFilt.html
│ │ │ ├── structVlSiftKeypoint.html
│ │ │ ├── structVlState.html
│ │ │ ├── structVlThreadSpecificState.html
│ │ │ ├── tab_a.png
│ │ │ ├── tab_b.png
│ │ │ ├── tab_h.png
│ │ │ ├── tabs.css
│ │ │ ├── tab_s.png
│ │ │ └── todo.html
│ │ ├── applications
│ │ │ ├── apps.html
│ │ │ ├── caltech-101-code.html
│ │ │ └── sift-mosaic-code.html
│ │ ├── compiling.html
│ │ ├── demo
│ │ │ ├── aib_basic_clust_1.jpg
│ │ │ ├── aib_basic_clust_2.jpg
│ │ │ ├── aib_basic_clust_3.jpg
│ │ │ ├── aib_basic_clust_4.jpg
│ │ │ ├── aib_basic_clust_5.jpg
│ │ │ ├── aib_basic_data.jpg
│ │ │ ├── dsift_accuracy.jpg
│ │ │ ├── dsift_speedup.jpg
│ │ │ ├── hikmeans-clusters.jpg
│ │ │ ├── hikmeans-tree.jpg
│ │ │ ├── ikmeans_elkan.jpg
│ │ │ ├── ikmeans_lloyd.jpg
│ │ │ ├── imdisttf_dist.jpg
│ │ │ ├── imdisttf_edge.jpg
│ │ │ ├── imdisttf_neigh.jpg
│ │ │ ├── imdisttf_src.jpg
│ │ │ ├── kdtree_ann_1.jpg
│ │ │ ├── kdtree_ann_2.jpg
│ │ │ ├── kdtree_ann_3.jpg
│ │ │ ├── kdtree_ann_4.jpg
│ │ │ ├── kdtree_circle_mean.jpg
│ │ │ ├── kdtree_circle_median.jpg
│ │ │ ├── kdtree_forest_query.jpg
│ │ │ ├── kdtree_forest_tree_1.jpg
│ │ │ ├── kdtree_forest_tree_2.jpg
│ │ │ ├── kdtree_forest_tree_3.jpg
│ │ │ ├── kdtree_forest_tree_4.jpg
│ │ │ ├── kdtree_self.jpg
│ │ │ ├── kdtree_sift_distortion.jpg
│ │ │ ├── kdtree_sift_incorrect.jpg
│ │ │ ├── kdtree_uniform_mean.jpg
│ │ │ ├── kdtree_uniform_median.jpg
│ │ │ ├── mser_basic_0.jpg
│ │ │ ├── mser_basic_contours_both.jpg
│ │ │ ├── mser_basic_contours.jpg
│ │ │ ├── mser_basic_frames_both.jpg
│ │ │ ├── mser_basic_frames.jpg
│ │ │ ├── mser_delta_0.jpg
│ │ │ ├── mser_delta_1.jpg
│ │ │ ├── mser_delta_2.jpg
│ │ │ ├── mser_delta_3.jpg
│ │ │ ├── mser_delta_4.jpg
│ │ │ ├── quickshift_image.jpg
│ │ │ ├── quickshift_qseg_1.jpg
│ │ │ ├── quickshift_qseg_2.jpg
│ │ │ ├── quickshift_qvis.jpg
│ │ │ ├── sift_basic_0.eps
│ │ │ ├── sift_basic_0.jpg
│ │ │ ├── sift_basic_1.eps
│ │ │ ├── sift_basic_1.jpg
│ │ │ ├── sift_basic_2.eps
│ │ │ ├── sift_basic_2.jpg
│ │ │ ├── sift_basic_3.eps
│ │ │ ├── sift_basic_3.jpg
│ │ │ ├── sift_basic_4.eps
│ │ │ ├── sift_basic_4.jpg
│ │ │ ├── sift_basic_5.eps
│ │ │ ├── sift_basic_5.jpg
│ │ │ ├── sift_cmd_1.jpg
│ │ │ ├── sift_cmd_2.jpg
│ │ │ ├── sift_cmd_3.jpg
│ │ │ ├── sift_cmd_4.jpg
│ │ │ ├── sift_edge_0.jpg
│ │ │ ├── sift_edge_1.jpg
│ │ │ ├── sift_edge_2.jpg
│ │ │ ├── sift_edge_3.jpg
│ │ │ ├── sift_edge_4.jpg
│ │ │ ├── sift_match_1.jpg
│ │ │ ├── sift_match_2.jpg
│ │ │ ├── sift_or.jpg
│ │ │ ├── sift_peak_0.jpg
│ │ │ ├── sift_peak_1.jpg
│ │ │ ├── sift_peak_2.jpg
│ │ │ ├── sift_peak_3.jpg
│ │ │ ├── sift_peak_4.jpg
│ │ │ ├── sift_vs_ubc_1.jpg
│ │ │ ├── sift_vs_ubc_2.jpg
│ │ │ ├── sift_vs_ubc_3.jpg
│ │ │ ├── slic_image.jpg
│ │ │ └── slic_segmentation.jpg
│ │ ├── doc.html
│ │ ├── download.html
│ │ ├── doxygen.css
│ │ ├── doxygen_footer.html
│ │ ├── doxygen_header.html
│ │ ├── figures
│ │ │ ├── dhog-bins.png
│ │ │ ├── dsift-geom.png
│ │ │ ├── mser-er.png
│ │ │ ├── mser-tree.png
│ │ │ ├── sift-angle.png
│ │ │ ├── sift-bins.png
│ │ │ ├── sift-can.png
│ │ │ ├── sift-conv.png
│ │ │ ├── sift-conv-vlfeat.png
│ │ │ ├── sift-descr-easy.png
│ │ │ ├── sift-frame.png
│ │ │ ├── sift-image-frame.png
│ │ │ ├── sift-orient.png
│ │ │ └── sift-ss.png
│ │ ├── gcc.html
│ │ ├── images
│ │ │ ├── caltech-collage.jpg
│ │ │ ├── down.png
│ │ │ ├── fulkerson.jpg
│ │ │ ├── help.png
│ │ │ ├── sift-mosaic.jpg
│ │ │ ├── using-vs-additional-deps.png
│ │ │ ├── using-vs-additional-include.png
│ │ │ ├── using-vs-additional-libdir.png
│ │ │ ├── using-vs-all-configurations.png
│ │ │ ├── using-vs-empty-project.png
│ │ │ ├── using-vs-new-project.png
│ │ │ ├── using-vs-nodll.png
│ │ │ ├── using-vs-ok.png
│ │ │ ├── using-vs-post-step.png
│ │ │ ├── using-vs-project-properties.png
│ │ │ ├── using-xcode-copy-2.png
│ │ │ ├── using-xcode-copy.png
│ │ │ ├── using-xcode-dylib.png
│ │ │ ├── using-xcode-edit.png
│ │ │ ├── using-xcode-err.png
│ │ │ ├── using-xcode-info.png
│ │ │ ├── using-xcode-new.png
│ │ │ ├── using-xcode-ok.png
│ │ │ └── vedaldi.jpg
│ │ ├── index.html
│ │ ├── install-c.html
│ │ ├── install-matlab.html
│ │ ├── install-shell.html
│ │ ├── license.html
│ │ ├── man
│ │ │ ├── man.html
│ │ │ ├── mser.html
│ │ │ ├── sift.html
│ │ │ └── vlfeat.html
│ │ ├── man-src
│ │ │ ├── man.html
│ │ │ ├── mser.1.html
│ │ │ ├── sift.1.html
│ │ │ └── vlfeat.7.html
│ │ ├── mdoc
│ │ │ ├── mdoc.html
│ │ │ ├── VL_AIBCUTHIST.html
│ │ │ ├── VL_AIBCUT.html
│ │ │ ├── VL_AIBCUTPUSH.html
│ │ │ ├── VL_AIBHIST.html
│ │ │ ├── VL_AIB.html
│ │ │ ├── VL_ALLDIST2.html
│ │ │ ├── VL_ALPHANUM.html
│ │ │ ├── VL_ARGPARSE.html
│ │ │ ├── VL_BINSEARCH.html
│ │ │ ├── VL_BINSUM.html
│ │ │ ├── VL_CF.html
│ │ │ ├── VL_CLICK.html
│ │ │ ├── VL_CLICKPOINT.html
│ │ │ ├── VL_CLICKSEGMENT.html
│ │ │ ├── VL_COLSUBSET.html
│ │ │ ├── VL_COMPILE.html
│ │ │ ├── VL_DDGAUSSIAN.html
│ │ │ ├── VL_DEMO.html
│ │ │ ├── VL_DGAUSSIAN.html
│ │ │ ├── VL_DSIFT.html
│ │ │ ├── VL_DSIGMOID.html
│ │ │ ├── VL_DWAFFINE.html
│ │ │ ├── VL_ERFILL.html
│ │ │ ├── VL_ERTR.html
│ │ │ ├── VL_FIGASPECT.html
│ │ │ ├── VL_FLATMAP.html
│ │ │ ├── VL_GAUSSIAN.html
│ │ │ ├── VL_GETPID.html
│ │ │ ├── VL_GRAD.html
│ │ │ ├── VL_HARRIS.html
│ │ │ ├── VL_HAT.html
│ │ │ ├── VL_HELP.html
│ │ │ ├── VL_HIKMEANSHIST.html
│ │ │ ├── VL_HIKMEANS.html
│ │ │ ├── VL_HIKMEANSPUSH.html
│ │ │ ├── VL_HISTMARG.html
│ │ │ ├── VL_HOMKERMAP.html
│ │ │ ├── VL_IHASHFIND.html
│ │ │ ├── VL_IHASHSUM.html
│ │ │ ├── VL_IHAT.html
│ │ │ ├── VL_IKMEANSHIST.html
│ │ │ ├── VL_IKMEANS.html
│ │ │ ├── VL_IKMEANSPUSH.html
│ │ │ ├── VL_IMARRAY.html
│ │ │ ├── VL_IMARRAYSC.html
│ │ │ ├── VL_IMDISTTF.html
│ │ │ ├── VL_IMDOWN.html
│ │ │ ├── VL_IMGRAD.html
│ │ │ ├── VL_IMINTEGRAL.html
│ │ │ ├── VL_IMREADBW.html
│ │ │ ├── VL_IMREADGRAY.html
│ │ │ ├── VL_IMSC.html
│ │ │ ├── VL_IMSEG.html
│ │ │ ├── VL_IMSMOOTH.html
│ │ │ ├── VL_IMTEST.html
│ │ │ ├── VL_IMUP.html
│ │ │ ├── VL_IMWBACKWARD.html
│ │ │ ├── VL_IMWHITEN.html
│ │ │ ├── VL_INTHIST.html
│ │ │ ├── VL_IRODR.html
│ │ │ ├── VL_KDTREEBUILD.html
│ │ │ ├── VL_KDTREEQUERY.html
│ │ │ ├── VL_KMEANS.html
│ │ │ ├── VL_LBPFLIPLR.html
│ │ │ ├── VL_LBP.html
│ │ │ ├── VL_LINESPEC2PROP.html
│ │ │ ├── VL_LOCALMAX.html
│ │ │ ├── VL_MSER.html
│ │ │ ├── VL_NOPREFIX.html
│ │ │ ├── VL_NUMDER2.html
│ │ │ ├── VL_NUMDER.html
│ │ │ ├── VL_OVERRIDE.html
│ │ │ ├── VL_PEGASOS.html
│ │ │ ├── VL_PHOW.html
│ │ │ ├── VL_PLOTFRAME.html
│ │ │ ├── VL_PLOTGRID.html
│ │ │ ├── VL_PLOTPOINT.html
│ │ │ ├── VL_PLOTSIFTDESCRIPTOR.html
│ │ │ ├── VL_PLOTSTYLE.html
│ │ │ ├── VL_PR.html
│ │ │ ├── VL_PRINTSIZE.html
│ │ │ ├── VL_QUICKSEG.html
│ │ │ ├── VL_QUICKSHIFT.html
│ │ │ ├── VL_QUICKVIS.html
│ │ │ ├── VL_RCOS.html
│ │ │ ├── VL_RGB2XYZ.html
│ │ │ ├── VL_ROC.html
│ │ │ ├── VL_RODR.html
│ │ │ ├── VL_ROOT.html
│ │ │ ├── VL_SAMPLINTHIST.html
│ │ │ ├── VL_SETUP.html
│ │ │ ├── VL_SIFTDESCRIPTOR.html
│ │ │ ├── VL_SIFT.html
│ │ │ ├── VL_SIGMOID.html
│ │ │ ├── VL_SIMDCTRL.html
│ │ │ ├── VL_SLIC.html
│ │ │ ├── VL_TIGHTSUBPLOT.html
│ │ │ ├── VL_TPS.html
│ │ │ ├── VL_TPSU.html
│ │ │ ├── VL_TWISTER.html
│ │ │ ├── VL_UBCMATCH.html
│ │ │ ├── VL_UBCREAD.html
│ │ │ ├── VL_VERSION.html
│ │ │ ├── VL_WAFFINE.html
│ │ │ ├── VL_WHISTC.html
│ │ │ ├── VL_WITPS.html
│ │ │ ├── VL_WTPS.html
│ │ │ ├── VL_XMKDIR.html
│ │ │ ├── VL_XYZ2LAB.html
│ │ │ ├── VL_XYZ2LUV.html
│ │ │ └── VL_XYZ2RGB.html
│ │ ├── overview
│ │ │ ├── aib.html
│ │ │ ├── dsift.html
│ │ │ ├── hikm.html
│ │ │ ├── ikm.html
│ │ │ ├── imdisttf.html
│ │ │ ├── kdtree.html
│ │ │ ├── mser.html
│ │ │ ├── quickshift.html
│ │ │ ├── sift.html
│ │ │ ├── slic.html
│ │ │ ├── tut.html
│ │ │ └── utils.html
│ │ ├── pygmentize.css
│ │ ├── search.html
│ │ ├── toolbox-src
│ │ │ ├── aib_vl_aibcuthist.html
│ │ │ ├── aib_vl_aibcut.html
│ │ │ ├── aib_vl_aibcutpush.html
│ │ │ ├── aib_vl_aibhist.html
│ │ │ ├── aib_vl_aib.html
│ │ │ ├── geometry_vl_hat.html
│ │ │ ├── geometry_vl_ihat.html
│ │ │ ├── geometry_vl_irodr.html
│ │ │ ├── geometry_vl_rodr.html
│ │ │ ├── imop_vl_dwaffine.html
│ │ │ ├── imop_vl_imarray.html
│ │ │ ├── imop_vl_imarraysc.html
│ │ │ ├── imop_vl_imdisttf.html
│ │ │ ├── imop_vl_imdown.html
│ │ │ ├── imop_vl_imgrad.html
│ │ │ ├── imop_vl_imintegral.html
│ │ │ ├── imop_vl_imreadbw.html
│ │ │ ├── imop_vl_imreadgray.html
│ │ │ ├── imop_vl_imsc.html
│ │ │ ├── imop_vl_imsmooth.html
│ │ │ ├── imop_vl_imtest.html
│ │ │ ├── imop_vl_imup.html
│ │ │ ├── imop_vl_imwbackward.html
│ │ │ ├── imop_vl_imwhiten.html
│ │ │ ├── imop_vl_rgb2xyz.html
│ │ │ ├── imop_vl_tps.html
│ │ │ ├── imop_vl_tpsu.html
│ │ │ ├── imop_vl_waffine.html
│ │ │ ├── imop_vl_witps.html
│ │ │ ├── imop_vl_wtps.html
│ │ │ ├── imop_vl_xyz2lab.html
│ │ │ ├── imop_vl_xyz2luv.html
│ │ │ ├── imop_vl_xyz2rgb.html
│ │ │ ├── kmeans_vl_hikmeanshist.html
│ │ │ ├── kmeans_vl_hikmeans.html
│ │ │ ├── kmeans_vl_hikmeanspush.html
│ │ │ ├── kmeans_vl_ikmeanshist.html
│ │ │ ├── kmeans_vl_ikmeans.html
│ │ │ ├── kmeans_vl_ikmeanspush.html
│ │ │ ├── kmeans_vl_kmeans.html
│ │ │ ├── mdoc.html
│ │ │ ├── misc_vl_alldist2.html
│ │ │ ├── misc_vl_alphanum.html
│ │ │ ├── misc_vl_argparse.html
│ │ │ ├── misc_vl_binsearch.html
│ │ │ ├── misc_vl_binsum.html
│ │ │ ├── misc_vl_colsubset.html
│ │ │ ├── misc_vl_getpid.html
│ │ │ ├── misc_vl_grad.html
│ │ │ ├── misc_vl_histmarg.html
│ │ │ ├── misc_vl_homkermap.html
│ │ │ ├── misc_vl_ihashfind.html
│ │ │ ├── misc_vl_ihashsum.html
│ │ │ ├── misc_vl_inthist.html
│ │ │ ├── misc_vl_kdtreebuild.html
│ │ │ ├── misc_vl_kdtreequery.html
│ │ │ ├── misc_vl_lbpfliplr.html
│ │ │ ├── misc_vl_lbp.html
│ │ │ ├── misc_vl_localmax.html
│ │ │ ├── misc_vl_numder2.html
│ │ │ ├── misc_vl_numder.html
│ │ │ ├── misc_vl_override.html
│ │ │ ├── misc_vl_pegasos.html
│ │ │ ├── misc_vl_samplinthist.html
│ │ │ ├── misc_vl_simdctrl.html
│ │ │ ├── misc_vl_twister.html
│ │ │ ├── misc_vl_version.html
│ │ │ ├── misc_vl_whistc.html
│ │ │ ├── misc_vl_xmkdir.html
│ │ │ ├── mser_vl_erfill.html
│ │ │ ├── mser_vl_ertr.html
│ │ │ ├── mser_vl_mser.html
│ │ │ ├── plotop_vl_cf.html
│ │ │ ├── plotop_vl_click.html
│ │ │ ├── plotop_vl_clickpoint.html
│ │ │ ├── plotop_vl_clicksegment.html
│ │ │ ├── plotop_vl_figaspect.html
│ │ │ ├── plotop_vl_linespec2prop.html
│ │ │ ├── plotop_vl_plotframe.html
│ │ │ ├── plotop_vl_plotgrid.html
│ │ │ ├── plotop_vl_plotpoint.html
│ │ │ ├── plotop_vl_plotstyle.html
│ │ │ ├── plotop_vl_pr.html
│ │ │ ├── plotop_vl_printsize.html
│ │ │ ├── plotop_vl_roc.html
│ │ │ ├── plotop_vl_tightsubplot.html
│ │ │ ├── quickshift_vl_flatmap.html
│ │ │ ├── quickshift_vl_imseg.html
│ │ │ ├── quickshift_vl_quickseg.html
│ │ │ ├── quickshift_vl_quickshift.html
│ │ │ ├── quickshift_vl_quickvis.html
│ │ │ ├── sift_vl_dsift.html
│ │ │ ├── sift_vl_phow.html
│ │ │ ├── sift_vl_plotsiftdescriptor.html
│ │ │ ├── sift_vl_siftdescriptor.html
│ │ │ ├── sift_vl_sift.html
│ │ │ ├── sift_vl_ubcmatch.html
│ │ │ ├── sift_vl_ubcread.html
│ │ │ ├── slic_vl_slic.html
│ │ │ ├── special_vl_ddgaussian.html
│ │ │ ├── special_vl_dgaussian.html
│ │ │ ├── special_vl_dsigmoid.html
│ │ │ ├── special_vl_gaussian.html
│ │ │ ├── special_vl_rcos.html
│ │ │ ├── special_vl_sigmoid.html
│ │ │ ├── vl_compile.html
│ │ │ ├── vl_demo.html
│ │ │ ├── vl_harris.html
│ │ │ ├── vl_help.html
│ │ │ ├── vl_noprefix.html
│ │ │ ├── vl_root.html
│ │ │ └── vl_setup.html
│ │ ├── vsexpress.html
│ │ ├── web.css
│ │ └── xcode.html
│ ├── docsrc
│ │ ├── about.html
│ │ ├── aib.html
│ │ ├── api.html
│ │ ├── apps.html
│ │ ├── compiling.html
│ │ ├── doc.html
│ │ ├── download.html
│ │ ├── doxygen.conf
│ │ ├── doxygen.css
│ │ ├── dsift.html
│ │ ├── dtd
│ │ │ └── xhtml1
│ │ │ ├── xhtml1.dcl
│ │ │ ├── xhtml1-frameset.dtd
│ │ │ ├── xhtml1-strict.dtd
│ │ │ ├── xhtml1-transitional.dtd
│ │ │ ├── xhtml-lat1.ent
│ │ │ ├── xhtml.soc
│ │ │ ├── xhtml-special.ent
│ │ │ └── xhtml-symbol.ent
│ │ ├── figures
│ │ │ ├── dhog-bins.fig
│ │ │ ├── dsift-geom.fig
│ │ │ ├── mser-er.fig
│ │ │ ├── mser-tree.fig
│ │ │ ├── sift-angle.fig
│ │ │ ├── sift-bins.fig
│ │ │ ├── sift-can.fig
│ │ │ ├── sift-conv.fig
│ │ │ ├── sift-conv-vlfeat.fig
│ │ │ ├── sift-descr-easy.fig
│ │ │ ├── sift-frame.fig
│ │ │ ├── sift-image-frame.fig
│ │ │ ├── sift-orient.fig
│ │ │ └── sift-ss.fig
│ │ ├── formatter.py
│ │ ├── hikm.html
│ │ ├── ikm.html
│ │ ├── images
│ │ │ ├── caltech-collage.jpg
│ │ │ ├── down.png
│ │ │ ├── fulkerson.jpg
│ │ │ ├── help.png
│ │ │ ├── sift-mosaic.jpg
│ │ │ ├── using-vs-additional-deps.png
│ │ │ ├── using-vs-additional-include.png
│ │ │ ├── using-vs-additional-libdir.png
│ │ │ ├── using-vs-all-configurations.png
│ │ │ ├── using-vs-empty-project.png
│ │ │ ├── using-vs-new-project.png
│ │ │ ├── using-vs-nodll.png
│ │ │ ├── using-vs-ok.png
│ │ │ ├── using-vs-post-step.png
│ │ │ ├── using-vs-project-properties.png
│ │ │ ├── using-xcode-copy-2.png
│ │ │ ├── using-xcode-copy.png
│ │ │ ├── using-xcode-dylib.png
│ │ │ ├── using-xcode-edit.png
│ │ │ ├── using-xcode-err.png
│ │ │ ├── using-xcode-info.png
│ │ │ ├── using-xcode-new.png
│ │ │ ├── using-xcode-ok.png
│ │ │ └── vedaldi.jpg
│ │ ├── imdisttf.html
│ │ ├── index.html
│ │ ├── install-c.html
│ │ ├── install-matlab.html
│ │ ├── install-shell.html
│ │ ├── kdtree.html
│ │ ├── license.html
│ │ ├── mdoc.py
│ │ ├── mser.html
│ │ ├── pygmentize.css
│ │ ├── quickshift.html
│ │ ├── sift.html
│ │ ├── slic.html
│ │ ├── tutorials.html
│ │ ├── using-gcc.html
│ │ ├── using-vsexpress.html
│ │ ├── using-xcode.html
│ │ ├── utils.html
│ │ ├── vlfeat.bib
│ │ ├── web.css
│ │ ├── webdoc.py
│ │ ├── web.xml
│ │ └── wikidoc.py
│ ├── make
│ │ ├── bin.mak
│ │ ├── dist.mak
│ │ ├── dll.mak
│ │ ├── doc.mak
│ │ ├── matlab.mak
│ │ ├── octave.mak
│ │ └── update-mak.sh
│ ├── Makefile
│ ├── Makefile.mak
│ ├── README
│ ├── src
│ │ ├── aib.c
│ │ ├── check.h
│ │ ├── generic-driver.h
│ │ ├── mser.1
│ │ ├── mser.c
│ │ ├── sift.1
│ │ ├── sift.c
│ │ ├── test_getopt_long.c
│ │ ├── test_heap-def.c
│ │ ├── test_host.c
│ │ ├── test_imopv.c
│ │ ├── test_mathop_abs.c
│ │ ├── test_mathop.c
│ │ ├── test_mathop_fast_resqrt.tc
│ │ ├── test_mathop_fast_sqrt_ui.tc
│ │ ├── test_nan.c
│ │ ├── test_qsort-def.c
│ │ ├── test_rand.c
│ │ ├── test_stringop.c
│ │ ├── test_threads.c
│ │ ├── test_vec_comp.c
│ │ └── vlfeat.7
│ ├── toolbox
│ │ ├── aib
│ │ │ ├── vl_aib.c
│ │ │ ├── vl_aibcuthist.m
│ │ │ ├── vl_aibcut.m
│ │ │ ├── vl_aibcutpush.m
│ │ │ ├── vl_aibhist.c
│ │ │ ├── vl_aibhist.m
│ │ │ └── vl_aib.m
│ │ ├── demo
│ │ │ ├── vl_demo_aib.m
│ │ │ ├── vl_demo_alldist.m
│ │ │ ├── vl_demo_cmd.m
│ │ │ ├── vl_demo_dsift.m
│ │ │ ├── vl_demo_imdisttf.m
│ │ │ ├── vl_demo_kdtree_ann.m
│ │ │ ├── vl_demo_kdtree_forest.m
│ │ │ ├── vl_demo_kdtree.m
│ │ │ ├── vl_demo_kdtree_plot.m
│ │ │ ├── vl_demo_kdtree_self.m
│ │ │ ├── vl_demo_kdtree_sift.m
│ │ │ ├── vl_demo_kmeans_init.m
│ │ │ ├── vl_demo_kmeans_vs_builtin.m
│ │ │ ├── vl_demo_mser_basic.m
│ │ │ ├── vl_demo_mser_cmd.m
│ │ │ ├── vl_demo_mser_delta.m
│ │ │ ├── vl_demo_print.m
│ │ │ ├── vl_demo_quickshift.m
│ │ │ ├── vl_demo_sift_basic.m
│ │ │ ├── vl_demo_sift_cmd.m
│ │ │ ├── vl_demo_sift_edge.m
│ │ │ ├── vl_demo_sift_match.m
│ │ │ ├── vl_demo_sift_or.m
│ │ │ ├── vl_demo_sift_peak.m
│ │ │ ├── vl_demo_sift_vs_ubc.m
│ │ │ └── vl_demo_slic.m
│ │ ├── geometry
│ │ │ ├── vl_hat.m
│ │ │ ├── vl_ihat.m
│ │ │ ├── vl_irodr.c
│ │ │ ├── vl_irodr.m
│ │ │ ├── vl_rodr.c
│ │ │ └── vl_rodr.m
│ │ ├── imop
│ │ │ ├── vl_dwaffine.m
│ │ │ ├── vl_imarray.m
│ │ │ ├── vl_imarraysc.m
│ │ │ ├── vl_imdisttf.c
│ │ │ ├── vl_imdisttf.m
│ │ │ ├── vl_imdown.m
│ │ │ ├── vl_imgrad.m
│ │ │ ├── vl_imintegral.c
│ │ │ ├── vl_imintegral.m
│ │ │ ├── vl_imreadbw.m
│ │ │ ├── vl_imreadgray.m
│ │ │ ├── vl_imsc.m
│ │ │ ├── vl_imsmooth.c
│ │ │ ├── vl_imsmooth.m
│ │ │ ├── vl_imtest.m
│ │ │ ├── vl_imup.m
│ │ │ ├── vl_imwbackward.m
│ │ │ ├── vl_imwbackwardmx.c
│ │ │ ├── vl_imwhiten.m
│ │ │ ├── vl_rgb2xyz.m
│ │ │ ├── vl_tps.m
│ │ │ ├── vl_tpsu.m
│ │ │ ├── vl_tpsumx.c
│ │ │ ├── vl_waffine.m
│ │ │ ├── vl_witps.m
│ │ │ ├── vl_wtps.m
│ │ │ ├── vl_xyz2lab.m
│ │ │ ├── vl_xyz2luv.m
│ │ │ └── vl_xyz2rgb.m
│ │ ├── kmeans
│ │ │ ├── vl_hikmeans.c
│ │ │ ├── vl_hikmeanshist.m
│ │ │ ├── vl_hikmeans.m
│ │ │ ├── vl_hikmeanspush.c
│ │ │ ├── vl_hikmeanspush.m
│ │ │ ├── vl_ikmeans.c
│ │ │ ├── vl_ikmeanshist.m
│ │ │ ├── vl_ikmeans.m
│ │ │ ├── vl_ikmeanspush.c
│ │ │ ├── vl_ikmeanspush.m
│ │ │ ├── vl_kmeans.c
│ │ │ └── vl_kmeans.m
│ │ ├── mex
│ │ │ ├── mexa64
│ │ │ │ ├── libvl.so
│ │ │ │ ├── vl_aibhist.mexa64
│ │ │ │ ├── vl_aib.mexa64
│ │ │ │ ├── vl_alldist2.mexa64
│ │ │ │ ├── vl_alldist.mexa64
│ │ │ │ ├── vl_binsearch.mexa64
│ │ │ │ ├── vl_binsum.mexa64
│ │ │ │ ├── vl_dsift.mexa64
│ │ │ │ ├── vl_erfill.mexa64
│ │ │ │ ├── vl_getpid.mexa64
│ │ │ │ ├── vl_hikmeans.mexa64
│ │ │ │ ├── vl_hikmeanspush.mexa64
│ │ │ │ ├── vl_homkermap.mexa64
│ │ │ │ ├── vl_ihashfind.mexa64
│ │ │ │ ├── vl_ihashsum.mexa64
│ │ │ │ ├── vl_ikmeans.mexa64
│ │ │ │ ├── vl_ikmeanspush.mexa64
│ │ │ │ ├── vl_imdisttf.mexa64
│ │ │ │ ├── vl_imintegral.mexa64
│ │ │ │ ├── vl_imsmooth.mexa64
│ │ │ │ ├── vl_imwbackwardmx.mexa64
│ │ │ │ ├── vl_inthist.mexa64
│ │ │ │ ├── vl_irodr.mexa64
│ │ │ │ ├── vl_kdtreebuild.mexa64
│ │ │ │ ├── vl_kdtreequery.mexa64
│ │ │ │ ├── vl_kmeans.mexa64
│ │ │ │ ├── vl_lbp.mexa64
│ │ │ │ ├── vl_localmax.mexa64
│ │ │ │ ├── vl_mser.mexa64
│ │ │ │ ├── vl_pegasos.mexa64
│ │ │ │ ├── vl_quickshift.mexa64
│ │ │ │ ├── vl_rodr.mexa64
│ │ │ │ ├── vl_samplinthist.mexa64
│ │ │ │ ├── vl_siftdescriptor.mexa64
│ │ │ │ ├── vl_sift.mexa64
│ │ │ │ ├── vl_simdctrl.mexa64
│ │ │ │ ├── vl_slic.mexa64
│ │ │ │ ├── vl_tpsumx.mexa64
│ │ │ │ ├── vl_twister.mexa64
│ │ │ │ ├── vl_ubcmatch.mexa64
│ │ │ │ └── vl_version.mexa64
│ │ │ ├── mexglx
│ │ │ │ ├── libvl.so
│ │ │ │ ├── vl_aibhist.mexglx
│ │ │ │ ├── vl_aib.mexglx
│ │ │ │ ├── vl_alldist2.mexglx
│ │ │ │ ├── vl_alldist.mexglx
│ │ │ │ ├── vl_binsearch.mexglx
│ │ │ │ ├── vl_binsum.mexglx
│ │ │ │ ├── vl_dsift.mexglx
│ │ │ │ ├── vl_erfill.mexglx
│ │ │ │ ├── vl_getpid.mexglx
│ │ │ │ ├── vl_hikmeans.mexglx
│ │ │ │ ├── vl_hikmeanspush.mexglx
│ │ │ │ ├── vl_homkermap.mexglx
│ │ │ │ ├── vl_ihashfind.mexglx
│ │ │ │ ├── vl_ihashsum.mexglx
│ │ │ │ ├── vl_ikmeans.mexglx
│ │ │ │ ├── vl_ikmeanspush.mexglx
│ │ │ │ ├── vl_imdisttf.mexglx
│ │ │ │ ├── vl_imintegral.mexglx
│ │ │ │ ├── vl_imsmooth.mexglx
│ │ │ │ ├── vl_imwbackwardmx.mexglx
│ │ │ │ ├── vl_inthist.mexglx
│ │ │ │ ├── vl_irodr.mexglx
│ │ │ │ ├── vl_kdtreebuild.mexglx
│ │ │ │ ├── vl_kdtreequery.mexglx
│ │ │ │ ├── vl_kmeans.mexglx
│ │ │ │ ├── vl_lbp.mexglx
│ │ │ │ ├── vl_localmax.mexglx
│ │ │ │ ├── vl_mser.mexglx
│ │ │ │ ├── vl_pegasos.mexglx
│ │ │ │ ├── vl_quickshift.mexglx
│ │ │ │ ├── vl_rodr.mexglx
│ │ │ │ ├── vl_samplinthist.mexglx
│ │ │ │ ├── vl_siftdescriptor.mexglx
│ │ │ │ ├── vl_sift.mexglx
│ │ │ │ ├── vl_simdctrl.mexglx
│ │ │ │ ├── vl_slic.mexglx
│ │ │ │ ├── vl_tpsumx.mexglx
│ │ │ │ ├── vl_twister.mexglx
│ │ │ │ ├── vl_ubcmatch.mexglx
│ │ │ │ └── vl_version.mexglx
│ │ │ ├── mexmaci
│ │ │ │ ├── libvl.dylib
│ │ │ │ ├── vl_aibhist.mexmaci
│ │ │ │ ├── vl_aib.mexmaci
│ │ │ │ ├── vl_alldist2.mexmaci
│ │ │ │ ├── vl_alldist.mexmaci
│ │ │ │ ├── vl_binsearch.mexmaci
│ │ │ │ ├── vl_binsum.mexmaci
│ │ │ │ ├── vl_dsift.mexmaci
│ │ │ │ ├── vl_erfill.mexmaci
│ │ │ │ ├── vl_getpid.mexmaci
│ │ │ │ ├── vl_hikmeans.mexmaci
│ │ │ │ ├── vl_hikmeanspush.mexmaci
│ │ │ │ ├── vl_homkermap.mexmaci
│ │ │ │ ├── vl_ihashfind.mexmaci
│ │ │ │ ├── vl_ihashsum.mexmaci
│ │ │ │ ├── vl_ikmeans.mexmaci
│ │ │ │ ├── vl_ikmeanspush.mexmaci
│ │ │ │ ├── vl_imdisttf.mexmaci
│ │ │ │ ├── vl_imintegral.mexmaci
│ │ │ │ ├── vl_imsmooth.mexmaci
│ │ │ │ ├── vl_imwbackwardmx.mexmaci
│ │ │ │ ├── vl_inthist.mexmaci
│ │ │ │ ├── vl_irodr.mexmaci
│ │ │ │ ├── vl_kdtreebuild.mexmaci
│ │ │ │ ├── vl_kdtreequery.mexmaci
│ │ │ │ ├── vl_kmeans.mexmaci
│ │ │ │ ├── vl_lbp.mexmaci
│ │ │ │ ├── vl_localmax.mexmaci
│ │ │ │ ├── vl_mser.mexmaci
│ │ │ │ ├── vl_pegasos.mexmaci
│ │ │ │ ├── vl_quickshift.mexmaci
│ │ │ │ ├── vl_rodr.mexmaci
│ │ │ │ ├── vl_samplinthist.mexmaci
│ │ │ │ ├── vl_siftdescriptor.mexmaci
│ │ │ │ ├── vl_sift.mexmaci
│ │ │ │ ├── vl_simdctrl.mexmaci
│ │ │ │ ├── vl_slic.mexmaci
│ │ │ │ ├── vl_tpsumx.mexmaci
│ │ │ │ ├── vl_twister.mexmaci
│ │ │ │ ├── vl_ubcmatch.mexmaci
│ │ │ │ └── vl_version.mexmaci
│ │ │ ├── mexmaci64
│ │ │ │ ├── libvl.dylib
│ │ │ │ ├── vl_aibhist.mexmaci64
│ │ │ │ ├── vl_aib.mexmaci64
│ │ │ │ ├── vl_alldist2.mexmaci64
│ │ │ │ ├── vl_alldist.mexmaci64
│ │ │ │ ├── vl_binsearch.mexmaci64
│ │ │ │ ├── vl_binsum.mexmaci64
│ │ │ │ ├── vl_dsift.mexmaci64
│ │ │ │ ├── vl_erfill.mexmaci64
│ │ │ │ ├── vl_getpid.mexmaci64
│ │ │ │ ├── vl_hikmeans.mexmaci64
│ │ │ │ ├── vl_hikmeanspush.mexmaci64
│ │ │ │ ├── vl_homkermap.mexmaci64
│ │ │ │ ├── vl_ihashfind.mexmaci64
│ │ │ │ ├── vl_ihashsum.mexmaci64
│ │ │ │ ├── vl_ikmeans.mexmaci64
│ │ │ │ ├── vl_ikmeanspush.mexmaci64
│ │ │ │ ├── vl_imdisttf.mexmaci64
│ │ │ │ ├── vl_imintegral.mexmaci64
│ │ │ │ ├── vl_imsmooth.mexmaci64
│ │ │ │ ├── vl_imwbackwardmx.mexmaci64
│ │ │ │ ├── vl_inthist.mexmaci64
│ │ │ │ ├── vl_irodr.mexmaci64
│ │ │ │ ├── vl_kdtreebuild.mexmaci64
│ │ │ │ ├── vl_kdtreequery.mexmaci64
│ │ │ │ ├── vl_kmeans.mexmaci64
│ │ │ │ ├── vl_lbp.mexmaci64
│ │ │ │ ├── vl_localmax.mexmaci64
│ │ │ │ ├── vl_mser.mexmaci64
│ │ │ │ ├── vl_pegasos.mexmaci64
│ │ │ │ ├── vl_quickshift.mexmaci64
│ │ │ │ ├── vl_rodr.mexmaci64
│ │ │ │ ├── vl_samplinthist.mexmaci64
│ │ │ │ ├── vl_siftdescriptor.mexmaci64
│ │ │ │ ├── vl_sift.mexmaci64
│ │ │ │ ├── vl_simdctrl.mexmaci64
│ │ │ │ ├── vl_slic.mexmaci64
│ │ │ │ ├── vl_tpsumx.mexmaci64
│ │ │ │ ├── vl_twister.mexmaci64
│ │ │ │ ├── vl_ubcmatch.mexmaci64
│ │ │ │ └── vl_version.mexmaci64
│ │ │ ├── mexw32
│ │ │ │ ├── Microsoft.VC90.CRT.manifest
│ │ │ │ ├── msvcr90.dll
│ │ │ │ ├── vl_aibhist.mexw32
│ │ │ │ ├── vl_aib.mexw32
│ │ │ │ ├── vl_alldist2.mexw32
│ │ │ │ ├── vl_alldist.mexw32
│ │ │ │ ├── vl_binsearch.mexw32
│ │ │ │ ├── vl_binsum.mexw32
│ │ │ │ ├── vl.dll
│ │ │ │ ├── vl_dsift.mexw32
│ │ │ │ ├── vl_erfill.mexw32
│ │ │ │ ├── vl_getpid.mexw32
│ │ │ │ ├── vl_hikmeans.mexw32
│ │ │ │ ├── vl_hikmeanspush.mexw32
│ │ │ │ ├── vl_homkermap.mexw32
│ │ │ │ ├── vl_ihashfind.mexw32
│ │ │ │ ├── vl_ihashsum.mexw32
│ │ │ │ ├── vl_ikmeans.mexw32
│ │ │ │ ├── vl_ikmeanspush.mexw32
│ │ │ │ ├── vl_imdisttf.mexw32
│ │ │ │ ├── vl_imintegral.mexw32
│ │ │ │ ├── vl_imsmooth.mexw32
│ │ │ │ ├── vl_imwbackwardmx.mexw32
│ │ │ │ ├── vl_inthist.mexw32
│ │ │ │ ├── vl_irodr.mexw32
│ │ │ │ ├── vl_kdtreebuild.mexw32
│ │ │ │ ├── vl_kdtreequery.mexw32
│ │ │ │ ├── vl_kmeans.mexw32
│ │ │ │ ├── vl_lbp.mexw32
│ │ │ │ ├── vl_localmax.mexw32
│ │ │ │ ├── vl_mser.mexw32
│ │ │ │ ├── vl_pegasos.mexw32
│ │ │ │ ├── vl_quickshift.mexw32
│ │ │ │ ├── vl_rodr.mexw32
│ │ │ │ ├── vl_samplinthist.mexw32
│ │ │ │ ├── vl_siftdescriptor.mexw32
│ │ │ │ ├── vl_sift.mexw32
│ │ │ │ ├── vl_simdctrl.mexw32
│ │ │ │ ├── vl_slic.mexw32
│ │ │ │ ├── vl_tpsumx.mexw32
│ │ │ │ ├── vl_twister.mexw32
│ │ │ │ ├── vl_ubcmatch.mexw32
│ │ │ │ └── vl_version.mexw32
│ │ │ └── mexw64
│ │ │ ├── Microsoft.VC90.CRT.manifest
│ │ │ ├── msvcr90.dll
│ │ │ ├── vl_aibhist.mexw64
│ │ │ ├── vl_aib.mexw64
│ │ │ ├── vl_alldist2.mexw64
│ │ │ ├── vl_alldist.mexw64
│ │ │ ├── vl_binsearch.mexw64
│ │ │ ├── vl_binsum.mexw64
│ │ │ ├── vl.dll
│ │ │ ├── vl_dsift.mexw64
│ │ │ ├── vl_erfill.mexw64
│ │ │ ├── vl_getpid.mexw64
│ │ │ ├── vl_hikmeans.mexw64
│ │ │ ├── vl_hikmeanspush.mexw64
│ │ │ ├── vl_homkermap.mexw64
│ │ │ ├── vl_ihashfind.mexw64
│ │ │ ├── vl_ihashsum.mexw64
│ │ │ ├── vl_ikmeans.mexw64
│ │ │ ├── vl_ikmeanspush.mexw64
│ │ │ ├── vl_imdisttf.mexw64
│ │ │ ├── vl_imintegral.mexw64
│ │ │ ├── vl_imsmooth.mexw64
│ │ │ ├── vl_imwbackwardmx.mexw64
│ │ │ ├── vl_inthist.mexw64
│ │ │ ├── vl_irodr.mexw64
│ │ │ ├── vl_kdtreebuild.mexw64
│ │ │ ├── vl_kdtreequery.mexw64
│ │ │ ├── vl_kmeans.mexw64
│ │ │ ├── vl_lbp.mexw64
│ │ │ ├── vl_localmax.mexw64
│ │ │ ├── vl_mser.mexw64
│ │ │ ├── vl_pegasos.mexw64
│ │ │ ├── vl_quickshift.mexw64
│ │ │ ├── vl_rodr.mexw64
│ │ │ ├── vl_samplinthist.mexw64
│ │ │ ├── vl_siftdescriptor.mexw64
│ │ │ ├── vl_sift.mexw64
│ │ │ ├── vl_simdctrl.mexw64
│ │ │ ├── vl_slic.mexw64
│ │ │ ├── vl_tpsumx.mexw64
│ │ │ ├── vl_twister.mexw64
│ │ │ ├── vl_ubcmatch.mexw64
│ │ │ └── vl_version.mexw64
│ │ ├── mexutils.h
│ │ ├── misc
│ │ │ ├── inthist.tc
│ │ │ ├── kdtree.h
│ │ │ ├── samplinthist.tc
│ │ │ ├── vl_alldist2.c
│ │ │ ├── vl_alldist2.m
│ │ │ ├── vl_alldist.c
│ │ │ ├── vl_alphanum.m
│ │ │ ├── vl_argparse.m
│ │ │ ├── vl_binsearch.c
│ │ │ ├── vl_binsearch.m
│ │ │ ├── vl_binsum.c
│ │ │ ├── vl_binsum.def
│ │ │ ├── vl_binsum.m
│ │ │ ├── vl_colsubset.m
│ │ │ ├── vl_getpid.c
│ │ │ ├── vl_getpid.m
│ │ │ ├── vl_grad.m
│ │ │ ├── vl_histmarg.m
│ │ │ ├── vl_homkermap.c
│ │ │ ├── vl_homkermap.m
│ │ │ ├── vl_ihashfind.c
│ │ │ ├── vl_ihashfind.m
│ │ │ ├── vl_ihashsum.c
│ │ │ ├── vl_ihashsum.m
│ │ │ ├── vl_inthist.c
│ │ │ ├── vl_inthist.m
│ │ │ ├── vl_kdtreebuild.c
│ │ │ ├── vl_kdtreebuild.m
│ │ │ ├── vl_kdtreequery.c
│ │ │ ├── vl_kdtreequery.m
│ │ │ ├── vl_lbp.c
│ │ │ ├── vl_lbpfliplr.m
│ │ │ ├── vl_lbp.m
│ │ │ ├── vl_localmax.c
│ │ │ ├── vl_localmax.m
│ │ │ ├── vl_numder2.m
│ │ │ ├── vl_numder.m
│ │ │ ├── vl_override.m
│ │ │ ├── vl_pegasos.c
│ │ │ ├── vl_pegasos.m
│ │ │ ├── vl_samplinthist.c
│ │ │ ├── vl_samplinthist.m
│ │ │ ├── vl_simdctrl.c
│ │ │ ├── vl_simdctrl.m
│ │ │ ├── vl_twister.c
│ │ │ ├── vl_twister.m
│ │ │ ├── vl_version.c
│ │ │ ├── vl_version.m
│ │ │ ├── vl_whistc.m
│ │ │ └── vl_xmkdir.m
│ │ ├── mser
│ │ │ ├── vl_erfill.c
│ │ │ ├── vl_erfill.m
│ │ │ ├── vl_ertr.m
│ │ │ ├── vl_mser.c
│ │ │ └── vl_mser.m
│ │ ├── noprefix
│ │ │ ├── aibcuthist.m
│ │ │ ├── aibcut.m
│ │ │ ├── aibcutpush.m
│ │ │ ├── aibhist.m
│ │ │ ├── aib.m
│ │ │ ├── alldist2.m
│ │ │ ├── alphanum.m
│ │ │ ├── argparse.m
│ │ │ ├── assert_almost_equal.m
│ │ │ ├── assert_equal.m
│ │ │ ├── assert_exception.m
│ │ │ ├── binsearch.m
│ │ │ ├── binsum.m
│ │ │ ├── cf.m
│ │ │ ├── click.m
│ │ │ ├── clickpoint.m
│ │ │ ├── clicksegment.m
│ │ │ ├── colsubset.m
│ │ │ ├── ddgaussian.m
│ │ │ ├── dgaussian.m
│ │ │ ├── dsift.m
│ │ │ ├── dsigmoid.m
│ │ │ ├── dwaffine.m
│ │ │ ├── erfill.m
│ │ │ ├── ertr.m
│ │ │ ├── figaspect.m
│ │ │ ├── flatmap.m
│ │ │ ├── gaussian.m
│ │ │ ├── getpid.m
│ │ │ ├── grad.m
│ │ │ ├── harris.m
│ │ │ ├── hat.m
│ │ │ ├── hikmeanshist.m
│ │ │ ├── hikmeans.m
│ │ │ ├── hikmeanspush.m
│ │ │ ├── histmarg.m
│ │ │ ├── homkermap.m
│ │ │ ├── ihashfind.m
│ │ │ ├── ihashsum.m
│ │ │ ├── ihat.m
│ │ │ ├── ikmeanshist.m
│ │ │ ├── ikmeans.m
│ │ │ ├── ikmeanspush.m
│ │ │ ├── imarray.m
│ │ │ ├── imarraysc.m
│ │ │ ├── imdisttf.m
│ │ │ ├── imdown.m
│ │ │ ├── imgrad.m
│ │ │ ├── imintegral.m
│ │ │ ├── imreadbw.m
│ │ │ ├── imreadgray.m
│ │ │ ├── imsc.m
│ │ │ ├── imseg.m
│ │ │ ├── imsmooth.m
│ │ │ ├── imtest.m
│ │ │ ├── imup.m
│ │ │ ├── imwbackward.m
│ │ │ ├── imwhiten.m
│ │ │ ├── inthist.m
│ │ │ ├── irodr.m
│ │ │ ├── kdtreebuild.m
│ │ │ ├── kdtreequery.m
│ │ │ ├── kmeans.m
│ │ │ ├── lbpfliplr.m
│ │ │ ├── lbp.m
│ │ │ ├── linespec2prop.m
│ │ │ ├── localmax.m
│ │ │ ├── mser.m
│ │ │ ├── noprefix.m
│ │ │ ├── numder2.m
│ │ │ ├── numder.m
│ │ │ ├── override.m
│ │ │ ├── pegasos.m
│ │ │ ├── phow.m
│ │ │ ├── plotframe.m
│ │ │ ├── plotgrid.m
│ │ │ ├── plotpoint.m
│ │ │ ├── plotsiftdescriptor.m
│ │ │ ├── plotstyle.m
│ │ │ ├── printsize.m
│ │ │ ├── pr.m
│ │ │ ├── quickseg.m
│ │ │ ├── quickshift.m
│ │ │ ├── quickvis.m
│ │ │ ├── rcos.m
│ │ │ ├── rgb2xyz.m
│ │ │ ├── roc.m
│ │ │ ├── rodr.m
│ │ │ ├── samplinthist.m
│ │ │ ├── siftdescriptor.m
│ │ │ ├── sift.m
│ │ │ ├── sigmoid.m
│ │ │ ├── simdctrl.m
│ │ │ ├── slic.m
│ │ │ ├── test.m
│ │ │ ├── tightsubplot.m
│ │ │ ├── tps.m
│ │ │ ├── tpsu.m
│ │ │ ├── twister.m
│ │ │ ├── ubcmatch.m
│ │ │ ├── ubcread.m
│ │ │ ├── waffine.m
│ │ │ ├── whistc.m
│ │ │ ├── witps.m
│ │ │ ├── wtps.m
│ │ │ ├── xmkdir.m
│ │ │ ├── xyz2lab.m
│ │ │ ├── xyz2luv.m
│ │ │ └── xyz2rgb.m
│ │ ├── plotop
│ │ │ ├── vl_cf.m
│ │ │ ├── vl_click.m
│ │ │ ├── vl_clickpoint.m
│ │ │ ├── vl_clicksegment.m
│ │ │ ├── vl_figaspect.m
│ │ │ ├── vl_linespec2prop.m
│ │ │ ├── vl_plotframe.m
│ │ │ ├── vl_plotgrid.m
│ │ │ ├── vl_plotpoint.m
│ │ │ ├── vl_plotstyle.m
│ │ │ ├── vl_printsize.m
│ │ │ ├── vl_pr.m
│ │ │ ├── vl_roc.m
│ │ │ └── vl_tightsubplot.m
│ │ ├── quickshift
│ │ │ ├── vl_flatmap.m
│ │ │ ├── vl_imseg.m
│ │ │ ├── vl_quickseg.m
│ │ │ ├── vl_quickshift.c
│ │ │ ├── vl_quickshift.m
│ │ │ └── vl_quickvis.m
│ │ ├── sift
│ │ │ ├── vl_dsift.c
│ │ │ ├── vl_dsift.m
│ │ │ ├── vl_phow.m
│ │ │ ├── vl_plotsiftdescriptor.m
│ │ │ ├── vl_sift.c
│ │ │ ├── vl_siftdescriptor.c
│ │ │ ├── vl_siftdescriptor.m
│ │ │ ├── vl_sift.m
│ │ │ ├── vl_ubcmatch.c
│ │ │ ├── vl_ubcmatch.m
│ │ │ └── vl_ubcread.m
│ │ ├── slic
│ │ │ ├── vl_slic.c
│ │ │ └── vl_slic.m
│ │ ├── special
│ │ │ ├── vl_ddgaussian.m
│ │ │ ├── vl_dgaussian.m
│ │ │ ├── vl_dsigmoid.m
│ │ │ ├── vl_gaussian.m
│ │ │ ├── vl_rcos.m
│ │ │ └── vl_sigmoid.m
│ │ ├── test
│ │ │ ├── vl_test_aibhist.m
│ │ │ ├── vl_test_alldist2.m
│ │ │ ├── vl_test_alldist2_sparse.m
│ │ │ ├── vl_test_assert.m
│ │ │ ├── vl_test_binsum.m
│ │ │ ├── vl_test_dhog_inter.m
│ │ │ ├── vl_test_dhog.m
│ │ │ ├── vl_test_hikmeans.m
│ │ │ ├── vl_test_homkmap.m
│ │ │ ├── vl_test_ihashsum.m
│ │ │ ├── vl_test_ikmeans.m
│ │ │ ├── vl_test_imintegral.m
│ │ │ ├── vl_test_imsmooth.m
│ │ │ ├── vl_test_imwbackwardmx.m
│ │ │ ├── vl_test_inthist.m
│ │ │ ├── vl_test_mser.m
│ │ │ ├── vl_test_pattern.m
│ │ │ ├── vl_test_sift.m
│ │ │ └── vl_test_twister.m
│ │ ├── vl_compile.m
│ │ ├── vl_demo.m
│ │ ├── vl_harris.m
│ │ ├── vl_help.m
│ │ ├── vl_noprefix.m
│ │ ├── vl_root.m
│ │ ├── vl_setup.m
│ │ └── xtest
│ │ ├── vl_assert_almost_equal.m
│ │ ├── vl_assert_equal.m
│ │ ├── vl_assert_exception.m
│ │ ├── vl_test_alldist.m
│ │ ├── vl_test_alphanum.m
│ │ ├── vl_test_argparse.m
│ │ ├── vl_test_binsearch.m
│ │ ├── vl_test_binsum.m
│ │ ├── vl_test_colsubset.m
│ │ ├── vl_test_dsift.m
│ │ ├── vl_test_grad.m
│ │ ├── vl_test_homkermap.m
│ │ ├── vl_test_imarray.m
│ │ ├── vl_test_imdisttf.m
│ │ ├── vl_test_imintegral.m
│ │ ├── vl_test_imsmooth.m
│ │ ├── vl_test_imwbackward.m
│ │ ├── vl_test_init.m
│ │ ├── vl_test_kdtree.m
│ │ ├── vl_test_kmeans.m
│ │ ├── vl_test_lbp.m
│ │ ├── vl_test.m
│ │ ├── vl_test_pegasos.m
│ │ ├── vl_test_phow.m
│ │ ├── vl_test_sift.m
│ │ ├── vl_test_slic.m
│ │ ├── vl_test_twister.m
│ │ └── vl_test_whistc.m
│ ├── vl
│ │ ├── aib.c
│ │ ├── aib.h
│ │ ├── array.c
│ │ ├── array.h
│ │ ├── dsift.c
│ │ ├── dsift.h
│ │ ├── float.th
│ │ ├── generic.c
│ │ ├── generic.h
│ │ ├── getopt_long.c
│ │ ├── getopt_long.h
│ │ ├── heap-def.h
│ │ ├── hikmeans.c
│ │ ├── hikmeans.h
│ │ ├── homkermap.c
│ │ ├── homkermap.h
│ │ ├── host.c
│ │ ├── host.h
│ │ ├── ikmeans.c
│ │ ├── ikmeans_elkan.tc
│ │ ├── ikmeans.h
│ │ ├── ikmeans_init.tc
│ │ ├── ikmeans_lloyd.tc
│ │ ├── imopv.c
│ │ ├── imopv.h
│ │ ├── imopv_sse2.c
│ │ ├── imopv_sse2.h
│ │ ├── kdtree.c
│ │ ├── kdtree.h
│ │ ├── kmeans.c
│ │ ├── kmeans.h
│ │ ├── lbp.c
│ │ ├── lbp.h
│ │ ├── mathop.c
│ │ ├── mathop.h
│ │ ├── mathop_sse2.c
│ │ ├── mathop_sse2.h
│ │ ├── mser.c
│ │ ├── mser.h
│ │ ├── pegasos.c
│ │ ├── pegasos.h
│ │ ├── pgm.c
│ │ ├── pgm.h
│ │ ├── qsort-def.h
│ │ ├── quickshift.c
│ │ ├── quickshift.h
│ │ ├── random.c
│ │ ├── random.h
│ │ ├── rodrigues.c
│ │ ├── rodrigues.h
│ │ ├── shuffle-def.h
│ │ ├── sift.c
│ │ ├── sift.h
│ │ ├── slic.c
│ │ ├── slic.h
│ │ ├── stringop.c
│ │ └── stringop.h
│ ├── vlfeat.sln
│ ├── vlfeat.vcproj
│ └── vlfeat.xcodeproj
│ ├── project.pbxproj
│ └── xcshareddata
│ └── xcschemes
│ ├── make doc-api.xcscheme
│ ├── make info.xcscheme
│ └── make.xcscheme
├── merge2graphs.m
├── outputPly.m
├── pair2graph.m
├── peig5pt.m
├── points2ply.m
├── PoseEMat.m
├── ransac5point.m
├── README
├── removeOutlierPts.m
├── reprojectionResidual.m
├── RtFromE.m
├── RtToolbox
│ ├── AngleAxis2RotationMatrix.m
│ ├── AngleAxisRotatePts.m
│ ├── concatenateRts.m
│ ├── inverseRt.m
│ ├── RotationMatrix2AngleAxis.m
│ ├── transformDirByRt.m
│ ├── transformPtsByRt.m
│ └── xprodmat.m
├── SFMedu2.m
├── showMatches.m
├── triangulate.m
├── unpackMotStrf.m
├── vgg_contreps.m
├── vgg_X_from_xP_lin.m
├── vgg_X_from_xP_nonlin.m
└── visualizeGraph.m
125 directories, 1881 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论