atinfinity
atinfinity
@lyuchuny3 Thank you for your help! I tried to build your code. As a result, it occurs other problem. ```shell [ 83%] Building ASM object src/CMakeFiles/tengine-lite.dir/dev/cpu/op/aarch64/scale_neon.S.o /Users/dandelion/dev/Tengine/src/dev/cpu/op/aarch64/scale_neon.S:148:1: error: unknown directive...
@lyuchuny3 I tried your latest code. ```shell [ 86%] Building ASM object src/CMakeFiles/tengine-lite.dir/dev/cpu/op/aarch64/wino_sgemm_4x16_A72.S.o [ 86%] Linking C shared library libtengine-lite.dylib Undefined symbols for architecture arm64: "_depthwise_k3s2p1_int8_a72", referenced from: _conv_dw_int8_direct._omp_fn.0 in...
@cudawarped Could you share the following information? - the result of `cv::getBuildInformation()` - the value of `HIGHGUI_ENABLE_PLUGINS` - the value of `HIGHGUI_PLUGIN_LIST` - the value of `OPENCV_HIGHGUI_BUILTIN_BACKEND`
@cudawarped Thank you for your information. I'll try to reproduce.
I could probably reproduce the same problem. ### Source code to reproduce ```c++ #include #include #include int main() { cv::Mat src(cv::Size(512, 512), CV_8UC3, cv::Scalar(0, 0, 255)); cv::cuda::GpuMat d_src(src); cv::namedWindow("d_src", cv::WINDOW_OPENGL);...
@cudawarped If you cau use Qt, this sample code works with highgui of Qt backend.
I commented out the following code. As a result, there was no error. > config_tool.change_detection_range_v2(model_cfg, [-50, -50, 50, 50]) I'll investigate the cause of this problem.
@nydragon Thank you for your reply. I'll try it.
@abhigoku10 I think that `pred_boxes` has 15 elements. And, pred_boxes[7]~[14] has the confidence of classes. https://github.com/AI-liu/Complex-YOLO/blob/master/eval.py#L59-L68 But, some element has negative value. So, I don't understand this reason.
I corrected only the typo. But, I don't know why CI Job failed.