ROI cropping service
Project description
Skimmer
Skimmer is a service that fetches an image from a URL, crops it based on provided bounding box coordinates, caches the result in memory & on the filesystem, and returns the cropped image.
Skimmer also integrates with Beholder to fetch frames from videos.
Author: Kevin Barnard (kbarnard@mbari.org)
:hammer: Installation
-
Clone the repository:
git clone https://github.com/mbari-org/skimmer.git cd skimmer
-
Install the package:
pip install .
-
Set up environment variables:
cp .env.example .env
:rocket: Usage
Run scripts for Flask + gunicorn (WSGI) and FastAPI + uvicorn (ASGI) are provided to start the service. Set the appropriate environment variables in .env, then run:
./run_flask.sh
or
./run_fastapi.sh
API
Crop
The main endpoint of the service is /crop, which takes the following query parameters:
url: The URL of the image or video to crop.left: The left coordinate of the bounding box.top: The top coordinate of the bounding box.right: The right coordinate of the bounding box.bottom: The bottom coordinate of the bounding box.ms: The timestamp in milliseconds for videos.
The response will be a PNG image representing the cropped region of interest.
-
Image:
curl http://localhost:5000/crop?url=http://example.com/image.jpg&left=0&top=0&right=100&bottom=100 # image bytes
-
Video (@ 1000 ms):
curl http://localhost:5000/crop?url=http://example.com/video.mp4&left=0&top=0&right=100&bottom=100&ms=1000 # image bytes
Health Check
The service also provides a health check endpoint at /health that returns a 200 status code if the service is running and a JSON response with some process info. For example:
curl http://localhost:5000/health
# {"jdkVersion": "Python 3.12.9 (main, Feb 5 2025, 08:49:00) [GCC 11.4.0]", "availableProcessors": 20, "freeMemory": 28491902976, "maxMemory": 33434419200, "totalMemory": 33434419200, "application": "skimmer", "version": "0.1.0", "description": "ROI Service"}
:whale: Docker
Skimmer is available on Docker Hub as mbari/skimmer. To run the service in a Docker container:
docker run \
-p 5000:5000 \
--env-file .env \
-v /path/to/local/cache:/tmp/skimmer_cache \
mbari/skimmer
Replace /path/to/local/cache with the path to a directory on your host machine where you want to store the cached images persistently.
Compose
An example compose.yaml is provided. To run Skimmer with Docker Compose, first edit the compose file to set the environment variables as desired, then run:
docker compose -f docker/compose.yaml up
:gear: Environment Variables
App
APP_HOST: The host address for the Flask application (default:0.0.0.0).APP_PORT: The port for the Flask application (default: 5000).APP_WORKERS: The number of worker processes for handling requests (default: 1).
Cache
IMAGE_CACHE_SIZE_MB: The maximum size of the in-memory cache for full images in megabytes (default: 100). Note that this is per-worker, so the total memory usage will be approximatelyAPP_WORKERS * IMAGE_CACHE_SIZE_MB.CACHE_DIR: The directory to store the filesystem cache (default:/tmp/skimmer_cache).ROI_CACHE_SIZE_MB: The maximum size of the filesystem cache for ROIs in megabytes (default: 100).
Beholder
BEHOLDER_URL: The URL of the Beholder service to use for fetching images. If unspecified, the service will still work for static images, but it will not be able to fetch frames from video using Beholder.BEHOLDER_API_KEY: The API key to use for authenticating with the Beholder service.
Running Tests
Pytest is used for testing. To run the tests, simply run:
pytest
Note that this will use the environment from .env.test for testing.
Custom Headers
The service returns custom headers to indicate the cache status of the image:
X-Cache: Indicates whether the image was a cache hit or miss. Possible values areHITorMISS.
Copyright © 2025 Monterey Bay Aquarium Research Institute
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file skimmer-0.3.1.tar.gz.
File metadata
- Download URL: skimmer-0.3.1.tar.gz
- Upload date:
- Size: 19.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
371eaa13e473d7014d47a2413b1e610ff8e716c7169a5752ed87a67d62639441
|
|
| MD5 |
b49b66f53975cd06fe7c05e74c4e9a07
|
|
| BLAKE2b-256 |
2fbe055159d750e428996c63ebdd65fdba4a00ca86dc87ad605f13aa9ce0fbf7
|
File details
Details for the file skimmer-0.3.1-py3-none-any.whl.
File metadata
- Download URL: skimmer-0.3.1-py3-none-any.whl
- Upload date:
- Size: 13.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
028e7177b77cf82372dfa861295f6948bfafbb419e6077c39d13c9ddaf3d3836
|
|
| MD5 |
bd5cb38569e183c4b4047ae4c9ff5ee1
|
|
| BLAKE2b-256 |
34a8f8e360446ab7312159c0c63b2e202d22711d810ddeac268fee6615019821
|