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-07-21 00:31:25 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2011-07-21 00:31:25 +0400
commitac5752789532dbe1d640e5fe9f1d615cec05c357 (patch)
treee043400d30c7d121a6cec8747614ce5589285e82 /source/blender/blenkernel/BKE_tracking.h
parent76a6564e3b5801f86ad4276e4d0f2e7262166c0e (diff)
Camera tracking integration
=========================== - Fixed crash when holding down S and R keys. - Fixed deleting of first marker. - Tracking should now work fine with float buffers. - Added option to show distortion grid. It's most probably temporary solution until [auto]calibration tools aren't merged. This grid defines straight lines on the image.
Diffstat (limited to 'source/blender/blenkernel/BKE_tracking.h')
-rw-r--r--source/blender/blenkernel/BKE_tracking.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenkernel/BKE_tracking.h b/source/blender/blenkernel/BKE_tracking.h
index 79c0e6c62a5..75cb457734c 100644
--- a/source/blender/blenkernel/BKE_tracking.h
+++ b/source/blender/blenkernel/BKE_tracking.h
@@ -79,6 +79,7 @@ struct MovieReconstructedCamera *BKE_tracking_get_reconstructed_camera(struct Mo
void BKE_get_tracking_mat(struct Scene *scene, float mat[4][4]);
void BKE_tracking_projection_matrix(struct MovieTracking *tracking, int framenr, int winx, int winy, float mat[4][4]);
void BKE_tracking_apply_intrinsics(struct MovieTracking *tracking, float co[2], float width, float height, float nco[2]);
+void BKE_tracking_invert_intrinsics(struct MovieTracking *tracking, float co[2], float width, float height, float nco[2]);
void BKE_tracking_detect(struct MovieTracking *tracking, struct ImBuf *imbuf, int framenr);