summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJohann <johannkoenig@google.com>2020-01-10 15:59:30 -0800
committerJohann <johannkoenig@google.com>2020-01-10 15:59:30 -0800
commit652beb6ac10f2f550718a33e7987dd1b99192ddc (patch)
tree39b789ed7078d00b9959d7613433a79d61d09377 /tools
parentba7f9f38c9f680958cdbf3fea13490254c2e8a8a (diff)
downloadlibvpx-652beb6ac10f2f550718a33e7987dd1b99192ddc.tar
libvpx-652beb6ac10f2f550718a33e7987dd1b99192ddc.tar.gz
libvpx-652beb6ac10f2f550718a33e7987dd1b99192ddc.tar.bz2
libvpx-652beb6ac10f2f550718a33e7987dd1b99192ddc.zip
trivial: fix spelling errors
Found when updating a downstream client. Change-Id: Ibaa20d883ebfea9410d0252e7a19c7acdb78c907
Diffstat (limited to 'tools')
-rw-r--r--tools/3D-Reconstruction/MotionEST/Anandan.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/3D-Reconstruction/MotionEST/Anandan.py b/tools/3D-Reconstruction/MotionEST/Anandan.py
index b8a19a38d..b96cd9fd0 100644
--- a/tools/3D-Reconstruction/MotionEST/Anandan.py
+++ b/tools/3D-Reconstruction/MotionEST/Anandan.py
@@ -122,7 +122,7 @@ class Anandan(MotionEST):
for i, j in {(r, c), (r, c + 1), (r + 1, c), (r + 1, c + 1)}:
if 0 <= i < last_mvs.shape[0] and 0 <= j < last_mvs.shape[1]:
init_mvs.append(last_mvs[i, j])
- #use last matching results as the start postion as current level
+ #use last matching results as the start position as current level
min_ssd = None
min_mv = None
for init_mv in init_mvs: