Thanks Samuel, for the quick response.
I build now succesfully with 1.5.3, since I kept struggling with the Snapshots.
Though my GPU is being used, I do see barely any improvement in terms of FPS.
Which is rather weird, given that a previous Python script I've been using saw a 10x improvement moving from CPU-only to CUDA.
Any clue what I might have done wrong?
I am building with javacv, opencv-platform, opencv-platform-gpu and cuda-platform-redist.
The use of CUDA I try activating via the net.set-commands:
net = readNetFromONNX(modelPath.toAbsolutePath().toString());
net.setPreferableBackend(DNN_BACKEND_CUDA);
net.setPreferableTarget(DNN_TARGET_CUDA);
Am I tackling the problem from the wrong side?
Maybe my implementation is just to simple?