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>2012-04-11 17:51:37 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-04-11 17:51:37 +0400
commitce95b0be1e40b7f696e2b78cebb245d76182c157 (patch)
treebe7852a477562c0524c996ebcc6033d702360eeb /extern/libmv/ChangeLog
parentbb0a3e1d90238369c7f5d6c5e7aebffc4ed6f4ed (diff)
libmv: bundle new upstream version from own branch which should support
compilation of glog on hurd platform.
Diffstat (limited to 'extern/libmv/ChangeLog')
-rw-r--r--extern/libmv/ChangeLog40
1 files changed, 26 insertions, 14 deletions
diff --git a/extern/libmv/ChangeLog b/extern/libmv/ChangeLog
index 4e5c093c484..ac5a404bafa 100644
--- a/extern/libmv/ChangeLog
+++ b/extern/libmv/ChangeLog
@@ -1,3 +1,29 @@
+commit 9618d9a1d48bb3c28da605d9027f57a74f462785
+Author: Sergey Sharybin <sergey.vfx@gmail.com>
+Date: Wed Apr 11 14:17:14 2012 +0600
+
+ Added configuration file for glog to compile smooth on Hurd platform.
+
+ Patch by Pino Toscano <pino@debian.org>, thanks!
+
+commit 63b2bd20237c8599fa73ce42556e4fb99b9f7cca
+Author: Sergey Sharybin <sergey.vfx@gmail.com>
+Date: Thu Mar 22 17:03:34 2012 +0600
+
+ Trackers refactoring:
+ - Deduplicate pattern sampling used in esm and lmicklt trackers
+ and move SamplePattern to image/sample.h
+ - Move computation of Pearson product-moment correlation into
+ own function in new file image/correlation.h so all trackers
+ can use it to check final correlation.
+ - Remove SAD tracker. It's almost the same as brute tracker,
+ with only two differences:
+ 1. It does brute search of affine transformation which in some cases
+ helps to track rotating features
+ 2. It didn't use common tracker api which probably gave some speed
+ advantage, but lead to a real headache to use it together with
+ other trackers leading to duplicated code in 3d-party software.
+
commit 9fe49c32e990f28c83f2bbb1d18057aed8879af7
Author: Sergey Sharybin <sergey.vfx@gmail.com>
Date: Mon Mar 12 09:36:15 2012 +0600
@@ -475,17 +501,3 @@ Date: Fri Aug 19 14:19:27 2011 +0200
Add LaplaceFilter.
Add regularization in affine SAD Tracker (keep constant area and good condition number).
UI: Better track display (+enable line antialiasing).
-
-commit 6d26d9a8ccc4ce009fbf253898fea8864dd5001a
-Author: Matthias Fauconneau <matthias.fauconneau@gmail.com>
-Date: Fri Aug 19 10:25:26 2011 +0200
-
- Add optimization for integer pixel search.
- Allows more agressive settings for affine coordinate descent.
-
-commit 70ceae81c0ab561b07e640ecb9933f0a902b57cd
-Author: Matthias Fauconneau <matthias.fauconneau@gmail.com>
-Date: Fri Aug 19 00:02:12 2011 +0200
-
- Document coordinate descent method in affine SAD matcher.
- Add heuristic to prevent high distortions.