04 2022 档案
摘要:docker kill $(docker ps -q) docker rm $(docker ps -a -q) docker rmi $(docker images -q)
阅读全文
摘要:
阅读全文
摘要:升级WSL2 如果是WSL1,需要升级WSL2 https://docs.microsoft.com/en-us/windows/wsl/install#upgrade-version-from-wsl-1-to-wsl-2 wsl -l -v wsl --set-version Ubuntu-XX
阅读全文
摘要:注意应该在Powershell当中运行命令
阅读全文
摘要:https://github.com/docker/for-win/issues/3088 https://stackoverflow.com/questions/68096476/docker-failed-to-initialize-on-windows 删除 C:\Users\XXX\AppD
阅读全文
摘要:https://mokole.com/palette.html PALETTE = [ "B0C4DE", "FF00FF", "1E90FF", "FA8072", "EEE8AA", "FF1493", "7B68EE", "FFC0CB", "696969", "556B2F", "CD853
阅读全文
摘要:rsync -av --progress SOURCE_FOLDER TARGET_FOLDER --exclude img1 假设文件结构是这样的(MOT17) SOURCE_FOLDER gt gt.txt img1 000001.jpg 000002.jpg seqinfo.ini 那么复制的
阅读全文
摘要:Some file permission examples: 777 - all can read/write/execute (full access). 755 - owner can read/write/execute, group/others can read/execute. 644
阅读全文
摘要:Recursive bayesian estimation Recursive Bayesian estimation, also known as a Bayes filter, is a general probabilistic approach for estimating an unkno
阅读全文
摘要:os.listdir的排序不是字典序,是按照文件系统当中的文件节点顺序组织的 这种排序在不改动文件夹的情况下一般是确定的(可复现的),但没有确定的排序规则 即使是相同的文件,在不同的文件系统以及文件系统设置下也是不一样的 所以,应该用sorted(os.listdir)来生成确定性的结果 答案来自
阅读全文
摘要:实验:工作路径下有一个try.py以及try.txt import os print(os.getcwd()) # path\to\cwd print(os.path.isfile("./try.txt")) # True print(os.path.isfile(".\\try.txt")) #
阅读全文
摘要:pip install 直接激活Anaconda pip install -U libsvm 克隆 libsvm-master git clone https://github.com/cjlin1/libsvm 下载gnuplot http://www.gnuplot.info/ 找到最新版本,比
阅读全文
摘要:Tracking of multiple, partially occluded humans based on static body part detection. CLEAR metrics MOT20 is inspired by the paper EvaluatingMultiple O
阅读全文
摘要:Data format - Note: Training Test data in https://motchallenge.net/ is not the required(default) format of TrackEval MOT Challenge train/val/test det.
阅读全文
摘要:https://jack.valmadre.net/notes/2020/12/08/non-perfect-linear-assignment/ \(G = (U,V,E)\) \(|U| = r\) \(|V| = n\) without loss of generality, assume \
阅读全文
摘要:Existing performance measures such as CLEAR MOT report how often a tracker makes what types of incorrect decisions. We argue that some system users ma
阅读全文
摘要:https://stackoverflow.com/questions/22053050/difference-between-numpy-array-shape-r-1-and-r
阅读全文
摘要:
阅读全文
摘要:点击形状,右键,设置对象格式 要善于利用PPT当中的对象格式调整包括颜色、效果、大小、文本框属性等等
阅读全文
摘要:conda install python=3.7 就好了!
阅读全文
摘要:mv subfolder subfolder_tmp git submodule deinit subfolder git rm --cached subfolder mv subfolder_tmp subfolder git add subfolder https://stackoverflow
阅读全文
摘要:Data format - Note: Training Test data in https://motchallenge.net/ is not the required(default) format of TrackEval MOT Challenge train/val/test det.
阅读全文
摘要:Tracking of multiple, partially occluded humans based on static body part detection. CLEAR metrics MOT20 is inspired by the paper EvaluatingMultiple O
阅读全文