Skip to content

Commit bf38a8f

Browse files
authored
Merge pull request neozhaoliang#27 from ljhcage/typo_fix
fix typo
2 parents 3b1a25e + 6f76a58 commit bf38a8f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

run_calibrate_camera.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def main():
4848
help="path to output yaml file")
4949

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

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

183183
else:

surround_view/capture_thread.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def connect_camera(self):
101101
return True
102102

103103
def disconnect_camera(self):
104-
# disconnect camera if it's already openned.
104+
# disconnect camera if it's already opened.
105105
if self.cap.isOpened():
106106
self.cap.release()
107107
return True

surround_view/param_settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"right": (total_h, xl)
3535
}
3636

37-
# pixel locations of the four points to be choosen.
37+
# pixel locations of the four points to be chosen.
3838
# you must click these pixels in the same order when running
3939
# the get_projection_map.py script
4040
project_keypoints = {

0 commit comments

Comments
 (0)