├── .gitignore ├── LICENSE ├── README.md ├── evaluate.py ├── evaluate_result.txt ├── evaluate_result_train.txt ├── extract_word_vec.py ├── face_detector.py ├── file_splitter.py ├── filter.py ├── lbpcascade_animeface.xml ├── model ├── __init__.py ├── datasets.py ├── multi_se_resnext.py ├── se_resnet.py └── vgg.py ├── sketch.PNG ├── sketchify ├── calc_metadata.py ├── crop.py ├── just_do.py ├── main.py ├── main_get_tags.py ├── main_mirror.py ├── sketchify.py └── xdog_blend.py ├── taglist ├── CIT │ ├── background.txt │ ├── body_lower.txt │ ├── body_upper.txt │ ├── body_whole.txt │ ├── face.txt │ ├── hair.txt │ └── object.txt ├── CVT │ ├── background.txt │ ├── body_lower.txt │ ├── body_upper.txt │ ├── body_whole.txt │ ├── face.txt │ ├── hair.txt │ └── object.txt ├── dataset_count.txt ├── dataset_tags.txt ├── tag_dump.pkl ├── tag_indexer.py ├── tag_lister.py ├── tag_selector.py └── tags.txt ├── test.py ├── test_color.png ├── test_sketch.png ├── test_visual.py ├── train.py ├── ump.PNG ├── utils.py └── visualize.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/README.md -------------------------------------------------------------------------------- /evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/evaluate.py -------------------------------------------------------------------------------- /evaluate_result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/evaluate_result.txt -------------------------------------------------------------------------------- /evaluate_result_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/evaluate_result_train.txt -------------------------------------------------------------------------------- /extract_word_vec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/extract_word_vec.py -------------------------------------------------------------------------------- /face_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/face_detector.py -------------------------------------------------------------------------------- /file_splitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/file_splitter.py -------------------------------------------------------------------------------- /filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/filter.py -------------------------------------------------------------------------------- /lbpcascade_animeface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/lbpcascade_animeface.xml -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/model/datasets.py -------------------------------------------------------------------------------- /model/multi_se_resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/model/multi_se_resnext.py -------------------------------------------------------------------------------- /model/se_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/model/se_resnet.py -------------------------------------------------------------------------------- /model/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/model/vgg.py -------------------------------------------------------------------------------- /sketch.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/sketch.PNG -------------------------------------------------------------------------------- /sketchify/calc_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/sketchify/calc_metadata.py -------------------------------------------------------------------------------- /sketchify/crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/sketchify/crop.py -------------------------------------------------------------------------------- /sketchify/just_do.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/sketchify/just_do.py -------------------------------------------------------------------------------- /sketchify/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/sketchify/main.py -------------------------------------------------------------------------------- /sketchify/main_get_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/sketchify/main_get_tags.py -------------------------------------------------------------------------------- /sketchify/main_mirror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/sketchify/main_mirror.py -------------------------------------------------------------------------------- /sketchify/sketchify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/sketchify/sketchify.py -------------------------------------------------------------------------------- /sketchify/xdog_blend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/sketchify/xdog_blend.py -------------------------------------------------------------------------------- /taglist/CIT/background.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /taglist/CIT/body_lower.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/taglist/CIT/body_lower.txt -------------------------------------------------------------------------------- /taglist/CIT/body_upper.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/taglist/CIT/body_upper.txt -------------------------------------------------------------------------------- /taglist/CIT/body_whole.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/taglist/CIT/body_whole.txt -------------------------------------------------------------------------------- /taglist/CIT/face.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/taglist/CIT/face.txt -------------------------------------------------------------------------------- /taglist/CIT/hair.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/taglist/CIT/hair.txt -------------------------------------------------------------------------------- /taglist/CIT/object.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/taglist/CIT/object.txt -------------------------------------------------------------------------------- /taglist/CVT/background.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/taglist/CVT/background.txt -------------------------------------------------------------------------------- /taglist/CVT/body_lower.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/taglist/CVT/body_lower.txt -------------------------------------------------------------------------------- /taglist/CVT/body_upper.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/taglist/CVT/body_upper.txt -------------------------------------------------------------------------------- /taglist/CVT/body_whole.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/taglist/CVT/body_whole.txt -------------------------------------------------------------------------------- /taglist/CVT/face.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/taglist/CVT/face.txt -------------------------------------------------------------------------------- /taglist/CVT/hair.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/taglist/CVT/hair.txt -------------------------------------------------------------------------------- /taglist/CVT/object.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /taglist/dataset_count.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/taglist/dataset_count.txt -------------------------------------------------------------------------------- /taglist/dataset_tags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/taglist/dataset_tags.txt -------------------------------------------------------------------------------- /taglist/tag_dump.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/taglist/tag_dump.pkl -------------------------------------------------------------------------------- /taglist/tag_indexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/taglist/tag_indexer.py -------------------------------------------------------------------------------- /taglist/tag_lister.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/taglist/tag_lister.py -------------------------------------------------------------------------------- /taglist/tag_selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/taglist/tag_selector.py -------------------------------------------------------------------------------- /taglist/tags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/taglist/tags.txt -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/test.py -------------------------------------------------------------------------------- /test_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/test_color.png -------------------------------------------------------------------------------- /test_sketch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/test_sketch.png -------------------------------------------------------------------------------- /test_visual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/test_visual.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/train.py -------------------------------------------------------------------------------- /ump.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/ump.PNG -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/utils.py -------------------------------------------------------------------------------- /visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MerHS/sketch-i2v/HEAD/visualize.py --------------------------------------------------------------------------------