https://github.com/0x778/gaussian_filter_using_cuda
Implemention of gaussain filter using CUDA
https://github.com/0x778/gaussian_filter_using_cuda
cuda cuda-kernels cuda-programming image-processing
Last synced: 3 months ago
JSON representation
Implemention of gaussain filter using CUDA
- Host: GitHub
- URL: https://github.com/0x778/gaussian_filter_using_cuda
- Owner: 0x778
- Created: 2025-01-31T20:59:49.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-01-31T22:28:30.000Z (5 months ago)
- Last Synced: 2025-02-14T21:06:27.370Z (4 months ago)
- Topics: cuda, cuda-kernels, cuda-programming, image-processing
- Language: Python
- Homepage:
- Size: 47.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Image Processing using CUDA
**In this repo it implement a gaussian filter using CUDA**### Installtion
**First you need to download CUDA**
```bash
sudo apt install nvidia-cuda-toolkit
```**To Check your installtion**
```bash
nvcc --version
```**Then you need to install numba**
```bash
pip install numba
```
## Example**Original Photo in Execution Time**
**After Apply The Filter**
**Leave a star if you liked the code**