Skip to content

Commit

Permalink
Added comments guiding next steps in testMotionDistortion.py
Browse files Browse the repository at this point in the history
  • Loading branch information
liukeskywalker98 committed May 3, 2022
1 parent 58760c7 commit 69f17fd
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions testMotionDistortion.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
'''
Applying Motion Distortion Solving
'''
# Prior Transform
# Prior frame's pose
T_wj0 = np.eye(3)
# Point world positions
p_w = groundTruth
Expand Down Expand Up @@ -92,5 +92,9 @@
title_append="", alpha=0.5, clear=False, show=True,
plotDisplace = True)


#TODO: In main loop: for each iteration, track the previous frame's points.
# If we need to generate new points, create a new keyframe and add its points
# to the global map, using the undistort's velocity and transform to determine
# true position. We need to be able to associate local points to global points
# in each keyframe, and associate global points to those

0 comments on commit 69f17fd

Please sign in to comment.