会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
吾家木水
博客园
首页
新随笔
联系
管理
2020年11月2日
python实现根据图像路径排序
摘要: 实现功能:输入为图像路径列表,根据图像名称中的数字大小实现图像路径的排序 from functools import cmp_to_key def get_suffix(filename): """a.jpg -> jpg""" pos = filename.rfind('.') if pos ==
阅读全文
posted @ 2020-11-02 10:55 吾家木水
阅读(378)
评论(0)
推荐(0)
2020年9月18日
Cmake 命令总结
摘要: set(CMAKE_INCLUDE_CURRENT_DIR ON) set(CMAKE_AUTOMOC ON) set(CMAKE_CXX_FLAGS "-std=c++11") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -I${CMAKE_CURRENT_SO
阅读全文
posted @ 2020-09-18 17:48 吾家木水
阅读(485)
评论(0)
推荐(0)
2020年9月17日
c++ 函数模块
摘要: cpp模块备忘录,经常经常用到的函数快 读取txt文件数据到数组中,输入txt文件路径,分隔符,输出为数组 #include <iostream> #include <cstring> #include <string> using namespace std; void ReadDataFromF
阅读全文
posted @ 2020-09-17 10:02 吾家木水
阅读(193)
评论(0)
推荐(0)
2020年5月22日
imglab .xml 标签格式转coco .json格式
摘要: 用imglab做物体特征点标注,将标注数据转为coco keypoints数据集转换代码:
阅读全文
posted @ 2020-05-22 16:13 吾家木水
阅读(559)
评论(2)
推荐(1)
2020年5月5日
Ubuntu18.04 编译 sparse-ncnet
摘要: 依赖环境 1. 系统环境 gcc/g++ 7 cuda 10.1 2. conda环境
阅读全文
posted @ 2020-05-05 23:54 吾家木水
阅读(408)
评论(0)
推荐(0)
2020年5月3日
Detectron2 keypoint_rcnn 网络c++版本部署
摘要: 之前用detectron2 的keypoint_rcnn训练自己的数据集完成物体特征点检测,这篇文章是将pytorch模型转为c++调用的形式。 实现效果: Detectron2 提供了将pytorch模型转为c++调用的例程: "Deployment" ,gpu版本的模型转换需要pytorch版本
阅读全文
posted @ 2020-05-03 16:44 吾家木水
阅读(1979)
评论(34)
推荐(0)
公告