Blender Git Loki
Git Commits -> Revision f17b26b
Revision f17b26b by Sergey Sharybin (master) January 18, 2021, 15:38 (GMT) |
Tracking: Implement tracks average operator Average selected tracks into the new one. This can be used to improve stability of tracking on blurry or non-very-sharp feature shapes. Averaging happens for all position, pattern corners and search area. Disabled markers do not take effect on averaging. Keyframed flag is copied from source. Gaps in the source tracks will be linearly interpolated, to reduce result track jump. Note that this only applies to gaps "inbetween". This means that if an input track doesn't have markers in the beginning/end of it, there is nothing to interpolate with and the result track will jump. Available from the Track panel, under the Merge category. Differential Revision: https://developer.blender.org/D6323 |
Commit Details:
Full Hash: f17b26bbed3d78fdd98e5262af66719f6a5ec121
Parent Commit: 0ac8fec
Lines Changed: +293, -4
6 Modified Paths:
/release/scripts/startup/bl_ui/space_clip.py (+5, -1) (Diff)
/source/blender/blenkernel/BKE_tracking.h (+22, -0) (Diff)
/source/blender/blenkernel/intern/tracking.c (+173, -3) (Diff)
/source/blender/editors/space_clip/clip_intern.h (+1, -0) (Diff)
/source/blender/editors/space_clip/space_clip.c (+1, -0) (Diff)
/source/blender/editors/space_clip/tracking_ops.c (+91, -0) (Diff)
/source/blender/blenkernel/BKE_tracking.h (+22, -0) (Diff)
/source/blender/blenkernel/intern/tracking.c (+173, -3) (Diff)
/source/blender/editors/space_clip/clip_intern.h (+1, -0) (Diff)
/source/blender/editors/space_clip/space_clip.c (+1, -0) (Diff)
/source/blender/editors/space_clip/tracking_ops.c (+91, -0) (Diff)