Hi,
I would like to Reshape all net structure, where shape depend on the input image shape. I saw, that
#594 introduce possibility of doing that. But I do knot know how I should do it.
I have fully-convolutional model like in
example. And I would like to reshape input net to image dimension, then propagate information about reshaping and finally get prediction. I would like to it in python.
I thought that I need to do:
<code>
blob.reshape(1,3,width,height)#reshape input data
net.reshape()#propagate information about reshaping
net.predict(data)
</code>
But I do not know how to get input blob 'data' and if this idea of reshaping is correct.
Could anybody help me with resolving that problem?