hpc203

Results 114 comments of hpc203

> 相比于方便快捷的Python,C++的常用操作确实是匮乏很多,最近项目需要分割中文字符串,我这个C++新手在网上找了好长时间都没有结果,最后还是歪打正着的找到了这个[SO](https://stackoverflow.com/questions/40054732/c-iterate-utf-8-string-with-mixed-length-of-characters)的问答,才有了眉目。 > > ```c++ > #include > #include > #include > > std::vector split_chinese(std::string s) { > std::vector t; > for (size_t i = 0; i < s.length();) >...

根据常识,您觉得车道线是分布在图片的上半个区域还是下半个区域呢? ---原始邮件--- 发件人: ***@***.***&gt; 发送时间: 2023年8月30日(周三) 上午9:23 收件人: ***@***.***&gt;; 抄送: ***@***.***&gt;; 主题: [hpc203/Ultra-Fast-Lane-Detection-v2-opencv-onnxrun] 代码中的resize与裁剪crop问题 (Issue #4) AI工程师你好,tusimple-onnx的尺寸为(320,800),为什么项目例onnxruntime的推理detect部分先将图片resize到(400,800)然后裁剪从最后一行往上数320行,得到(320,800)的图片呢,直接resize到(320,800)会报错我试了,为什么这样呢,我先resize到其他比例可以吗,有什么原则吗 — Reply to this email directly, view it on GitHub, or unsubscribe. You...

> outnames : exist_col exist_row loc_col loc_row [ERROR:[email protected]] global net_impl.cpp:1164 cv::dnn::dnn4_v20221220::Net::Impl::getLayerShapesRecursively OPENCV/DNN: [Reshape]:(onnx_node!Reshape_48): getMemoryShapes() throws exception. inputs=1 outputs=1/1 blobs=0 [ERROR:[email protected]] global net_impl.cpp:1167 cv::dnn::dnn4_v20221220::Net::Impl::getLayerShapesRecursively input[0] = [ 1 8 10 25...

看代码,检测模块是仿照EAST文字检测模型做的