├── .github └── FUNDING.yml ├── Brightness tagging ├── launch.bat └── main.py ├── LICENSE ├── Minify images ├── It do funne.py ├── LagrengeUSM400.py ├── LagrengeUSM70.py ├── dev main.py ├── launch.bat └── main.py ├── README.md ├── Tag Filtering v2 ├── New_filtering.py ├── input_tags │ └── doc.txt ├── launch.bat └── output_tags │ └── doc.txt └── tag filtering ├── Instructions.txt ├── filtering.py ├── launch_unwanted.bat ├── launch_wanted.bat ├── output.txt ├── tag_list_process.py ├── tags.txt ├── unwanted_tags.txt ├── unwanted_tags_2.txt ├── unwanted_zero.txt ├── wanted_tags.txt ├── wanted_tags_2.txt └── wanted_tags_filtering.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anzhc/Anzhc-s-Dataset-Processing-Tools/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /Brightness tagging/launch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | python main.py 3 | pause -------------------------------------------------------------------------------- /Brightness tagging/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anzhc/Anzhc-s-Dataset-Processing-Tools/HEAD/Brightness tagging/main.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anzhc/Anzhc-s-Dataset-Processing-Tools/HEAD/LICENSE -------------------------------------------------------------------------------- /Minify images/It do funne.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anzhc/Anzhc-s-Dataset-Processing-Tools/HEAD/Minify images/It do funne.py -------------------------------------------------------------------------------- /Minify images/LagrengeUSM400.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anzhc/Anzhc-s-Dataset-Processing-Tools/HEAD/Minify images/LagrengeUSM400.py -------------------------------------------------------------------------------- /Minify images/LagrengeUSM70.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anzhc/Anzhc-s-Dataset-Processing-Tools/HEAD/Minify images/LagrengeUSM70.py -------------------------------------------------------------------------------- /Minify images/dev main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anzhc/Anzhc-s-Dataset-Processing-Tools/HEAD/Minify images/dev main.py -------------------------------------------------------------------------------- /Minify images/launch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | python main.py 3 | pause -------------------------------------------------------------------------------- /Minify images/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anzhc/Anzhc-s-Dataset-Processing-Tools/HEAD/Minify images/main.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anzhc/Anzhc-s-Dataset-Processing-Tools/HEAD/README.md -------------------------------------------------------------------------------- /Tag Filtering v2/New_filtering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anzhc/Anzhc-s-Dataset-Processing-Tools/HEAD/Tag Filtering v2/New_filtering.py -------------------------------------------------------------------------------- /Tag Filtering v2/input_tags/doc.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tag Filtering v2/launch.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | python New_filtering.py 3 | pause -------------------------------------------------------------------------------- /Tag Filtering v2/output_tags/doc.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tag filtering/Instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anzhc/Anzhc-s-Dataset-Processing-Tools/HEAD/tag filtering/Instructions.txt -------------------------------------------------------------------------------- /tag filtering/filtering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anzhc/Anzhc-s-Dataset-Processing-Tools/HEAD/tag filtering/filtering.py -------------------------------------------------------------------------------- /tag filtering/launch_unwanted.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | python filtering.py 3 | pause -------------------------------------------------------------------------------- /tag filtering/launch_wanted.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | python wanted_tags_filtering.py 3 | pause -------------------------------------------------------------------------------- /tag filtering/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anzhc/Anzhc-s-Dataset-Processing-Tools/HEAD/tag filtering/output.txt -------------------------------------------------------------------------------- /tag filtering/tag_list_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anzhc/Anzhc-s-Dataset-Processing-Tools/HEAD/tag filtering/tag_list_process.py -------------------------------------------------------------------------------- /tag filtering/tags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anzhc/Anzhc-s-Dataset-Processing-Tools/HEAD/tag filtering/tags.txt -------------------------------------------------------------------------------- /tag filtering/unwanted_tags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anzhc/Anzhc-s-Dataset-Processing-Tools/HEAD/tag filtering/unwanted_tags.txt -------------------------------------------------------------------------------- /tag filtering/unwanted_tags_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anzhc/Anzhc-s-Dataset-Processing-Tools/HEAD/tag filtering/unwanted_tags_2.txt -------------------------------------------------------------------------------- /tag filtering/unwanted_zero.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tag filtering/wanted_tags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anzhc/Anzhc-s-Dataset-Processing-Tools/HEAD/tag filtering/wanted_tags.txt -------------------------------------------------------------------------------- /tag filtering/wanted_tags_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anzhc/Anzhc-s-Dataset-Processing-Tools/HEAD/tag filtering/wanted_tags_2.txt -------------------------------------------------------------------------------- /tag filtering/wanted_tags_filtering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anzhc/Anzhc-s-Dataset-Processing-Tools/HEAD/tag filtering/wanted_tags_filtering.py --------------------------------------------------------------------------------