Skip to content

Commit

Permalink
autopep8 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
justusschock authored and actions-user committed Mar 20, 2020
1 parent e29157e commit 23c95df
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions scripts/LinearTriangulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,15 @@
# noinspection PyBroadException
try:
sys.path.remove('/opt/ros/kinetic/lib/python2.7/dist-packages')
except:
except BaseException:
pass


def linear_triangulation(camera_pose1: float, camera_pose2: float, key_pts1: float, key_pts2: float) -> float:
def linear_triangulation(
camera_pose1: float,
camera_pose2: float,
key_pts1: float,
key_pts2: float) -> float:
"""
a function to estimate 3D points given camera poses and matching key point correspondences
:param camera_pose1: (C1,R1)
Expand Down

0 comments on commit 23c95df

Please sign in to comment.