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:03, 21 January 2024 Simon talk contribs created page Jetson Orin Nano (Created page with "You want to change line 114 in opencv/modules/dnn/src/cuda4dnn/primitives/normalize_bbox.hpp: from: if (weight != 1.0) to: if (weight != static_cast<T>(1.0)) As well as line 124 in opencv/modules/dnn/src/cuda4dnn/primitives/region.hpp (due to a similar error): from: if (nms_iou_threshold > 0) { to: if (nms_iou_threshold > static_cast<T>(0)) { Explanation: Since both variables, weight and nms_iou_threshold, are templated and finally boil down to a primitive type during...")