OSSIM - Open Source Software Image Map  Version 1.9.0 (20180803)
ossimDemStats.h
Go to the documentation of this file.
1 //*******************************************************************
2 // Copyright (C) 2000 ImageLinks Inc.
3 //
4 // License: MIT
5 //
6 // See LICENSE.txt file in the top level directory for more details.
7 //
8 // Author: Ken Melero
9 // Orginally written by Jamie Moyers (jmoyers@geeks.com)
10 // Adapted from the package KDEM.
11 // Description: This class provides some statistics for DEMs.
12 //
13 //********************************************************************
14 // $Id: ossimDemStats.h 7174 2005-01-11 18:10:38Z dburken $
15 
16 #ifndef ossimDemStats_HEADER
17 #define ossimDemStats_HEADER
18 
19 #include <iostream>
20 
22 {
23 public:
24 
25  ossimDemStats();
27 
29  ossimDemStats const& stats);
31 
32  //Accessors
33 
39  long getAvailCodeDE2() const;
40 
41  long getRSMEDE2x () const;
42 
43  long getRSMEDE2y () const;
44 
45  long getRSMEDE2z () const;
46 
52  long getSampleSizeDE2() const;
53 
59  long getAvailCodeDE5() const;
60 
61  long getRSMEDE5x () const;
62 
63  long getRSMEDE5y () const;
64 
65  long getRSMEDE5z () const;
66 
72  long getSampleSizeDE5() const;
73 
74 private:
75 
77  long _rsmeDE2x;
78  long _rsmeDE2y;
79  long _rsmeDE2z;
82  long _rsmeDE5x;
83  long _rsmeDE5y;
84  long _rsmeDE5z;
86 };
87 
88 #endif // #ifndef ossimDemStats_HEADER
long getRSMEDE2y() const
long getRSMEDE2z() const
long getRSMEDE5y() const
long getAvailCodeDE2() const
long getAvailCodeDE5() const
long getRSMEDE2x() const
long getRSMEDE5x() const
long getSampleSizeDE2() const
friend std::istream & operator>>(std::istream &s, ossimDemStats &stats)
std::basic_istream< char > istream
Base class for char input streams.
Definition: ossimIosFwd.h:20
long getRSMEDE5z() const
long getSampleSizeDE5() const
friend std::ostream & operator<<(std::ostream &s, ossimDemStats const &stats)
std::basic_ostream< char > ostream
Base class for char output streams.
Definition: ossimIosFwd.h:23