Metadata-Version: 2.4
Name: lumiblob
Version: 0.1.0
Summary: A lightweight package to reliably detect bright visual signals (blobs) in variable lighting.
Author-email: Dwij Verma <dwijverma1@gmail.com>
Project-URL: Homepage, https://github.com/dwijverma1/lumiblob
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: ultralytics
Requires-Dist: opencv-python-headless
Requires-Dist: numpy

# LumiBlob

LumiBlob is a lightweight Python package designed to reliably detect bright visual signals (blobs) in environments with highly variable lighting conditions.

## Features
- Lighting normalization using CLAHE
- YOLOv8-based detection optimized for small objects
- Simple API for real-time processing

## Installation
```bash
pip install lumiblob
```

## Quick Start
```python
from lumiblob import LumiBlob
detector = LumiBlob(model_path='best.pt')
results = detector.detect(frame)
```
