移動する GLCM(Grey level Co-occurrence matrix) ウィンドウを使用して、6641x2720 画像の特徴画像 (コントラスト、2 番目のモーメントなどの Haralick 特徴) を生成する作業を行っています。しかし、実行するには永遠に時間がかかります。小さな画像でテストしたので、コードは正常に動作します。しかし、私はそれをより速く実行する必要があります。サイズを 25% (1661x680) に縮小すると、実行に30 分かかります。より速く実行するにはどうすればよいですか? コードは次のとおりです。
from skimage.feature import greycomatrix, greycoprops
import matplotlib.pyplot as plt
import numpy as np
from PIL import Image
import time
start_time = time.time()
img = Image.open('/home/student/python/test50.jpg').convert('L')
y=np.asarray(img, dtype=np.uint8)
#plt.imshow(y, cmap = plt.get_cmap('gray'), vmin = 0, vmax = 255)
contrast = np.zeros((y.shape[0], y.shape[1]), dtype = float)
for i in range(0,y.shape[0]):
for j in range(0,y.shape[1]):
if i < 2 or i > (y.shape[0]-3) or j < 2 or j > (y.shape[1]-3):
continue
else:
s = y[(i-2):(i+3), (j-2):(j+3)]
glcm = greycomatrix(s, [1], [0], symmetric = True, normed = True )
contrast[i,j] = greycoprops(glcm, 'contrast')
print("--- %s seconds ---" % (time.time() - start_time))
plt.imshow(contrast, cmap = plt.get_cmap('gray'), vmin = 0, vmax = 255)