Skip to content

Commit ef803e7

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

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

fmpose3d/common/utils.py

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

379379
def back_to_ori_uv(cropped_uv, bb_box):
380380
"""
381-
for cropped uv, back to origial uv to help do the uvd->xyz operation
381+
for cropped uv, back to original uv to help do the uvd->xyz operation
382382
:return:
383383
"""
384384
N, T, V, _ = cropped_uv.size()
@@ -453,7 +453,7 @@ def project_to_2d(X, camera_params):
453453
454454
Arguments:
455455
X -- 3D points in *camera space* to transform (N, *, 3)
456-
camera_params -- intrinsic parameteres (N, 2+2+3+2=9)
456+
camera_params -- intrinsic parameters (N, 2+2+3+2=9)
457457
"""
458458
assert X.shape[-1] == 3 # B,J,3
459459
assert len(camera_params.shape) == 2 # camera_params:[B,1,9]

0 commit comments

Comments
 (0)