├── .gitignore ├── README.md ├── apps ├── __init__.py └── cbir.py ├── conf ├── ferrari_phash.txt └── log.conf ├── logs ├── model.log ├── webcategory.log └── worker.log ├── main.py ├── settings.py ├── static ├── dataset │ ├── README.md │ └── ferrari │ │ ├── README.txt │ │ ├── black │ │ ├── 2828686873_2fa36f83d7_b.jpg │ │ ├── 2828686873_2fa36f83d7_b.xml │ │ ├── 2888849442_c672a6ba10_b.jpg │ │ ├── 2888849442_c672a6ba10_b.xml │ │ ├── 2911718073_9257a35692_b.jpg │ │ ├── 2911718073_9257a35692_b.xml │ │ ├── 3053451700_0c24eae7ed_b.jpg │ │ ├── 3053451700_0c24eae7ed_b.xml │ │ ├── 3144680857_f1bbc74bf4_b.jpg │ │ ├── 3144680857_f1bbc74bf4_b.xml │ │ ├── 3714394095_a28ee188cb_b.jpg │ │ ├── 3714394095_a28ee188cb_b.xml │ │ ├── 3799029235_326325c0d5_b.jpg │ │ ├── 3799029235_326325c0d5_b.xml │ │ ├── 3799161183_cce05c6300_b.jpg │ │ ├── 3799161183_cce05c6300_b.xml │ │ ├── 3853040578_7f8a725cff_b.jpg │ │ ├── 3853040578_7f8a725cff_b.xml │ │ ├── 3853685157_cd2dd3ab80_b.jpg │ │ ├── 3853685157_cd2dd3ab80_b.xml │ │ ├── 3935506954_d745b3dbd7_b.jpg │ │ ├── 3935506954_d745b3dbd7_b.xml │ │ ├── 4217100714_29a5fb4dee_b.jpg │ │ ├── 4217100714_29a5fb4dee_b.xml │ │ ├── 4812143761_1bef15cab8_b.jpg │ │ ├── 4812143761_1bef15cab8_b.xml │ │ ├── 4875480073_008a4d174d_b.jpg │ │ ├── 4875480073_008a4d174d_b.xml │ │ ├── 5665995420_726bce2783_b.jpg │ │ ├── 5665995420_726bce2783_b.xml │ │ ├── 6011433427_cede676575_b.jpg │ │ ├── 6011433427_cede676575_b.xml │ │ ├── 6226714304_496944d4cc_b.jpg │ │ ├── 6226714304_496944d4cc_b.xml │ │ ├── 6239294498_2627932e26_b.jpg │ │ ├── 6239294498_2627932e26_b.xml │ │ ├── 6864401265_b7b37ac522_b.jpg │ │ └── 6864401265_b7b37ac522_b.xml │ │ ├── red │ │ ├── 1408706779_ef3c0138e8_b.jpg │ │ ├── 1408706779_ef3c0138e8_b.xml │ │ ├── 2902679383_a00f4c9d27_b.jpg │ │ ├── 2902679383_a00f4c9d27_b.xml │ │ ├── 3798471501_e21d10e8e5_b.jpg │ │ ├── 3798471501_e21d10e8e5_b.xml │ │ ├── 3852233337_7593a392c1_b.jpg │ │ ├── 3852233337_7593a392c1_b.xml │ │ ├── 3858731907_ddb22cb07a_b.jpg │ │ ├── 3858731907_ddb22cb07a_b.xml │ │ ├── 3862801353_58634506b4_b.jpg │ │ ├── 3862801353_58634506b4_b.xml │ │ ├── 3871539198_7c9eff8d6c_b.jpg │ │ ├── 3871539198_7c9eff8d6c_b.xml │ │ ├── 3908437070_6d1173f47b_b.jpg │ │ ├── 3908437070_6d1173f47b_b.xml │ │ ├── 4079607261_3c114d3a8e_b.jpg │ │ ├── 4079607261_3c114d3a8e_b.xml │ │ ├── 4105670373_07961469ca_b.jpg │ │ ├── 4105670373_07961469ca_b.xml │ │ ├── 4134432241_27a7fba12e_b.jpg │ │ ├── 4134432241_27a7fba12e_b.xml │ │ ├── 4261480774_5e82ea5aab_b.jpg │ │ ├── 4261480774_5e82ea5aab_b.xml │ │ ├── 4324994685_61be270b04_b.jpg │ │ ├── 4324994685_61be270b04_b.xml │ │ ├── 4331753151_585be76b68_b.jpg │ │ ├── 4331753151_585be76b68_b.xml │ │ ├── 44070187_5e5a50b675_b.jpg │ │ ├── 44070187_5e5a50b675_b.xml │ │ ├── 4721832011_3de675c983_b.jpg │ │ ├── 4721832011_3de675c983_b.xml │ │ ├── 4812805891_26529709c4_b.jpg │ │ ├── 4812805891_26529709c4_b.xml │ │ ├── 5483730934_993957e64d_b.jpg │ │ ├── 5483730934_993957e64d_b.xml │ │ ├── 5608030160_edd9c359c1_b.jpg │ │ ├── 5608030160_edd9c359c1_b.xml │ │ ├── 5643664396_7c47fb12c9_b.jpg │ │ ├── 5643664396_7c47fb12c9_b.xml │ │ ├── 5688040353_a2823c6b96_b.jpg │ │ ├── 5688040353_a2823c6b96_b.xml │ │ ├── 5688598698_c4ec7b367d_b.jpg │ │ ├── 5688598698_c4ec7b367d_b.xml │ │ ├── 5720090028_b589d5ee8e_b.jpg │ │ ├── 5720090028_b589d5ee8e_b.xml │ │ ├── 5751134603_33282e19e2_b.jpg │ │ ├── 5751134603_33282e19e2_b.xml │ │ ├── 5766001005_0cfe9473a4_b.jpg │ │ ├── 5766001005_0cfe9473a4_b.xml │ │ ├── 6176392778_a862c89ea8_b.jpg │ │ ├── 6176392778_a862c89ea8_b.xml │ │ ├── 6207978596_ba2af46ac5_b.jpg │ │ ├── 6207978596_ba2af46ac5_b.xml │ │ ├── 6226663604_9df3b7502d_b.jpg │ │ ├── 6226663604_9df3b7502d_b.xml │ │ ├── 6232287311_65a27e54d7_b.jpg │ │ ├── 6232287311_65a27e54d7_b.xml │ │ ├── 6243477453_ec5bf236cb_b.jpg │ │ ├── 6243477453_ec5bf236cb_b.xml │ │ ├── 6253200918_3c2fe895ed_b.jpg │ │ ├── 6253200918_3c2fe895ed_b.xml │ │ ├── 6631643371_f2bb9c8f24_b.jpg │ │ ├── 6631643371_f2bb9c8f24_b.xml │ │ ├── 6737987079_b515451dce_b.jpg │ │ ├── 6737987079_b515451dce_b.xml │ │ ├── 6774586903_8d9a8974f2_b.jpg │ │ ├── 6774586903_8d9a8974f2_b.xml │ │ ├── 6796792481_40c359f8ce_b.jpg │ │ ├── 6796792481_40c359f8ce_b.xml │ │ ├── 6822615599_18d9915317_b.jpg │ │ ├── 6822615599_18d9915317_b.xml │ │ ├── 6840568965_0b388474e7_b.jpg │ │ └── 6840568965_0b388474e7_b.xml │ │ ├── white │ │ ├── 3087494913_3e61c79038_b.jpg │ │ ├── 3087494913_3e61c79038_b.xml │ │ ├── 3253301032_1c87bd5f1b_b.jpg │ │ ├── 3253301032_1c87bd5f1b_b.xml │ │ ├── 3749342558_18f4409ed5_b.jpg │ │ ├── 3749342558_18f4409ed5_b.xml │ │ ├── 3863563450_db8cb5f947_b.jpg │ │ ├── 3863563450_db8cb5f947_b.xml │ │ ├── 3923773857_7079bc46a7_b.jpg │ │ ├── 3923773857_7079bc46a7_b.xml │ │ ├── 3924463034_902b7e4f47_b.jpg │ │ ├── 3924463034_902b7e4f47_b.xml │ │ ├── 3948788706_735fe4ea7f_b.jpg │ │ ├── 3948788706_735fe4ea7f_b.xml │ │ ├── 5549464199_dc1fd55b14_b.jpg │ │ ├── 5549464199_dc1fd55b14_b.xml │ │ ├── 5550000906_9c68670383_b.jpg │ │ ├── 5550000906_9c68670383_b.xml │ │ ├── 5608028246_19a145c4e3_b.jpg │ │ ├── 5608028246_19a145c4e3_b.xml │ │ ├── 5941117635_5a7ae6ef87_b.jpg │ │ ├── 5941117635_5a7ae6ef87_b.xml │ │ ├── 6150526860_fd9cd2c04c_b.jpg │ │ ├── 6150526860_fd9cd2c04c_b.xml │ │ ├── 6198881495_ef1228f138_b.jpg │ │ ├── 6198881495_ef1228f138_b.xml │ │ ├── 6408311433_38e75ff3b8_b.jpg │ │ ├── 6408311433_38e75ff3b8_b.xml │ │ ├── 6538116347_ed6bff7cff_b.jpg │ │ ├── 6538116347_ed6bff7cff_b.xml │ │ ├── 6545255463_a83b9f7c40_b.jpg │ │ ├── 6545255463_a83b9f7c40_b.xml │ │ ├── 6572006743_6e42346e51_b.jpg │ │ ├── 6572006743_6e42346e51_b.xml │ │ ├── 6697816985_cd53f439e1_b.jpg │ │ └── 6697816985_cd53f439e1_b.xml │ │ └── yellow │ │ ├── 227416776_2dc8b1ec1e_b.jpg │ │ ├── 227416776_2dc8b1ec1e_b.xml │ │ ├── 2826761418_04874d7f57_b.jpg │ │ ├── 2826761418_04874d7f57_b.xml │ │ ├── 2883154610_6d0045fae6_b.jpg │ │ ├── 2883154610_6d0045fae6_b.xml │ │ ├── 2934717590_490a5aeac9_b.jpg │ │ ├── 2934717590_490a5aeac9_b.xml │ │ ├── 2991213583_a1a410b149_b.jpg │ │ ├── 2991213583_a1a410b149_b.xml │ │ ├── 3554098553_b2bd77c6d9_b.jpg │ │ ├── 3554098553_b2bd77c6d9_b.xml │ │ ├── 3742352153_e623a8c157_b.jpg │ │ ├── 3742352153_e623a8c157_b.xml │ │ ├── 3744005153_78bb835f3f_b.jpg │ │ ├── 3744005153_78bb835f3f_b.xml │ │ ├── 3758857727_e098d1bc96_b.jpg │ │ ├── 3758857727_e098d1bc96_b.xml │ │ ├── 3759652086_5310743d3a_b.jpg │ │ ├── 3759652086_5310743d3a_b.xml │ │ ├── 3775967976_8f5ef1bfa4_b.jpg │ │ ├── 3775967976_8f5ef1bfa4_b.xml │ │ ├── 3937826223_3d6769fe74_b.jpg │ │ ├── 3937826223_3d6769fe74_b.xml │ │ ├── 3938602096_0e8d1f20b1_b.jpg │ │ ├── 3938602096_0e8d1f20b1_b.xml │ │ ├── 4135901965_35cf61cef4_b.jpg │ │ ├── 4135901965_35cf61cef4_b.xml │ │ ├── 4175517996_6245a0907c_b.jpg │ │ ├── 4175517996_6245a0907c_b.xml │ │ ├── 4187538919_c1320d4ea7_b.jpg │ │ ├── 4187538919_c1320d4ea7_b.xml │ │ ├── 4356830323_85e00e03f3_b.jpg │ │ ├── 4356830323_85e00e03f3_b.xml │ │ ├── 4451720072_d402f28616_b.jpg │ │ ├── 4451720072_d402f28616_b.xml │ │ ├── 4608953535_59ec97f93a_b.jpg │ │ ├── 4608953535_59ec97f93a_b.xml │ │ ├── 4608953767_0f2f054c87_b.jpg │ │ ├── 4608953767_0f2f054c87_b.xml │ │ ├── 4718960846_a63298e483_b.jpg │ │ ├── 4718960846_a63298e483_b.xml │ │ ├── 4720646644_b06a86728f_b.jpg │ │ ├── 4720646644_b06a86728f_b.xml │ │ ├── 4804734303_a36879921b_b.jpg │ │ ├── 4804734303_a36879921b_b.xml │ │ ├── 4952282992_833ebb47af_b.jpg │ │ ├── 4952282992_833ebb47af_b.xml │ │ ├── 5434338226_eb0755f9d8_b.jpg │ │ ├── 5434338226_eb0755f9d8_b.xml │ │ ├── 5718148633_85e71969fc_b.jpg │ │ └── 5718148633_85e71969fc_b.xml ├── js │ ├── bootstrap-responsive.css │ ├── bootstrap-responsive.min.css │ ├── bootstrap.css │ ├── bootstrap.js │ ├── bootstrap.min.css │ ├── bootstrap.min.js │ ├── glyphicons-halflings-white.png │ ├── glyphicons-halflings.png │ ├── googleanalytics.js │ └── jquery.js └── upload │ └── 001a2d5efe0d6f32f220483239fd5b4d.jpg ├── templates ├── template_base.html └── template_cbir.html ├── urls.py └── util ├── a.jpg ├── a.ppm ├── compute_gist ├── dsift.py ├── hog.py ├── hsv.py ├── img_gist.py ├── img_hash.py ├── img_histo.py ├── img_hog.py ├── img_sift.py ├── kmeans.py ├── lsh.py ├── prepare.py ├── prepare_local.py ├── prepare_lsh.py ├── pyleargist-2.0.5 ├── COPYING.txt ├── MANIFEST.in ├── PKG-INFO ├── README.txt ├── VERSION.txt ├── build │ └── temp.macosx-10.9-intel-2.7 │ │ └── lear_gist │ │ ├── gist.o │ │ └── standalone_image.o ├── lear_gist │ ├── Makefile │ ├── README │ ├── ar.ppm │ ├── compute_gist.c │ ├── compute_gist.dSYM │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── compute_gist │ ├── gist.c │ ├── gist.h │ ├── standalone_image.c │ └── standalone_image.h ├── setup.cfg ├── setup.py └── src │ ├── leargist.pyx │ └── pyleargist.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ └── top_level.txt ├── rerank.py └── segment.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.pyc 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/README.md -------------------------------------------------------------------------------- /apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/cbir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/apps/cbir.py -------------------------------------------------------------------------------- /conf/ferrari_phash.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/conf/ferrari_phash.txt -------------------------------------------------------------------------------- /conf/log.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/conf/log.conf -------------------------------------------------------------------------------- /logs/model.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logs/webcategory.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logs/worker.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/main.py -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/settings.py -------------------------------------------------------------------------------- /static/dataset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/README.md -------------------------------------------------------------------------------- /static/dataset/ferrari/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/README.txt -------------------------------------------------------------------------------- /static/dataset/ferrari/black/2828686873_2fa36f83d7_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/black/2828686873_2fa36f83d7_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/black/2828686873_2fa36f83d7_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/black/2828686873_2fa36f83d7_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/black/2888849442_c672a6ba10_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/black/2888849442_c672a6ba10_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/black/2888849442_c672a6ba10_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/black/2888849442_c672a6ba10_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/black/2911718073_9257a35692_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/black/2911718073_9257a35692_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/black/2911718073_9257a35692_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/black/2911718073_9257a35692_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/black/3053451700_0c24eae7ed_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/black/3053451700_0c24eae7ed_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/black/3053451700_0c24eae7ed_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/black/3053451700_0c24eae7ed_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/black/3144680857_f1bbc74bf4_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/black/3144680857_f1bbc74bf4_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/black/3144680857_f1bbc74bf4_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/black/3144680857_f1bbc74bf4_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/black/3714394095_a28ee188cb_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/black/3714394095_a28ee188cb_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/black/3714394095_a28ee188cb_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/black/3714394095_a28ee188cb_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/black/3799029235_326325c0d5_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/black/3799029235_326325c0d5_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/black/3799029235_326325c0d5_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/black/3799029235_326325c0d5_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/black/3799161183_cce05c6300_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/black/3799161183_cce05c6300_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/black/3799161183_cce05c6300_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/black/3799161183_cce05c6300_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/black/3853040578_7f8a725cff_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/black/3853040578_7f8a725cff_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/black/3853040578_7f8a725cff_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/black/3853040578_7f8a725cff_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/black/3853685157_cd2dd3ab80_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/black/3853685157_cd2dd3ab80_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/black/3853685157_cd2dd3ab80_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/black/3853685157_cd2dd3ab80_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/black/3935506954_d745b3dbd7_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/black/3935506954_d745b3dbd7_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/black/3935506954_d745b3dbd7_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/black/3935506954_d745b3dbd7_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/black/4217100714_29a5fb4dee_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/black/4217100714_29a5fb4dee_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/black/4217100714_29a5fb4dee_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/black/4217100714_29a5fb4dee_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/black/4812143761_1bef15cab8_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/black/4812143761_1bef15cab8_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/black/4812143761_1bef15cab8_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/black/4812143761_1bef15cab8_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/black/4875480073_008a4d174d_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/black/4875480073_008a4d174d_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/black/4875480073_008a4d174d_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/black/4875480073_008a4d174d_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/black/5665995420_726bce2783_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/black/5665995420_726bce2783_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/black/5665995420_726bce2783_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/black/5665995420_726bce2783_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/black/6011433427_cede676575_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/black/6011433427_cede676575_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/black/6011433427_cede676575_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/black/6011433427_cede676575_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/black/6226714304_496944d4cc_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/black/6226714304_496944d4cc_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/black/6226714304_496944d4cc_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/black/6226714304_496944d4cc_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/black/6239294498_2627932e26_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/black/6239294498_2627932e26_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/black/6239294498_2627932e26_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/black/6239294498_2627932e26_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/black/6864401265_b7b37ac522_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/black/6864401265_b7b37ac522_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/black/6864401265_b7b37ac522_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/black/6864401265_b7b37ac522_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/red/1408706779_ef3c0138e8_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/1408706779_ef3c0138e8_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/red/1408706779_ef3c0138e8_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/1408706779_ef3c0138e8_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/red/2902679383_a00f4c9d27_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/2902679383_a00f4c9d27_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/red/2902679383_a00f4c9d27_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/2902679383_a00f4c9d27_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/red/3798471501_e21d10e8e5_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/3798471501_e21d10e8e5_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/red/3798471501_e21d10e8e5_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/3798471501_e21d10e8e5_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/red/3852233337_7593a392c1_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/3852233337_7593a392c1_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/red/3852233337_7593a392c1_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/3852233337_7593a392c1_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/red/3858731907_ddb22cb07a_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/3858731907_ddb22cb07a_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/red/3858731907_ddb22cb07a_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/3858731907_ddb22cb07a_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/red/3862801353_58634506b4_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/3862801353_58634506b4_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/red/3862801353_58634506b4_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/3862801353_58634506b4_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/red/3871539198_7c9eff8d6c_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/3871539198_7c9eff8d6c_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/red/3871539198_7c9eff8d6c_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/3871539198_7c9eff8d6c_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/red/3908437070_6d1173f47b_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/3908437070_6d1173f47b_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/red/3908437070_6d1173f47b_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/3908437070_6d1173f47b_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/red/4079607261_3c114d3a8e_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/4079607261_3c114d3a8e_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/red/4079607261_3c114d3a8e_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/4079607261_3c114d3a8e_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/red/4105670373_07961469ca_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/4105670373_07961469ca_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/red/4105670373_07961469ca_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/4105670373_07961469ca_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/red/4134432241_27a7fba12e_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/4134432241_27a7fba12e_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/red/4134432241_27a7fba12e_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/4134432241_27a7fba12e_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/red/4261480774_5e82ea5aab_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/4261480774_5e82ea5aab_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/red/4261480774_5e82ea5aab_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/4261480774_5e82ea5aab_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/red/4324994685_61be270b04_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/4324994685_61be270b04_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/red/4324994685_61be270b04_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/4324994685_61be270b04_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/red/4331753151_585be76b68_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/4331753151_585be76b68_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/red/4331753151_585be76b68_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/4331753151_585be76b68_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/red/44070187_5e5a50b675_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/44070187_5e5a50b675_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/red/44070187_5e5a50b675_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/44070187_5e5a50b675_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/red/4721832011_3de675c983_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/4721832011_3de675c983_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/red/4721832011_3de675c983_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/4721832011_3de675c983_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/red/4812805891_26529709c4_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/4812805891_26529709c4_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/red/4812805891_26529709c4_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/4812805891_26529709c4_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/red/5483730934_993957e64d_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/5483730934_993957e64d_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/red/5483730934_993957e64d_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/5483730934_993957e64d_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/red/5608030160_edd9c359c1_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/5608030160_edd9c359c1_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/red/5608030160_edd9c359c1_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/5608030160_edd9c359c1_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/red/5643664396_7c47fb12c9_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/5643664396_7c47fb12c9_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/red/5643664396_7c47fb12c9_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/5643664396_7c47fb12c9_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/red/5688040353_a2823c6b96_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/5688040353_a2823c6b96_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/red/5688040353_a2823c6b96_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/5688040353_a2823c6b96_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/red/5688598698_c4ec7b367d_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/5688598698_c4ec7b367d_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/red/5688598698_c4ec7b367d_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/5688598698_c4ec7b367d_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/red/5720090028_b589d5ee8e_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/5720090028_b589d5ee8e_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/red/5720090028_b589d5ee8e_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/5720090028_b589d5ee8e_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/red/5751134603_33282e19e2_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/5751134603_33282e19e2_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/red/5751134603_33282e19e2_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/5751134603_33282e19e2_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/red/5766001005_0cfe9473a4_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/5766001005_0cfe9473a4_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/red/5766001005_0cfe9473a4_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/5766001005_0cfe9473a4_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/red/6176392778_a862c89ea8_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/6176392778_a862c89ea8_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/red/6176392778_a862c89ea8_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/6176392778_a862c89ea8_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/red/6207978596_ba2af46ac5_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/6207978596_ba2af46ac5_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/red/6207978596_ba2af46ac5_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/6207978596_ba2af46ac5_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/red/6226663604_9df3b7502d_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/6226663604_9df3b7502d_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/red/6226663604_9df3b7502d_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/6226663604_9df3b7502d_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/red/6232287311_65a27e54d7_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/6232287311_65a27e54d7_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/red/6232287311_65a27e54d7_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/6232287311_65a27e54d7_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/red/6243477453_ec5bf236cb_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/6243477453_ec5bf236cb_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/red/6243477453_ec5bf236cb_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/6243477453_ec5bf236cb_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/red/6253200918_3c2fe895ed_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/6253200918_3c2fe895ed_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/red/6253200918_3c2fe895ed_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/6253200918_3c2fe895ed_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/red/6631643371_f2bb9c8f24_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/6631643371_f2bb9c8f24_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/red/6631643371_f2bb9c8f24_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/6631643371_f2bb9c8f24_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/red/6737987079_b515451dce_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/6737987079_b515451dce_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/red/6737987079_b515451dce_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/6737987079_b515451dce_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/red/6774586903_8d9a8974f2_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/6774586903_8d9a8974f2_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/red/6774586903_8d9a8974f2_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/6774586903_8d9a8974f2_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/red/6796792481_40c359f8ce_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/6796792481_40c359f8ce_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/red/6796792481_40c359f8ce_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/6796792481_40c359f8ce_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/red/6822615599_18d9915317_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/6822615599_18d9915317_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/red/6822615599_18d9915317_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/6822615599_18d9915317_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/red/6840568965_0b388474e7_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/6840568965_0b388474e7_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/red/6840568965_0b388474e7_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/red/6840568965_0b388474e7_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/white/3087494913_3e61c79038_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/white/3087494913_3e61c79038_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/white/3087494913_3e61c79038_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/white/3087494913_3e61c79038_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/white/3253301032_1c87bd5f1b_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/white/3253301032_1c87bd5f1b_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/white/3253301032_1c87bd5f1b_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/white/3253301032_1c87bd5f1b_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/white/3749342558_18f4409ed5_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/white/3749342558_18f4409ed5_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/white/3749342558_18f4409ed5_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/white/3749342558_18f4409ed5_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/white/3863563450_db8cb5f947_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/white/3863563450_db8cb5f947_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/white/3863563450_db8cb5f947_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/white/3863563450_db8cb5f947_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/white/3923773857_7079bc46a7_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/white/3923773857_7079bc46a7_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/white/3923773857_7079bc46a7_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/white/3923773857_7079bc46a7_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/white/3924463034_902b7e4f47_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/white/3924463034_902b7e4f47_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/white/3924463034_902b7e4f47_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/white/3924463034_902b7e4f47_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/white/3948788706_735fe4ea7f_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/white/3948788706_735fe4ea7f_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/white/3948788706_735fe4ea7f_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/white/3948788706_735fe4ea7f_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/white/5549464199_dc1fd55b14_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/white/5549464199_dc1fd55b14_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/white/5549464199_dc1fd55b14_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/white/5549464199_dc1fd55b14_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/white/5550000906_9c68670383_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/white/5550000906_9c68670383_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/white/5550000906_9c68670383_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/white/5550000906_9c68670383_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/white/5608028246_19a145c4e3_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/white/5608028246_19a145c4e3_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/white/5608028246_19a145c4e3_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/white/5608028246_19a145c4e3_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/white/5941117635_5a7ae6ef87_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/white/5941117635_5a7ae6ef87_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/white/5941117635_5a7ae6ef87_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/white/5941117635_5a7ae6ef87_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/white/6150526860_fd9cd2c04c_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/white/6150526860_fd9cd2c04c_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/white/6150526860_fd9cd2c04c_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/white/6150526860_fd9cd2c04c_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/white/6198881495_ef1228f138_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/white/6198881495_ef1228f138_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/white/6198881495_ef1228f138_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/white/6198881495_ef1228f138_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/white/6408311433_38e75ff3b8_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/white/6408311433_38e75ff3b8_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/white/6408311433_38e75ff3b8_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/white/6408311433_38e75ff3b8_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/white/6538116347_ed6bff7cff_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/white/6538116347_ed6bff7cff_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/white/6538116347_ed6bff7cff_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/white/6538116347_ed6bff7cff_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/white/6545255463_a83b9f7c40_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/white/6545255463_a83b9f7c40_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/white/6545255463_a83b9f7c40_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/white/6545255463_a83b9f7c40_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/white/6572006743_6e42346e51_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/white/6572006743_6e42346e51_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/white/6572006743_6e42346e51_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/white/6572006743_6e42346e51_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/white/6697816985_cd53f439e1_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/white/6697816985_cd53f439e1_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/white/6697816985_cd53f439e1_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/white/6697816985_cd53f439e1_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/227416776_2dc8b1ec1e_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/227416776_2dc8b1ec1e_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/227416776_2dc8b1ec1e_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/227416776_2dc8b1ec1e_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/2826761418_04874d7f57_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/2826761418_04874d7f57_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/2826761418_04874d7f57_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/2826761418_04874d7f57_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/2883154610_6d0045fae6_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/2883154610_6d0045fae6_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/2883154610_6d0045fae6_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/2883154610_6d0045fae6_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/2934717590_490a5aeac9_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/2934717590_490a5aeac9_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/2934717590_490a5aeac9_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/2934717590_490a5aeac9_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/2991213583_a1a410b149_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/2991213583_a1a410b149_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/2991213583_a1a410b149_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/2991213583_a1a410b149_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/3554098553_b2bd77c6d9_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/3554098553_b2bd77c6d9_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/3554098553_b2bd77c6d9_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/3554098553_b2bd77c6d9_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/3742352153_e623a8c157_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/3742352153_e623a8c157_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/3742352153_e623a8c157_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/3742352153_e623a8c157_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/3744005153_78bb835f3f_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/3744005153_78bb835f3f_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/3744005153_78bb835f3f_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/3744005153_78bb835f3f_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/3758857727_e098d1bc96_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/3758857727_e098d1bc96_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/3758857727_e098d1bc96_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/3758857727_e098d1bc96_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/3759652086_5310743d3a_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/3759652086_5310743d3a_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/3759652086_5310743d3a_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/3759652086_5310743d3a_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/3775967976_8f5ef1bfa4_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/3775967976_8f5ef1bfa4_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/3775967976_8f5ef1bfa4_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/3775967976_8f5ef1bfa4_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/3937826223_3d6769fe74_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/3937826223_3d6769fe74_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/3937826223_3d6769fe74_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/3937826223_3d6769fe74_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/3938602096_0e8d1f20b1_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/3938602096_0e8d1f20b1_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/3938602096_0e8d1f20b1_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/3938602096_0e8d1f20b1_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/4135901965_35cf61cef4_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/4135901965_35cf61cef4_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/4135901965_35cf61cef4_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/4135901965_35cf61cef4_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/4175517996_6245a0907c_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/4175517996_6245a0907c_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/4175517996_6245a0907c_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/4175517996_6245a0907c_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/4187538919_c1320d4ea7_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/4187538919_c1320d4ea7_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/4187538919_c1320d4ea7_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/4187538919_c1320d4ea7_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/4356830323_85e00e03f3_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/4356830323_85e00e03f3_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/4356830323_85e00e03f3_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/4356830323_85e00e03f3_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/4451720072_d402f28616_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/4451720072_d402f28616_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/4451720072_d402f28616_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/4451720072_d402f28616_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/4608953535_59ec97f93a_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/4608953535_59ec97f93a_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/4608953535_59ec97f93a_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/4608953535_59ec97f93a_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/4608953767_0f2f054c87_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/4608953767_0f2f054c87_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/4608953767_0f2f054c87_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/4608953767_0f2f054c87_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/4718960846_a63298e483_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/4718960846_a63298e483_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/4718960846_a63298e483_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/4718960846_a63298e483_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/4720646644_b06a86728f_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/4720646644_b06a86728f_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/4720646644_b06a86728f_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/4720646644_b06a86728f_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/4804734303_a36879921b_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/4804734303_a36879921b_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/4804734303_a36879921b_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/4804734303_a36879921b_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/4952282992_833ebb47af_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/4952282992_833ebb47af_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/4952282992_833ebb47af_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/4952282992_833ebb47af_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/5434338226_eb0755f9d8_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/5434338226_eb0755f9d8_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/5434338226_eb0755f9d8_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/5434338226_eb0755f9d8_b.xml -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/5718148633_85e71969fc_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/5718148633_85e71969fc_b.jpg -------------------------------------------------------------------------------- /static/dataset/ferrari/yellow/5718148633_85e71969fc_b.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/dataset/ferrari/yellow/5718148633_85e71969fc_b.xml -------------------------------------------------------------------------------- /static/js/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/js/bootstrap-responsive.css -------------------------------------------------------------------------------- /static/js/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/js/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /static/js/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/js/bootstrap.css -------------------------------------------------------------------------------- /static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/js/bootstrap.js -------------------------------------------------------------------------------- /static/js/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/js/bootstrap.min.css -------------------------------------------------------------------------------- /static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/js/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/js/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /static/js/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/js/glyphicons-halflings.png -------------------------------------------------------------------------------- /static/js/googleanalytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/js/googleanalytics.js -------------------------------------------------------------------------------- /static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/js/jquery.js -------------------------------------------------------------------------------- /static/upload/001a2d5efe0d6f32f220483239fd5b4d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/static/upload/001a2d5efe0d6f32f220483239fd5b4d.jpg -------------------------------------------------------------------------------- /templates/template_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/templates/template_base.html -------------------------------------------------------------------------------- /templates/template_cbir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/templates/template_cbir.html -------------------------------------------------------------------------------- /urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/urls.py -------------------------------------------------------------------------------- /util/a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/util/a.jpg -------------------------------------------------------------------------------- /util/a.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/util/a.ppm -------------------------------------------------------------------------------- /util/compute_gist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/util/compute_gist -------------------------------------------------------------------------------- /util/dsift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/util/dsift.py -------------------------------------------------------------------------------- /util/hog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/util/hog.py -------------------------------------------------------------------------------- /util/hsv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/util/hsv.py -------------------------------------------------------------------------------- /util/img_gist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/util/img_gist.py -------------------------------------------------------------------------------- /util/img_hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/util/img_hash.py -------------------------------------------------------------------------------- /util/img_histo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/util/img_histo.py -------------------------------------------------------------------------------- /util/img_hog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/util/img_hog.py -------------------------------------------------------------------------------- /util/img_sift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/util/img_sift.py -------------------------------------------------------------------------------- /util/kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/util/kmeans.py -------------------------------------------------------------------------------- /util/lsh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/util/lsh.py -------------------------------------------------------------------------------- /util/prepare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/util/prepare.py -------------------------------------------------------------------------------- /util/prepare_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/util/prepare_local.py -------------------------------------------------------------------------------- /util/prepare_lsh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/util/prepare_lsh.py -------------------------------------------------------------------------------- /util/pyleargist-2.0.5/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/util/pyleargist-2.0.5/COPYING.txt -------------------------------------------------------------------------------- /util/pyleargist-2.0.5/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/util/pyleargist-2.0.5/MANIFEST.in -------------------------------------------------------------------------------- /util/pyleargist-2.0.5/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/util/pyleargist-2.0.5/PKG-INFO -------------------------------------------------------------------------------- /util/pyleargist-2.0.5/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/util/pyleargist-2.0.5/README.txt -------------------------------------------------------------------------------- /util/pyleargist-2.0.5/VERSION.txt: -------------------------------------------------------------------------------- 1 | 2.0.5 2 | 3 | -------------------------------------------------------------------------------- /util/pyleargist-2.0.5/build/temp.macosx-10.9-intel-2.7/lear_gist/gist.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/util/pyleargist-2.0.5/build/temp.macosx-10.9-intel-2.7/lear_gist/gist.o -------------------------------------------------------------------------------- /util/pyleargist-2.0.5/build/temp.macosx-10.9-intel-2.7/lear_gist/standalone_image.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/util/pyleargist-2.0.5/build/temp.macosx-10.9-intel-2.7/lear_gist/standalone_image.o -------------------------------------------------------------------------------- /util/pyleargist-2.0.5/lear_gist/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/util/pyleargist-2.0.5/lear_gist/Makefile -------------------------------------------------------------------------------- /util/pyleargist-2.0.5/lear_gist/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/util/pyleargist-2.0.5/lear_gist/README -------------------------------------------------------------------------------- /util/pyleargist-2.0.5/lear_gist/ar.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/util/pyleargist-2.0.5/lear_gist/ar.ppm -------------------------------------------------------------------------------- /util/pyleargist-2.0.5/lear_gist/compute_gist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/util/pyleargist-2.0.5/lear_gist/compute_gist.c -------------------------------------------------------------------------------- /util/pyleargist-2.0.5/lear_gist/compute_gist.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/util/pyleargist-2.0.5/lear_gist/compute_gist.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /util/pyleargist-2.0.5/lear_gist/compute_gist.dSYM/Contents/Resources/DWARF/compute_gist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/util/pyleargist-2.0.5/lear_gist/compute_gist.dSYM/Contents/Resources/DWARF/compute_gist -------------------------------------------------------------------------------- /util/pyleargist-2.0.5/lear_gist/gist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/util/pyleargist-2.0.5/lear_gist/gist.c -------------------------------------------------------------------------------- /util/pyleargist-2.0.5/lear_gist/gist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/util/pyleargist-2.0.5/lear_gist/gist.h -------------------------------------------------------------------------------- /util/pyleargist-2.0.5/lear_gist/standalone_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/util/pyleargist-2.0.5/lear_gist/standalone_image.c -------------------------------------------------------------------------------- /util/pyleargist-2.0.5/lear_gist/standalone_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/util/pyleargist-2.0.5/lear_gist/standalone_image.h -------------------------------------------------------------------------------- /util/pyleargist-2.0.5/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/util/pyleargist-2.0.5/setup.cfg -------------------------------------------------------------------------------- /util/pyleargist-2.0.5/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/util/pyleargist-2.0.5/setup.py -------------------------------------------------------------------------------- /util/pyleargist-2.0.5/src/leargist.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/util/pyleargist-2.0.5/src/leargist.pyx -------------------------------------------------------------------------------- /util/pyleargist-2.0.5/src/pyleargist.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/util/pyleargist-2.0.5/src/pyleargist.egg-info/PKG-INFO -------------------------------------------------------------------------------- /util/pyleargist-2.0.5/src/pyleargist.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/util/pyleargist-2.0.5/src/pyleargist.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /util/pyleargist-2.0.5/src/pyleargist.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /util/pyleargist-2.0.5/src/pyleargist.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | leargist 2 | -------------------------------------------------------------------------------- /util/rerank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/util/rerank.py -------------------------------------------------------------------------------- /util/segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fancyspeed/py-cbir/HEAD/util/segment.py --------------------------------------------------------------------------------