07 2023 档案
解决 `Failed to connect to github.com port 443: Connection refused`
摘要:解决 Failed to connect to github.com port 443: Connection refused 问题 在 git clone 时报错: Failed to connect to github.com port 443: Connection refused 按照网上教 阅读全文
posted @ 2023-07-22 19:48 Ghlerrix 阅读(785) 评论(0) 推荐(0)
Android AlarmManager实现定时任务(也就是闹钟) 附Demo源码
摘要:原文链接https://www.shanya.world/archives/a7b639d4.html 创建定时任务 Android中的定时任务一般有两种实现方式,一种是使用 Java API 里提供的 Timer 类,一种是使用 Android 的 Alarm 机制。这两种方式在多数情况下都能实现 阅读全文
posted @ 2023-07-05 09:47 Ghlerrix 阅读(4025) 评论(0) 推荐(0)
目标检测数据集可视化
摘要:COCO格式 import json import os import cv2 class CocoDataVisualization: def __init__(self, imgPath, jsonPath): self.imgPath = imgPath self.jsonPath = jso 阅读全文
posted @ 2023-07-03 22:18 Ghlerrix 阅读(97) 评论(0) 推荐(0)