An image log is used to collect data about an experiment. This data
can be images, tables, pickled python objects.
|
|
|
|
|
|
|
|
log(self,
image,
label='NOLABEL',
ext='png',
**kwargs)
Save a pyvision image to the log. |
source code
|
|
|
|
plot(self,
plot,
label='NOLABEL',
ext='png',
**kwargs)
Save a pyvision plot to the log. |
source code
|
|
|
|
table(self,
table,
label='NOLABEL')
Save a pyvision table to the log as a csv file. |
source code
|
|
|
|
csv(self,
data,
label='NOLABEL',
headers=None)
Save a list of lists or matrix to the log as a csv file. |
source code
|
|
|
|
pickle(self,
data,
label='NOLABEL')
Pickle a python data to the log directory. |
source code
|
|
|
|
file(self,
data=None,
label='NOLABEL',
ext='.dat')
Write the buffer data to a file. |
source code
|
|
|
|
show(self)
Show any images that are in the directory. |
source code
|
|