原始图像绝对路径的图像名存储在一个txt文件中,下面的程序实现的功能是按照txt文件的顺序,依次将图片读取然后进行处理,最后将处理之后的图像保存在指定的路径下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# Read in the image to be detected
# 原始图像均保存在binaries.txt文件中,将包含绝对目录的图像名提取出来并写到txt文件的程序见上一篇博客
f = open ( "/home/shenruixue/image_test/binaries.txt" )
line = f.readline()
while line:
count_times + = 1
line = line[: - 1 ] # 除去末尾的换行符
print line
print '***********************************************************'
image = caffe.io.load_image(line)
# start time
start = time.clock()
# 此处做一系列的处理
# 。。。。。。
# 。。。。。。
# 此处做一系列的处理
# end time
end = time.clock()
sum_time + = (end - start)
# draw the image
plt.imshow(image)
print '~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~'
# 指定处理之后的图像的保存目录
pre_savename = '/home/shenruixue/image_test_result/'
print ( str (count_times))
# 将从txt中读取的一行字符串(包含绝对路径的图像名)进行处理,只留存最后的图像名的字符串部分,去掉绝对路径部分的字符串
# 并将自己指定的目录与原始的图像名这两个字符串连接起来,然后进行保存
savename = os.path.join(pre_savename, line[ 28 :])
print 'line is '
print line
print 'savename is '
print savename
savefig(savename)
#io.imsave(savename, image)
# 继续读取下一行的图像名称
line = f.readline()
print '~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~'
plt.pause( 1 )
plt.close()
print ( 'Running time: %s s' % sum_time)
print ( 'Deal with images: %s 张' % count_times)
print ( 'mean time: %s s' % (sum_time / count_times))
|
以上这篇python将处理好的图像保存到指定目录下的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/shenruixue_CSDN/article/details/52335533