Image.h
Go to the documentation of this file.
00001 // This file is part of Eigen, a lightweight C++ template library
00002 // for linear algebra.
00003 //
00004 // Copyright (C) 2009 Benoit Jacob <jacob.benoit.1@gmail.com>
00005 //
00006 // Eigen is free software; you can redistribute it and/or
00007 // modify it under the terms of the GNU Lesser General Public
00008 // License as published by the Free Software Foundation; either
00009 // version 3 of the License, or (at your option) any later version.
00010 //
00011 // Alternatively, you can redistribute it and/or
00012 // modify it under the terms of the GNU General Public License as
00013 // published by the Free Software Foundation; either version 2 of
00014 // the License, or (at your option) any later version.
00015 //
00016 // Eigen is distributed in the hope that it will be useful, but WITHOUT ANY
00017 // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
00018 // FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License or the
00019 // GNU General Public License for more details.
00020 //
00021 // You should have received a copy of the GNU Lesser General Public
00022 // License and a copy of the GNU General Public License along with
00023 // Eigen. If not, see <http://www.gnu.org/licenses/>.
00024 
00025 #ifndef EIGEN_MISC_IMAGE_H
00026 #define EIGEN_MISC_IMAGE_H
00027 
00028 namespace internal {
00029 
00033 template<typename DecompositionType>
00034 struct traits<image_retval_base<DecompositionType> >
00035 {
00036   typedef typename DecompositionType::MatrixType MatrixType;
00037   typedef Matrix<
00038     typename MatrixType::Scalar,
00039     MatrixType::RowsAtCompileTime, // the image is a subspace of the destination space, whose
00040                                    // dimension is the number of rows of the original matrix
00041     Dynamic,                       // we don't know at compile time the dimension of the image (the rank)
00042     MatrixType::Options,
00043     MatrixType::MaxRowsAtCompileTime, // the image matrix will consist of columns from the original matrix,
00044     MatrixType::MaxColsAtCompileTime  // so it has the same number of rows and at most as many columns.
00045   > ReturnType;
00046 };
00047 
00048 template<typename _DecompositionType> struct image_retval_base
00049  : public ReturnByValue<image_retval_base<_DecompositionType> >
00050 {
00051   typedef _DecompositionType DecompositionType;
00052   typedef typename DecompositionType::MatrixType MatrixType;
00053   typedef ReturnByValue<image_retval_base> Base;
00054   typedef typename Base::Index Index;
00055 
00056   image_retval_base(const DecompositionType& dec, const MatrixType& originalMatrix)
00057     : m_dec(dec), m_rank(dec.rank()),
00058       m_cols(m_rank == 0 ? 1 : m_rank),
00059       m_originalMatrix(originalMatrix)
00060   {}
00061 
00062   inline Index rows() const { return m_dec.rows(); }
00063   inline Index cols() const { return m_cols; }
00064   inline Index rank() const { return m_rank; }
00065   inline const DecompositionType& dec() const { return m_dec; }
00066   inline const MatrixType& originalMatrix() const { return m_originalMatrix; }
00067 
00068   template<typename Dest> inline void evalTo(Dest& dst) const
00069   {
00070     static_cast<const image_retval<DecompositionType>*>(this)->evalTo(dst);
00071   }
00072 
00073   protected:
00074     const DecompositionType& m_dec;
00075     Index m_rank, m_cols;
00076     const MatrixType& m_originalMatrix;
00077 };
00078 
00079 } // end namespace internal
00080 
00081 #define EIGEN_MAKE_IMAGE_HELPERS(DecompositionType) \
00082   typedef typename DecompositionType::MatrixType MatrixType; \
00083   typedef typename MatrixType::Scalar Scalar; \
00084   typedef typename MatrixType::RealScalar RealScalar; \
00085   typedef typename MatrixType::Index Index; \
00086   typedef Eigen::internal::image_retval_base<DecompositionType> Base; \
00087   using Base::dec; \
00088   using Base::originalMatrix; \
00089   using Base::rank; \
00090   using Base::rows; \
00091   using Base::cols; \
00092   image_retval(const DecompositionType& dec, const MatrixType& originalMatrix) \
00093     : Base(dec, originalMatrix) {}
00094 
00095 #endif // EIGEN_MISC_IMAGE_H


re_vision
Author(s): Dorian Galvez-Lopez
autogenerated on Sun Jan 5 2014 11:31:25