Skip to content
Snippets Groups Projects
Commit eecdfa6e authored by Rainer Kartmann's avatar Rainer Kartmann
Browse files

Make profileID optional (update to change in ARON type)

parent ebb52092
No related branches found
No related tags found
1 merge request!146Face recognition
......@@ -43,5 +43,5 @@ class FaceRecognition(AronDataclass):
"position3D": self.position_3d.astype(np.float32).reshape(3, 1),
"position2D": self.position_2d.astype(np.int32),
"extents2D": self.extents_2d.astype(np.int32),
"profileID": self.profile_id.to_aron() if self.profile_id else mem.MemoryID().to_aron(),
"profileID": self.profile_id.to_aron() if self.profile_id else None,
})
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment