Subversion Repositories gelsvn

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
667 khor 1
#include <iostream>
2
 
684 khor 3
#include <Util/Timer.h>
4
#include <Util/ArgExtracter.h>
667 khor 5
 
684 khor 6
#include <CGLA/Mat4x4d.h>
667 khor 7
 
684 khor 8
#include <Geometry/RGrid.h>
9
#include <Geometry/HGrid.h>
10
#include <Geometry/save_raw.h>
11
#include <Geometry/GridAlgorithm.h>
12
#include <Geometry/build_bbtree.h>
13
#include <Geometry/AABox.h>
667 khor 14
 
684 khor 15
#include <HMesh/triangulate.h>
16
#include <HMesh/Manifold.h>
667 khor 17
 
684 khor 18
#include <HMesh/load.h>
19
#include <HMesh/x3d_load.h>
20
#include <HMesh/x3d_save.h>
667 khor 21
 
22
using namespace std;
23
using namespace HMesh;
24
using namespace Geometry;
25
using namespace CGLA;
26
using namespace Util;
27
 
28
namespace
29
{
30
 
31
	Vec3i vol_dim(64);
32
 
33
    const Mat4x4d fit_bounding_volume(const Vec3d& p0,
34
                                      const Vec3d& p7,
35
                                      float buf_reg)
36
	{
37
		Vec3d sz = p7 - p0;
38
		Vec3i dims = vol_dim;
39
		Vec3d scal_vec = (Vec3d(dims)-Vec3d(2*buf_reg+2))/sz;
40
		float scal = min(scal_vec[0], min(scal_vec[1],scal_vec[2]));
41
 
42
		Mat4x4d m = translation_Mat4x4d(Vec3d(0)+Vec3d(buf_reg+1));
43
		m *= scaling_Mat4x4d(Vec3d(scal));
44
		m *= translation_Mat4x4d(-p0);
45
		return m;
46
	}
47
 
48
	bool do_ray_tests = false;
49
	bool do_obb = true;
50
	bool do_aabb = false;
51
	bool flip_normals = false;
52
 
53
}
54
 
55
 
56
 
57
template<class BBTree>
58
class DistCompCache
59
{
60
	BBTree *T;
61
	float old_d;
62
	Vec3i old_p;
63
public:
64
 
65
	DistCompCache(BBTree* _T): T(_T), old_p(-99999) {}
66
 
67
	void operator()(const CGLA::Vec3i& pi, float& vox_val)
68
	{
69
		Vec3f p(pi);
70
 		if(sqr_length(pi-old_p)==1)
71
            vox_val = T->compute_signed_distance(p,CGLA::sqr(1.001+fabs(old_d)));
72
 		else
73
			vox_val = T->compute_signed_distance(p);
74
		if(flip_normals) vox_val = -vox_val;
75
		old_p = pi;
76
		old_d = vox_val;
77
	}
78
};
79
 
80
template<class BBTree>
81
class DistComp
82
{
83
	BBTree *T;
84
public:
85
 
86
	DistComp(BBTree* _T): T(_T) {}
87
 
88
	void operator()(const CGLA::Vec3i& pi, float& vox_val)
89
	{
90
		Vec3d p(pi);
91
		vox_val =  T->compute_signed_distance(p);
92
		if(flip_normals) vox_val = -vox_val;
93
	}
94
};
95
 
96
 
97
template<class BBTree>
98
class RayCast
99
{
100
	BBTree *T;
101
 
102
public:
103
 
104
	RayCast(BBTree* _T): T(_T) {}
105
 
106
	void operator()(const CGLA::Vec3i& pi, float& vox_val)
107
	{
108
		int n = T->intersect_cnt(Vec3f(pi), Vec3f(1,0,0));
109
		if(n%2==0)
110
			vox_val=1000;
111
		else
112
			vox_val=-1000;
113
	}
114
};
115
 
116
 
117
typedef RGrid<float> RGridf;
118
 
119
 
120
int main(int argc, char** argv)
121
{
122
	// LOAD OBJ
123
    Manifold m;
124
    string fn = "../../data/bunny-little.x3d";
125
    if(argc>1)
126
	{
127
		ArgExtracter ae(argc, argv);
128
 
129
		do_aabb = ae.extract("-A");
130
		do_obb = ae.extract("-O");
131
		ae.extract("-x", vol_dim[0]);
132
		ae.extract("-y", vol_dim[1]);
133
		ae.extract("-z", vol_dim[2]);
134
		do_ray_tests = ae.extract("-R");
135
		flip_normals = ae.extract("-f");
136
		fn = ae.get_last_arg();
137
    }
138
    if(!load(fn, m))
139
    {
140
        cout << "Failed to load mesh" << endl;
141
        exit(1);
142
    }
143
    string file_prefix = fn.substr(0, fn.length()-4) + "-";
144
	cout << "Volume dimensions " << vol_dim << endl;
145
	if(!valid(m))
146
	{
147
		cout << "Not a valid manifold" << endl;
148
		exit(0);
149
	}
150
	triangulate_by_edge_face_split(m);
151
 
152
	Vec3d p0, p7;
153
	bbox(m, p0, p7);
154
 
155
  cout << p0 << endl;
156
  cout << p7 << endl;
157
 
158
	Mat4x4d T = fit_bounding_volume(p0,p7,10);
159
 
160
  cout << "Transformation " << T << endl;
161
 
162
	for(VertexIDIterator v = m.vertices_begin(); v != m.vertices_end(); ++v)
163
		m.pos(*v) = T.mul_3D_point(m.pos(*v));
164
 
165
 
166
 	RGridf grid(vol_dim,FLT_MAX);
167
	Util::Timer tim;
168
 
169
 
170
	float T_build_obb=0, T_build_aabb=0, T_dist_obb=0,
171
    T_dist_aabb=0, T_ray_obb=0, T_ray_aabb=0;
172
 
173
	if(do_obb)
174
	{
175
		cout << "Building OBB Tree" << endl;
176
		tim.start();
177
		OBBTree obb_tree;
178
		build_OBBTree(m, obb_tree);
179
		T_build_obb = tim.get_secs();
180
 
181
		cout << "Computing distances from OBB Tree" << endl;
182
		tim.start();
183
		DistCompCache<OBBTree> dist(&obb_tree);
184
		for_each_voxel(grid, dist);
185
		T_dist_obb = tim.get_secs();
186
 
187
		cout << "Saving distance field" << endl;
188
		save_raw_float(file_prefix+"obb_dist.raw", grid);
189
 
190
		if(do_ray_tests)
191
		{
192
			cout << "Ray tests on OBB Tree" << endl;
193
			tim.start();
194
			RayCast<OBBTree> ray(&obb_tree);
195
			for_each_voxel(grid, ray);
196
			T_ray_obb = tim.get_secs();
197
 
198
			cout << "Saving ray volume" << endl;
199
			save_raw_float(file_prefix+"obb_ray.raw", grid);
200
		}
201
	}
202
 
203
	if(do_aabb)
204
	{
205
		cout << "Building AABB Tree" << endl;
206
		tim.start();
207
		AABBTree aabb_tree;
208
		build_AABBTree(m, aabb_tree);
209
		T_build_aabb = tim.get_secs();
210
 
211
		cout << "Computing distances from AABB Tree" << endl;
212
		tim.start();
213
		DistCompCache<AABBTree> dist(&aabb_tree);
214
		for_each_voxel(grid, dist);
215
		T_dist_aabb = tim.get_secs();
216
 
217
		cout << "Saving distance field" << endl;
218
		save_raw_float(file_prefix+"aabb_dist.raw", grid);
219
 
220
		if(do_ray_tests)
221
		{
222
			cout << "Ray tests on AABB tree" << endl;
223
			tim.start();
224
			RayCast<AABBTree> ray(&aabb_tree);
225
			for_each_voxel(grid, ray);
226
			T_ray_aabb = tim.get_secs();
227
 
228
			cout << "Saving ray volume" << endl;
229
			save_raw_float(file_prefix+"aabb_ray.raw", grid);
230
		}
231
	}
232
	cout.width(10);
233
	cout << "Poly";
234
	cout.width(11);
235
	cout <<"build_obb";
236
	cout.width(12);
237
	cout << "build_aabb";
238
	cout.width(10);
239
	cout << "dist_obb" ;
240
	cout.width(10);
241
	cout << "dist_aabb";
242
	cout.width(10);
243
	cout << "ray_obb" ;
244
	cout.width(10);
245
	cout << "ray_aabb";
246
	cout << endl;
247
 
248
	cout.precision(4);
249
	cout.width(10);
250
	cout << m.no_faces() << " ";
251
	cout.width(10);
252
	cout << T_build_obb;
253
	cout.width(12);
254
	cout << T_build_aabb;
255
	cout.width(10);
256
	cout << T_dist_obb;
257
	cout.width(10);
258
	cout << T_dist_aabb;
259
	cout.width(10);
260
	cout << T_ray_obb;
261
	cout.width(10);
262
	cout << T_ray_aabb;
263
	cout << endl;
264
  system("PAUSE");
265
}