Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 873 Bytes

File metadata and controls

42 lines (33 loc) · 873 Bytes

Simple Folder Structure

📁 Directory Layout

damagedPosterDetector/
├── input/          # Put your poster images here
└── output/         # Results will be saved here

🎯 Usage

1. Add Images

Put all your poster images in the input/ folder:

cp your_poster.jpg input/
cp another_poster.png input/

2. Run Detection

# Process all images in input folder
python3 pretrained_damage_detector.py --folder

# Or specify folders explicitly  
python3 pretrained_damage_detector.py --input input --output output

3. Check Results

Results will be in the output/ folder:

  • Original images with damage annotations
  • JSON reports with detailed analysis
  • Summary statistics

📝 Supported Formats

  • JPEG (.jpg, .jpeg)
  • PNG (.png)
  • BMP (.bmp)
  • TIFF (.tiff)
  • WebP (.webp)

That's it! Simple and clean. 🎉