├── .gitignore ├── README.md ├── check_file_same.py ├── crop_img.py ├── delete_similar_img.py ├── merge_img.py ├── modify_xml.py ├── produce_data.py ├── read_video.py ├── seg_video.py ├── select_difficult_sample.py ├── select_img_from_video.py ├── select_video_by_times.py ├── split_train_val.py └── transform_data ├── convert_voc_tfrecord.py ├── csv2txt.py ├── generate_simple.py ├── generate_xml.py ├── idl2xml.py ├── json2xml.py ├── mat2x.py ├── xml2json.py ├── yolo2voc.py └── yolo_xml_txt.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvaceLi/dl_common_script/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvaceLi/dl_common_script/HEAD/README.md -------------------------------------------------------------------------------- /check_file_same.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvaceLi/dl_common_script/HEAD/check_file_same.py -------------------------------------------------------------------------------- /crop_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvaceLi/dl_common_script/HEAD/crop_img.py -------------------------------------------------------------------------------- /delete_similar_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvaceLi/dl_common_script/HEAD/delete_similar_img.py -------------------------------------------------------------------------------- /merge_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvaceLi/dl_common_script/HEAD/merge_img.py -------------------------------------------------------------------------------- /modify_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvaceLi/dl_common_script/HEAD/modify_xml.py -------------------------------------------------------------------------------- /produce_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvaceLi/dl_common_script/HEAD/produce_data.py -------------------------------------------------------------------------------- /read_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvaceLi/dl_common_script/HEAD/read_video.py -------------------------------------------------------------------------------- /seg_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvaceLi/dl_common_script/HEAD/seg_video.py -------------------------------------------------------------------------------- /select_difficult_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvaceLi/dl_common_script/HEAD/select_difficult_sample.py -------------------------------------------------------------------------------- /select_img_from_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvaceLi/dl_common_script/HEAD/select_img_from_video.py -------------------------------------------------------------------------------- /select_video_by_times.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvaceLi/dl_common_script/HEAD/select_video_by_times.py -------------------------------------------------------------------------------- /split_train_val.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvaceLi/dl_common_script/HEAD/split_train_val.py -------------------------------------------------------------------------------- /transform_data/convert_voc_tfrecord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvaceLi/dl_common_script/HEAD/transform_data/convert_voc_tfrecord.py -------------------------------------------------------------------------------- /transform_data/csv2txt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvaceLi/dl_common_script/HEAD/transform_data/csv2txt.py -------------------------------------------------------------------------------- /transform_data/generate_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvaceLi/dl_common_script/HEAD/transform_data/generate_simple.py -------------------------------------------------------------------------------- /transform_data/generate_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvaceLi/dl_common_script/HEAD/transform_data/generate_xml.py -------------------------------------------------------------------------------- /transform_data/idl2xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvaceLi/dl_common_script/HEAD/transform_data/idl2xml.py -------------------------------------------------------------------------------- /transform_data/json2xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvaceLi/dl_common_script/HEAD/transform_data/json2xml.py -------------------------------------------------------------------------------- /transform_data/mat2x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvaceLi/dl_common_script/HEAD/transform_data/mat2x.py -------------------------------------------------------------------------------- /transform_data/xml2json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvaceLi/dl_common_script/HEAD/transform_data/xml2json.py -------------------------------------------------------------------------------- /transform_data/yolo2voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvaceLi/dl_common_script/HEAD/transform_data/yolo2voc.py -------------------------------------------------------------------------------- /transform_data/yolo_xml_txt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvaceLi/dl_common_script/HEAD/transform_data/yolo_xml_txt.py --------------------------------------------------------------------------------