Blender Git Commit Log
Git Commits -> Revision 6745e45
Revision 6745e45 by Sergey Sharybin (master) July 29, 2011, 15:25 (GMT) |
Camera tracking integration =========================== Implemented 2D stabilization: - Based on average point of several tracks. - Tracks for stabilization are controllable from "2D stabilization" panel. - Implemented autoscaling. Could fail if average point is too close to frame boundary. - Background clip in 3D viewport and MovieClip input compositor nodes are using stable shot. Some internal weak things: - Stable shots aren't cached in moviecache. There is only one "slot" for stable shot inside stabilization structure. - This could fail if several threads are requested different frames (for example when starting playback, pause to make Nodes Editor trigger refresh, continue playback). - Due to it shouldn't crash i decided to implement better caching for stable shots a bit later. |
Commit Details:
Full Hash: 6745e45c48278a6cd5c089509aaaf5f178d13bca
SVN Revision: 38820
Parent Commit: feffc92
Lines Changed: +752, -60
20 Modified Paths:
/release/scripts/startup/bl_ui/space_clip.py (+47, -0) (Diff)
/source/blender/blenkernel/BKE_movieclip.h (+1, -0) (Diff)
/source/blender/blenkernel/BKE_tracking.h (+2, -0) (Diff)
/source/blender/blenkernel/intern/depsgraph.c (+8, -0) (Diff)
/source/blender/blenkernel/intern/movieclip.c (+39, -0) (Diff)
/source/blender/blenkernel/intern/tracking.c (+231, -0) (Diff)
/source/blender/blenloader/intern/readfile.c (+8, -3) (Diff)
/source/blender/editors/include/ED_clip.h (+1, -1) (Diff)
/source/blender/editors/space_clip/clip_draw.c (+43, -13) (Diff)
/source/blender/editors/space_clip/clip_editor.c (+29, -1) (Diff)
/source/blender/editors/space_clip/clip_intern.h (+4, -0) (Diff)
/source/blender/editors/space_clip/clip_ops.c (+5, -0) (Diff)
/source/blender/editors/space_clip/space_clip.c (+33, -2) (Diff)
/source/blender/editors/space_clip/tracking_ops.c (+170, -31) (Diff)
/source/blender/editors/space_view3d/view3d_draw.c (+1, -1) (Diff)
/source/blender/makesdna/DNA_space_types.h (+3, -0) (Diff)
/source/blender/makesdna/DNA_tracking_types.h (+26, -4) (Diff)
/source/blender/makesrna/intern/rna_tracking.c (+96, -1) (Diff)
/source/blender/nodes/intern/CMP_nodes/CMP_movieclip.c (+4, -3) (Diff)
/source/blender/nodes/intern/CMP_util.h (+1, -0) (Diff)
/source/blender/blenkernel/BKE_movieclip.h (+1, -0) (Diff)
/source/blender/blenkernel/BKE_tracking.h (+2, -0) (Diff)
/source/blender/blenkernel/intern/depsgraph.c (+8, -0) (Diff)
/source/blender/blenkernel/intern/movieclip.c (+39, -0) (Diff)
/source/blender/blenkernel/intern/tracking.c (+231, -0) (Diff)
/source/blender/blenloader/intern/readfile.c (+8, -3) (Diff)
/source/blender/editors/include/ED_clip.h (+1, -1) (Diff)
/source/blender/editors/space_clip/clip_draw.c (+43, -13) (Diff)
/source/blender/editors/space_clip/clip_editor.c (+29, -1) (Diff)
/source/blender/editors/space_clip/clip_intern.h (+4, -0) (Diff)
/source/blender/editors/space_clip/clip_ops.c (+5, -0) (Diff)
/source/blender/editors/space_clip/space_clip.c (+33, -2) (Diff)
/source/blender/editors/space_clip/tracking_ops.c (+170, -31) (Diff)
/source/blender/editors/space_view3d/view3d_draw.c (+1, -1) (Diff)
/source/blender/makesdna/DNA_space_types.h (+3, -0) (Diff)
/source/blender/makesdna/DNA_tracking_types.h (+26, -4) (Diff)
/source/blender/makesrna/intern/rna_tracking.c (+96, -1) (Diff)
/source/blender/nodes/intern/CMP_nodes/CMP_movieclip.c (+4, -3) (Diff)
/source/blender/nodes/intern/CMP_util.h (+1, -0) (Diff)