
工具
NineDays66
email:547691062@qq.com
展开
-
VS code 远程连接 ssh配置
ssh配置原创 2022-12-15 11:40:48 · 189 阅读 · 0 评论 -
I420、YV12、NV12、NV21等常见的YUV420存储格式
yuv 格式介绍原创 2022-09-28 09:36:56 · 4142 阅读 · 0 评论 -
python util
获取文件夹下所有文件:def get_all(cwd, result): get_dir = os.listdir(cwd) for i in get_dir: sub_dir = os.path.join(cwd,i) if os.path.isdir(sub_dir): get_all(sub_dir, resul...原创 2019-10-14 16:55:13 · 1672 阅读 · 0 评论 -
windows使用git clone速度慢,改善方法
最近使用git clone的速度实在是惨不忍睹,只有3~5k,使用两行命令稍微改善一下一般电脑转发端口都是1080端口,如果自己修改了端口改变命令端口就行了git config --global http.proxy http://127.0.0.1:1080git config --global https.proxy https://127.0.0.1:1080取消方法为...原创 2019-09-29 12:48:07 · 1858 阅读 · 0 评论 -
Windows多用户同时登陆
基础流程https://jiayaoo3o.github.io/2019/04/09/%E8%A7%A3%E9%99%A4windows10%E5%A4%9A%E8%B4%A6%E6%88%B7%E8%BF%9C%E7%A8%8B%E6%A1%8C%E9%9D%A2%E8%BF%9E%E6%8E%A5%E9%99%90%E5%88%B6/遇到问题在这儿查找,相关最新文件也可在这儿下载...原创 2019-09-05 09:06:13 · 2057 阅读 · 0 评论 -
COCO数据集解读
https://blog.youkuaiyun.com/qq_33254870/article/details/88683032https://blog.youkuaiyun.com/zym19941119/article/details/80241663现就几个函数做一些说明:getCatIds(catNms=[], supNms=[], catIds=[]) :通过输入类别的名字、大类的名字或是种类的...原创 2019-08-06 16:19:08 · 905 阅读 · 0 评论 -
Wider-Face 数据集标签处理
#!/usr/bin/env python# -- coding: utf-8 --"""Copyright (c) 2018. All rights reserved.Created by C. L. Wang on 2018/6/14"""import osfrom PIL import Imagebase = 'E:\\dataset\\face_detect\\wide...原创 2019-07-24 08:53:07 · 2826 阅读 · 0 评论 -
C++ 读取 XML 使用 tinyxml2
调用方法:#include "tinyxml\tinyxml2.h" using namespace tinyxml2;int main(){ XMLDocument doc; doc.LoadFile(xml_path.c_str()); XMLElement *info = doc.RootElement(); // info为根节点 XMLElement ...原创 2019-05-09 17:35:39 · 2687 阅读 · 0 评论 -
文件处理库 C++
#ifndef _UTIL_H_#define _UTIL_H_#include <opencv2\opencv.hpp>#include <iostream>#include <vector>#include <string>#include <io.h>#include <fstream>#include...原创 2018-12-24 16:05:58 · 727 阅读 · 0 评论 -
Visual Studio 快捷键
1、窗口快捷键 1 Ctrl+W,W: 浏览器窗口 2 Ctrl+W,S: 解决方案管理器 (Solution) 3 Ctrl+W,C: 类视图 (Class) 4 Ctrl+W,E: 错误列表 (Error) 5 Ctrl+W,O: 输出窗口(Output) 6 Ctrl+W,P: 属性窗口 (Property) 7 Ctrl+W,T: 任务列表 (Task) 8 Ctr...转载 2018-07-03 09:04:40 · 874 阅读 · 0 评论 -
LaTeX新人教程,30分钟从完全陌生到基本入门
对于真心渴望迅速上手LaTeX的人,前言部分可以跳过不看。 本教程面向对LaTeX完全无认知无基础的新人。旨在让新人能够用最简单快捷的方式,轻松入门,能够迅速使用LaTeX完成基本的文本编辑。这个教材最终能够达到的水平是能够使用LaTeX写一篇正常的proposal。如果希望有更大需求的提高,那么推荐在熟悉了这一篇文章的内容之后,再自行google或查阅其他稍厚的教材。尤其旨在破除部分新人对LaT...原创 2018-07-26 11:05:52 · 1316 阅读 · 0 评论