Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tsurumeso/bilateral
Bilateral Filter implementation using Cython and OpenMP
https://github.com/tsurumeso/bilateral
bilateral-filter cython openmp
Last synced: 5 days ago
JSON representation
Bilateral Filter implementation using Cython and OpenMP
- Host: GitHub
- URL: https://github.com/tsurumeso/bilateral
- Owner: tsurumeso
- Created: 2017-02-15T08:51:18.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2023-12-27T05:35:36.000Z (11 months ago)
- Last Synced: 2023-12-27T06:34:26.524Z (11 months ago)
- Topics: bilateral-filter, cython, openmp
- Language: Cython
- Homepage:
- Size: 2.93 KB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bilateral Filter
Bilateral Filter implementation using Cython and OpenMP.## Requirements
- Numpy
- Pillow
- Cython## Build
```
python setup.py build_ext --inplace
```## Usage
``` python
import filter
from PIL import Imageimg = Image.open(path)
bil = filter.bilateral_filter(img, 5, 20, 20)
bil.save('bilateral.png')
```