Skip to content

Commit 32238b1

Browse files
committed
Fix.
1 parent 9a71e8d commit 32238b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scantools/proc/overlap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def trajectory_overlap(self, keys_q: List, session_q: Session,
100100
if is_self:
101101
keys_r, session_r, poses_r = keys_q, session_q, poses_q
102102

103-
overlap_matrix = np.full((len(keys_q), len(keys_r)), -1, np.float32)
103+
overlap_matrix = np.full((len(keys_q), len(keys_r)), -1, dtype=np.float32)
104104
overlap_matrix[discard] = 0
105105

106106
# cache the image poses as they might be compositions of rig poses

0 commit comments

Comments
 (0)