摘要: 先编辑anydesk-X.X.X/init/anydesk文件,将"DAEMON=//usr/bin$NAME"改成"DAEMON=/XXX/anydesk-5.1.1/$NAME"。(或者将anydesk-5.1.1/anydesk复制到/usr/bin,但同样要改掉//) 然后 如果直接运行in 阅读全文
posted @ 2019-07-13 10:08 aimhabo 阅读(2725) 评论(0) 推荐(0) 编辑
摘要: 这是关于标签数量的问题,搜索"100," ,其中与读标签框有关,或者与标签匹配有关的,全部改到大于“图片中最多有的标签数量”即可。 阅读全文
posted @ 2019-06-17 17:21 aimhabo 阅读(10182) 评论(0) 推荐(0) 编辑
摘要: 告别项目中“依index生成路径”的方法,直接使用我们在生成.json标签时就已经写入的图片路径(这里我写入的是绝对路径 full path)来获取图片。 需要做的,用以下代码替换SNIPER/lib/dataset/coco.py 阅读全文
posted @ 2019-06-12 10:27 aimhabo 阅读(436) 评论(0) 推荐(0) 编辑
摘要: import sys import json import cv2 import os import shutil dataset = { "info": { "description": "XXX in COCO dataset.", "url": "", "version": "1.0", ... 阅读全文
posted @ 2019-06-04 16:17 aimhabo 阅读(741) 评论(0) 推荐(0) 编辑
摘要: 需要先在运行目录下新建目录caffe_layers 阅读全文
posted @ 2019-05-08 16:58 aimhabo 阅读(498) 评论(0) 推荐(0) 编辑
摘要: 使用OPENCV加载深度学习的网络模型,并选择特定层的特征图保存到本地。 阅读全文
posted @ 2019-05-05 17:22 aimhabo 阅读(2119) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bash date ma=`grep MemAvailable /proc/meminfo | awk '{print $2}'` echo MemAvailable = $ma runningloop=0 while true do ((runningloop=runningloop+1)) termname="darknet-running-${runningl... 阅读全文
posted @ 2019-04-29 15:18 aimhabo 阅读(693) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <unistd.h> long get_memory_usage() { long page_size = sysconf (_SC_PAGESIZE); long num_pages = sysconf (_SC_PHYS_PAGES); l 阅读全文
posted @ 2019-04-26 20:39 aimhabo 阅读(1036) 评论(0) 推荐(0) 编辑
摘要: #参考1:https://blog.csdn.net/sushiqian/article/details/78614133#参考2:https://blog.csdn.net/thy_2014/article/details/51659300# coding=utf-8 import numpy as np import matplotlib.pyplot as plt import os i... 阅读全文
posted @ 2019-04-20 20:57 aimhabo 阅读(456) 评论(0) 推荐(0) 编辑
摘要: 设矩形1大小为100x100,矩形2从左上角顶点重合开始,向右滑动250个单位。 c++源码(基于opencv3.4.0) 当矩形2大小为100x100时: 当矩形2大小为50x100时: 当矩形2大小为200x100时: 当矩形2大小为100x200时: 阅读全文
posted @ 2019-04-19 21:13 aimhabo 阅读(620) 评论(0) 推荐(0) 编辑