gpt4 book ai didi

python - 如何对多张图像进行傅里叶变换并将输出保存到单个对象中

转载 作者:行者123 更新时间:2023-12-02 17:26:33 25 4
gpt4 key购买 nike

我有 96 张不同尺寸和像素大小的 jpeg 无人机正射影像。我试图通过使用基于非引用的图像质量技术来确定每个正射影像的质量。这需要使用傅里叶变换将图像从空间域转换到频域。分析频率的分布可以深入了解图像中的模糊和噪声量,从而提高图像的质量,因为模糊会减少高频的量。

但是,为了将不同图像的质量相互比较,我需要创建一个索引,该索引必须在我的整个数据集上进行归一化,这将允许我比较数据集中图像之间的图像质量,但不能比较图像在我的数据集之外(没关系)。为此,我需要一起分析所有 96 个 jpeg 的频率分布,并确定前 15% 最高频率的值。如果我知道我的数据集的最高频率,我可以使用它来定义一个阈值来创建我的图像质量指数。

所以我的问题是。如何创建一个循环来读取我的所有图像、应用高斯模糊、应用傅立叶变换、将所有频率的分布保存到一个对象中,然后识别我数据集中最高频率的前 15%?

这是我到目前为止创建的用于处理一张图片的代码:

import numpy as np
import cv2
from matplotlib import pyplot as plt

img = cv2.imread('Image1.jpg', 0)

# Smooting by gaussian blur to remove noise
imgSmooth = cv2.GaussianBlur(img, (5, 5), 0)

# Fourier transform
dft = cv2.dft(np.float32(imgSmooth), flags=cv2.DFT_COMPLEX_OUTPUT)
dft_shift = np.fft.fftshift(dft)
magnitude_spectrum = 20 * np.log(cv2.magnitude(dft_shift[:, :, 0], dft_shift[:, :, 1]))

我对 python 很陌生,因为我通常在 R 中编码。任何帮助或建议将不胜感激。

最佳答案

据我了解这个问题,您想计算每张图像的平均频率,然后获得这些图像中前 15% 的频率值。我们可以通过以下方式做到这一点:

import numpy as np
import cv2
import os
from matplotlib import pyplot as plt

images_dir = 'folder/containing/images/'
images_list = os.listdir(images_dir)
images_mean_freq = []

for img_file in images_list:
img_path = os.path.join(images_dir, img_file)
img = cv2.imread(img_path, 0)

# Smooting by gaussian blur to remove noise
imgSmooth = cv2.GaussianBlur(img, (5, 5), 0)

# Fourier transform
dft = cv2.dft(np.float32(imgSmooth), flags=cv2.DFT_COMPLEX_OUTPUT)
dft_shift = np.fft.fftshift(dft)
magnitude_spectrum = 20 * np.log(cv2.magnitude(dft_shift[:, :, 0], dft_shift[:, :, 1]))
# get the standard deviation of the frequencies
img_mean_freq = np.mean(magnitude_spectrum)
images_mean_freq.append(img_mean_freq)
# then we can get the value of the top 15% highest frequencies, that is the 85% percentile of the distribution
top_15 = np.percentile(images_mean_freq, 85)
# finally we can select which images are above (or below) this top 15% threshold
images_above_top_15 = [images_list[idx] for idx in range(len(images_list)) if images_mean_freq[idx] > top_15]

关于python - 如何对多张图像进行傅里叶变换并将输出保存到单个对象中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59028126/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com