import matplotlib
import matplotlib.pyplot as plt
matplotlib.use("Agg")
import numpy as np
x = np.linspace(0,10,100)
y = np.exp(-x)
plt.plot(x,y)
plt.savefig("matplot-1.png")
print ('plot is done')
|
![]() |
import numpy as np
q=np.radians(60); v0=10.;g=9.8
cos=np.cos; sin=np.sin
t=np.arange(0,1.6,0.1)
x=v0*cos(q)*t
y=v0*sin(q)*t-1/2*g*t**2
for i in range(len(t)):
print('{0:6.1f} {1:8.4f} {2:8.4f}'.format(t[i],x[i],y[i]))
import matplotlib.pyplot as plt
plt.plot(v0*cos(q)*t,v0*sin(q)*t-1/2*g*t**2,'--')
q=np.radians(62.5);
plt.plot(v0*cos(q)*t,v0*sin(q)*t-1/2*g*t**2)
q=np.radians(65)
plt.plot(v0*cos(q)*t,v0*sin(q)*t-1/2*g*t**2,lw=2)
plt.savefig("Proj-60-a.png")
|
![]() |
# coding=big5
import cv2
#img1 = cv2.imread("square-1.png") #將圖片檔案讀進來
img1 = cv2.imread("square-1.png",cv2.IMREAD_GRAYSCALE) #將圖片檔案讀進來並轉成灰階
img2 = cv2.imread("square-2.png",cv2.IMREAD_GRAYSCALE) #將圖片檔案讀進來並轉成灰階
img3 = cv2.imread("square-3.png",cv2.IMREAD_GRAYSCALE) #將圖片檔案讀進來並轉成灰階
print(img1.shape)
print(img2.shape)
(x,y)=img1.shape
print(x,y,x*y)
nn=0; n2=0; n3=0
for j in range(0,y):
for i in range(0,x):
nn+=1
d1=img1[i][j]
d2=img2[i][j]
d3=img3[i][j]
dd2=abs(d1-d2)
dd3=abs(d1-d3)
if(dd2 > 2): n2+=1; #print(i,j,d1,d2,dd)
if(dd3 > 2): n3+=1; #print(i,j,d1,d2,dd)
print(nn,n2,n2/nn)
print(nn,n3,n3/nn)
|
(160, 202) (160, 202) 160 202 32320 32320 324 0.010024752475247525 32320 952 0.029455445544554454 |
|