How do I get the probabilities for all the classes (for each box)?
I want to detect figures on a video, how can I only search on 3 specific areas.
[{'bx': 0.8755, 'by': '0.12,' bh ': 0.2,' bw ': 0.5}, {' bx ': 0.5755,' by ':' 0.22, 'bh': 0.42, 'bw ': 0.15}, {' bx ': 0.55,' by ':' 0.02, 'bh': 0.82, 'bw': 0.55}]
Hi guys! have to 2 questions:
How do I get the probabilities for all the classes (for each box)?
I want to detect figures on a video, how can I only search on 3 specific areas. [{'bx': 0.8755, 'by': '0.12,' bh ': 0.2,' bw ': 0.5}, {' bx ': 0.5755,' by ':' 0.22, 'bh': 0.42, 'bw ': 0.15}, {' bx ': 0.55,' by ':' 0.02, 'bh': 0.82, 'bw': 0.55}]
Desirce Output:
[ {'object_position' : {'bx': 0.8755, 'by':'0.12, 'bh': 0.2, 'bw' : 0.5}, 'object_prediction' :{'house' : 0.24, 'boat':0.65, ...} },
{ {'object_position' : {'bx': 0.565, 'by':'0.2472, 'bh': 0.1, 'bw' : 0.3}, 'object_prediction' :{'house' : 0:04, 'boat':0.355, ...} }
]
Thanks in advance