For example instead of inferring a batch of 64 28x28 images and adding 64 results together why can I add a layer to the network and crop out these 64 images from a 224x224 input image? It seems this would be more elegant and faster.
How do you do this? I find it odd I can’t find slice examples like this and I am guess I must be using the wrong terms or someone asking the question wrong.
I tried the slice layer but it keep wanting to slice the 8 bit gray. For example to create four 224x224 2bit images.
Any Ideas?
By the way my application is really cool! I am doing unsupervised grouping of 3D objects using many different lighting angles. This eliminates manual labeling of classes!
https://github.com/GemHunt/lighting-augmentation
Thanks Much! Paul Krush
Wow that was a great answer to get me thinking. So it's clear the Slice and Crop layers are not what I want. I know some implementations of FCN use a sliding window, and of course RCNN does. I want to use the sliding window to create a new blob, if that it’s possible.
Getting a 64x64 heat map would be really cool as well to display what angles perform the best.
Thanks Nathan!
I would like to try to consider all the results at once.It's small enough to do it. Right now I add them together at the end.
I am pretty pumped about this. I got 100% accuracy on a 1000 coins(57000 images) on heads vs tails. This was totally unsupervised, no manual training. Just a tiny LeNet network, and no tuning or fancy layers. It's not a hard problem, but still you would expect a few dirty or worn coins to throw this off.
It’s not hard with pre and post processing, but why if I don’t have to... The reason I am asking is I might want to do a 1000 files at once. This gets into millions of files so you have to build your own lmdbs and write custom C++ code infer because pyCaffe gets slow as well. All of this I have done and it works great, but I would like to avoid it if I can. It’s hard to show this to someone in a quick demo.
I need to spend more time learning about how RCNN is coded with the sliding window.