Python で処理された画像の名前を出力 .csv ファイルに追加する必要があります。そして、次の画像処理の結果を別の .csv 縦列または横列に入れます。
どのように?コードは次のとおりです。
def humoments(self): #function for HuMoments computation
for filename in glob.iglob ('*.tif'):
img = cv.LoadImageM(filename, cv.CV_LOAD_IMAGE_GRAYSCALE)
cancer = cv.GetHuMoments(cv.Moments(img))
#arr = cancer
arr = numpy.array([cancer])
with open('hu.csv', 'wb') as csvfile: #puts the array to file
for elem in arr.flat[:50]:
writer = csv.writer(csvfile, delimiter=' ', quotechar='|', quoting=csv.QUOTE_MINIMAL)
writer.writerow([('{}\t'.format(elem))])