def image():
image = misc.imread('star.bmp',flatten=True)
circle = misc.imread('circle.png',flatten=True)
low_values_indices = circle < 200 # Where values are low
circle[low_values_indices] = 0 # All low values set to 0
high_values_indices = circle > 0
circle[high_values_indices] = 1
#image = misc.imread('P.png',flatten=True)
#data = abs(fft.fftshift(fft.fft2(image)))
theta = 10*np.pi / 180 #rad
# nä detta stämmer väl inte
r3 = 1 + 1/np.cos(theta) #antal pixlar som motsvarar 1 pixel i xled i xz systemet
r1 = 1 + 1/ np.sin(theta)
return 0
test_3dgauss_and_3d_plotting.py 文件源码
python
阅读 26
收藏 0
点赞 0
评论 0
评论列表
文章目录