https://github.com/taichi-dev/image-processing-with-taichi
https://github.com/taichi-dev/image-processing-with-taichi
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/taichi-dev/image-processing-with-taichi
- Owner: taichi-dev
- License: mit
- Created: 2022-10-12T06:13:48.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-29T02:28:57.000Z (about 3 years ago)
- Last Synced: 2025-06-05T16:05:47.144Z (about 1 year ago)
- Language: Python
- Size: 6.44 MB
- Stars: 63
- Watchers: 6
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# (GPU) Image processing with Taichi
Every Python file in this repo is runnable if you `pip3 install -U taichi opencv-python`.
For example, if you run `python3 bilateral_grid_hdr.py`, you get the following UI:

### Developer note: enforcing code format
We use the `pre-commit` Python package, which invokes `yapf` automatically format Python code.
Usage:
1. Install `pre-commit`: `pip install pre-commit`.
2. Run code format: `pre-commit run -a`.
3. Install as pre-commit hook: `pre-commit install`.