File size: 6,080 Bytes
96d549d 2b16bc4 96d549d 2b16bc4 96d549d 2b16bc4 96d549d 2b16bc4 96d549d 2b16bc4 96d549d |
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 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 |
import datetime
import errno
import math
import os
from abc import ABCMeta, abstractmethod
import cv2
class MediaWriter(object):
"""
Abstract class for all media outputs. Forcing each inheritance
to have a write class.
"""
__metaclass__ = ABCMeta
@abstractmethod
def write(self, content, *args):
"""
Write method to write media to disk
:param media: the media to be written
:param args: additional arguments that may be helpful
"""
pass
class NullWriter(MediaWriter):
def write(self, content, *args):
pass
class ImageWriter(MediaWriter):
"""
The ImageWriter will write an image to disk.
"""
__metaclass__ = ABCMeta
def __init__(self, prefix, file_format):
"""
Default initializer
:param prefix: the filename prefix a counter will be added
after this string and incremented after each write to disk
:param file_format: the file format for the images.
"""
if not file_format.startswith('.'):
file_format = '.' + file_format
if prefix is not None:
setup_dirs(prefix)
self.name = prefix + file_format
def write(self, img, *args):
"""
Writes the given image to the location specified through the
initializer
:param img: the image that will be written to disk
"""
cv2.imwrite(self.name % self.next_name(args), img)
@abstractmethod
def next_name(self, *args):
"""
This abstract method returns the object that should be inserted
into the filename
:param args: the args, that is passed to write_image
:return: the object that will be inserted into the filename
"""
class CustomImageWriter(ImageWriter):
"""
Image Writer that uses a custom name. It takes it as the first
argument in *args in the write method.
"""
def __init__(self, prefix=None, file_format='.jpg'):
"""
Default initializer
:param prefix: the file location and file name prefix
:param file_format: the file format e.g. .jpg, .png
"""
super(CustomImageWriter, self).__init__(prefix + '%s', file_format)
def next_name(self, *args):
return args[0]
class IncrementalImageWriter(ImageWriter):
"""
The IncrementalImageWriter will write an image to disk and append a
number to the file name. This number will be auto-incremented by the
specified step size after each write.
"""
def __init__(self, prefix=None, file_format='.jpg', start=0, step=1):
"""
Default initializer
:param prefix: the file location and file name
:param file_format: the file format e.g. .jpg, .png
:param start: the starting number for the incremental count
:param step: the step by which the count should increment
"""
self.count = start - step
self.step = step
if prefix is not None:
prefix += '%d'
super(IncrementalImageWriter, self).__init__(prefix, file_format)
def next_name(self, *args):
self.count += self.step
return self.count
class TimestampImageWriter(ImageWriter):
"""
TimestampImageWriter is a ImageWriter that adds the timestamp of when
the image was first shown in the original stream
"""
def __init__(self, fps, prefix=None, file_format='.jpg'):
"""
Default initializer
:param fps: The number of frames per second in the original stream
:param prefix: the prefix of the path to the output location
:param file_format: the file format of the output image
"""
self.fps = fps
if prefix is not None:
prefix += '%s'
super(TimestampImageWriter, self).__init__(prefix, file_format)
def next_name(self, args):
current_frame = args[0]
seconds = current_frame / self.fps
milliseconds = seconds - math.floor(seconds)
if milliseconds == 0:
milliseconds = '000'
else:
milliseconds = str(int(milliseconds * (10 ** 3)))
return str(datetime.timedelta(seconds=int(seconds))) + '.' + milliseconds.zfill(3)
class TimetableWriter(MediaWriter):
"""
The Timetable Writer outputs each slide iteratively using
the IncrementalImageWriter. Additionally it outputs a ".txt"
document containing the slide name and their appearances.
"""
def __init__(self, output_dir, timetable_loc, file_format):
"""
Default initializer
:param output_dir: the output directory for the sorted slides
:param timetable_file: where the timetable file should be stored
"""
setup_dirs(timetable_loc)
self.timetable = open(timetable_loc, 'w')
self.img_writer = IncrementalImageWriter(prefix=output_dir, start=1, file_format=file_format)
self.txt_writer = TextWriter(self.timetable)
def write(self, slides, *args):
i = 1
for slide in slides:
if slide.marked:
continue
self.img_writer.write(slide.img)
appearances = slide.time
for com in slide.times:
appearances += " " + com
self.txt_writer.write("Slide %d: %s\n" % (i, appearances))
i += 1
def close(self):
self.timetable.close()
class TextWriter(MediaWriter):
def __init__(self, output_file):
self.output_file = output_file
def write(self, content, *args):
self.output_file.write(content)
def setup_dirs(path):
"""
Takes a path and makes sure that directories to the path
gets created and is writable.
:param filename: the path to file
"""
path = os.path.dirname(path)
if path == '':
return
if not os.path.exists(path):
try:
os.makedirs(path)
except OSError as exc: # Guard against race condition
if exc.errno != errno.EEXIST:
raise
|