Metadata-Version: 2.4
Name: darkcoverage
Version: 0.2.1
Summary: Image threshold analysis tool for measuring coverage
Project-URL: Homepage, https://github.com/TZ387/darkcoverage
Project-URL: Repository, https://github.com/TZ387/darkcoverage
Project-URL: Bug Tracker, https://github.com/TZ387/darkcoverage/issues
Project-URL: Documentation, https://github.com/TZ387/darkcoverage#readme
Author-email: Tilen <tilen.zel@gmail.com>
Maintainer-email: Tilen <tilen.zel@gmail.com>
License: MIT
License-File: LICENSE
Keywords: analysis,coverage,dark,gui,image,pyside6,threshold
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Multimedia :: Graphics :: Editors
Classifier: Topic :: Scientific/Engineering :: Image Processing
Classifier: Topic :: Scientific/Engineering :: Visualization
Requires-Python: >=3.8
Requires-Dist: numpy>=1.22.0
Requires-Dist: pillow>=9.3.0
Requires-Dist: pyside6>=6.4.0
Description-Content-Type: text/markdown

## Note

The project is currently undergoing transition from pip-based build to uv-based build. Therefore, there may be problems with some installation instructions.

# DarkCoverage

DarkCoverage is an image analysis tool that helps you measure and visualize the coverage of dark or light areas in images using customizable thresholds and a grid-based approach.

Its usage is simple: Just run the program, load the image, and then use the sliders to specify appropriate threshold for each area.

![DarkCoverage Screenshot](https://github.com/TZ387/darkcoverage/raw/main/Demonstration.png)

## Features

- Load and analyze images with customizable number of rows and columns
- Set individual thresholds for each grid cell
- Color dark or light areas based on threshold values
- View real-time coverage percentage for each cell and overall image
- Compare with original image reference
- Save processed images

## Installation and Usage

### With pip

**Installation:**
```bash
pip install darkcoverage
```

**Usage:**
```bash
darkcoverage
```
or if Python is not included to path
```bash
darkcoverage.main
```

### With uv

**Installation:**

First, install uv if you haven't already (see uv docs for more information)

Then install DarkCoverage:
```bash
uv add darkcoverage
```

Or install globally with uvx:
```bash
uvx darkcoverage
```

**Usage:**
```bash
# If installed with uv add
uv run darkcoverage

# If installed with uvx
uvx darkcoverage
```

### From Source

#### With pip

**Installation:**
1. Clone the repository:
   ```bash
   git clone https://github.com/TZ387/darkcoverage.git
   cd darkcoverage
   ```

2. Install the package:
   ```bash
   pip install -e .
   ```

**Usage:**
```bash
python -m darkcoverage.main
```

#### With uv

**Installation:**
1. Clone the repository:
   ```bash
   git clone https://github.com/TZ387/darkcoverage.git
   cd darkcoverage
   ```

2. Install dependencies and set up the project:
   ```bash
   uv sync
   ```

**Usage:**
```bash
uv run python -m darkcoverage.main
```

## Basic Workflow

1. Click "Load Image" to open an image file (such as Example.jpg in the main folder).
2. Adjust the number of rows and columns using the row and column inputs in the sliders window
3. Set threshold values for each cell using the sliders
4. Toggle between "Color Dark Parts" and "Color Light Parts" to choose which areas to highlight
5. View the coverage percentages for each cell and the total image
6. Save the processed image with "Save Image"

In case something goes wrong, you can use reset image option.

## Project Structure

```
DarkCoverage/
├── src/
│   └── darkcoverage/
│       ├── __init__.py
│       ├── main.py
│       ├── gui.py
│       ├── image_processing.py
│       └── widgets/
│           ├── __init__.py
│           ├── image_label.py
│           ├── reference_window.py
│           └── sliders_window.py
├── .gitignore
├── uv.lock
├── LICENSE
├── pyproject.toml
├── README.md
├── Demonstration.png
└── Example.jpg
```

## Requirements

- Python 3.8+
- PySide6
- Pillow
- NumPy

## License

This project is licensed under the MIT License - see the LICENSE file for details.