Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ljhcage committed Sep 10, 2021
1 parent 3b1a25e commit 6f76a58
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions run_calibrate_camera.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def main():
help="path to output yaml file")

parser.add_argument("-fisheye", "--fisheye", action="store_true",
help="set ture if this is a fisheye camera")
help="set true if this is a fisheye camera")

parser.add_argument("-flip", "--flip", default=0, type=int,
help="flip method of the camera")
Expand Down Expand Up @@ -177,7 +177,7 @@ def main():
fs.write("camera_matrix", K)
fs.write("dist_coeffs", D)
fs.release()
print("succesfully saved camera data")
print("successfully saved camera data")
cv2.putText(img, "Success!", (220, 240), font, 2, (0, 0, 255), 2)

else:
Expand Down
2 changes: 1 addition & 1 deletion surround_view/capture_thread.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def connect_camera(self):
return True

def disconnect_camera(self):
# disconnect camera if it's already openned.
# disconnect camera if it's already opened.
if self.cap.isOpened():
self.cap.release()
return True
Expand Down
2 changes: 1 addition & 1 deletion surround_view/param_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"right": (total_h, xl)
}

# pixel locations of the four points to be choosen.
# pixel locations of the four points to be chosen.
# you must click these pixels in the same order when running
# the get_projection_map.py script
project_keypoints = {
Expand Down

0 comments on commit 6f76a58

Please sign in to comment.