Source code for otx.api.utils.detection_utils

"""Detection utils."""

# Copyright (C) 2022 Intel Corporation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions
# and limitations under the License.

from typing import List

import numpy as np


[docs] def detection2array(detections: List) -> np.ndarray: """Convert list of OpenVINO Detection to a numpy array. Args: detections (List): List of OpenVINO Detection containing score, id, xmin, ymin, xmax, ymax Returns: np.ndarray: numpy array with [label, confidence, x1, y1, x2, y2] """ scores = np.empty((0, 1), dtype=np.float32) labels = np.empty((0, 1), dtype=np.uint32) boxes = np.empty((0, 4), dtype=np.float32) for det in detections: if (det.xmax - det.xmin) * (det.ymax - det.ymin) < 1.0: continue scores = np.append(scores, [[det.score]], axis=0) labels = np.append(labels, [[det.id]], axis=0) boxes = np.append( boxes, [[float(det.xmin), float(det.ymin), float(det.xmax), float(det.ymax)]], axis=0, ) detections = np.concatenate((labels, scores, boxes), -1) return detections