I have retrained and fine-tuned Inception_v3 using Keras(2.0.4) & Tensorflow(1.1.0). When I convert the Keras model to MLmodel with coremltools I get a model that requires an input of MultiArray . That makes sense if I understand that it is asking for [Height, Width, RGB] = (299,299,3). But I don't know how to convert the CVPixelBuffer to that Format.
Can someone please help me understand what preprocessing needs to take place for my re-trained incpetion model to work in coreml? Or what I need to do in the conversion so that it will accept the CVPixelBuffer?