Loading Tensorflow Models Using Opencv and C++

Thanks for your reply.
Regarding your question:
I have done transfer learning on MobileNetV2 pre-trained model.
I have followed the exact steps as mentioned here and saved the model: https://www.tensorflow.org/tutorials/images/transfer_learning

I have saved the model using: model.save(‘path’)

Also, I am preparing the input image in python to classify as below:

        image = np.expand_dims(t_image, axis=0)
        image= img.astype('float32')
        image /= 255.0
        imgReshaped = image.reshape(-1, img_height, img_width, color_channel) 

The Model has 100x100 RGB image input.