USGS

Isis 3.0 Developer's Reference (API)

Home

CentroidApolloPan.h
Go to the documentation of this file.
1 #ifndef CentroidApolloPan_h
2 #define CentroidApolloPan_h
3 
26 #include "Centroid.h"
27 
28 namespace Isis {
41  class CentroidApolloPan : public Centroid {
42  public:
43  CentroidApolloPan(double pixel_size_microns);
44  virtual ~CentroidApolloPan();
45  bool setPixelSize(double microns);
46 
47  int elipticalReduction(Chip *selectionChip, double percent_selected, double play, int patience_limit);
48  int selectAdaptive(Chip *inputChip,Chip *selectionChip);
49 
50  private:
51  double m_pixelSize; //pixel size in microns
52  };
53 }
54 #endif