Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2011-12-07 18:54:03 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2011-12-07 18:54:03 +0400
commitd568f56f181d21869e86511d9cc5502d1f312a79 (patch)
tree6f202bffdd4d9c9f9f04d2a26497421440680b8a /release
parent11bacd403f16818023229bcebd22d609054eda16 (diff)
Merging remained part of hybrid tracker which adds correlation threshold
Keir's comment: Add support for detecting tracking failure in the ESM tracker component of libmv. Since both KLT and Hybrid rely on ESM underneath, KLT and Hybrid now have a minimum correlation setting to match. With this fix, track failures should get detected quicker, with the issue that sometimes the tracker will give up too easily. That is fixable by reducing the required correlation (in the track properties). Command used for merge: svn merge -r 42396:42397 -r 42399:42400 ^/branches/soc-2011-tomato
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_clip.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/release/scripts/startup/bl_ui/space_clip.py b/release/scripts/startup/bl_ui/space_clip.py
index 39b78ce8cdc..d05c93ccfe1 100644
--- a/release/scripts/startup/bl_ui/space_clip.py
+++ b/release/scripts/startup/bl_ui/space_clip.py
@@ -129,8 +129,7 @@ class CLIP_PT_tools_marker(Panel):
if settings.default_tracker == 'KLT':
col.prop(settings, "default_pyramid_levels")
- elif settings.default_tracker == 'SAD':
- col.prop(settings, "default_correlation_min")
+ col.prop(settings, "default_correlation_min")
col.separator()
@@ -497,8 +496,7 @@ class CLIP_PT_track_settings(Panel):
if active.tracker == 'KLT':
col.prop(active, "pyramid_levels")
- elif active.tracker == 'SAD':
- col.prop(active, "correlation_min")
+ col.prop(active, "correlation_min")
col.separator()
col.prop(active, "frames_limit")