Metadata-Version: 2.1
Name: picture2pixel
Version: 0.1.0
Summary: A package for processing images and generating Verilog code for FPGA
Home-page: https://www.comp.nus.edu.sg/~guoyi/project/picture2pixel/
Author: Chen Guoyi
Author-email: guoyi@comp.nus.edu.sg
License: MIT
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: matplotlib
Requires-Dist: imageio
Requires-Dist: Pillow

# picture2pixel

`picture2pixel` is a Python package for processing images and generating Verilog code for FPGA.

## Installation

You can install `picture2pixel` using pip:

pip install picture2pixel


## Usage

Here's an example of how to use `picture2pixel`:

```python
from picture2pixel.main import picture_to_pixel

# Process the image and generate Verilog code
processed_image = picture_to_pixel('https://www.comp.nus.edu.sg/~guoyi/project/picture2pixel/default.png', 96, 64, 20, 0)
