-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathOctreeBuilder.h
272 lines (241 loc) · 9.14 KB
/
OctreeBuilder.h
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
/* * structured - Tools for the Generation and Visualization of Large-scale
* Three-dimensional Reconstructions from Image Data. This software includes
* source code from other projects, which is subject to different licensing,
* see COPYING for details. If this project is used for research see COPYING
* for making the appropriate citations.
* Copyright (C) 2013 Matthew Johnson-Roberson <[email protected]>
*
* This file is part of structured.
*
* structured 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 3 of the License, or
* (at your option) any later version.
*
* structured 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 structured. If not, see <http://www.gnu.org/licenses/>.
*/
/* -*-c++-*- OpenSceneGraph Cookbook
* Chapter 8 Recipe 7
* Author: Wang Rui <wangray84 at gmail dot com>
*/
#ifndef H_COOKBOOK_CH8_OCTREEBUILDER
#define H_COOKBOOK_CH8_OCTREEBUILDER
#include <osg/Geode>
#include <osg/LOD>
#include <stdio.h>
#include <iostream>
#include <osg/io_utils>
template <typename CellType>
class OctreeBuilder
{
public:
OctreeBuilder() : _maxChildNumber(16), _maxTreeDepth(32), _maxLevel(0),_maxFaces(10000) {}
int getMaxLevel() const { return _maxLevel; }
void setMaxChildNumber( int max ) { _maxChildNumber = max; }
int getMaxChildNumber() const { return _maxChildNumber; }
void setMaxTreeDepth( int max ) { _maxTreeDepth = max; }
int getMaxTreeDepth() const { return _maxTreeDepth; }
void setMaxFaces( int max ) { _maxFaces = max; }
int getMaxFaces() const { return _maxFaces; }
typedef std::pair<std::vector<CellType> , osg::BoundingBox> OctNode;
void build(int *finaldepth,std::vector<OctNode> &group, int *depth, const osg::BoundingBox& total,
const std::vector<CellType>& elements );
protected:
osg::LOD* createNewLevel( int level, const osg::Vec3& center, float radius );
osg::Node* createElement( const std::string& id, const osg::Vec3& center, float radius );
osg::Geode* createBoxForDebug( const osg::Vec3& max, const osg::Vec3& min );
int _maxChildNumber;
int _maxTreeDepth;
int _maxLevel;
int _maxFaces;
};
template <typename CellType>
void OctreeBuilder<CellType>::build(int *finaldepth, std::vector<OctNode> &group ,int *depth, const osg::BoundingBox& total,
const std::vector<CellType>& elements )
{
/*int s[3]; // axis sides (0 or 1)
osg::Vec3 extentSet[3] = {
total._min,
(total._max + total._min) * 0.5f,
total._max
};*/
int faces=0;
std::vector<CellType> childData;
for ( unsigned int i=0; i<elements.size(); ++i )
{
const CellType& obj = elements[i];
if ( total.contains(obj.bbox._min) && total.contains(obj.bbox._max) )
childData.push_back( obj );
else if ( total.intersects(obj.bbox) )
{
osg::Vec3 center = (obj.bbox._max + obj.bbox._min) * 0.5f;
if ( total.contains(center) ) childData.push_back( obj );
}
}
if(childData.size() == 0)
return;
for(unsigned int i=0;i<childData.size(); i++){
faces+=childData[i].faces;
}
bool isLeafNode;
if(faces < _maxFaces){
isLeafNode = true;
}else if ( (int)childData.size()<=_maxChildNumber || depth[0]>_maxTreeDepth || depth[1]>_maxTreeDepth || depth[2]>_maxTreeDepth)
isLeafNode = true;
else
isLeafNode = false;
if ( !isLeafNode )
{
// osg::ref_ptr<osg::Group> childNodes[8];
/* for ( s[0]=0; s[0]<2; ++s[0] )
{
for ( s[1]=0; s[1]<2; ++s[1] )
{
for ( s[2]=0; s[2]<2; ++s[2] )
{
// Calculate the child extent
osg::Vec3 min, max;
for ( int a=0; a<3; ++a )
{
min[a] = (extentSet[s[a] + 0])[a];
max[a] = (extentSet[s[a] + 1])[a];
}
//int id = s[0] + (2 * s[1]) + (4 * s[2]);
build(largestDepthReached,group, depth+1, osg::BoundingBox(min, max), childData );
}
}
}*/
// Calculate the child extent
osg::Vec3 min, max;
min = total._min;
max = total._max;
float largestAxis=-FLT_MAX;
int axis=0;
for(int i=0; i<3; i++){
double range=max[i]-min[i];
if(range > largestAxis){
largestAxis=range;
axis=i;
}
}
//printf("Largest Axis %d %d %d\n",axis,faces,childData.size());
//std::cout << total._min<< " " << total._max<<std::endl;
double half=((max[axis]-min[axis])/2.0);
int newdepth[]={depth[0],depth[1],depth[2]};
newdepth[axis]++;
max[axis]= min[axis]+half;
build(finaldepth,group, newdepth, osg::BoundingBox(min, max), childData );
min[axis]= max[axis];
max[axis]=min[axis]+half;
build(finaldepth,group, newdepth, osg::BoundingBox(min, max), childData );
}
else
{
/* for ( unsigned int i=0; i<childData.size(); ++i )
{
const CellType& obj = childData[i];
osg::Vec3 center = (obj.bbox._max + obj.bbox._min) * 0.5;
float radius = (obj.bbox._max - obj.bbox._min).length() * 0.5f;
}*/
// if(depth > largestDepthReached)
// largestDepthReached=depth;
for ( unsigned int i=0; i<3; ++i )
if(finaldepth[i]<depth[i])
finaldepth[i]=depth[i];
group.push_back(std::make_pair<std::vector<CellType> , osg::BoundingBox>(childData,total) );
}
/* osg::Vec3 center = (total._max + total._min) * 0.5;
float radius = (total._max - total._min).length() * 0.5f;
osg::LOD* level = createNewLevel( depth, center, radius );
level->insertChild( 0, createBoxForDebug(total._max, total._min) ); // For debug use
level->insertChild( 1, group.get() );*/
//return ;
}
#if 0
template <typename CellType>
void OctreeBuilder<CellType>::build( std::vector<OctNode> &group ,int depth, const osg::BoundingBox& total,
const std::vector<CellType>& elements )
{
int s[3]; // axis sides (0 or 1)
osg::Vec3 extentSet[3] = {
total._min,
(total._max + total._min) * 0.5f,
total._max
};
int faces=0;
std::vector<CellType> childData;
for ( unsigned int i=0; i<elements.size(); ++i )
{
const CellType& obj = elements[i];
if ( total.contains(obj.bbox._min) && total.contains(obj.bbox._max) )
childData.push_back( obj );
else if ( total.intersects(obj.bbox) )
{
osg::Vec3 center = (obj.bbox._max + obj.bbox._min) * 0.5f;
if ( total.contains(center) ) childData.push_back( obj );
}
}
if(childData.size() == 0)
return;
for(unsigned int i=0;i<childData.size(); i++){
faces+=childData[i].faces;
}
bool isLeafNode;
if(faces < _maxFaces){
isLeafNode = true;
}else if ( (int)childData.size()<=_maxChildNumber || depth>_maxTreeDepth )
isLeafNode = true;
else
isLeafNode = false;
if ( !isLeafNode )
{
// osg::ref_ptr<osg::Group> childNodes[8];
for ( s[0]=0; s[0]<2; ++s[0] )
{
for ( s[1]=0; s[1]<2; ++s[1] )
{
for ( s[2]=0; s[2]<2; ++s[2] )
{
// Calculate the child extent
osg::Vec3 min, max;
for ( int a=0; a<3; ++a )
{
min[a] = (extentSet[s[a] + 0])[a];
max[a] = (extentSet[s[a] + 1])[a];
}
//int id = s[0] + (2 * s[1]) + (4 * s[2]);
build(group, depth+1, osg::BoundingBox(min, max), childData );
}
}
}
/* for ( unsigned int i=0; i<8; ++i )
{
if ( childNodes[i] && childNodes[i]->getNumChildren() )
group->addChild( childNodes[i] );
}*/
}
else
{
/* for ( unsigned int i=0; i<childData.size(); ++i )
{
const CellType& obj = childData[i];
osg::Vec3 center = (obj.bbox._max + obj.bbox._min) * 0.5;
float radius = (obj.bbox._max - obj.bbox._min).length() * 0.5f;
}*/
group.push_back(std::make_pair<std::vector<CellType> , osg::BoundingBox>(childData,total) );
}
/* osg::Vec3 center = (total._max + total._min) * 0.5;
float radius = (total._max - total._min).length() * 0.5f;
osg::LOD* level = createNewLevel( depth, center, radius );
level->insertChild( 0, createBoxForDebug(total._max, total._min) ); // For debug use
level->insertChild( 1, group.get() );*/
//return ;
}
#endif
#endif