forked from mdelbra/rhf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexrcrop.cpp
124 lines (87 loc) · 2.89 KB
/
exrcrop.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
116
117
118
119
120
121
122
123
124
/*----------------------------------------------------------------------------
RHF - Ray Histogram Fusion
Copyright (c) 2013, A. Buades <[email protected]>,
M. Delbracio <[email protected]>,
J-M. Morel <[email protected]>,
P. Muse <[email protected]>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
----------------------------------------------------------------------------*/
/*VERSION 02.08.13*/
#include <stdio.h>
#include <stdlib.h>
#include <limits.h>
#include <math.h>
#include "io_exr.h"
#define MIN(a,b) (((a)<(b))?(a):(b))
#define MAX(a,b) (((a)>(b))?(a):(b))
int main(int argc, char *argv[])
{
int nx, ny, ncha, cx, cy;
int xmin, xmax, ymin, ymax;
int x0,x1,y0,y1;
int cxy,nxy;
float *data, *d;
char flag_mc = 1;
if(argc < 6)
{
printf("not enough arguments...\n");
printf("usage:\n");
printf(" %s x0 y0 x1 y1 img-exr img-crop-exr\n",argv[0]);
exit(0);
}
data = readMultiImageEXR(argv[5], &nx, &ny, &ncha);
if (!data) {
data = ReadImageEXR(argv[5], &nx, &ny);
ncha = 3;
flag_mc = 0;
if(!data) {
printf("error :: %s not a correct exr image \n", argv[5]);
exit(-1);
}
}
x0 = atoi(argv[1]);
y0 = atoi(argv[2]);
x1 = atoi(argv[3]);
y1 = atoi(argv[4]);
xmin = MAX(0,MIN(x0,x1));
xmax = MIN(nx-1,MAX(x0,x1));
ymin = MAX(0,MIN(y0,y1));
ymax = MIN(ny-1,MAX(y0,y1));
cx = xmax - xmin;
cy = ymax - ymin;
printf("Cropping: xmin:%d xmax:%d ymin:%d ymax:%d\n",xmin,xmax,ymin,ymax);
//if cx or cy is negative parameters wrong
if(cx <= 0 || cy <= 0)
{
printf("error :: incorrect crop values\n");
exit(-1);
}
nxy = nx * ny;
cxy = cx * cy;
d = (float*)malloc(sizeof(float) * cxy * ncha);
/*Crop Image*/
for(int y=0;y<cy;y++)
for(int x=0;x<cx;x++)
for(int c=0;c<ncha;c++)
d[x + cx*y + cxy*c] = data[x + xmin + nx*(y+ymin) + nxy*c];
if(flag_mc)
{
writeMultiImageEXR(argv[6], d, cx, cy, ncha);
}
else
{
WriteImageEXR(argv[6], d, cx, cy);
}
free(data);
free(d);
return 0;
}