這個方法可以獲得資料夾下的所有路徑。
跟os.walk(dir)相似, pos_file_path_list是map型別的,一行**就解決了,比較方便
pos_file_path_list =
map(
lambda x: os.path.join(pos_image_dir, x)
, os.listdir(pos_image_dir)
) neg_file_path_list =
map(
lambda x: os.path.join(neg_image_dir, x)
, os.listdir(neg_image_dir)
)# 獲取列表
# 調整大小
for index, pic in
enumerate
(pos_file_path_list)
: f_out = os.path.join(resize_pos_image_dir,
'{}.{}'
.format
(index, img_type)
) resize_image(pic, f_out, img_width, img_height)
縱向合併,跟numpy陣列行相加是一樣的
焊縫分離通道是 b、g、r
Python呼叫MongoDB使用心得
本文是乙個python 使用mongodb 的簡單教程,將使用pymongo 對mongodb進行的各種操作進行了簡單的彙總,nosqlfan進行了簡單整理,使用python的同學可以看一看。基本使用 安裝對應語言的driver,python 安裝 pymongo easy install pymo...
Python呼叫MongoDB使用心得
本文是乙個python 使用mongodb的簡單教程,將使用pymongo對mongodb進行的各種操作進行了簡單的彙總,我們進行了簡單整理,使用python的同學可以看一看。基本使用 安裝對應語言的driver,python 安裝 pymongo easy install pymongo使用方法 ...
python列表(list)使用心得
list test 1,2,3,4,5,6,7 2.新增元素 向列表中新增乙個物件object list test 1,2,3,4,5,6,7,8,9 把乙個序列seq的內容新增到列表中 list test.extend 8,9 list test 1,2,3,4,5,6,7,8,9 3.插入乙個元...