Skip to content

Commit

Permalink
Make subsampling factor 5
Browse files Browse the repository at this point in the history
  • Loading branch information
Samleo8 committed May 5, 2022
1 parent dbd1a44 commit 253709f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Mapping.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ def plot(self, fig: plt.figure, show: bool = False):
for kf in self.keyframes:
points_global = np.vstack((points_global,kf.getPrunedFeaturesGlobalPosition()))

subsampleFactor = 4
subsampleFactor = 5
plt.scatter(points_global[::subsampleFactor, 0],
points_global[::subsampleFactor, 1],
marker='+',
Expand Down

0 comments on commit 253709f

Please sign in to comment.