I have spent a bunch of time looking at this series of videos (Neural Network Tutorial), by Ryan Harris: https://www.youtube.com/watch?v=Q_5B3GuWPCc&index=41&list=PL29C61214F2146796
I am using his libraries to implement my solution.
My objective is to be able to train a neural network to detect a picture of a Coca-Cola can. I have several 80 x 108 pixel pictures of the cans. So this means I will need a layer of 6480 inputs. My goal is to have it output to a single output, ideally this output would show on a scale of 0 to 1. The values would show how certain the network is that it is a Coca-Cola can. For example 0.30 would be 30 percent sure.
I'm looking for resources or pointers that would show me how this is done.
Thanks for any help you can provide