├── .gitignore ├── .idea ├── hair.iml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── .travis.yml ├── HairApp ├── .gitignore ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── thangtv │ │ │ └── hairapp │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ │ └── model_hairnet.tflite │ │ ├── java │ │ │ └── com │ │ │ │ └── thangtv │ │ │ │ └── hairapp │ │ │ │ ├── activity │ │ │ │ └── MainActivity.kt │ │ │ │ └── model │ │ │ │ └── Segmentation.kt │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── thangtv │ │ └── hairapp │ │ └── ExampleUnitTest.kt ├── assets │ ├── input.jpg │ └── output.jpg ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── LICENSE ├── README.MD ├── Untitled.ipynb ├── assets ├── input1.jpg ├── input2.jpg ├── input3.jpg ├── output1.jpg ├── output2.jpg └── output3.jpg ├── checkpoints └── 06-06-2020_21-36-26 │ ├── checkpoint.hdf5 │ └── model_history_log.csv ├── convert_to_tflite.py ├── data ├── __init__.py ├── load_data.py └── pre-process-data-CelebAMask-HQ.ipynb ├── demo.py ├── environment.yml ├── evaluate.py ├── main.py ├── nets ├── Hairnet.py └── __init__.py ├── shape_input_output_tflite.py ├── test ├── images │ ├── 00041.jpg │ ├── 00053.jpg │ ├── 00054.jpg │ ├── 00055.jpg │ ├── 00056.jpg │ ├── 416x416.jpg │ ├── 6.jpg │ ├── 7.jpg │ ├── Frame00128-org.jpg │ ├── Frame00129-org.jpg │ ├── Frame00251-org.jpg │ ├── Frame00293-org.jpg │ ├── Frame00401-org.jpg │ ├── davidbeckham.jpg │ └── images.jpeg └── outs │ ├── 00041.jpg │ ├── 00053.jpg │ ├── 00054.jpg │ ├── 00055.jpg │ ├── 00056.jpg │ ├── 416x416.jpg │ ├── 6.jpg │ ├── 7.jpg │ ├── Frame00128-org.jpg │ ├── Frame00129-org.jpg │ ├── Frame00251-org.jpg │ ├── Frame00293-org.jpg │ ├── Frame00401-org.jpg │ └── davidbeckham.jpg └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/hair.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/.idea/hair.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/.travis.yml -------------------------------------------------------------------------------- /HairApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/HairApp/.gitignore -------------------------------------------------------------------------------- /HairApp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /HairApp/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/HairApp/app/build.gradle -------------------------------------------------------------------------------- /HairApp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/HairApp/app/proguard-rules.pro -------------------------------------------------------------------------------- /HairApp/app/src/androidTest/java/com/thangtv/hairapp/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/HairApp/app/src/androidTest/java/com/thangtv/hairapp/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /HairApp/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/HairApp/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /HairApp/app/src/main/assets/model_hairnet.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/HairApp/app/src/main/assets/model_hairnet.tflite -------------------------------------------------------------------------------- /HairApp/app/src/main/java/com/thangtv/hairapp/activity/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/HairApp/app/src/main/java/com/thangtv/hairapp/activity/MainActivity.kt -------------------------------------------------------------------------------- /HairApp/app/src/main/java/com/thangtv/hairapp/model/Segmentation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/HairApp/app/src/main/java/com/thangtv/hairapp/model/Segmentation.kt -------------------------------------------------------------------------------- /HairApp/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/HairApp/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /HairApp/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/HairApp/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /HairApp/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/HairApp/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /HairApp/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/HairApp/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /HairApp/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/HairApp/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /HairApp/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/HairApp/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /HairApp/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/HairApp/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /HairApp/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/HairApp/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /HairApp/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/HairApp/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /HairApp/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/HairApp/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /HairApp/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/HairApp/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /HairApp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/HairApp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /HairApp/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/HairApp/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /HairApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/HairApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /HairApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/HairApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /HairApp/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/HairApp/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /HairApp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/HairApp/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /HairApp/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/HairApp/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /HairApp/app/src/test/java/com/thangtv/hairapp/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/HairApp/app/src/test/java/com/thangtv/hairapp/ExampleUnitTest.kt -------------------------------------------------------------------------------- /HairApp/assets/input.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/HairApp/assets/input.jpg -------------------------------------------------------------------------------- /HairApp/assets/output.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/HairApp/assets/output.jpg -------------------------------------------------------------------------------- /HairApp/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/HairApp/build.gradle -------------------------------------------------------------------------------- /HairApp/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/HairApp/gradle.properties -------------------------------------------------------------------------------- /HairApp/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/HairApp/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /HairApp/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/HairApp/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /HairApp/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/HairApp/gradlew -------------------------------------------------------------------------------- /HairApp/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/HairApp/gradlew.bat -------------------------------------------------------------------------------- /HairApp/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/HairApp/settings.gradle -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/README.MD -------------------------------------------------------------------------------- /Untitled.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/Untitled.ipynb -------------------------------------------------------------------------------- /assets/input1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/assets/input1.jpg -------------------------------------------------------------------------------- /assets/input2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/assets/input2.jpg -------------------------------------------------------------------------------- /assets/input3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/assets/input3.jpg -------------------------------------------------------------------------------- /assets/output1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/assets/output1.jpg -------------------------------------------------------------------------------- /assets/output2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/assets/output2.jpg -------------------------------------------------------------------------------- /assets/output3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/assets/output3.jpg -------------------------------------------------------------------------------- /checkpoints/06-06-2020_21-36-26/checkpoint.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/checkpoints/06-06-2020_21-36-26/checkpoint.hdf5 -------------------------------------------------------------------------------- /checkpoints/06-06-2020_21-36-26/model_history_log.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/checkpoints/06-06-2020_21-36-26/model_history_log.csv -------------------------------------------------------------------------------- /convert_to_tflite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/convert_to_tflite.py -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/load_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/data/load_data.py -------------------------------------------------------------------------------- /data/pre-process-data-CelebAMask-HQ.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/data/pre-process-data-CelebAMask-HQ.ipynb -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/demo.py -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/environment.yml -------------------------------------------------------------------------------- /evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/evaluate.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/main.py -------------------------------------------------------------------------------- /nets/Hairnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/nets/Hairnet.py -------------------------------------------------------------------------------- /nets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shape_input_output_tflite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/shape_input_output_tflite.py -------------------------------------------------------------------------------- /test/images/00041.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/test/images/00041.jpg -------------------------------------------------------------------------------- /test/images/00053.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/test/images/00053.jpg -------------------------------------------------------------------------------- /test/images/00054.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/test/images/00054.jpg -------------------------------------------------------------------------------- /test/images/00055.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/test/images/00055.jpg -------------------------------------------------------------------------------- /test/images/00056.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/test/images/00056.jpg -------------------------------------------------------------------------------- /test/images/416x416.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/test/images/416x416.jpg -------------------------------------------------------------------------------- /test/images/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/test/images/6.jpg -------------------------------------------------------------------------------- /test/images/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/test/images/7.jpg -------------------------------------------------------------------------------- /test/images/Frame00128-org.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/test/images/Frame00128-org.jpg -------------------------------------------------------------------------------- /test/images/Frame00129-org.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/test/images/Frame00129-org.jpg -------------------------------------------------------------------------------- /test/images/Frame00251-org.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/test/images/Frame00251-org.jpg -------------------------------------------------------------------------------- /test/images/Frame00293-org.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/test/images/Frame00293-org.jpg -------------------------------------------------------------------------------- /test/images/Frame00401-org.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/test/images/Frame00401-org.jpg -------------------------------------------------------------------------------- /test/images/davidbeckham.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/test/images/davidbeckham.jpg -------------------------------------------------------------------------------- /test/images/images.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/test/images/images.jpeg -------------------------------------------------------------------------------- /test/outs/00041.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/test/outs/00041.jpg -------------------------------------------------------------------------------- /test/outs/00053.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/test/outs/00053.jpg -------------------------------------------------------------------------------- /test/outs/00054.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/test/outs/00054.jpg -------------------------------------------------------------------------------- /test/outs/00055.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/test/outs/00055.jpg -------------------------------------------------------------------------------- /test/outs/00056.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/test/outs/00056.jpg -------------------------------------------------------------------------------- /test/outs/416x416.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/test/outs/416x416.jpg -------------------------------------------------------------------------------- /test/outs/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/test/outs/6.jpg -------------------------------------------------------------------------------- /test/outs/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/test/outs/7.jpg -------------------------------------------------------------------------------- /test/outs/Frame00128-org.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/test/outs/Frame00128-org.jpg -------------------------------------------------------------------------------- /test/outs/Frame00129-org.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/test/outs/Frame00129-org.jpg -------------------------------------------------------------------------------- /test/outs/Frame00251-org.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/test/outs/Frame00251-org.jpg -------------------------------------------------------------------------------- /test/outs/Frame00293-org.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/test/outs/Frame00293-org.jpg -------------------------------------------------------------------------------- /test/outs/Frame00401-org.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/test/outs/Frame00401-org.jpg -------------------------------------------------------------------------------- /test/outs/davidbeckham.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/test/outs/davidbeckham.jpg -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangtran480/hair-segmentation/HEAD/train.py --------------------------------------------------------------------------------