21 lines
289 B
Markdown
21 lines
289 B
Markdown
# tv-image-denoising
|
|
|
|
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>
|
|
``` |