【问题标题】:Python openCV Normalize with Zero Mean and unit variancePython openCV 归一化与零均值和单位方差
【发布时间】:2017-02-22 22:01:28
【问题描述】:

我正在尝试使用 cv2.normalize 函数对具有零均值和单位方差的灰度图像数组进行归一化,如下所示

out_image = np.zeros((32,32),dtype=np.float32)
out_array = np.zeros((len(X),32,32), dtype=np.uint8)        
for imageindex in range(0,len(X)): 
    img = X[imageindex].squeeze()
    if proctype == 'MeanSubtraction':
        out_image = img.astype(np.float32) - np.mean(img.astype(np.float32))
    elif proctype == 'Normalization':
        out_image = cv2.normalize(img.astype(np.float32), out_image, alpha=-0.5, beta=0.5,\
                                             norm_type=cv2.NORM_MINMAX, dtype=cv2.CV_32F)
    elif proctype == 'HistEqualization':
        out_image = cv2.equalizeHist(img)

    elif proctype == 'CLAHE':
        clahe = cv2.createCLAHE(tileGridSize=(6,6),clipLimit = 20.0)
        out_image = clahe.apply(img)

    out_array[imageindex] = out_image.astype(np.uint8)

return out_array

但是,如果我对规范化函数的参数 alpha 和 beta 使用 0 和 1(或 0 和 255),它就可以工作。但如果我使用 -0.5 和 +0.5,它会返回一个空图像(全为零)

为什么会这样?

【问题讨论】:

    标签: python opencv


    【解决方案1】:

    out_array 的类型为np.uint8,因此无法准确表示浮点值。因此,当您将包含[-0.5, 0.5] 范围内的浮点值的out_image 转换为np.uint8out_image.astype(np.uint8) 时,所有这些值都被截断为零。考虑这个例子:

    # generate random numbers in the range [-0.5, 0.5]
    x_float32 = (np.random.random((32, 32)) - 0.5).astype(np.float32)
    print x_float32.min(), x_float32.max()  # prints -0.49861032, 0.4998906
    x_uint8 = x_float32.astype(np.uint8)
    print x_uint8.min(), x_uint8.max()      # prints 0, 0
    

    如果要在out_array 中存储浮点值,首先需要将其dtype 更改为np.float32。或者,您可以将[-0.5, 0.5] 范围内的值重新规范化为[0, 255] 范围内的无符号整数。

    【讨论】:

    • 是的。我将 out_array 的 dtype 更改为 np.float32,现在它可以工作了。谢谢
    猜你喜欢
    • 2016-10-10
    • 2012-02-01
    • 2017-10-28
    • 2018-09-16
    • 2015-09-18
    • 2017-03-04
    • 2014-05-27
    • 2020-01-30
    • 1970-01-01
    相关资源
    最近更新 更多