├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── ceres-2010.sln ├── ceres-2012.sln ├── ceres-2015.sln └── win ├── ceres.vcxproj ├── ceres.vcxproj.filters ├── ceres_static.vcxproj ├── ceres_static.vcxproj.filters ├── examples ├── curve_fitting.vcxproj ├── curve_fitting.vcxproj.filters ├── curve_fitting_c.vcxproj ├── curve_fitting_c.vcxproj.filters ├── ellipse_approximation.vcxproj ├── ellipse_approximation.vcxproj.filters ├── helloworld.vcxproj ├── helloworld.vcxproj.filters ├── helloworld_analytic_diff.vcxproj ├── helloworld_analytic_diff.vcxproj.filters ├── helloworld_numeric_diff.vcxproj ├── helloworld_numeric_diff.vcxproj.filters ├── helloworld_static.vcxproj ├── helloworld_static.vcxproj.filters ├── robust_curve_fitting.vcxproj ├── robust_curve_fitting.vcxproj.filters ├── simple_bundle_adjuster.vcxproj └── simple_bundle_adjuster.vcxproj.filters ├── include └── ceres │ └── internal │ └── config.h ├── libglog_static.vcxproj └── libglog_static.vcxproj.filters /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbennun/ceres-windows/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbennun/ceres-windows/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbennun/ceres-windows/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbennun/ceres-windows/HEAD/README.md -------------------------------------------------------------------------------- /ceres-2010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbennun/ceres-windows/HEAD/ceres-2010.sln -------------------------------------------------------------------------------- /ceres-2012.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbennun/ceres-windows/HEAD/ceres-2012.sln -------------------------------------------------------------------------------- /ceres-2015.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbennun/ceres-windows/HEAD/ceres-2015.sln -------------------------------------------------------------------------------- /win/ceres.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbennun/ceres-windows/HEAD/win/ceres.vcxproj -------------------------------------------------------------------------------- /win/ceres.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbennun/ceres-windows/HEAD/win/ceres.vcxproj.filters -------------------------------------------------------------------------------- /win/ceres_static.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbennun/ceres-windows/HEAD/win/ceres_static.vcxproj -------------------------------------------------------------------------------- /win/ceres_static.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbennun/ceres-windows/HEAD/win/ceres_static.vcxproj.filters -------------------------------------------------------------------------------- /win/examples/curve_fitting.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbennun/ceres-windows/HEAD/win/examples/curve_fitting.vcxproj -------------------------------------------------------------------------------- /win/examples/curve_fitting.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbennun/ceres-windows/HEAD/win/examples/curve_fitting.vcxproj.filters -------------------------------------------------------------------------------- /win/examples/curve_fitting_c.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbennun/ceres-windows/HEAD/win/examples/curve_fitting_c.vcxproj -------------------------------------------------------------------------------- /win/examples/curve_fitting_c.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbennun/ceres-windows/HEAD/win/examples/curve_fitting_c.vcxproj.filters -------------------------------------------------------------------------------- /win/examples/ellipse_approximation.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbennun/ceres-windows/HEAD/win/examples/ellipse_approximation.vcxproj -------------------------------------------------------------------------------- /win/examples/ellipse_approximation.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbennun/ceres-windows/HEAD/win/examples/ellipse_approximation.vcxproj.filters -------------------------------------------------------------------------------- /win/examples/helloworld.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbennun/ceres-windows/HEAD/win/examples/helloworld.vcxproj -------------------------------------------------------------------------------- /win/examples/helloworld.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbennun/ceres-windows/HEAD/win/examples/helloworld.vcxproj.filters -------------------------------------------------------------------------------- /win/examples/helloworld_analytic_diff.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbennun/ceres-windows/HEAD/win/examples/helloworld_analytic_diff.vcxproj -------------------------------------------------------------------------------- /win/examples/helloworld_analytic_diff.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbennun/ceres-windows/HEAD/win/examples/helloworld_analytic_diff.vcxproj.filters -------------------------------------------------------------------------------- /win/examples/helloworld_numeric_diff.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbennun/ceres-windows/HEAD/win/examples/helloworld_numeric_diff.vcxproj -------------------------------------------------------------------------------- /win/examples/helloworld_numeric_diff.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbennun/ceres-windows/HEAD/win/examples/helloworld_numeric_diff.vcxproj.filters -------------------------------------------------------------------------------- /win/examples/helloworld_static.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbennun/ceres-windows/HEAD/win/examples/helloworld_static.vcxproj -------------------------------------------------------------------------------- /win/examples/helloworld_static.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbennun/ceres-windows/HEAD/win/examples/helloworld_static.vcxproj.filters -------------------------------------------------------------------------------- /win/examples/robust_curve_fitting.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbennun/ceres-windows/HEAD/win/examples/robust_curve_fitting.vcxproj -------------------------------------------------------------------------------- /win/examples/robust_curve_fitting.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbennun/ceres-windows/HEAD/win/examples/robust_curve_fitting.vcxproj.filters -------------------------------------------------------------------------------- /win/examples/simple_bundle_adjuster.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbennun/ceres-windows/HEAD/win/examples/simple_bundle_adjuster.vcxproj -------------------------------------------------------------------------------- /win/examples/simple_bundle_adjuster.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbennun/ceres-windows/HEAD/win/examples/simple_bundle_adjuster.vcxproj.filters -------------------------------------------------------------------------------- /win/include/ceres/internal/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbennun/ceres-windows/HEAD/win/include/ceres/internal/config.h -------------------------------------------------------------------------------- /win/libglog_static.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbennun/ceres-windows/HEAD/win/libglog_static.vcxproj -------------------------------------------------------------------------------- /win/libglog_static.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbennun/ceres-windows/HEAD/win/libglog_static.vcxproj.filters --------------------------------------------------------------------------------