LSSTApplications  11.0-13-gbb96280,12.1+18,12.1+7,12.1-1-g14f38d3+72,12.1-1-g16c0db7+5,12.1-1-g5961e7a+84,12.1-1-ge22e12b+23,12.1-11-g06625e2+4,12.1-11-g0d7f63b+4,12.1-19-gd507bfc,12.1-2-g7dda0ab+38,12.1-2-gc0bc6ab+81,12.1-21-g6ffe579+2,12.1-21-gbdb6c2a+4,12.1-24-g941c398+5,12.1-3-g57f6835+7,12.1-3-gf0736f3,12.1-37-g3ddd237,12.1-4-gf46015e+5,12.1-5-g06c326c+20,12.1-5-g648ee80+3,12.1-5-gc2189d7+4,12.1-6-ga608fc0+1,12.1-7-g3349e2a+5,12.1-7-gfd75620+9,12.1-9-g577b946+5,12.1-9-gc4df26a+10
LSSTDataManagementBasePackage
MaskedVector.h
Go to the documentation of this file.
1 // -*- lsst-c++ -*-
2 
3 /*
4  * LSST Data Management System
5  * Copyright 2008, 2009, 2010 LSST Corporation.
6  *
7  * This product includes software developed by the
8  * LSST Project (http://www.lsst.org/).
9  *
10  * This program is free software: you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation, either version 3 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the LSST License Statement and
21  * the GNU General Public License along with this program. If not,
22  * see <http://www.lsstcorp.org/LegalNotices/>.
23  */
24 
25 #if !defined(LSST_AFW_MATH_MASKEDVECTOR_H)
26 #define LSST_AFW_MATH_MASKEDVECTOR_H
27 
28 #include <memory>
29 #include "lsst/afw/image/Image.h"
30 #include "lsst/afw/image/Mask.h"
31 
32 namespace lsst {
33 namespace afw {
34 namespace math {
35 
36 template<typename EntryT>
38 public:
39  //typedef typename lsst::afw::image::Mask<typename lsst::afw::image::MaskPixel>::MaskPlaneDict MaskPlaneDict;
41 
42  explicit MaskedVector(int width=0) : //, MaskPlaneDict const& planeDict=MaskPlaneDict()) :
43  lsst::afw::image::MaskedImage<EntryT>(geom::Extent2I(width, 1)) {} //, planeDict) {}
44 
45  // Getters
47  std::shared_ptr<std::vector<EntryT> > getVector(bool const noThrow=false) const {
48  if (!this->getImage() && !noThrow) {
49  throw LSST_EXCEPT(lsst::pex::exceptions::RuntimeError, "MaskedVector's Image is NULL");
50  }
51 
52  std::shared_ptr<std::vector<EntryT> > imgcp(new std::vector<EntryT>(0));
53  for (int i_y = 0; i_y < this->getImage()->getHeight(); ++i_y) {
54  for (typename lsst::afw::image::Image<EntryT>::x_iterator ptr = this->getImage()->row_begin(i_y);
55  ptr != this->getImage()->row_end(i_y); ++ptr) {
56  imgcp->push_back(*ptr);
57  }
58  }
59  return imgcp;
60  }
61 
62  // if we're asked for a single value return the image pixel
63  //EntryT &operator[](int const i) { return (*lsst::afw::image::MaskedImage<EntryT>::getImage())(i, 0); }
64  Pixel &operator[](int const i) {
68  );
69  }
70 
71 
74  }
77  }
80  }
81 
82 
85  }
88  }
91  }
92 
93  //MaskedVector& operator=(Pixel const& rhs) { return lsst::afw::image::MaskedImage<EntryT>::operator=(rhs); }
94  //MaskedVector& operator=(SinglePixel const& rhs) { return this->operator=(rhs); }
95 
96  // Make some std::vector methods
97  int size() { return this->getWidth(0); }
98  bool empty() { return this->getWidth(0) == 0; }
99 
101  public:
102 #if 0
105 #endif
106 
110  lsst::afw::image::MaskedImage<EntryT>::x_iterator(im, msk, var) {}
112  lsst::afw::image::MaskedImage<EntryT>::x_iterator(ptr) {}
113 
115  };
116 
117  iterator begin() { return this->row_begin(0); }
118  iterator end() { return this->row_end(0); }
119 private:
120 
121 };
122 
123 }}}
124 
125 #endif
x_iterator row_begin(int y) const
Return an x_iterator to the start of the image.
Definition: MaskedImage.cc:757
Image< VariancePixelT >::Ptr VariancePtr
shared pointer to the variance Image
Definition: MaskedImage.h:86
lsst::afw::image::MaskedImage< EntryT >::Image::Pixel & value()
Definition: MaskedVector.h:114
int getHeight() const
Return the number of rows in the image.
Definition: MaskedImage.h:909
PixelT Pixel
A pixel in this ImageBase.
Definition: Image.h:132
_view_t::x_iterator x_iterator
An iterator for traversing the pixels in a row.
Definition: Image.h:150
x_iterator row_end(int y) const
Return an x_iterator to the end of the image.
Definition: MaskedImage.cc:767
MaskedImageIterator< typename Image::x_iterator, typename Mask::x_iterator, typename Variance::x_iterator > x_iterator
An iterator to a row of a MaskedImage.
Definition: MaskedImage.h:582
ImagePtr getImage(bool const noThrow=false) const
Return a (Ptr to) the MaskedImage&#39;s image.
Definition: MaskedImage.h:875
iterator(typename lsst::afw::image::MaskedImage< EntryT >::x_iterator ptr)
Definition: MaskedVector.h:111
MaskedImage(unsigned int width, unsigned int height, MaskPlaneDict const &planeDict=MaskPlaneDict())
VariancePtr getVariance(bool const noThrow=false) const
Return a (Ptr to) the MaskedImage&#39;s variance.
Definition: MaskedImage.h:896
table::Key< table::Array< Kernel::Pixel > > image
Definition: FixedKernel.cc:117
lsst::afw::image::MaskedImage< EntryT >::VariancePtr getVariance() const
Definition: MaskedVector.h:89
void ImageT ImageT int float saturatedPixelValue int const width
Definition: saturated.cc:44
MaskPtr getMask(bool const noThrow=false) const
Return a (Ptr to) the MaskedImage&#39;s mask.
Definition: MaskedImage.h:885
iterator(typename lsst::afw::image::MaskedImage< EntryT >::Image::x_iterator im, typename lsst::afw::image::MaskedImage< EntryT >::Mask::x_iterator msk, typename lsst::afw::image::MaskedImage< EntryT >::Variance::x_iterator var)
Definition: MaskedVector.h:107
A class to manipulate images, masks, and variance as a single object.
Definition: MaskedImage.h:78
Support for 2-D images.
Reference< ImagePixelT >::type image()
Return (a reference to) the image part of the Pixel pointed at by the iterator.
Definition: MaskedImage.h:148
std::shared_ptr< std::vector< EntryT > > getVector(bool const noThrow=false) const
Return a (Ptr to) the MaskedImage&#39;s image.
Definition: MaskedVector.h:47
LSST bitmasks.
Image< ImagePixelT >::Ptr ImagePtr
shared pointer to the Image
Definition: MaskedImage.h:82
lsst::afw::image::MaskedImage< EntryT >::MaskPtr getMask() const
Definition: MaskedVector.h:86
#define LSST_EXCEPT(type,...)
Create an exception with a given type and message and optionally other arguments (dependent on the ty...
Definition: Exception.h:46
A pixel of a MaskedImage.
Definition: Pixel.h:138
Mask< MaskPixelT >::Ptr MaskPtr
shared pointer to the Mask
Definition: MaskedImage.h:84
int getWidth() const
Return the number of columns in the image.
Definition: MaskedImage.h:907
lsst::afw::image::MaskedImage< EntryT >::Pixel Pixel
Definition: MaskedVector.h:40
lsst::afw::image::MaskedImage< EntryT >::ImagePtr getImage() const
Definition: MaskedVector.h:83
Pixel & operator[](int const i)
Definition: MaskedVector.h:64
lsst::afw::image::MaskedImage< EntryT >::Image::Pixel & value(int const i)
Definition: MaskedVector.h:72
Extent< int, 2 > Extent2I
Definition: Extent.h:358
lsst::afw::image::MaskedImage< EntryT >::Mask::Pixel & mask(int const i)
Definition: MaskedVector.h:75
lsst::afw::image::MaskedImage< EntryT >::Variance::Pixel & variance(int const i)
Definition: MaskedVector.h:78