This is a repo that integrate multiple image processing algos on CUDA-based acceleration with bazel build
There are some cuda-based algorithms covered in this repos, such as HDR, Scaler, Resize, Rotater and Edge Detector etc., which will be updated and iterated from time to time.
Maybe, GDC, DVS, Deblur or anothers image processing algos will be added one by one in the future.
I expect camera-cuda to be used as an image processing library, or be viewed as a middleware, to be called by the camera driver to implement application layer functions.
Step4: Please make sure to install CUDA 12.4 and cuDNN 9.2.0 and add the path as environment variables
$ git clone https://github.com/cuiyixin555/camera-supp
$ cd camera-supp
$ git lfs pull
The bazel.exe path is
C:\Users\admin\OneDrive\Desktop\workspace\camera-supp\build_tools\windows\bazel.exe
$ bazel build //calculators/opencv/...
$ ./bazel-bin/calculators/opencv/read_image.exe
$ bazel build //calculators/cuda/rotater/...
$ ./bazel-bin/calculators/cuda/rotater/main.exe ./data/image/cat.bmp ./data/output/out_flip.bmp
$ bazel build //calculators/cuda/resize/...
$ ./bazel-bin/calculators/cuda/resize/main.exe
$ bazel build //calculators/cuda/edge/...
$ ./bazel-bin/calculators/cuda/edge/main.exe ./data/image/cat.bmp ./data/output/out_edge.bmp
All source code is based on this repo https://github.com/bazel-contrib/rules_cuda
Opencv is 4.10.0 version from https://github.com/opencv/opencv/releases/download/4.10.0/opencv-4.10.0-windows.exe