Skip to content

Commit

Permalink
Updated variable names.
Browse files Browse the repository at this point in the history
  • Loading branch information
aljazkonec1 committed Sep 16, 2024
1 parent f701cf7 commit b1d42d5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions depthai_nodes/ml/parsers/vehicle_attributes.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ def run(self):
output.getTensor(layer_name, dequantize=True).flatten().tolist()
)

vehicle_attributes_message = create_multi_classification_message(
multi_classification_message = create_multi_classification_message(
self.classification_attributes, scores, self.classification_labels
)
vehicle_attributes_message.setTimestamp(output.getTimestamp())
multi_classification_message.setTimestamp(output.getTimestamp())

self.out.send(vehicle_attributes_message)
self.out.send(multi_classification_message)

0 comments on commit b1d42d5

Please sign in to comment.