python實現生成圖片路徑和對應標簽
學計算機的同學都知道圖片的路徑更改特別麻煩,尤其要對應到相應的標簽,這個讓人炸花了眼,今天馬哥python的老師搜集了一下素材,接下來就會通過python語言直接生成圖片對應標簽,大家也知道現在的python特別的火爆,原因就是它能夠處理很多問題,接下來上代碼:
# coding=utf-8
# !/usr/bin/env python
import sys
import os.path
if __name__ == "__main__":
#只需要將BASE_PATH修改為你的路徑
BASE_PATH='C:\\Users\\zhang\Desktop\\lfw_test\\lfw_test'
SEPARATOR=" "
fh = open('1.txt', 'w')
label = 0
for dirname, dirnames, filenames in os.walk(BASE_PATH):
for subdirname in dirnames:
subject_path = os.path.join(dirname, subdirname)
for filename in os.listdir(subject_path):
abs_path = "%s/%s" % (subject_path, filename)
print("%s%s%d" % (abs_path, SEPARATOR, label))
fh.write(abs_path)
fh.write(SEPARATOR)
fh.write(str(label))
fh.write("\n")
label = label + 1
fh.close()
馬哥Python人工智能課程,從0基礎開始講授,貫穿項目實踐,資深名師帶領學習,是你入行Python的最佳路徑之一。好啦,今天的分享到這里就結束了,希望大家持續關注馬哥教育,每天都會有大量優質內容與大家分享!特別聲明:文章轉自網絡,如有侵權,請及時聯系歐!