Hi!
I saw the documentation on FOMO model that is not using bounding boxes instead is using object location in the frame. In which code line I can find the location of the object? I only see a bounding box inside a loop (I suppose is creating a box around the image as a reference so it is easy to understand)
Do I understand correctly bb.x and bb.y is the top left corner of the bounding box?
bb.heigh and bb.wight is the height and the width of the bounding box?
#if EI_CLASSIFIER_OBJECT_DETECTION == 1
bool bb_found = result.bounding_boxes[0].value > 0;
for (size_t ix = 0; ix < result.bounding_boxes_count; ix++) {
auto bb = result.bounding_boxes[ix];
if (bb.value == 0) {
continue;
}
ei_printf(" %s (%f) [ x: %u, y: %u, width: %u, height: %u ]\n", bb.label, bb.value, bb.x, bb.y, bb.width, bb.height);
Thanks!!!