USGS

Isis 3.0 Object Programmers' Reference

Home

ImagePolygon.h
Go to the documentation of this file.
1 #ifndef ImagePolygon_h
2 #define ImagePolygon_h
3 
25 #include <string>
26 #include <sstream>
27 #include <vector>
28 
29 #include "IException.h"
30 #include "Cube.h"
31 #include "Brick.h"
32 #include "Camera.h"
33 #include "Projection.h"
34 #include "UniversalGroundMap.h"
35 #include "Blob.h"
36 #include "geos/geom/Coordinate.h"
37 #include "geos/geom/MultiPolygon.h"
38 #include "geos/geom/CoordinateSequence.h"
39 
40 namespace Isis {
41 
167  class ImagePolygon : public Isis::Blob {
168 
169  public:
170  ImagePolygon();
171  ~ImagePolygon();
172 
173  void Create(Cube &cube, int sinc = 1, int linc = 1,
174  int ss = 1, int sl = 1, int ns = 0, int nl = 0, int band = 1,
175  bool increasePrecision = false);
176 
177  Camera * initCube(Cube &cube, int ss = 1, int sl = 1,
178  int ns = 0, int nl = 0, int band = 1);
179 
185  void Emission(double emission) {
186  p_emission = emission;
187  }
193  void Incidence(double incidence) {
194  p_incidence = incidence;
195  }
196 
203  void EllipsoidLimb(bool ellip) {
204  p_ellipsoid = ellip;
205  }
206 
216  void SubpixelAccuracy(int div) {
217  p_subpixelAccuracy = div;
218  }
219 
221  geos::geom::MultiPolygon *Polys() {
222  return p_polygons;
223  };
224 
225  double validSampleDim();
226  double validLineDim();
227 
229  int getSinc() const {
230  return p_sampinc;
231  }
232 
234  int getLinc() const {
235  return p_lineinc;
236  }
237 
238  protected:
239  void ReadData(std::istream &is);
240  void WriteInit();
241  void WriteData(std::fstream &os);
242 
243  private:
244  // Please do not add new polygon manipulation methods to this class.
245  // Polygon manipulation should be done in the PolygonTools class.
246  bool SetImage(const double sample, const double line);
247 
248  geos::geom::Coordinate FindFirstPoint();
249  void WalkPoly();
250  geos::geom::Coordinate FindNextPoint(geos::geom::Coordinate *currentPoint,
251  geos::geom::Coordinate lastPoint,
252  int recursionDepth = 0);
253 
254  double DistanceSquared(const geos::geom::Coordinate *p1, const geos::geom::Coordinate *p2);
255 
256  void MoveBackInsideImage(double &sample, double &line, double sinc, double linc);
257  bool InsideImage(double sample, double line);
258  void Fix360Poly();
259  void FixPolePoly(std::vector<geos::geom::Coordinate> *crossingPoints);
260 
261  bool IsLimb();
262  geos::geom::Coordinate FindBestPoint(geos::geom::Coordinate *currentPoint,
263  geos::geom::Coordinate newPoint,
264  geos::geom::Coordinate lastPoint);
265  geos::geom::Coordinate FixCornerSkip(geos::geom::Coordinate *currentPoint,
266  geos::geom::Coordinate newPoint);
267 
268  void FindSubpixel(std::vector<geos::geom::Coordinate> & points);
269 
271 
274 
276 
277  geos::geom::CoordinateSequence *p_pts;
278 
279  geos::geom::MultiPolygon *p_polygons;
280 
281  std::string p_polyStr;
282 
284 
285  geos::geom::Coordinate *m_leftCoord;
286  geos::geom::Coordinate *m_rightCoord;
287  geos::geom::Coordinate *m_topCoord;
288  geos::geom::Coordinate *m_botCoord;
289 
294 
295  int p_sampinc;
296  int p_lineinc;
297 
298  double p_emission;
299  double p_incidence;
300  bool p_ellipsoid;
301 
303 
304  };
305 };
306 
307 #endif
308