The following XML shows two records produced by object detection.
<output> <record> ... <trackname>ObjectDetection.Result</trackname> <ObjectDetectionResult> <id>d5a249f7-3207-4a41-9a23-0b8ac4aafbf6</id> <classification> <identifier>van</identifier> <confidence>100</confidence> </classification> <detector>roadscene</detector> <region> <left>31</left> <top>54</top> <width>206</width> <height>159</height> </region> </ObjectDetectionResult> </record> <record> ... <trackname>ObjectDetection.Result</trackname> <ObjectDetectionResult> <id>d5a249f7-3207-4a41-9a23-0b8ac4aafbf7</id> <classification> <identifier>person</identifier> <confidence>99.94</confidence> </classification> <detector>roadscene</detector> <region> <left>243</left> <top>33</top> <width>96</width> <height>182</height> </region> </ObjectDetectionResult> </record> </output>
Each record contains the following information:
The id
element provides a unique identifier for the detected object.
The classification
element provides information about the detected object.
identifier
element provides the identifier of the class that resulted in the object being detected.confidence
element provides the confidence score for the detection (from 0 to 100).detector
element provides the name of the object detector that was used.region
element provides the location of the detected object in the image or video frame.
|