Link Qian

Results 15 comments of Link Qian

it seems the default library path makes a compile trouble. manually add '/usr/local/lib' and '/usr/local/lib/x86_64-linux-gnu' library path to compile command work good. ``` /usr/bin/cc -rdynamic CMakeFiles/local_file.dir/h264_packetizer.c.o CMakeFiles/local_file.dir/h264_parser.c.o CMakeFiles/local_file.dir/main.c.o -o local_file...

请手工编译MNN并放到lib目录之中

MTCNN is not the powerful algorithm of detection since there are YOLO/SSD and other two-stages detection. some times the code detects zero plate.

感谢您的关注,目前暂无开发训练代码的计划!黄牌、港澳牌、警牌由专业版本识别

please notes cmake version and OS version

非常感谢up主。 从嵌入式硬件拿到的是一个NALU整包,代码直接push到session,很简单,dump设备流保持到一个h265文件,供up主参考 链接: https://pan.baidu.com/s/1XiW4wZZsuTtkNTgW6ysUqg 提取码: v5yh void XopRtspServer::writeVideoPackage(unsigned char * buffer, int size, int64_t pts) { videoFrame.type = 0; videoFrame.size = size; videoFrame.timestamp = xop::H264Source::GetTimestamp(); videoFrame.buffer.reset(new uint8_t[size]); memcpy(videoFrame.buffer.get(), buffer, size);...

> 有使用 H265Source 吗 根据编码不同设置了不同的source。代码片段如下: session = xop::MediaSession::CreateNew(channel); if (encodingType == E_MI_VENC_MODTYPE_H264E) { session->AddSource(xop::channel_0, xop::H264Source::CreateNew()); } else if (encodingType == E_MI_VENC_MODTYPE_H265E) { session->AddSource(xop::channel_0, xop::H265Source::CreateNew()); } else { code = ERR_XOP_UNSUPPORT_MEDIA;...

> @nicewiz First make sure your input is OK, including boxes and keypoints, and if you are not a single-class, modify nc and any other parameters involved. I modified the...