摘要: 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) 编辑