Zad 的文章
-
Deploy OpenWRT Virtual Machine in Azure Cloud
There are many reasons you might want to put OpenWRT into Azure Cloud. For me, I was looking for a free and light weight solution which can do routi…… -
-
-
从DeFi到NFT再到元宇宙,虎符的2021年是如何炼成的
转眼已经来到 2022 年,在过去一年中,诞生了许多新的区块链流行语,“农耕”、“躺赚”、“老马带货”、“加密第一股”、“天价NFT”、“智能公链”、“边玩边赚”、“元宇宙…… -
WebClient异步HTTP客户端简述
WebClient异步HTTP客户端 WebClient 的优势 WebClient是从Spring5开始提供的HTTP异步请求客户端接口,实现是DefaultWebClient。WebClient底层基于Netty的NIO框…… -
查看swintransformer的网络结构
import torch #导入对应的模型 from model import swin_tiny_patch4_window7_224 as create_model device = torch.device("cuda:0" if torch.cuda.is_availabl…… -
let 和const的区别
都存在暂时性的死区:用let 和const 声明变量的上面 不能重复声明 不存在变量提升 (var存在变量提升) let声明的变量可以改变,值和类型都可以改变,没有限制…… -
-
Python图片边缘匹配
def get_gap(image1,image2,bg_filenam,sd_filenam): #读取图片 bg_image = cv2.imread(bg_filenam) slider_img = cv2.imread(sd_filenam) #识别图…… -
Linux 定期删除某时间段的文件
Linux 定期删除某时间段的文件 定期删除几天(分钟)前的文件,可以借助Linux自带crontab定时任务工具,运行shell脚本进行删除。 shell 脚本: FILE_PATH=/hom……
友情链接