USGS

Isis 3.0 Object Programmers' Reference

Home

CentroidApolloPan.h

Go to the documentation of this file.
00001 #ifndef CentroidApolloPan_h
00002 #define CentroidApolloPan_h
00003 
00026 #include "Centroid.h"
00027 
00028 namespace Isis {
00041   class CentroidApolloPan : public Centroid {
00042   public:
00043     CentroidApolloPan(double pixel_size_microns);
00044     virtual ~CentroidApolloPan();
00045     bool setPixelSize(double microns);
00046   
00047     int elipticalReduction(Chip *selectionChip, double percent_selected, double play, int patience_limit);
00048     int selectAdaptive(Chip *inputChip,Chip *selectionChip);
00049 
00050   private:
00051     double m_pixelSize;  //pixel size in microns
00052   };
00053 }
00054 #endif