tensorflow - I want to know the size of bounding box in object-detection api -


i have used api

(https://github.com/tensorflow/models/tree/master/object_detection)

and then,

how know length of bounding box?

i have used tutorial ipython notebook on github in real-time.

but don't know use command calculate length of boxes.

you can call boxes, following:

boxes = detection_graph.get_tensor_by_name('detection_boxes:0') 

similarly scores, , classes.

then call them in session run.

(boxes, scores, classes) = sess.run(               [boxes, scores, classes],               feed_dict={image_tensor: imagefile}) 

Comments

Popular posts from this blog

angular - Ionic slides - dynamically add slides before and after -

minify - Minimizing css files -

Add a dynamic header in angular 2 http provider -