photographi_analyze_folder
Analyze all images in a folder to assess quality scores and identify distribution patterns across photography shoots using batch processing with configurable metrics.
Instructions
Batch analyzes all images in a folder with high concurrency (4-8 images at once). Returns quality scores and judgements for each image. Default limit is 100 images per call. Use 'limit' and 'offset' for pagination. If 'nextOffset' is in the response, call again with that offset. Perfect for understanding the overall quality distribution of a shoot.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| folder_path | Yes | Absolute path to folder. | |
| metrics | No | Specific metrics to calculate (sharpness, exposure, etc.). Defaults to all. | |
| enable_subject_detection | No | Use AI for subject-aware analysis. | |
| model_size | No | YOLO model size. | nano |
| limit | No | Batch size for pagination. | |
| offset | No | Pagination offset. Increment this by 'limit' to see more results. | |
| fast_mode | No | Defaults to True (4-8x faster). Set to False for full-resolution 'Forensic Precision' mode (much slower on 40MP+ files). |