gpt4 book ai didi

Python 脚本返回一个数组而不是单个值

转载 作者:行者123 更新时间:2023-12-01 04:45:36 25 4
gpt4 key购买 nike

我有一个使用 numpy 的 python 脚本,它应该拍摄图像并在返回单个值之前执行一些计算。当我单独执行每一行时,它会按预期工作。当我将它们全部放在 .py 脚本中并从命令行或 Canopy 中运行它时,它返回一个数组。

我稍微修改了代码,不需要通常的图像输入,结果是相同的:

import numpy as np

# Instead of loading an image, generate a test case (w or wo structured noise)
roi = np.random.poisson(38,(256,256));
blob = np.random.poisson(5,(128,128));
roi[64:192,64:192] = roi[64:192,64:192]+blob;
# Load the other variables if necessary (i.e., no DICOM to load)
[xDim,yDim] = [512,512];
roiLength = xDim/2;
pix = 1.18958;

# Declare memory for the FFTs
sizeFFT = xDim;
NPS2D = np.zeros((sizeFFT,sizeFFT)); # declare memory for fft results
fftslice = np.zeros((sizeFFT,sizeFFT));

# Set the dimension of the ROI and pull the pixel size. This will be
# used for the scaling factor in the 2D NPS.
deltaX = pix;
deltaY = pix;
scaleFactor = (deltaX/roiLength)*(deltaY/roiLength);

# Calculate the NPS
roiMean = np.mean(roi);
fftslice = np.fft.fft2((roi-roiMean),s=[sizeFFT,sizeFFT]);
NPS2D = scaleFactor*np.fft.fftshift(np.multiply(fftslice,np.conj(fftslice)));
NPS2D = NPS2D.real;

# Subtract the white noise from the NPS to get the structured NPS
stNPS = NPS2D - roiMean*deltaX*deltaY;

# Calculate SNI
SNI=sum(stNPS)/sum(NPS2D);

# Display the result
print SNI;

如果我执行每一行,结果是 0.107213670449 (或类似的,因为它每次都会重新生成一个随机数组)。如果我使用 python foo.py 从命令行运行脚本或单击 Canopy 中的播放按钮,结果是一个 512 长度的数组 [4.64940089e-03 ... -4.59789051e -02 -7.15113682e-02],其中我手动删除了 509 个条目。

有什么想法吗?我错过了一些明显的东西吗?

最佳答案

使用内置 sum 函数与使用 numpy.sum 或数组的 sum 方法不同。

对于 >1d 数组,Python 的 sum 将给出非常不同的结果:

In [1]: import numpy as np

In [2]: x = np.arange(100).reshape(10, 10)

In [3]: x
Out[3]:
array([[ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[10, 11, 12, 13, 14, 15, 16, 17, 18, 19],
[20, 21, 22, 23, 24, 25, 26, 27, 28, 29],
[30, 31, 32, 33, 34, 35, 36, 37, 38, 39],
[40, 41, 42, 43, 44, 45, 46, 47, 48, 49],
[50, 51, 52, 53, 54, 55, 56, 57, 58, 59],
[60, 61, 62, 63, 64, 65, 66, 67, 68, 69],
[70, 71, 72, 73, 74, 75, 76, 77, 78, 79],
[80, 81, 82, 83, 84, 85, 86, 87, 88, 89],
[90, 91, 92, 93, 94, 95, 96, 97, 98, 99]])

In [4]: sum(x)
Out[4]: array([450, 460, 470, 480, 490, 500, 510, 520, 530, 540])

In [5]: x.sum()
Out[5]: 4950

In [6]: np.sum(x)
Out[6]: 4950

这是因为 python 的求和基本上是对对象的 for 循环求和。

循环 >1d 数组将返回沿第一个轴的切片。例如

In [7]: for item in x:
...: print item
...:
[0 1 2 3 4 5 6 7 8 9]
[10 11 12 13 14 15 16 17 18 19]
[20 21 22 23 24 25 26 27 28 29]
[30 31 32 33 34 35 36 37 38 39]
[40 41 42 43 44 45 46 47 48 49]
[50 51 52 53 54 55 56 57 58 59]
[60 61 62 63 64 65 66 67 68 69]
[70 71 72 73 74 75 76 77 78 79]
[80 81 82 83 84 85 86 87 88 89]
[90 91 92 93 94 95 96 97 98 99]

在这种情况下,Python 的 sum 有效地为您提供了列的总和(即 row1 + row2 + row3 ...)

关于Python 脚本返回一个数组而不是单个值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29472599/

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