-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathlogger.py
More file actions
95 lines (75 loc) · 3.38 KB
/
logger.py
File metadata and controls
95 lines (75 loc) · 3.38 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
"""
Copyright (C) 2017 NVIDIA Corporation. All rights reserved.
Licensed under the CC BY-NC-ND 4.0 license (https://creativecommons.org/licenses/by-nc-nd/4.0/legalcode).
"""
import tensorflow as tf
import numpy as np
import scipy.misc
import os
import shutil
from io import BytesIO # Python 3.x
from subprocess import call
class Logger(object):
def __init__(self, log_dir, suffix=None):
self.writer = tf.summary.FileWriter(log_dir, filename_suffix=suffix)
self.log_dir = log_dir
def scalar_summary(self, tag, value, step):
summary = tf.Summary(value=[tf.Summary.Value(tag=tag, simple_value=value)])
self.writer.add_summary(summary, step)
def image_summary(self, tag, images, step):
img_summaries = []
for i, img in enumerate(images):
# Write the image to a string
s = BytesIO()
scipy.misc.toimage(img).save(s, format="png")
# Create an Image object
img_sum = tf.Summary.Image(encoded_image_string=s.getvalue(),
height=img.shape[0],
width=img.shape[1])
# Create a Summary value
img_summaries.append(tf.Summary.Value(tag='%s/%d' % (tag, i), image=img_sum))
# Create and write Summary
summary = tf.Summary(value=img_summaries)
self.writer.add_summary(summary, step)
self.writer.flush()
def video_summary(self, tag, videos, step):
sh = list(videos.shape)
sh[-1] = 1
separator = np.zeros(sh, dtype=videos.dtype)
videos = np.concatenate([videos, separator], axis=-1)
img_summaries = []
temp_dir = os.path.join(self.log_dir, 'temp')
vid_dir = os.path.join(self.log_dir, 'vid_{}'.format(step))
os.makedirs(vid_dir, exist_ok=True)
for i, vid in enumerate(videos):
# Concat a video
v = vid.transpose(1, 2, 3, 0)
v = [np.squeeze(f) for f in np.split(v, v.shape[0], axis=0)]
os.makedirs(temp_dir, exist_ok=True)
# write it to video file
for frame_idx in range(len(v)):
file_name = os.path.join(temp_dir,
"{:06d}.png".format(frame_idx))
img = v[frame_idx]
scipy.misc.imsave(file_name, img, format="png")
call(["avconv", "-y", "-f", "image2", "-i",
os.path.join(temp_dir, "%06d.png"),
"-c:v", "libx264", "-pix_fmt", "yuv420p", "-r", "15",
"-vf", "scale=trunc(iw/2)*2:trunc(ih/2)*2",
"-loglevel", "panic",
os.path.join(vid_dir, "vid_{}.mp4".format(i))
])
shutil.rmtree(temp_dir)
s = BytesIO()
img = np.concatenate(v, axis=1)[:, :-1, :]
scipy.misc.toimage(img).save(s, format="png")
# Create an Image object
img_sum = tf.Summary.Image(encoded_image_string=s.getvalue(),
height=img.shape[0],
width=img.shape[1])
# Create a Summary value
img_summaries.append(tf.Summary.Value(tag='%s/%d' % (tag, i), image=img_sum))
# Create and write Summary
summary = tf.Summary(value=img_summaries)
self.writer.add_summary(summary, step)
self.writer.flush()