Added debug print for class ids
Signed-off-by: Jim Martens <github@2martens.de>
This commit is contained in:
@ -272,6 +272,7 @@ def _get_observations(detections: Sequence[Sequence[np.ndarray]]) -> List[List[n
|
||||
detections_image = np.asarray(detections[i])
|
||||
class_ids = np.argmax(detections_image[:, :-12],
|
||||
axis=-1)
|
||||
print(class_ids)
|
||||
detections_image = detections_image[np.nonzero(class_ids[:])]
|
||||
print(detections_image.shape)
|
||||
overlaps = bounding_box_utils.iou(detections_image[:, -12:-8],
|
||||
|
||||
Reference in New Issue
Block a user