chenscottus

Results 26 comments of chenscottus

It should be here that fail: coroutine_.promise().join_sem.acquire() Fail to acquire Invariant: semaphore counter is non-negative and doesn't exceed max(), _Prev is 221 something in C:\Program Files\Microsoft Visual Studio\2022\Professional\VC\Tools\MSVC\14.30.30705\include\semaphore (line 242)

> 我解决了 楼主 cv2.split()出来的hsv是tuple,不能被赋值的,转换成list就好了 可以问是怎么改的? 谢谢!

hsv = cv2.split(hsv_src) #https://github.com/Tianxiaomo/pytorch-YOLOv4/issues/427 #OpenCV can't augment image: 608 x 608 hsv = list(hsv)

请问可以分享新的群二维码吗?谢谢!

We are using https://github.com/deepinsight/insightface/blob/master/detection/scrfd/tools/scrfd2onnx.py and get the error!

Change from mmdet.core import (build_model_from_cfg, generate_inputs_and_wrap_model, preprocess_example_input) ==>>>>> from mmdet.core.export import build_model_from_cfg, preprocess_example_input, generate_inputs_and_wrap_model

The python file - libtorch_onnx_tensorrt_yolo

yolov3 and yolov3-spp are different. yolov3-spp does not have that. In what you provide about Libtorch_yolo_to_onnx.py and yolov3-ocr.cfg also have the same issue.

If I change the code to, it will like work. int threads_size = 0; threads_size = threads_.size(); for (std::size_t i = 0; i < threads_size; ++i) { threads_[i].request_stop(); } threads_size...

dp::thread_pool* dp_pool_vars; ... dp::thread_pool dp_pool(32); dp_pool_vars = &dp_pool; ... dp_pool_vars->enqueue(write_frames_original_task, &wf_original_args_main); ... ... dp_pool.~thread_pool(); ....