Add readme

This commit is contained in:
2023-06-25 14:09:54 +02:00
parent c8e2f9b694
commit 35979f6ea3

View File

@@ -1,3 +1,21 @@
# tv-image-denoising
Using the TV algorithm to denoise images with c++ and cuda.
Using the TV algorithm to denoise images with c++ and cuda.
## Requirements
g++
vcpkg
cmake
opencv2
cuda
## Build
```bash
# Generate build files
cmake -B build .
# Build
cmake --build build
```
## Run
```bash
./TV_Denoising_CUDA <input_image>
```