File size: 350 Bytes
7025ca1
fd8b97e
 
 
 
7025ca1
fd8b97e
 
 
 
7025ca1
fd8b97e
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"""
Batch-generate augmented images from every image in an input folder.

Example:
  python scripts/generate_augmentations.py --input ./photos --count 5
  augmenator-batch --input ./photos --count 3 --ignore-ai-tools
"""

from __future__ import annotations

from augmenator.cli import main

if __name__ == "__main__":
    raise SystemExit(main())