Run a Tensorflow Lite model via OpenCV?

I want to run a Tensorflow Lite .tflite model in my Android app through OpenCV. It is the official TensorFlow hair segmentation model located here. Basically I want to simply apply it to camera preview and show the hair mask result. How can I achieve that with the simplest approach?

The reason is to avoid importing the TF Lite library in my app which is large and instead do it via OpenCV library which is less complex and samller in size.