I have trained my own neural network on grayscale images and now I want to plug it in to the classifier from TensorFlow Android Camera Demo (https://github.com/tensorflow/tensorflow/tree/master/tensorflow/examples/android).
How can I modify ClassifierActivity.java (https://github.com/tensorflow/tensorflow/blob/master/tensorflow/examples/android/src/org/tensorflow/demo/ClassifierActivity.java) so that I pass a grayscale input image to my computation graph?
I will need to do something with bitmaps, I am just not quite sure what exactly.