forked from martidi/opencv_dsm
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathossimRawImage.cpp
More file actions
executable file
·50 lines (41 loc) · 924 Bytes
/
ossimRawImage.cpp
File metadata and controls
executable file
·50 lines (41 loc) · 924 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
//----------------------------------------------------------------------------
//
// License: See top level LICENSE.txt file.
//
// File: openCVtestclass.h
//
// Author: Martina Di Rita
//
// Description: Class for individual raw image handling
//
//----------------------------------------------------------------------------
#include "ossim/imaging/ossimImageHandlerRegistry.h"
#include "ossim/imaging/ossimImageHandler.h"
#include "ossimRawImage.h"
ossimRawImage::ossimRawImage()
{
}
void ossimRawImage::setID(int id)
{
raw_image_id = id;
}
int ossimRawImage::getID()
{
return raw_image_id;
}
void ossimRawImage::setRawPath(ossimString raw_image_path)
{
raw_image = raw_image_path;
}
ossimString ossimRawImage::getRawPath()
{
return raw_image;
}
void ossimRawImage::setOrbit(ossimString orbit_type)
{
orbit = orbit_type;
}
ossimString ossimRawImage::getOrbit()
{
return orbit;
}