All public logs
Jump to navigation
Jump to search
Combined display of all available logs of Simon's Help System. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 14:06, 21 January 2024 Simon talk contribs created page Compile opencv with cuda support (Created page with "https://www.youtube.com/watch?v=art0-99fFa8 https://github.com/mdegans/nano_build_opencv/tree/master You want to change line 114 in opencv/modules/dnn/src/cuda4dnn/primitives/normalize_bbox.hpp: from: <pre> if (weight != 1.0)</pre> to: <pre> if (weight != static_cast<T>(1.0))</pre> As well as line 124 in opencv/modules/dnn/src/cuda4dnn/primitives/region.hpp (due to a similar error): from: <pre> if (nms_iou_threshold > 0) {</pre> to: <pre> if (nms_iou_threshold > stat...")