tms

Results 11 comments of tms

you should watch this:https://www.youtube.com/watch?v=5GXWvoDzpDU ,at 1 secomd clip ! you can found the truck be lost also!

很久不更新了。。。。。坚持才是最难的事吧。

@face-competition sorry,I don't solve this problem

@marcoslucianops I noticed that there is no benchmark yet. Does it perform well?

@levipereira just only yolov9.in fact,yolov8 or yolov10 may be better.Is there any open source plan for yolov8 or v10 qat ?

ok,this work for my trt 5 ,but not result show in trt 6

> putText 哪里慢了?我看不懂,但我大受震撼 文本显示是矢量绘制,抗锯齿需要不少的时间。所以,在batchsize较大,文本较多的时候,putText真的很慢。你可以试一试类似这样的代码的时间: ``` std::vector infoValues{...}; int verticalShift = 0; for (auto it = infoValues.begin(); it != infoValues.end(); ++it, verticalShift++){ cv::putText(img, *it, cv::Point(1470, 30 + 25*verticalShift), FONT_HERSHEY_SIMPLEX, 0.85, cv::Scalar(255,...

> > > putText 哪里慢了?我看不懂,但我大受震撼 > > > > > > 文本显示是矢量绘制,抗锯齿需要不少的时间。所以,在batchsize较大,文本较多的时候,putText真的很慢。你可以试一试类似这样的代码的时间: > > ``` > > std::vector infoValues{...}; > > int verticalShift = 0; > > for (auto it...

> 你的示例代码有这样一个坐标(1470, 30),这个表明你可能在一个非常大的图上渲染自己的模型结果,图像太大会导致渲染延迟增加,这几乎是常识,可以考虑使用宽高各小一半的图像绘制结果 示例代码的数据并不真实。但是,输出为1920x1080的视频流是基本需要,所以坐标1470,30并不罕见。你觉得我有没有测试过中文文本绘制需要花费的时间?