├── .gitignore ├── README.md ├── app.py ├── app_in_the_wild.py ├── app_with_tracker.py ├── checkpoints.py ├── common.py ├── demo.py ├── demo ├── 00.jpg ├── 01.jpg ├── 02.jpg ├── 03.jpg ├── 04.jpg ├── 05.jpg ├── 06.jpg ├── 07.jpg ├── 08.jpg └── 09.jpg ├── demo_in_the_wild.py ├── fig ├── demo.gif └── demo_tracker.gif ├── manolayer.py ├── model.py ├── requirements.txt └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyuJ1998/HandTailor/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyuJ1998/HandTailor/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyuJ1998/HandTailor/HEAD/app.py -------------------------------------------------------------------------------- /app_in_the_wild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyuJ1998/HandTailor/HEAD/app_in_the_wild.py -------------------------------------------------------------------------------- /app_with_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyuJ1998/HandTailor/HEAD/app_with_tracker.py -------------------------------------------------------------------------------- /checkpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyuJ1998/HandTailor/HEAD/checkpoints.py -------------------------------------------------------------------------------- /common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyuJ1998/HandTailor/HEAD/common.py -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyuJ1998/HandTailor/HEAD/demo.py -------------------------------------------------------------------------------- /demo/00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyuJ1998/HandTailor/HEAD/demo/00.jpg -------------------------------------------------------------------------------- /demo/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyuJ1998/HandTailor/HEAD/demo/01.jpg -------------------------------------------------------------------------------- /demo/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyuJ1998/HandTailor/HEAD/demo/02.jpg -------------------------------------------------------------------------------- /demo/03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyuJ1998/HandTailor/HEAD/demo/03.jpg -------------------------------------------------------------------------------- /demo/04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyuJ1998/HandTailor/HEAD/demo/04.jpg -------------------------------------------------------------------------------- /demo/05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyuJ1998/HandTailor/HEAD/demo/05.jpg -------------------------------------------------------------------------------- /demo/06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyuJ1998/HandTailor/HEAD/demo/06.jpg -------------------------------------------------------------------------------- /demo/07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyuJ1998/HandTailor/HEAD/demo/07.jpg -------------------------------------------------------------------------------- /demo/08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyuJ1998/HandTailor/HEAD/demo/08.jpg -------------------------------------------------------------------------------- /demo/09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyuJ1998/HandTailor/HEAD/demo/09.jpg -------------------------------------------------------------------------------- /demo_in_the_wild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyuJ1998/HandTailor/HEAD/demo_in_the_wild.py -------------------------------------------------------------------------------- /fig/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyuJ1998/HandTailor/HEAD/fig/demo.gif -------------------------------------------------------------------------------- /fig/demo_tracker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyuJ1998/HandTailor/HEAD/fig/demo_tracker.gif -------------------------------------------------------------------------------- /manolayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyuJ1998/HandTailor/HEAD/manolayer.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyuJ1998/HandTailor/HEAD/model.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyuJ1998/HandTailor/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LyuJ1998/HandTailor/HEAD/utils.py --------------------------------------------------------------------------------