[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [57357] branches/soc-2011-tomato/extern/ libmv/libmv/tracking: Remove files which were actually removed form trunk already.

Sergey Sharybin sergey.vfx at gmail.com
Mon Jun 10 17:11:13 CEST 2013


Revision: 57357
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=57357
Author:   nazgul
Date:     2013-06-10 15:11:13 +0000 (Mon, 10 Jun 2013)
Log Message:
-----------
Remove files which were actually removed form trunk already.

Removed Paths:
-------------
    branches/soc-2011-tomato/extern/libmv/libmv/tracking/esm_region_tracker.h
    branches/soc-2011-tomato/extern/libmv/libmv/tracking/lmicklt_region_tracker.h

Deleted: branches/soc-2011-tomato/extern/libmv/libmv/tracking/esm_region_tracker.h
===================================================================
--- branches/soc-2011-tomato/extern/libmv/libmv/tracking/esm_region_tracker.h	2013-06-10 15:11:06 UTC (rev 57356)
+++ branches/soc-2011-tomato/extern/libmv/libmv/tracking/esm_region_tracker.h	2013-06-10 15:11:13 UTC (rev 57357)
@@ -1,63 +0,0 @@
-// Copyright (c) 2007, 2008, 2009, 2011 libmv authors.
-//
-// Permission is hereby granted, free of charge, to any person obtaining a copy
-// of this software and associated documentation files (the "Software"), to
-// deal in the Software without restriction, including without limitation the
-// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
-// sell copies of the Software, and to permit persons to whom the Software is
-// furnished to do so, subject to the following conditions:
-//
-// The above copyright notice and this permission notice shall be included in
-// all copies or substantial portions of the Software.
-//
-// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
-// IN THE SOFTWARE.
-
-#ifndef LIBMV_REGION_TRACKING_LMICKLT_REGION_TRACKER_H_
-#define LIBMV_REGION_TRACKING_LMICKLT_REGION_TRACKER_H_
-
-#include "libmv/image/image.h"
-#include "libmv/tracking/region_tracker.h"
-
-namespace libmv {
-
-/*!
-    A translation-only Efficient Second-order Minimization ("ESM") tracker
-
-    Based on the paper "Real-time image-based trackiing of planes using
-    Efficient Second-order Minimization"
-*/
-struct EsmRegionTracker : public RegionTracker {
-  EsmRegionTracker()
-      : half_window_size(4),
-        max_iterations(16),
-        min_determinant(1e-6),
-        min_update_squared_distance(1e-4),
-        sigma(0.9),
-        minimum_correlation(0.78) {}
-
-  virtual ~EsmRegionTracker() {}
-
-  // Tracker interface.
-  virtual bool Track(const FloatImage &image1,
-                     const FloatImage &image2,
-                     double  x1, double  y1,
-                     double *x2, double *y2) const;
-
-  // No point in creating getters or setters.
-  int half_window_size;
-  int max_iterations;
-  double min_determinant;
-  double min_update_squared_distance;
-  double sigma;
-  double minimum_correlation;
-};
-
-}  // namespace libmv
-
-#endif  // LIBMV_REGION_TRACKING_LMICKLT_REGION_TRACKER_H_

Deleted: branches/soc-2011-tomato/extern/libmv/libmv/tracking/lmicklt_region_tracker.h
===================================================================
--- branches/soc-2011-tomato/extern/libmv/libmv/tracking/lmicklt_region_tracker.h	2013-06-10 15:11:06 UTC (rev 57356)
+++ branches/soc-2011-tomato/extern/libmv/libmv/tracking/lmicklt_region_tracker.h	2013-06-10 15:11:13 UTC (rev 57357)
@@ -1,62 +0,0 @@
-// Copyright (c) 2007, 2008, 2009, 2011 libmv authors.
-//
-// Permission is hereby granted, free of charge, to any person obtaining a copy
-// of this software and associated documentation files (the "Software"), to
-// deal in the Software without restriction, including without limitation the
-// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
-// sell copies of the Software, and to permit persons to whom the Software is
-// furnished to do so, subject to the following conditions:
-//
-// The above copyright notice and this permission notice shall be included in
-// all copies or substantial portions of the Software.
-//
-// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
-// IN THE SOFTWARE.
-
-#ifndef LIBMV_REGION_TRACKING_LMICKLT_REGION_TRACKER_H_
-#define LIBMV_REGION_TRACKING_LMICKLT_REGION_TRACKER_H_
-
-#include "libmv/image/image.h"
-#include "libmv/tracking/region_tracker.h"
-
-namespace libmv {
-
-/*!
-    Levenberg-Marquardt inverse compositional region tracking
-
-    This tracker implements the Levenberg-Marquardt inverse compositional
-    region tracking algorithm as described in the paper "Lucas and Kanade 20
-    years on: A unifying framework."
-*/
-struct LmickltRegionTracker : public RegionTracker {
-  LmickltRegionTracker()
-      : half_window_size(4),
-        max_iterations(16),
-        min_determinant(1e-6),
-        min_update_squared_distance(1e-6),
-        sigma(0.9) {}
-
-  virtual ~LmickltRegionTracker() {}
-
-  // Tracker interface.
-  virtual bool Track(const FloatImage &image1,
-                     const FloatImage &image2,
-                     double  x1, double  y1,
-                     double *x2, double *y2) const;
-
-  // No point in creating getters or setters.
-  int half_window_size;
-  int max_iterations;
-  double min_determinant;
-  double min_update_squared_distance;
-  double sigma;
-};
-
-}  // namespace libmv
-
-#endif  // LIBMV_REGION_TRACKING_LMICKLT_REGION_TRACKER_H_




More information about the Bf-blender-cvs mailing list