-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
raycasting_scene.cpp
388 lines (306 loc) · 14.7 KB
/
raycasting_scene.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
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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
// ----------------------------------------------------------------------------
// - Open3D: www.open3d.org -
// ----------------------------------------------------------------------------
// Copyright (c) 2018-2023 www.open3d.org
// SPDX-License-Identifier: MIT
// ----------------------------------------------------------------------------
#include "open3d/t/geometry/RaycastingScene.h"
#include "pybind/core/tensor_type_caster.h"
#include "pybind/t/geometry/geometry.h"
namespace open3d {
namespace t {
namespace geometry {
void pybind_raycasting_scene(py::module& m) {
py::class_<RaycastingScene> raycasting_scene(m, "RaycastingScene", R"doc(
A scene class with basic ray casting and closest point queries.
The RaycastingScene allows to compute ray intersections with triangle meshes
or compute the closest point on the surface of a mesh with respect to one
or more query points.
It builds an internal acceleration structure to speed up those queries.
This class supports only the CPU device.
The following shows how to create a scene and compute ray intersections::
import open3d as o3d
import matplotlib.pyplot as plt
cube = o3d.t.geometry.TriangleMesh.from_legacy(
o3d.geometry.TriangleMesh.create_box())
# Create scene and add the cube mesh
scene = o3d.t.geometry.RaycastingScene()
scene.add_triangles(cube)
# Rays are 6D vectors with origin and ray direction.
# Here we use a helper function to create rays for a pinhole camera.
rays = scene.create_rays_pinhole(fov_deg=60,
center=[0.5,0.5,0.5],
eye=[-1,-1,-1],
up=[0,0,1],
width_px=320,
height_px=240)
# Compute the ray intersections.
ans = scene.cast_rays(rays)
# Visualize the hit distance (depth)
plt.imshow(ans['t_hit'].numpy())
)doc");
// Constructors.
raycasting_scene.def(py::init<int64_t>(), "nthreads"_a = 0, R"doc(
Create a RaycastingScene.
Args:
nthreads (int): The number of threads to use for building the scene. Set to 0 for automatic.
)doc");
raycasting_scene.def(
"add_triangles",
py::overload_cast<const core::Tensor&, const core::Tensor&>(
&RaycastingScene::AddTriangles),
"vertex_positions"_a, "triangle_indices"_a, R"doc(
Add a triangle mesh to the scene.
Args:
vertices (open3d.core.Tensor): Vertices as Tensor of dim {N,3} and dtype
Float32.
triangles (open3d.core.Tensor): Triangles as Tensor of dim {M,3} and dtype
UInt32.
Returns:
The geometry ID of the added mesh.
)doc");
raycasting_scene.def("add_triangles",
py::overload_cast<const TriangleMesh&>(
&RaycastingScene::AddTriangles),
"mesh"_a, R"doc(
Add a triangle mesh to the scene.
Args:
mesh (open3d.t.geometry.TriangleMesh): A triangle mesh.
Returns:
The geometry ID of the added mesh.
)doc");
raycasting_scene.def("cast_rays", &RaycastingScene::CastRays, "rays"_a,
"nthreads"_a = 0,
R"doc(
Computes the first intersection of the rays with the scene.
Args:
rays (open3d.core.Tensor): A tensor with >=2 dims, shape {.., 6}, and Dtype
Float32 describing the rays.
{..} can be any number of dimensions, e.g., to organize rays for
creating an image the shape can be {height, width, 6}. The last
dimension must be 6 and has the format [ox, oy, oz, dx, dy, dz]
with [ox,oy,oz] as the origin and [dx,dy,dz] as the direction. It is
not necessary to normalize the direction but the returned hit distance
uses the length of the direction vector as unit.
nthreads (int): The number of threads to use. Set to 0 for automatic.
Returns:
A dictionary which contains the following keys
t_hit
A tensor with the distance to the first hit. The shape is {..}. If there
is no intersection the hit distance is *inf*.
geometry_ids
A tensor with the geometry IDs. The shape is {..}. If there
is no intersection the ID is *INVALID_ID*.
primitive_ids
A tensor with the primitive IDs, which corresponds to the triangle
index. The shape is {..}. If there is no intersection the ID is
*INVALID_ID*.
primitive_uvs
A tensor with the barycentric coordinates of the hit points within the
hit triangles. The shape is {.., 2}.
primitive_normals
A tensor with the normals of the hit triangles. The shape is {.., 3}.
)doc");
raycasting_scene.def("test_occlusions", &RaycastingScene::TestOcclusions,
"rays"_a, "tnear"_a = 0.f,
"tfar"_a = std::numeric_limits<float>::infinity(),
"nthreads"_a = 0,
R"doc(
Checks if the rays have any intersection with the scene.
Args:
rays (open3d.core.Tensor): A tensor with >=2 dims, shape {.., 6}, and Dtype
Float32 describing the rays.
{..} can be any number of dimensions, e.g., to organize rays for
creating an image the shape can be {height, width, 6}.
The last dimension must be 6 and has the format [ox, oy, oz, dx, dy, dz]
with [ox,oy,oz] as the origin and [dx,dy,dz] as the direction. It is not
necessary to normalize the direction.
tnear (float): The tnear offset for the rays. The default is 0.
tfar (float): The tfar value for the ray. The default is infinity.
nthreads (int): The number of threads to use. Set to 0 for automatic.
Returns:
A boolean tensor which indicates if the ray is occluded by the scene (true)
or not (false).
)doc");
raycasting_scene.def("count_intersections",
&RaycastingScene::CountIntersections, "rays"_a,
"nthreads"_a = 0, R"doc(
Computes the number of intersection of the rays with the scene.
Args:
rays (open3d.core.Tensor): A tensor with >=2 dims, shape {.., 6}, and Dtype
Float32 describing the rays.
{..} can be any number of dimensions, e.g., to organize rays for
creating an image the shape can be {height, width, 6}.
The last dimension must be 6 and has the format [ox, oy, oz, dx, dy, dz]
with [ox,oy,oz] as the origin and [dx,dy,dz] as the direction. It is not
necessary to normalize the direction.
nthreads (int): The number of threads to use. Set to 0 for automatic.
Returns:
A tensor with the number of intersections. The shape is {..}.
)doc");
raycasting_scene.def("list_intersections",
&RaycastingScene::ListIntersections, "rays"_a,
"nthreads"_a = 0, R"doc(
Lists the intersections of the rays with the scene.
Args:
rays (open3d.core.Tensor): A tensor with >=2 dims, shape {.., 6}, and Dtype
Float32 describing the rays.
{..} can be any number of dimensions, e.g., to organize rays for
creating an image the shape can be {height, width, 6}.
The last dimension must be 6 and has the format [ox, oy, oz, dx, dy, dz]
with [ox,oy,oz] as the origin and [dx,dy,dz] as the direction. It is not
necessary to normalize the direction although it should be normalised if
t_hit is to be calculated in coordinate units.
nthreads (int): The number of threads to use. Set to 0 for automatic.
Returns:
The returned dictionary contains
ray_ids
A tensor with ray IDs. The shape is {..}.
geometry_ids
A tensor with the geometry IDs. The shape is {..}.
primitive_ids
A tensor with the primitive IDs, which corresponds to the triangle
index. The shape is {..}.
t_hit
A tensor with the distance to the hit. The shape is {..}.
)doc");
raycasting_scene.def("compute_closest_points",
&RaycastingScene::ComputeClosestPoints,
"query_points"_a, "nthreads"_a = 0, R"doc(
Computes the closest points on the surfaces of the scene.
Args:
query_points (open3d.core.Tensor): A tensor with >=2 dims, shape {.., 3},
and Dtype Float32 describing the query points.
{..} can be any number of dimensions, e.g., to organize the query_point
to create a 3D grid the shape can be {depth, height, width, 3}.
The last dimension must be 3 and has the format [x, y, z].
nthreads (int): The number of threads to use. Set to 0 for automatic.
Returns:
The returned dictionary contains
points
A tensor with the closest surface points. The shape is {..}.
geometry_ids
A tensor with the geometry IDs. The shape is {..}.
primitive_ids
A tensor with the primitive IDs, which corresponds to the triangle
index. The shape is {..}.
primitive_uvs
A tensor with the barycentric coordinates of the closest points within
the triangles. The shape is {.., 2}.
primitive_normals
A tensor with the normals of the closest triangle . The shape is
{.., 3}.
)doc");
raycasting_scene.def("compute_distance", &RaycastingScene::ComputeDistance,
"query_points"_a, "nthreads"_a = 0, R"doc(
Computes the distance to the surface of the scene.
Args:
query_points (open3d.core.Tensor): A tensor with >=2 dims, shape {.., 3},
and Dtype Float32 describing the query points.
{..} can be any number of dimensions, e.g., to organize the
query points to create a 3D grid the shape can be
{depth, height, width, 3}.
The last dimension must be 3 and has the format [x, y, z].
nthreads (int): The number of threads to use. Set to 0 for automatic.
Returns:
A tensor with the distances to the surface. The shape is {..}.
)doc");
raycasting_scene.def(
"compute_signed_distance", &RaycastingScene::ComputeSignedDistance,
"query_points"_a, "nthreads"_a = 0, "nsamples"_a = 1, R"doc(
Computes the signed distance to the surface of the scene.
This function computes the signed distance to the meshes in the scene.
The function assumes that all meshes are watertight and that there are
no intersections between meshes, i.e., inside and outside must be well
defined. The function determines the sign of the distance by counting
the intersections of a rays starting at the query points.
Args:
query_points (open3d.core.Tensor): A tensor with >=2 dims, shape {.., 3},
and Dtype Float32 describing the query_points.
{..} can be any number of dimensions, e.g., to organize the
query points to create a 3D grid the shape can be
{depth, height, width, 3}.
The last dimension must be 3 and has the format [x, y, z].
nthreads (int): The number of threads to use. Set to 0 for automatic.
nsamples (int): The number of rays used for determining the inside.
This must be an odd number. The default is 1. Use a higher value if you
notice sign flipping, which can occur when rays hit exactly an edge or
vertex in the scene.
Returns:
A tensor with the signed distances to the surface. The shape is {..}.
Negative distances mean a point is inside a closed surface.
)doc");
raycasting_scene.def("compute_occupancy",
&RaycastingScene::ComputeOccupancy, "query_points"_a,
"nthreads"_a = 0, "nsamples"_a = 1,
R"doc(
Computes the occupancy at the query point positions.
This function computes whether the query points are inside or outside.
The function assumes that all meshes are watertight and that there are
no intersections between meshes, i.e., inside and outside must be well
defined. The function determines if a point is inside by counting the
intersections of a rays starting at the query points.
Args:
query_points (open3d.core.Tensor): A tensor with >=2 dims, shape {.., 3},
and Dtype Float32 describing the query points.
{..} can be any number of dimensions, e.g., to organize the
query points to create a 3D grid the shape can be
{depth, height, width, 3}.
The last dimension must be 3 and has the format [x, y, z].
nthreads (int): The number of threads to use. Set to 0 for automatic.
nsamples (int): The number of rays used for determining the inside.
This must be an odd number. The default is 1. Use a higher value if you
notice errors in the occupancy values. Errors can occur when rays hit
exactly an edge or vertex in the scene.
Returns:
A tensor with the occupancy values. The shape is {..}. Values are either 0
or 1. A point is occupied or inside if the value is 1.
)doc");
raycasting_scene.def_static(
"create_rays_pinhole",
py::overload_cast<const core::Tensor&, const core::Tensor&, int,
int>(&RaycastingScene::CreateRaysPinhole),
"intrinsic_matrix"_a, "extrinsic_matrix"_a, "width_px"_a,
"height_px"_a, R"doc(
Creates rays for the given camera parameters.
Args:
intrinsic_matrix (open3d.core.Tensor): The upper triangular intrinsic matrix
with shape {3,3}.
extrinsic_matrix (open3d.core.Tensor): The 4x4 world to camera SE(3)
transformation matrix.
width_px (int): The width of the image in pixels.
height_px (int): The height of the image in pixels.
Returns:
A tensor of shape {height_px, width_px, 6} with the rays.
)doc");
raycasting_scene.def_static(
"create_rays_pinhole",
py::overload_cast<double, const core::Tensor&, const core::Tensor&,
const core::Tensor&, int, int>(
&RaycastingScene::CreateRaysPinhole),
"fov_deg"_a, "center"_a, "eye"_a, "up"_a, "width_px"_a,
"height_px"_a, R"doc(
Creates rays for the given camera parameters.
Args:
fov_deg (float): The horizontal field of view in degree.
center (open3d.core.Tensor): The point the camera is looking at with shape
{3}.
eye (open3d.core.Tensor): The position of the camera with shape {3}.
up (open3d.core.Tensor): The up-vector with shape {3}.
width_px (int): The width of the image in pixels.
height_px (int): The height of the image in pixels.
Returns:
A tensor of shape {height_px, width_px, 6} with the rays.
)doc");
raycasting_scene.def_property_readonly_static(
"INVALID_ID",
[](py::object /* self */) -> uint32_t {
return RaycastingScene::INVALID_ID();
},
R"doc(
The value for invalid IDs
)doc");
}
} // namespace geometry
} // namespace t
} // namespace open3d