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 多个视频
阅读全文
摘要:return vector<string>(); 或者:(C++11) return {}; 参考:https://stackoverflow.com/questions/24175507/return-an-empty-vector-c
阅读全文
摘要: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
阅读全文
摘要:add the following code to './torch2trt/torch2trt/plugins/NvInfer.h' https://drive.google.com/file/d/1dIAiFoU7ROkLVw5OA5ezYifA-F77z6NE/view?usp=sharing
阅读全文
摘要: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
阅读全文