Skip to content

Commit 6107a7a

Browse files
committed
Fix typos in comments for clarity in utils.py, correcting "origial" to "original" and "parameteres" to "parameters".
1 parent bdd95b1 commit 6107a7a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

fmpose3d/animals/common/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ def save_top_N_models(
354354

355355
def back_to_ori_uv(cropped_uv, bb_box):
356356
"""
357-
for cropped uv, back to origial uv to help do the uvd->xyz operation
357+
for cropped uv, back to original uv to help do the uvd->xyz operation
358358
:return:
359359
"""
360360
N, T, V, _ = cropped_uv.size()
@@ -423,7 +423,7 @@ def project_to_2d(X, camera_params):
423423
424424
Arguments:
425425
X -- 3D points in *camera space* to transform (N, *, 3)
426-
camera_params -- intrinsic parameteres (N, 2+2+3+2=9)
426+
camera_params -- intrinsic parameters (N, 2+2+3+2=9)
427427
"""
428428
assert X.shape[-1] == 3 # B,J,3
429429
assert len(camera_params.shape) == 2 # camera_params:[B,1,9]

0 commit comments

Comments
 (0)