(self, feature, o3d_mesh, oriented_bbox)
| 10 | |
| 11 | class EvalObjects: |
| 12 | def __init__(self, feature, o3d_mesh, oriented_bbox): |
| 13 | self.feature = feature |
| 14 | self.o3d_mesh = o3d_mesh |
| 15 | self.oriented_bbox = oriented_bbox |
| 16 | |
| 17 | def compute_similarity(self, other_feature): |
| 18 | return helpers.compute_cosine_sim(other_feature, self.feature) |
nothing calls this directly
no outgoing calls
no test coverage detected