I am very new to using the caffe framework. I have a network which works on images. It takes images as input and outputs images. Does caffe have a layer I have to include so as to save the output images?
Thank you.
I am very new to using the caffe framework. I have a network which works on images. It takes images as input and outputs images. Does caffe have a layer I have to include so as to save the output images?
Thank you.
Caffe doesn't have a "save-to-image" layer.
You can try and see if "HDF5Output"
layer can work for you: you can save your output image as a floating-point ND array into hdf5 binary file and read it later with other applications.
Alternatively, you can use a "Python"
layer to save the images for you. Just write the save code in python (using PIL.Image
package for example).