摘要: https://convertmodel.com/ 阅读全文
posted @ 2022-10-18 16:34 dangxusheng 阅读(866) 评论(0) 推荐(0) 编辑
摘要: 以mmdetection工程为例 1 ubuntu使用sh套py脚本来调用 train.sh #!/usr/bin/env bash CONFIG=configs/xx/cfg_1.py WORK_DIR=train_result/20220825 CKPT=train_result/2022070 阅读全文
posted @ 2022-10-18 15:35 dangxusheng 阅读(68) 评论(0) 推荐(0) 编辑
摘要: 参考 https://blog.csdn.net/luolinll1212/article/details/106061943 1 c++ 实现 2 编写pybind11的代码 #include "pybind11/pybind11.h" #include "pybind11/numpy.h" #i 阅读全文
posted @ 2022-10-18 15:24 dangxusheng 阅读(286) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/env python # -*- coding:utf-8-*- # file: model_test1.py # @author: jory.d # @contact: # @time: 2022/01/07 22:41 # @desc: 模型测试, 查看误检和漏检 """ 阅读全文
posted @ 2022-10-18 15:17 dangxusheng 阅读(1230) 评论(0) 推荐(0) 编辑
摘要: CMakeList 内容: cmake_minimum_required(VERSION 3.14) project(demo) set(CMAKE_CXX_STANDARD 17) include_directories(3rd_party/stb) find_package(OpenCV REQ 阅读全文
posted @ 2022-10-18 15:12 dangxusheng 阅读(272) 评论(0) 推荐(0) 编辑
摘要: import os import os.path as osp import numpy as np from mmcv import Config from mmdet.models import build_detector import math import argparse import 阅读全文
posted @ 2022-10-18 15:10 dangxusheng 阅读(52) 评论(0) 推荐(0) 编辑