cxxnet
cxxnet copied to clipboard
Image In -> Image Out
Hello everyone, Is it possible to setup a network configuration where the input data is an image and the output data is ALSO an image, i.e teach the network to generate an image of equal dimensions as the input image?
The usecase is to utilize a NN to predict pixel depths given a number photographs of a scene.
Thanks, Michael
You need to modify the code:
- if you have fullc in your net, add a reshape layer to reshape it back to [batch, channel, x, y]
- modify the loss layer, to set gradient correctly.