├── INSTALLATION.md ├── LICENSE ├── README.md ├── assets ├── demo_shortest.gif ├── multi_round.png └── single_round.png ├── drag_ui.py ├── models ├── appearance_encoder.py ├── attention_processor.py ├── ip_adapter.py ├── mutual_self_attention.py ├── point_embedding.py └── resampler.py ├── pipeline └── lightningdrag_pipeline.py ├── release_docs └── licenses │ └── LICENSE_ip_adapter.txt ├── requirements.txt ├── samples ├── pexels-h-ng-xuan-vien-1346154-2869318.jpg ├── pexels-polina-tankilevitch-5587999.jpg └── pexels-suju-10526561.jpg └── utils ├── ui_utils.py └── utils.py /INSTALLATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magic-research/LightningDrag/HEAD/INSTALLATION.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magic-research/LightningDrag/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magic-research/LightningDrag/HEAD/README.md -------------------------------------------------------------------------------- /assets/demo_shortest.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magic-research/LightningDrag/HEAD/assets/demo_shortest.gif -------------------------------------------------------------------------------- /assets/multi_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magic-research/LightningDrag/HEAD/assets/multi_round.png -------------------------------------------------------------------------------- /assets/single_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magic-research/LightningDrag/HEAD/assets/single_round.png -------------------------------------------------------------------------------- /drag_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magic-research/LightningDrag/HEAD/drag_ui.py -------------------------------------------------------------------------------- /models/appearance_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magic-research/LightningDrag/HEAD/models/appearance_encoder.py -------------------------------------------------------------------------------- /models/attention_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magic-research/LightningDrag/HEAD/models/attention_processor.py -------------------------------------------------------------------------------- /models/ip_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magic-research/LightningDrag/HEAD/models/ip_adapter.py -------------------------------------------------------------------------------- /models/mutual_self_attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magic-research/LightningDrag/HEAD/models/mutual_self_attention.py -------------------------------------------------------------------------------- /models/point_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magic-research/LightningDrag/HEAD/models/point_embedding.py -------------------------------------------------------------------------------- /models/resampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magic-research/LightningDrag/HEAD/models/resampler.py -------------------------------------------------------------------------------- /pipeline/lightningdrag_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magic-research/LightningDrag/HEAD/pipeline/lightningdrag_pipeline.py -------------------------------------------------------------------------------- /release_docs/licenses/LICENSE_ip_adapter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magic-research/LightningDrag/HEAD/release_docs/licenses/LICENSE_ip_adapter.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magic-research/LightningDrag/HEAD/requirements.txt -------------------------------------------------------------------------------- /samples/pexels-h-ng-xuan-vien-1346154-2869318.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magic-research/LightningDrag/HEAD/samples/pexels-h-ng-xuan-vien-1346154-2869318.jpg -------------------------------------------------------------------------------- /samples/pexels-polina-tankilevitch-5587999.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magic-research/LightningDrag/HEAD/samples/pexels-polina-tankilevitch-5587999.jpg -------------------------------------------------------------------------------- /samples/pexels-suju-10526561.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magic-research/LightningDrag/HEAD/samples/pexels-suju-10526561.jpg -------------------------------------------------------------------------------- /utils/ui_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magic-research/LightningDrag/HEAD/utils/ui_utils.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magic-research/LightningDrag/HEAD/utils/utils.py --------------------------------------------------------------------------------