└── README.md
/README.md:
--------------------------------------------------------------------------------
1 | # Add-it: Training-Free Object Insertion in Images With Pretrained Diffusion Models
2 |
3 | [](https://arxiv.org/abs/2411.07232)
4 |
5 | ### [[Project Website](https://research.nvidia.com/labs/par/addit/)]
6 |
7 | > **Add-it: Training-Free Object Insertion in Images With Pretrained Diffusion Models**
8 | > Yoad Tewel1,2, Rinon Gal1,2, Dvir Samuel3, Yuval Atzmon1, Lior Wolf2, Gal Chechik1
9 | > 1NVIDIA, 2Tel Aviv University, 3Bar-Ilan University
10 |
11 | 
12 |
13 | >**Abstract**:
14 | > Adding Object into images based on text instructions is a challenging task in semantic image editing, requiring a balance between preserving the original scene and seamlessly integrating the new object in a fitting location. Despite extensive efforts, existing models often struggle with this balance, particularly with finding a natural location for adding an object in complex scenes. We introduce Add-it, a training-free approach that extends diffusion models' attention mechanisms to incorporate information from three key sources: the scene image, the text prompt, and the generated image itself. Our weighted extended-attention mechanism maintains structural consistency and fine details while ensuring natural object placement. Without task-specific fine-tuning, Add-it achieves state-of-the-art results on both real and generated image insertion benchmarks, including our newly constructed "Additing Affordance Benchmark" for evaluating object placement plausibility, outperforming supervised methods. Human evaluations show that Add-it is preferred in over 80% of cases, and it also demonstrates improvements in various automated metrics.
15 |
16 | ## Description
17 | This repo will contain the official code for our Add-it paper.
18 |
19 | ## News
20 | - **2024 Nov 11**: The project page and arXiv paper for Add-it are now live. We are actively working on making the code available as soon as possible!
21 |
22 | ## TODO:
23 | - [] Release code.
24 |
25 | ## Citation
26 | If you make use of our work, please cite our paper:
27 |
28 | ```
29 | @misc{tewel2024addit,
30 | title={Add-it: Training-Free Object Insertion in Images With Pretrained Diffusion Models},
31 | author={Yoad Tewel and Rinon Gal and Dvir Samuel and Yuval Atzmon and Lior Wolf and Gal Chechik},
32 | year={2024},
33 | eprint={2411.07232},
34 | archivePrefix={arXiv},
35 | primaryClass={cs.CV}
36 | }
37 | ```
--------------------------------------------------------------------------------