上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 97 下一页
摘要: x = np.arange(12).reshape((2,3,2)) 使用 numpy.transpose ()进行变换,其实就是交换了坐标轴,如:x.transpose(1, 2, 0),其实就是将x第二维度挪到第一维上,第三维移到第二维上,原本的第一维移动到第三维上,最后的shape为:(3,2 阅读全文
posted @ 2024-03-04 08:56 txwtech 阅读(99) 评论(0) 推荐(0) 编辑
摘要: 在Python中,np.round()是NumPy库中的一个函数,用于对数组或单个数值进行四舍五入。该函数返回一个与输入类型相同的数组或数值,并可以通过可选的参数来指定保留的小数位数。 翻译 搜索 复制 阅读全文
posted @ 2024-03-04 08:23 txwtech 阅读(186) 评论(0) 推荐(0) 编辑
摘要: python3.8安装opencv, pip install opencv-python cd D:\Program Files\Python38\Lib\site-packages pip install opencv-python 阅读全文
posted @ 2024-02-29 21:18 txwtech 阅读(184) 评论(0) 推荐(0) 编辑
摘要: CMD与PowerShell下,文件夹名有空格无法进入cd目录的解决办法 set-Location找不到接受实际参数“files”的位置形式参数 阅读全文
posted @ 2024-02-29 21:09 txwtech 阅读(298) 评论(0) 推荐(0) 编辑
摘要: zebra designer essentials zebra designer斑马打印机zebra ZE500导出prn--ZPL指令答应方式, 打印界面设计完成后,点击文件->打印->勾选打印至文件->点击打印 通过TCP方式连接打印机,发送prn文件的内容到打印机实现标签打印,通过代码灵活修改 阅读全文
posted @ 2024-02-28 12:01 txwtech 阅读(350) 评论(0) 推荐(0) 编辑
摘要: python opencv图像对比度增强--暗变亮 import math import numpy as np import cv2 from datetime import datetime import matplotlib.pyplot as plt from PIL import Imag 阅读全文
posted @ 2024-02-27 11:46 txwtech 阅读(688) 评论(0) 推荐(0) 编辑
摘要: AHE:全称,含义 Adaptive自动 Histogram 直方图 equalization均衡,同等化 自适应的直方图均衡AHE(Adaptive Histogram Equalization) Contrast Limiting(CL) (CLAHE) 限制对比度的自适应直方图均衡化 1.算法 阅读全文
posted @ 2024-02-27 11:12 txwtech 阅读(199) 评论(0) 推荐(0) 编辑
摘要: math.floor math函数库中的一个函数,math.floor(x)返回小于参数x的最大整数,即对浮点数向下取整。x[ ]的取值。 math例子 print("floorTest 8 : ".. math.floor(8)) 结果: 8.0 print("floorTest 8.5: ".. 阅读全文
posted @ 2024-02-27 10:38 txwtech 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 对数极坐标变换: import math import numpy as np import cv2 def print_hi(str): print('hi,'+str) def print_3(str): print('hi3,'+str) def polar2(I, center, r, th 阅读全文
posted @ 2024-02-26 11:40 txwtech 阅读(52) 评论(0) 推荐(0) 编辑
摘要: import math import numpy as np import cv2 def print_hi(str): print('hi,'+str) def print_3(str): print('hi3,'+str) def polar2(I, center, r, theta=(0, 3 阅读全文
posted @ 2024-02-26 11:15 txwtech 阅读(64) 评论(0) 推荐(0) 编辑
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 97 下一页