forked from NatronGitHub/Natron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RectI.cpp
138 lines (126 loc) · 5.28 KB
/
RectI.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
/* ***** BEGIN LICENSE BLOCK *****
* This file is part of Natron <https://natrongithub.github.io/>,
* (C) 2018-2021 The Natron developers
* (C) 2013-2018 INRIA and Alexandre Gauthier-Foichat
*
* Natron is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* Natron 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Natron. If not, see <http://www.gnu.org/licenses/gpl-2.0.html>
* ***** END LICENSE BLOCK ***** */
// ***** BEGIN PYTHON BLOCK *****
// from <https://docs.python.org/3/c-api/intro.html#include-files>:
// "Since Python may define some pre-processor definitions which affect the standard headers on some systems, you must include Python.h before any standard headers are included."
#include <Python.h>
// ***** END PYTHON BLOCK *****
#include "RectI.h"
#include <algorithm> // min, max
#include <cassert>
#include <stdexcept>
#include "Engine/RectD.h"
#define MINAREA64 4096 // = 4096 pixels (=64*64)
#define MINAREA128 16384
#define MINAREA256 65536
#define MINAREA MINAREA128 // minimum rectangle area
NATRON_NAMESPACE_ENTER
/// if splitCount is zero, this function returns a set of less than area()/MINAREA rects which are no smaller than MINAREA
std::vector<RectI> RectI::splitIntoSmallerRects(int splitsCount) const
{
std::vector<RectI> ret;
if ( isNull() ) {
return ret;
}
#ifdef NATRON_SPLITRECT_SCANLINE
int averagePixelsPerSplit = std::ceil(double( area() ) / (double)splitsCount);
/*if the splits happen to have less pixels than 1 scan-line contains, just do scan-line rendering*/
if ( averagePixelsPerSplit < width() ) {
for (int i = bottom(); i < top(); ++i) {
ret.push_back( RectI(left(), i, right(), i + 1) );
}
} else {
//we round to the ceil
int scanLinesCount = std::ceil( (double)averagePixelsPerSplit / (double)width() );
int startBox = bottom();
while (startBox < top() - scanLinesCount) {
ret.push_back( RectI(left(), startBox, right(), startBox + scanLinesCount) );
startBox += scanLinesCount;
}
if ( startBox < top() ) {
ret.push_back( RectI( left(), startBox, right(), top() ) );
}
}
#else
// make sure there are at least MINAREA pixels (=128*128) per rect, and the rects are as square as possible.
// This minimizes the overlapping areas between rendered regions
if (area() <= MINAREA) {
ret.push_back(*this);
} else {
// autocompute splitsCount
if (!splitsCount) {
splitsCount = area() / MINAREA;
}
//printf("splitsCount=%d\n", splitsCount);
// the average rect area
double avgArea = area() / (double)splitsCount;
//printf("avgArea=%g,sqrt=%g\n", avgArea, sqrt(avgArea));
bool landscape = width() > height();
int dim1 = landscape ? width() : height();
int dim2 = landscape ? height() : width();
//printf("dim1=%d\n", dim1);
//printf("dim2=%d\n", dim2);
int num1 = (int)( std::ceil( dim1 / std::sqrt(avgArea) ) );
assert(num1 > 0);
//printf("num1=%d\n", num1);
int num2 = std::max( 1, std::min( splitsCount / num1, dim2 / ( MINAREA / (dim1 / num1) ) ) ); // integer division
assert(num1 >= num2);
//printf("num2=%d\n", num2);
num1 = std::max( 1, std::min( splitsCount / num2, dim1 / ( 1 + (MINAREA - 1) / (dim2 / num2) ) ) );
//printf("num1=%d\n", num1);
assert(splitsCount >= num1 * num2);
assert( (dim1 / num1) * (dim2 / num2) >= MINAREA );
int numRows = landscape ? num2 : num1;
int numCols = landscape ? num1 : num2;
for (int i = numRows - 1; i >= 0; --i) {
int y1_ = bottom() + i * height() / numRows;
int y2_ = bottom() + (i + 1) * height() / numRows;
for (int j = 0; j < numCols; ++j) {
int x1_ = left() + j * width() / numCols;
int x2_ = left() + (j + 1) * width() / numCols;
//printf("x1_=%d,x2_=%d,y1_=%d,y2_=%d\n",x1_,x2_,y1_,y2_);
assert( (x2_ - x1_) * (y2_ - y1_) >= MINAREA );
//printf("area is %d\n", (x2_-x1_)*(y2_-y1_));
ret.push_back( RectI(x1_, y1_, x2_, y2_) );
}
}
}
#endif // ifdef NATRON_SPLITRECT_SCANLINE
return ret;
} // RectI::splitIntoSmallerRects
void
RectI::toCanonical(unsigned int thisLevel,
double par,
const RectD & rod,
RectD *rect) const
{
toCanonical_noClipping(thisLevel, par, rect);
rect->intersect(rod, rect);
}
void
RectI::toCanonical_noClipping(unsigned int thisLevel,
double par,
RectD *rect) const
{
rect->x1 = (x1 << thisLevel) * par;
rect->x2 = (x2 << thisLevel) * par;
rect->y1 = y1 << thisLevel;
rect->y2 = y2 << thisLevel;
}
NATRON_NAMESPACE_EXIT