Note
Go to the end to download the full example code
Selecting multiple objects#
Here we show how to select objects in the 3D world. In this example all objects to be picked are part of a single actor.
FURY likes to bundle objects in a few actors to reduce code and increase speed. Nonetheless the method works for multiple actors too.
The difference with the picking tutorial is that here we will be able to select more than one object. In addition we can select interactively many vertices or faces.
In summary, we will create an actor with thousands of cubes and then interactively we will be moving a rectangular box by hovering the mouse and making transparent everything that is behind that box.
import numpy as np
import fury
Adding many cubes of different sizes and colors
num_cubes = 50000
centers = 10000 * (np.random.rand(num_cubes, 3) - 0.5)
colors = np.random.rand(num_cubes, 4)
colors[:, 3] = 1.0
radii = 100 * np.random.rand(num_cubes) + 0.1
Keep track of total number of triangle faces Note that every quad of each cube has 2 triangles and each cube has 6 quads in total.
Build scene and add an actor with many objects.
scene = fury.window.Scene()
Build the actor containing all the cubes
Access the memory of the vertices of all the cubes
vertices = fury.utils.vertices_from_actor(cube_actor)
num_vertices = vertices.shape[0]
num_objects = centers.shape[0]
Access the memory of the colors of all the cubes
vcolors = fury.utils.colors_from_actor(cube_actor, "colors")
/opt/homebrew/Caskroom/miniforge/base/envs/py39/lib/python3.9/site-packages/sphinx_gallery/gen_rst.py:722: UserWarning: We'll no longer accept the way you call the colors_from_actor function in future versions of FURY.
Here's how to call the Function colors_from_actor: colors_from_actor(actor_value, array_name='value', as_vtk='value')
exec(self.code, self.fake_main.__dict__)
Create a rectangular 2d box as a texture
Create the Selection Manager
selm = fury.pick.SelectionManager(select="faces")
Tell Selection Manager to avoid selecting specific actors
selm.selectable_off(texa)
Let’s make the callback which will be called when we hover the mouse
def hover_callback(_obj, _event):
event_pos = selm.event_position(showm.iren)
# updates rectangular box around mouse
texa.SetPosition(event_pos[0] - 200 // 2, event_pos[1] - 100 // 2)
# defines selection region and returns information from selected objects
info = selm.select(event_pos, showm.scene, (200 // 2, 100 // 2))
for node in info.keys():
if info[node]["face"] is not None:
if info[node]["actor"] is cube_actor:
for face_index in info[node]["face"]:
# generates an object_index to help with coloring
# by dividing by the number of faces of each cube (6 * 2)
object_index = face_index // 12
sec = int(num_vertices / num_objects)
color_change = np.array([150, 0, 0, 255], dtype="uint8")
vcolors[object_index * sec : object_index * sec + sec] = (
color_change
)
fury.utils.update_actor(cube_actor)
showm.render()
Make the window appear
showm = fury.window.ShowManager(
scene, size=(1024, 768), order_transparent=True, reset_camera=False
)
/opt/homebrew/Caskroom/miniforge/base/envs/py39/lib/python3.9/site-packages/sphinx_gallery/gen_rst.py:722: UserWarning: We'll no longer accept the way you call the __init__ function in future versions of FURY.
Here's how to call the Function __init__: __init__(self_value, scene='value', title='value', size='value', png_magnify='value', reset_camera='value', order_transparent='value', interactor_style='value', stereo='value', multi_samples='value', max_peels='value', occlusion_ratio='value')
exec(self.code, self.fake_main.__dict__)
Bind the callback to the actor
showm.add_iren_callback(hover_callback)
Change interactive to True to start interacting with the scene
interactive = False
if interactive:
showm.start()
Save the current framebuffer in a PNG file
fury.window.record(showm.scene, size=(1024, 768), out_path="viz_selection.png")
/opt/homebrew/Caskroom/miniforge/base/envs/py39/lib/python3.9/site-packages/sphinx_gallery/gen_rst.py:722: UserWarning: We'll no longer accept the way you call the record function in future versions of FURY.
Here's how to call the Function record: record(scene='value', cam_pos='value', cam_focal='value', cam_view='value', out_path='value', path_numbering='value', n_frames='value', az_ang='value', magnification='value', size='value', reset_camera='value', screen_clip='value', stereo='value', verbose='value')
exec(self.code, self.fake_main.__dict__)
Total running time of the script: (0 minutes 1.410 seconds)