10ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// Ceres Solver - A fast non-linear least squares minimizer 20ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// Copyright 2010, 2011, 2012 Google Inc. All rights reserved. 30ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// http://code.google.com/p/ceres-solver/ 40ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// 50ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// Redistribution and use in source and binary forms, with or without 60ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// modification, are permitted provided that the following conditions are met: 70ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// 80ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// * Redistributions of source code must retain the above copyright notice, 90ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// this list of conditions and the following disclaimer. 100ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// * Redistributions in binary form must reproduce the above copyright notice, 110ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// this list of conditions and the following disclaimer in the documentation 120ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// and/or other materials provided with the distribution. 130ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// * Neither the name of Google Inc. nor the names of its contributors may be 140ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// used to endorse or promote products derived from this software without 150ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// specific prior written permission. 160ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// 170ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 180ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 190ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 200ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 210ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 220ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 230ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 240ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 250ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 260ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 270ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// POSSIBILITY OF SUCH DAMAGE. 280ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// 290ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// Author: sameeragarwal@google.com (Sameer Agarwal) 300ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong 310ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong#ifndef CERES_INTERNAL_BLOCK_RANDOM_ACCESS_DENSE_MATRIX_H_ 320ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong#define CERES_INTERNAL_BLOCK_RANDOM_ACCESS_DENSE_MATRIX_H_ 330ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong 340ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong#include "ceres/block_random_access_matrix.h" 350ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong 360ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong#include <vector> 370ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong 380ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong#include "ceres/internal/macros.h" 390ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong#include "ceres/internal/port.h" 400ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong#include "ceres/internal/scoped_ptr.h" 410ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong 420ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kongnamespace ceres { 430ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kongnamespace internal { 440ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong 450ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// A square block random accessible matrix with the same row and 460ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// column block structure. All cells are stored in the same single 470ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// array, so that its also accessible as a dense matrix of size 480ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// num_rows x num_cols. 490ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// 500ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// This class is NOT thread safe. Since all n^2 cells are stored, 510ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// GetCell never returns NULL for any (row_block_id, col_block_id) 520ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// pair. 530ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// 540ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong// ReturnCell is a nop. 550ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kongclass BlockRandomAccessDenseMatrix : public BlockRandomAccessMatrix { 560ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong public: 570ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong // blocks is a vector of block sizes. The resulting matrix has 580ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong // blocks.size() * blocks.size() cells. 590ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong explicit BlockRandomAccessDenseMatrix(const vector<int>& blocks); 600ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong 610ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong // The destructor is not thread safe. It assumes that no one is 620ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong // modifying any cells when the matrix is being destroyed. 630ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong virtual ~BlockRandomAccessDenseMatrix(); 640ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong 650ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong // BlockRandomAccessMatrix interface. 660ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong virtual CellInfo* GetCell(int row_block_id, 670ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong int col_block_id, 680ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong int* row, 690ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong int* col, 700ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong int* row_stride, 710ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong int* col_stride); 720ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong 730ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong // This is not a thread safe method, it assumes that no cell is 740ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong // locked. 750ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong virtual void SetZero(); 760ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong 770ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong // Since the matrix is square with the same row and column block 780ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong // structure, num_rows() = num_cols(). 790ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong virtual int num_rows() const { return num_rows_; } 800ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong virtual int num_cols() const { return num_rows_; } 810ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong 820ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong // The underlying matrix storing the cells. 830ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong const double* values() const { return values_.get(); } 840ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong double* mutable_values() { return values_.get(); } 850ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong 860ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong private: 870ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong int num_rows_; 880ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong vector<int> block_layout_; 890ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong scoped_array<double> values_; 901d2624a10e2c559f8ba9ef89eaa30832c0a83a96Sascha Haeberling scoped_array<CellInfo> cell_infos_; 910ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong 920ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong CERES_DISALLOW_COPY_AND_ASSIGN(BlockRandomAccessDenseMatrix); 930ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong}; 940ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong 950ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong} // namespace internal 960ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong} // namespace ceres 970ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong 980ae28bd5885b5daa526898fcf7c323dc2c3e1963Angus Kong#endif // CERES_INTERNAL_BLOCK_RANDOM_ACCESS_DENSE_MATRIX_H_ 99