├── .gitignore ├── Makefile ├── README.md ├── docs ├── ack.tex ├── appendix1.tex ├── chap01.tex ├── chap02.tex ├── chap03.tex ├── chap04.tex ├── chap05.tex ├── cover.tex └── disclaim.tex ├── figure ├── chap01_example.tex ├── chap03_hole.tex ├── chap04_improve.tex └── chap04_voc12_comparison.tex ├── image ├── appendix1 │ ├── 1 │ │ ├── 2007_000042.png │ │ ├── 2007_000663.png │ │ ├── 2009_004579.png │ │ ├── 2011_000813.png │ │ ├── 2011_001159.png │ │ ├── 2011_003145.png │ │ └── 2011_003256.png │ ├── 3 │ │ ├── 2007_000042.png │ │ ├── 2007_000663.png │ │ ├── 2009_004579.png │ │ ├── 2011_000813.png │ │ ├── 2011_001159.png │ │ ├── 2011_003145.png │ │ └── 2011_003256.png │ ├── 5 │ │ ├── 2007_000042.png │ │ ├── 2007_000663.png │ │ ├── 2009_004579.png │ │ ├── 2011_000813.png │ │ ├── 2011_001159.png │ │ ├── 2011_003145.png │ │ └── 2011_003256.png │ ├── 2007_000042.jpg │ ├── 2007_000042.png │ ├── 2007_000663.jpg │ ├── 2007_000663.png │ ├── 2009_004579.jpg │ ├── 2009_004579.png │ ├── 2011_000813.jpg │ ├── 2011_000813.png │ ├── 2011_001159.jpg │ ├── 2011_001159.png │ ├── 2011_003145.jpg │ ├── 2011_003145.png │ ├── 2011_003256.jpg │ └── 2011_003256.png ├── example │ ├── 2007_000799.jpg │ ├── 2007_000799.pdf │ ├── 2007_002094.jpg │ ├── 2007_002094.pdf │ ├── 2007_003194.jpg │ ├── 2007_003194.pdf │ ├── 2007_004483.jpg │ └── 2007_004483.pdf ├── illustration │ ├── hole.pdf │ ├── neighboring.pdf │ ├── network1.pdf │ └── networkstructure.pdf ├── improvement │ ├── 2007_000663.jpg │ ├── 2007_000663.png │ ├── 2007_000663_1.png │ ├── 2007_000663_2.png │ ├── 2007_000663_3.png │ ├── 2007_000663_4.png │ └── 2007_000663_5.png ├── logo.png └── result │ ├── colorbar.png │ ├── combine.eps │ ├── compare │ ├── 2007_003349.jpg │ ├── 2007_003349.png │ ├── 2007_004241.jpg │ ├── 2007_004241.png │ ├── 2007_005173.jpg │ ├── 2007_005173.png │ ├── 2007_005331.jpg │ ├── 2007_005331.png │ ├── 2007_006678.jpg │ ├── 2007_006678.png │ ├── 2009_004507.jpg │ ├── 2009_004507.png │ ├── 2010_005284.jpg │ ├── 2010_005284.png │ ├── compare_horse.odg │ ├── compare_sheep.odg │ ├── deeplab_bird.png │ ├── deeplab_bus.png │ ├── deeplab_dog.png │ ├── fcn_boat.png │ ├── fcn_horse.png │ ├── fcn_motor.png │ ├── fcn_sheep.png │ ├── gt_horse.pdf │ ├── gt_horse.png │ ├── gt_sheep.pdf │ ├── im_horse.pdf │ ├── im_sheep.pdf │ ├── my_bird.png │ ├── my_boat.png │ ├── my_bus.png │ ├── my_dog.png │ ├── my_horse.pdf │ ├── my_horse.png │ ├── my_motor.png │ ├── my_sheep.pdf │ ├── my_sheep.png │ ├── sds_boat.png │ ├── sds_horse.png │ ├── sds_motor.png │ ├── sds_sheep.png │ ├── zoom_bird.png │ ├── zoom_bus.png │ └── zoom_dog.png │ ├── confusion.eps │ ├── confusion.pdf │ └── error │ ├── 2007_002539.jpg │ ├── 2007_002539.png │ ├── 2007_008964.jpg │ ├── 2007_008964.png │ ├── 2007_009088.jpg │ ├── 2007_009088.png │ ├── 2008_000673.jpg │ ├── 2008_000673.png │ ├── 2008_000763.jpg │ ├── 2008_000763.png │ ├── 2008_001580.jpg │ ├── 2008_001580.png │ ├── p_2007_002539.png │ ├── p_2007_008964.png │ ├── p_2007_009088.png │ ├── p_2008_000673.png │ ├── p_2008_000763.png │ └── p_2008_001580.png ├── main.bib ├── main.pdf ├── main.tex ├── packages ├── algorithm2e.sty ├── algorithm2e.tex └── ctex-xecjk-adobefonts.def ├── presentation ├── Makefile ├── SYSU_Logo.jpg ├── chap01.tex ├── chap02.tex ├── chap03.tex ├── chap04.tex ├── chap05.tex ├── chap06.tex ├── figures │ ├── CNN.png │ ├── Deeplab.png │ ├── FCN.png │ ├── LSTM.png │ ├── gridlstm.png │ ├── lstm.pdf │ ├── lstmblock1.png │ ├── lstmblock2.png │ ├── lstmblock3.png │ ├── siftflow │ │ ├── coast_bea10.jpg │ │ ├── forest_text50.jpg │ │ ├── highway_gre644.jpg │ │ ├── mountain_n18058.jpg │ │ ├── opencountry_land732.jpg │ │ └── tallbuilding_urban991.jpg │ └── zoom-out.png ├── pre.pdf ├── pre.tex └── thubeamer.sty ├── sysuthesis.bst ├── sysuthesis.cls └── table ├── chap04_siftflow_result.tex └── chap04_voc_val.tex /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/README.md -------------------------------------------------------------------------------- /docs/ack.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/docs/ack.tex -------------------------------------------------------------------------------- /docs/appendix1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/docs/appendix1.tex -------------------------------------------------------------------------------- /docs/chap01.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/docs/chap01.tex -------------------------------------------------------------------------------- /docs/chap02.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/docs/chap02.tex -------------------------------------------------------------------------------- /docs/chap03.tex: -------------------------------------------------------------------------------- 1 | \chapter{研究方法} 2 | \label{cha:experiment} 3 | 4 | -------------------------------------------------------------------------------- /docs/chap04.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/docs/chap04.tex -------------------------------------------------------------------------------- /docs/chap05.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/docs/chap05.tex -------------------------------------------------------------------------------- /docs/cover.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/docs/cover.tex -------------------------------------------------------------------------------- /docs/disclaim.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/docs/disclaim.tex -------------------------------------------------------------------------------- /figure/chap01_example.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/figure/chap01_example.tex -------------------------------------------------------------------------------- /figure/chap03_hole.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/figure/chap03_hole.tex -------------------------------------------------------------------------------- /figure/chap04_improve.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/figure/chap04_improve.tex -------------------------------------------------------------------------------- /figure/chap04_voc12_comparison.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/figure/chap04_voc12_comparison.tex -------------------------------------------------------------------------------- /image/appendix1/1/2007_000042.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/appendix1/1/2007_000042.png -------------------------------------------------------------------------------- /image/appendix1/1/2007_000663.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/appendix1/1/2007_000663.png -------------------------------------------------------------------------------- /image/appendix1/1/2009_004579.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/appendix1/1/2009_004579.png -------------------------------------------------------------------------------- /image/appendix1/1/2011_000813.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/appendix1/1/2011_000813.png -------------------------------------------------------------------------------- /image/appendix1/1/2011_001159.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/appendix1/1/2011_001159.png -------------------------------------------------------------------------------- /image/appendix1/1/2011_003145.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/appendix1/1/2011_003145.png -------------------------------------------------------------------------------- /image/appendix1/1/2011_003256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/appendix1/1/2011_003256.png -------------------------------------------------------------------------------- /image/appendix1/2007_000042.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/appendix1/2007_000042.jpg -------------------------------------------------------------------------------- /image/appendix1/2007_000042.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/appendix1/2007_000042.png -------------------------------------------------------------------------------- /image/appendix1/2007_000663.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/appendix1/2007_000663.jpg -------------------------------------------------------------------------------- /image/appendix1/2007_000663.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/appendix1/2007_000663.png -------------------------------------------------------------------------------- /image/appendix1/2009_004579.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/appendix1/2009_004579.jpg -------------------------------------------------------------------------------- /image/appendix1/2009_004579.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/appendix1/2009_004579.png -------------------------------------------------------------------------------- /image/appendix1/2011_000813.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/appendix1/2011_000813.jpg -------------------------------------------------------------------------------- /image/appendix1/2011_000813.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/appendix1/2011_000813.png -------------------------------------------------------------------------------- /image/appendix1/2011_001159.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/appendix1/2011_001159.jpg -------------------------------------------------------------------------------- /image/appendix1/2011_001159.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/appendix1/2011_001159.png -------------------------------------------------------------------------------- /image/appendix1/2011_003145.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/appendix1/2011_003145.jpg -------------------------------------------------------------------------------- /image/appendix1/2011_003145.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/appendix1/2011_003145.png -------------------------------------------------------------------------------- /image/appendix1/2011_003256.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/appendix1/2011_003256.jpg -------------------------------------------------------------------------------- /image/appendix1/2011_003256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/appendix1/2011_003256.png -------------------------------------------------------------------------------- /image/appendix1/3/2007_000042.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/appendix1/3/2007_000042.png -------------------------------------------------------------------------------- /image/appendix1/3/2007_000663.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/appendix1/3/2007_000663.png -------------------------------------------------------------------------------- /image/appendix1/3/2009_004579.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/appendix1/3/2009_004579.png -------------------------------------------------------------------------------- /image/appendix1/3/2011_000813.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/appendix1/3/2011_000813.png -------------------------------------------------------------------------------- /image/appendix1/3/2011_001159.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/appendix1/3/2011_001159.png -------------------------------------------------------------------------------- /image/appendix1/3/2011_003145.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/appendix1/3/2011_003145.png -------------------------------------------------------------------------------- /image/appendix1/3/2011_003256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/appendix1/3/2011_003256.png -------------------------------------------------------------------------------- /image/appendix1/5/2007_000042.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/appendix1/5/2007_000042.png -------------------------------------------------------------------------------- /image/appendix1/5/2007_000663.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/appendix1/5/2007_000663.png -------------------------------------------------------------------------------- /image/appendix1/5/2009_004579.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/appendix1/5/2009_004579.png -------------------------------------------------------------------------------- /image/appendix1/5/2011_000813.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/appendix1/5/2011_000813.png -------------------------------------------------------------------------------- /image/appendix1/5/2011_001159.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/appendix1/5/2011_001159.png -------------------------------------------------------------------------------- /image/appendix1/5/2011_003145.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/appendix1/5/2011_003145.png -------------------------------------------------------------------------------- /image/appendix1/5/2011_003256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/appendix1/5/2011_003256.png -------------------------------------------------------------------------------- /image/example/2007_000799.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/example/2007_000799.jpg -------------------------------------------------------------------------------- /image/example/2007_000799.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/example/2007_000799.pdf -------------------------------------------------------------------------------- /image/example/2007_002094.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/example/2007_002094.jpg -------------------------------------------------------------------------------- /image/example/2007_002094.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/example/2007_002094.pdf -------------------------------------------------------------------------------- /image/example/2007_003194.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/example/2007_003194.jpg -------------------------------------------------------------------------------- /image/example/2007_003194.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/example/2007_003194.pdf -------------------------------------------------------------------------------- /image/example/2007_004483.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/example/2007_004483.jpg -------------------------------------------------------------------------------- /image/example/2007_004483.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/example/2007_004483.pdf -------------------------------------------------------------------------------- /image/illustration/hole.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/illustration/hole.pdf -------------------------------------------------------------------------------- /image/illustration/neighboring.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/illustration/neighboring.pdf -------------------------------------------------------------------------------- /image/illustration/network1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/illustration/network1.pdf -------------------------------------------------------------------------------- /image/illustration/networkstructure.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/illustration/networkstructure.pdf -------------------------------------------------------------------------------- /image/improvement/2007_000663.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/improvement/2007_000663.jpg -------------------------------------------------------------------------------- /image/improvement/2007_000663.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/improvement/2007_000663.png -------------------------------------------------------------------------------- /image/improvement/2007_000663_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/improvement/2007_000663_1.png -------------------------------------------------------------------------------- /image/improvement/2007_000663_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/improvement/2007_000663_2.png -------------------------------------------------------------------------------- /image/improvement/2007_000663_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/improvement/2007_000663_3.png -------------------------------------------------------------------------------- /image/improvement/2007_000663_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/improvement/2007_000663_4.png -------------------------------------------------------------------------------- /image/improvement/2007_000663_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/improvement/2007_000663_5.png -------------------------------------------------------------------------------- /image/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/logo.png -------------------------------------------------------------------------------- /image/result/colorbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/colorbar.png -------------------------------------------------------------------------------- /image/result/combine.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/combine.eps -------------------------------------------------------------------------------- /image/result/compare/2007_003349.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/compare/2007_003349.jpg -------------------------------------------------------------------------------- /image/result/compare/2007_003349.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/compare/2007_003349.png -------------------------------------------------------------------------------- /image/result/compare/2007_004241.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/compare/2007_004241.jpg -------------------------------------------------------------------------------- /image/result/compare/2007_004241.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/compare/2007_004241.png -------------------------------------------------------------------------------- /image/result/compare/2007_005173.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/compare/2007_005173.jpg -------------------------------------------------------------------------------- /image/result/compare/2007_005173.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/compare/2007_005173.png -------------------------------------------------------------------------------- /image/result/compare/2007_005331.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/compare/2007_005331.jpg -------------------------------------------------------------------------------- /image/result/compare/2007_005331.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/compare/2007_005331.png -------------------------------------------------------------------------------- /image/result/compare/2007_006678.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/compare/2007_006678.jpg -------------------------------------------------------------------------------- /image/result/compare/2007_006678.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/compare/2007_006678.png -------------------------------------------------------------------------------- /image/result/compare/2009_004507.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/compare/2009_004507.jpg -------------------------------------------------------------------------------- /image/result/compare/2009_004507.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/compare/2009_004507.png -------------------------------------------------------------------------------- /image/result/compare/2010_005284.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/compare/2010_005284.jpg -------------------------------------------------------------------------------- /image/result/compare/2010_005284.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/compare/2010_005284.png -------------------------------------------------------------------------------- /image/result/compare/compare_horse.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/compare/compare_horse.odg -------------------------------------------------------------------------------- /image/result/compare/compare_sheep.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/compare/compare_sheep.odg -------------------------------------------------------------------------------- /image/result/compare/deeplab_bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/compare/deeplab_bird.png -------------------------------------------------------------------------------- /image/result/compare/deeplab_bus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/compare/deeplab_bus.png -------------------------------------------------------------------------------- /image/result/compare/deeplab_dog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/compare/deeplab_dog.png -------------------------------------------------------------------------------- /image/result/compare/fcn_boat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/compare/fcn_boat.png -------------------------------------------------------------------------------- /image/result/compare/fcn_horse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/compare/fcn_horse.png -------------------------------------------------------------------------------- /image/result/compare/fcn_motor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/compare/fcn_motor.png -------------------------------------------------------------------------------- /image/result/compare/fcn_sheep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/compare/fcn_sheep.png -------------------------------------------------------------------------------- /image/result/compare/gt_horse.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/compare/gt_horse.pdf -------------------------------------------------------------------------------- /image/result/compare/gt_horse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/compare/gt_horse.png -------------------------------------------------------------------------------- /image/result/compare/gt_sheep.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/compare/gt_sheep.pdf -------------------------------------------------------------------------------- /image/result/compare/im_horse.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/compare/im_horse.pdf -------------------------------------------------------------------------------- /image/result/compare/im_sheep.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/compare/im_sheep.pdf -------------------------------------------------------------------------------- /image/result/compare/my_bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/compare/my_bird.png -------------------------------------------------------------------------------- /image/result/compare/my_boat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/compare/my_boat.png -------------------------------------------------------------------------------- /image/result/compare/my_bus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/compare/my_bus.png -------------------------------------------------------------------------------- /image/result/compare/my_dog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/compare/my_dog.png -------------------------------------------------------------------------------- /image/result/compare/my_horse.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/compare/my_horse.pdf -------------------------------------------------------------------------------- /image/result/compare/my_horse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/compare/my_horse.png -------------------------------------------------------------------------------- /image/result/compare/my_motor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/compare/my_motor.png -------------------------------------------------------------------------------- /image/result/compare/my_sheep.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/compare/my_sheep.pdf -------------------------------------------------------------------------------- /image/result/compare/my_sheep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/compare/my_sheep.png -------------------------------------------------------------------------------- /image/result/compare/sds_boat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/compare/sds_boat.png -------------------------------------------------------------------------------- /image/result/compare/sds_horse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/compare/sds_horse.png -------------------------------------------------------------------------------- /image/result/compare/sds_motor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/compare/sds_motor.png -------------------------------------------------------------------------------- /image/result/compare/sds_sheep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/compare/sds_sheep.png -------------------------------------------------------------------------------- /image/result/compare/zoom_bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/compare/zoom_bird.png -------------------------------------------------------------------------------- /image/result/compare/zoom_bus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/compare/zoom_bus.png -------------------------------------------------------------------------------- /image/result/compare/zoom_dog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/compare/zoom_dog.png -------------------------------------------------------------------------------- /image/result/confusion.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/confusion.eps -------------------------------------------------------------------------------- /image/result/confusion.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/confusion.pdf -------------------------------------------------------------------------------- /image/result/error/2007_002539.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/error/2007_002539.jpg -------------------------------------------------------------------------------- /image/result/error/2007_002539.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/error/2007_002539.png -------------------------------------------------------------------------------- /image/result/error/2007_008964.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/error/2007_008964.jpg -------------------------------------------------------------------------------- /image/result/error/2007_008964.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/error/2007_008964.png -------------------------------------------------------------------------------- /image/result/error/2007_009088.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/error/2007_009088.jpg -------------------------------------------------------------------------------- /image/result/error/2007_009088.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/error/2007_009088.png -------------------------------------------------------------------------------- /image/result/error/2008_000673.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/error/2008_000673.jpg -------------------------------------------------------------------------------- /image/result/error/2008_000673.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/error/2008_000673.png -------------------------------------------------------------------------------- /image/result/error/2008_000763.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/error/2008_000763.jpg -------------------------------------------------------------------------------- /image/result/error/2008_000763.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/error/2008_000763.png -------------------------------------------------------------------------------- /image/result/error/2008_001580.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/error/2008_001580.jpg -------------------------------------------------------------------------------- /image/result/error/2008_001580.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/error/2008_001580.png -------------------------------------------------------------------------------- /image/result/error/p_2007_002539.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/error/p_2007_002539.png -------------------------------------------------------------------------------- /image/result/error/p_2007_008964.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/error/p_2007_008964.png -------------------------------------------------------------------------------- /image/result/error/p_2007_009088.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/error/p_2007_009088.png -------------------------------------------------------------------------------- /image/result/error/p_2008_000673.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/error/p_2008_000673.png -------------------------------------------------------------------------------- /image/result/error/p_2008_000763.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/error/p_2008_000763.png -------------------------------------------------------------------------------- /image/result/error/p_2008_001580.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/image/result/error/p_2008_001580.png -------------------------------------------------------------------------------- /main.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/main.bib -------------------------------------------------------------------------------- /main.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/main.pdf -------------------------------------------------------------------------------- /main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/main.tex -------------------------------------------------------------------------------- /packages/algorithm2e.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/packages/algorithm2e.sty -------------------------------------------------------------------------------- /packages/algorithm2e.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/packages/algorithm2e.tex -------------------------------------------------------------------------------- /packages/ctex-xecjk-adobefonts.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/packages/ctex-xecjk-adobefonts.def -------------------------------------------------------------------------------- /presentation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/presentation/Makefile -------------------------------------------------------------------------------- /presentation/SYSU_Logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/presentation/SYSU_Logo.jpg -------------------------------------------------------------------------------- /presentation/chap01.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/presentation/chap01.tex -------------------------------------------------------------------------------- /presentation/chap02.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/presentation/chap02.tex -------------------------------------------------------------------------------- /presentation/chap03.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/presentation/chap03.tex -------------------------------------------------------------------------------- /presentation/chap04.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/presentation/chap04.tex -------------------------------------------------------------------------------- /presentation/chap05.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/presentation/chap05.tex -------------------------------------------------------------------------------- /presentation/chap06.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/presentation/chap06.tex -------------------------------------------------------------------------------- /presentation/figures/CNN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/presentation/figures/CNN.png -------------------------------------------------------------------------------- /presentation/figures/Deeplab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/presentation/figures/Deeplab.png -------------------------------------------------------------------------------- /presentation/figures/FCN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/presentation/figures/FCN.png -------------------------------------------------------------------------------- /presentation/figures/LSTM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/presentation/figures/LSTM.png -------------------------------------------------------------------------------- /presentation/figures/gridlstm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/presentation/figures/gridlstm.png -------------------------------------------------------------------------------- /presentation/figures/lstm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/presentation/figures/lstm.pdf -------------------------------------------------------------------------------- /presentation/figures/lstmblock1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/presentation/figures/lstmblock1.png -------------------------------------------------------------------------------- /presentation/figures/lstmblock2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/presentation/figures/lstmblock2.png -------------------------------------------------------------------------------- /presentation/figures/lstmblock3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/presentation/figures/lstmblock3.png -------------------------------------------------------------------------------- /presentation/figures/siftflow/coast_bea10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/presentation/figures/siftflow/coast_bea10.jpg -------------------------------------------------------------------------------- /presentation/figures/siftflow/forest_text50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/presentation/figures/siftflow/forest_text50.jpg -------------------------------------------------------------------------------- /presentation/figures/siftflow/highway_gre644.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/presentation/figures/siftflow/highway_gre644.jpg -------------------------------------------------------------------------------- /presentation/figures/siftflow/mountain_n18058.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/presentation/figures/siftflow/mountain_n18058.jpg -------------------------------------------------------------------------------- /presentation/figures/siftflow/opencountry_land732.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/presentation/figures/siftflow/opencountry_land732.jpg -------------------------------------------------------------------------------- /presentation/figures/siftflow/tallbuilding_urban991.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/presentation/figures/siftflow/tallbuilding_urban991.jpg -------------------------------------------------------------------------------- /presentation/figures/zoom-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/presentation/figures/zoom-out.png -------------------------------------------------------------------------------- /presentation/pre.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/presentation/pre.pdf -------------------------------------------------------------------------------- /presentation/pre.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/presentation/pre.tex -------------------------------------------------------------------------------- /presentation/thubeamer.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/presentation/thubeamer.sty -------------------------------------------------------------------------------- /sysuthesis.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/sysuthesis.bst -------------------------------------------------------------------------------- /sysuthesis.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/sysuthesis.cls -------------------------------------------------------------------------------- /table/chap04_siftflow_result.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/table/chap04_siftflow_result.tex -------------------------------------------------------------------------------- /table/chap04_voc_val.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanyingc/SYSU-LaTex-Thesis/HEAD/table/chap04_voc_val.tex --------------------------------------------------------------------------------