pppaulpeter
pppaulpeter
i met the same problem when i run the python code as following: _(base) ubuntu@ubuntu-XPS-8930:~/heop_devel_kit/volume/visionanalyticsAI$ python yolov5.py Traceback (most recent call last): File "yolov5.py", line 120, in net = cv2.dnn.readNet(modelWeights)...
if you just want test it locally, just download it and open the index.html by chrome brower. if you want to capture a image from a remote computer, you need...
> There are verbose lws logs that describe what it's doing and why. You should maybe have a look? i set the debug level to debug debug_level = LLL_ERR |...
> I got the same issues, did you fix it? @pppaulpeter i have not reproduced the problem yet :(
> You don't have to do anything. lws will allocate a side buffer with the unsent part copied to it automatically, and swallow WRITEABLE callbacks internally to use them to...
> 1. You should not sleep on the event loop, it just makes everything worse. If there is more to send, you can just call lws_callback_on_writable() and you will come...
i just test the CPU usage, this is the demo code @lws-team ``` if (playbackCtx.isPlaying && playbackCtx.file_fd > 0) { // Determine the file size if(pthread_mutex_trylock(&playbackCtx.mutex)==0) { unsigned int total_len...
> What size packets are actually being sent? Please have a look with wireshark / tcpdump. > > Use openssl rather than, eg, mbedtls (which is very slow) > >...
> What size packets are actually being sent? Please have a look with wireshark / tcpdump. > > Use openssl rather than, eg, mbedtls (which is very slow) > >...
> Release mode is not a "must", but it removes various things (like verbose logs) from the build and is more efficient. > > I have no idea what your...