Metadata-Version: 2.4
Name: better_stamp_processing
Version: 0.1.dev46
Summary: Stamp processing package
Home-page: https://github.com/mSounak/stamp_processing/
Author: Sun* AI Research Team
Author-email: sun.converter.team@gmail.com
Project-URL: Bug Tracker, https://github.com/mSounak/stamp_processing/issues
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Scientific/Engineering :: Image Processing
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: gdown>=4.7.1
Requires-Dist: Pillow>=10.0.0
Requires-Dist: opencv-python>=4.8.0
Requires-Dist: torch>=2.0.0
Requires-Dist: torchvision>=0.15.0
Requires-Dist: fastai>=2.7.0
Requires-Dist: numpy>=1.21.0
Requires-Dist: PyYAML>=6.0
Requires-Dist: setuptools>=65.0.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: project-url
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Stamp Processing
 > A package develop by Sun* AI Research Team as part of the PDF Converter project. 

 This is a Deep Learning based package for detecting and removing stamp from document images.
 This package uses  [Yolov5](https://github.com/ultralytics/yolov5) for the stamp detection model and [fastai](https://github.com/fastai/fastai) Unet for stamp removal model

 ## Install
 Due to the requirements of the used libraries, stamp-processing requires **Python 3.8 or higher**.

 `stamp-processing` is published on [Pypi](https://pypi.org/project/stamp-processing/). To install the package, use `pip`:

 ```bash
 pip install stamp_processing
 ```

 **Note**: This package uses PyTorch. If you need GPU support, you may want to install PyTorch with CUDA support first:
 ```bash
 pip install torch torchvision --index-url https://download.pytorch.org/whl/cu118
 pip install stamp_processing
 ```

 ## How to use
 Check out [example](https://github.com/sun-asterisk-research/stamp_processing/blob/master/example/example.md) for basic usage or run  `getting_started.ipynb` in the `example` folder for example usage.

 ## Documentation
 Documentation will be available soon.

 ## Changelog
 See [CHANGELOG.md](CHANGELOG.md) for version history and breaking changes.

 ## Contact 
 Create an issue if you run into any bug or want to suggest a feature on [Github](https://github.com/sun-asterisk-research/stamp_processing)
