1 | initial version |
My own experience(highly subjective):
Opencv has the fastest algorithm for running on cpu(high optimized) - if it does not run well there - go for the native solution of your problem using a gpu.
So for me this means i do all my dnn stuff directly on the gpu(using yolo or tensorflow) - for the rest(preprocessing) i use opencv. So i personally just forget about open cl at all.