1
我正在計算從目錄讀取的圖像的功能,我想將圖像路徑和相應的功能寫入文件中,並用空格分隔。輸出期望以這種方式如何在文件中編寫一個字符串和一個numpy數組?
/path/to/img1.jpg 1 0 0 1 3.5 0.2 0
/path/to/img2.jpg 0 0 0.5 2.1 0 0.7
...
以下是我的代碼
features.open('file.txt', 'w')
for fname in fnmatch.filter(fileList, '*.jpg'):
image = '/path/to/image'
# All the operations are here
myarray = [......] # array of dimensions 512x512
myarray.reshape(1, 512*512) # Reshape to make it a row vector
features.write(image + ' '.join(str(myarray)))
features.write('\n')
features.close()
一部分,但輸出來作爲
/path/to/img1.jpg[[0 0 1.0 2 3]]
/path/to/img2.jpg[[1.2 0 1.0 2 0.3]]
您能否定義「不正確?」一點也不?輸出如何? – tfv
編輯帖子。 –