Metadata-Version: 2.1
Name: imgseg
Version: 0.0.1
Summary: Package for line segmentation
Author: LugandaOCR
Author-email: beijukab@gmail.com
License: MIT
Description-Content-Type: text/markdown

# linesegmt

## Description
`imgseg` is a Python package for line segmentation in images.

## Installation
You can install `imgseg` using pip:

```bash```
pip install imgseg

## Using process_image function:
from imgseg.run import process_image

# Example usage
input_image_path = "input_image.jpg"
output_directory = "output/"
process_image(input_image_path, output_directory)

# Running from command line:
python -m imgseg.run input_image.jpg output_directory

Replace input_image.jpg with the path to your input image and output_directory with the directory where you want the segmented images to be saved.

# License

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


