Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Tensorflow 2 Object Detection with OpenCV C++

I have trained SSD ResNet V1 model using Tensorflow 2 Object Detection API. Then I wanted to use this model with OpenCV in C++ code.

First of all, after training I had three files:

  • checkpoint
  • ckpt-101.data-00000-of-00001
  • ckpt-101.index

Note that I don't have .meta file because it wasn't generated.

Then I created SavedModel from these files using exporter_main_v2.py script that is in Object Detection API:

python3 exporter_main_v2.py input_type=image_tensor --pipeline_config_path /path/to/pipeline.config --trained_checkpoint_dir=/path/to/checkouts --output_directory=/path/to/output/directory

Having run this script I got saved_model.pb

I tried to use this file in OpenCV in such way:

cv::dnn::Net net = cv::dnn::readNetFromTensorflow("/path/to/saved_model.pb");

But I got the following error:

OpenCV(4.2.0) /home/andrew/opencv/modules/dnn/src/tensorflow/tf_io.cpp:42: error: (-2:Unspecified error) FAILED: ReadProtoFromBinaryFile(param_file, param). Failed to parse GraphDef file: /home/andrew/Documents/tensorflow_detection/workspace/pb_model/saved_model/saved_model.pb in function 'ReadTFNetParamsFromBinaryFileOrDie'

Then I tried to freeze saved_model.pb. But, as I understood, it is impossible in TF2.x because TF2.x doesn't support Sessions and Graphs. Also I don't have .pbtxt file.

My question: is it possible to use models trained with TF2 Object Detection API in OpenCV C++?

I will be grateful if you help me to solve this problems or give any useful advices.

like image 680
Андрей Диденко Avatar asked Oct 02 '20 12:10

Андрей Диденко


1 Answers

It is possible to use Tensorflow 2 models with the Object Detection API and Opencv as said in the dedicated wiki : https://github.com/opencv/opencv/wiki/TensorFlow-Object-Detection-API

So far they are more models compatible with Tensorflow 1 but it should be okay for a SSD. To freeze your graph you have to do :

import tensorflow as tf

from tensorflow.python.framework.convert_to_constants import convert_variables_to_constants_v2

loaded = tf.saved_model.load('my_model')
infer = loaded.signatures['serving_default']

f = tf.function(infer).get_concrete_function(input_1=tf.TensorSpec(shape=[None, 224, 224, 3], dtype=tf.float32))
f2 = convert_variables_to_constants_v2(f)
graph_def = f2.graph.as_graph_def()

# Export frozen graph
with tf.io.gfile.GFile('frozen_graph.pb', 'wb') as f:
   f.write(graph_def.SerializeToString())

As said in this comment in OpenCV Github issues : https://github.com/opencv/opencv/issues/16582#issuecomment-603819498

You will then probably need to use the tf_text_graph_ssd.py provided in OpenCV wiki to generate the text graph representation of the frozen model and that'd be it!

like image 136
dnl_anoj Avatar answered Sep 23 '22 06:09

dnl_anoj