-
Notifications
You must be signed in to change notification settings - Fork 5
/
roi.cpp
115 lines (85 loc) · 2.29 KB
/
roi.cpp
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
#include <OpenImageIO/imagebuf.h>
#include "oiio.h"
extern "C" {
void deleteROI(ROI *roi) {
delete static_cast<OIIO::ROI*>(roi);
}
ROI* ROI_New() {
ROI* roi = new OIIO::ROI();
return (ROI*) roi;
}
ROI* ROI_NewOptions(int xbegin, int xend, int ybegin, int yend, int zbegin, int zend, int chbegin, int chend) {
ROI* roi = new OIIO::ROI(xbegin, xend, ybegin, yend, zbegin, zend, chbegin, chend);
return (ROI*) roi;
}
ROI* ROI_Copy(const ROI *roi) {
ROI* rc = new OIIO::ROI(*(static_cast<const OIIO::ROI*>(roi)));
return (ROI*) rc;
}
bool ROI_defined(ROI* roi) {
return static_cast<OIIO::ROI*>(roi)->defined();
}
int ROI_width(ROI* roi) {
return static_cast<OIIO::ROI*>(roi)->width();
}
int ROI_height(ROI* roi) {
return static_cast<OIIO::ROI*>(roi)->height();
}
int ROI_depth(ROI* roi) {
return static_cast<OIIO::ROI*>(roi)->depth();
}
int ROI_nchannels(ROI* roi) {
return static_cast<OIIO::ROI*>(roi)->nchannels();
}
imagesize_t ROI_npixels(ROI* roi) {
return static_cast<OIIO::ROI*>(roi)->npixels();
}
int ROI_xbegin(ROI* roi) {
return static_cast<OIIO::ROI*>(roi)->xbegin;
}
void ROI_set_xbegin(ROI* roi, int val) {
static_cast<OIIO::ROI*>(roi)->xbegin = val;
}
int ROI_xend(ROI* roi) {
return static_cast<OIIO::ROI*>(roi)->xend;
}
void ROI_set_xend(ROI* roi, int val) {
static_cast<OIIO::ROI*>(roi)->xend = val;
}
int ROI_ybegin(ROI* roi) {
return static_cast<OIIO::ROI*>(roi)->ybegin;
}
void ROI_set_ybegin(ROI* roi, int val) {
static_cast<OIIO::ROI*>(roi)->ybegin = val;
}
int ROI_yend(ROI* roi) {
return static_cast<OIIO::ROI*>(roi)->yend;
}
void ROI_set_yend(ROI* roi, int val) {
static_cast<OIIO::ROI*>(roi)->yend = val;
}
int ROI_zbegin(ROI* roi) {
return static_cast<OIIO::ROI*>(roi)->zbegin;
}
void ROI_set_zbegin(ROI* roi, int val) {
static_cast<OIIO::ROI*>(roi)->zbegin = val;
}
int ROI_zend(ROI* roi) {
return static_cast<OIIO::ROI*>(roi)->zend;
}
void ROI_set_zend(ROI* roi, int val) {
static_cast<OIIO::ROI*>(roi)->zend = val;
}
int ROI_chbegin(ROI* roi) {
return static_cast<OIIO::ROI*>(roi)->chbegin;
}
void ROI_set_chbegin(ROI* roi, int val) {
static_cast<OIIO::ROI*>(roi)->chbegin = val;
}
int ROI_chend(ROI* roi) {
return static_cast<OIIO::ROI*>(roi)->chend;
}
void ROI_set_chend(ROI* roi, int val) {
static_cast<OIIO::ROI*>(roi)->chend = val;
}
} // extern "C"