Skip to content

akh1r0ck/Augment-Any-Annotation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A3 (Augment Any Annotations): Inpaint Anything Meets Object Detection Annotation

Nonpublished Technology

TL; DR: This is a customised version of Inpaint Anything. Users can set annotation file and augment annotations by segmentation of SAM and inpainting of SD.
So, src directory of this repo stores Inpaint Anything.

Original Repos as below.

Installation

Cloning files.

git clone https://github.com/akh1r0ck/Augment-Any-Annotation.git
cd Augment-Any-Annotation/src

Details are on each original repos.

conda create -n a3 python=3.9
conda activate a3
conda install pytorch torchvision torchaudio pytorch-cuda=11.8 -c pytorch -c nvidia
pip install git+https://github.com/facebookresearch/segment-anything.git
python -m pip install diffusers transformers accelerate scipy safetensors

Download SAM model

wget https://dl.fbaipublicfiles.com/segment_anything/sam_vit_h_4b8939.pth

Verify the installation

python a3_SingleImage_byCOCO.py \
      --dataset-desc animal \
      --sam-ckpt ./sam_vit_h_4b8939.pth \
      --annotation-path ./annotations.json
      --seed 42

You get images as below.

Usage

Basic command with minimum arguments.

python a3_byCOCO.py \
    --dataset-desc animal \
    --sam-ckpt ../../sam_local/segment-anything-main/ckpt/sam_vit_h_4b8939.pth \
    --annotation-path ../examples/annotations.json \
    --debug
  • dataset-desc : dataset description that
  • sam-ckpt : SAM checkpoint path
  • annotation-path : annotation file path

Dataset description

Prompt for SD to generate object be inpainted is as below, using class name (refer from annotation file) and a dataset description (refer from arguments).

{class_name} in the context of {dataset_desc}

In this exmaple class name is cat and dog, and dataset_desc is animal. So, prompt is like cat is the context of animal when an annotation data for cat class annotation is focused.

Anti-Pttern

Inpainting seems to be failed in at least these cases.

  • Objects are upside down
  • Objjets are duplicated

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published