04 2021 档案

摘要:1 import cv2 2 import os 3 4 dir = r"F:\wenjian\trainingData_3.3\VideoData" 5 6 for eachVid in os.listdir(dir): 7 # vPath = dir + "\\" + eachVid 多个视频 阅读全文
posted @ 2021-04-20 13:57 略略略—— 阅读(2396) 评论(0) 推荐(0) 编辑
摘要:return vector<string>(); 或者:(C++11) return {}; 参考:https://stackoverflow.com/questions/24175507/return-an-empty-vector-c 阅读全文
posted @ 2021-04-13 15:04 略略略—— 阅读(3918) 评论(0) 推荐(0) 编辑
摘要:509.斐波那契数 题解1:(暴力递归) class Solution { public: int fib(int n) { if(n==0) return 0; if(n==1) return 1; return fib(n-1)+fib(n-2); } }; 题解2:(备忘录) class So 阅读全文
posted @ 2021-04-11 15:49 略略略—— 阅读(448) 评论(0) 推荐(0) 编辑
摘要:add the following code to './torch2trt/torch2trt/plugins/NvInfer.h' https://drive.google.com/file/d/1dIAiFoU7ROkLVw5OA5ezYifA-F77z6NE/view?usp=sharing 阅读全文
posted @ 2021-04-01 15:22 略略略—— 阅读(223) 评论(0) 推荐(0) 编辑
摘要:add the following code to './trt_pose/plugins.py' # encoding: utf-8 # module trt_pose.plugins # from /usr/local/lib/python3.6/dist-packages/trt_pose-0 阅读全文
posted @ 2021-04-01 15:08 略略略—— 阅读(433) 评论(1) 推荐(0) 编辑

点击右上角即可分享
微信分享提示