03 2022 档案
摘要:# -*- coding: utf-8 -*-# # # Name: 单链表测试 # Author: yunhgu # Date: 2022/3/10 15:48 # Description: # class Node(object): """链表的结点""" def __init__(self,
阅读全文
摘要:# -*- coding: utf-8 -*-# # # Name: m3u8下载器 # Author: yunhgu # Date: 2022/3/4 9:35 # Description: # from concurrent.futures import ThreadPoolExecutor,
阅读全文
摘要:# -*- coding: utf-8 -*-# # # Name: 资源打包 # Author: yunhgu # Date: 2022/3/10 15:07 # Description: # import os import sys def resource_path(relative_path
阅读全文
摘要:numba 编译型语言和解释型语言 首先了解一下编译型语言和解释型语言(也经常叫脚本语言): 1、编译型语言,C、C++、Fortran、Pascal、Ada,由编译型语言编写的源程序需要经过编译,汇编和链接才能输出目标代码,然后由机器执行目标代码。目标代码是由机器指令组成,不能独立运行,因为源程序
阅读全文
摘要:def cv2_img_add_text(img, text, coordinate, text_color=(0, 255, 0), text_size=20): img = Image.fromarray(cv2.cvtColor(img, cv2.COLOR_BGR2RGB)) # 创建一个可
阅读全文
摘要:import numpy as np import math from scipy.spatial.transform import Rotation as R Rq=[-0.71934025092983234, 1.876085535681999e-06, 3.274841213980097e-0
阅读全文