-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathflow.yaml
More file actions
36 lines (29 loc) · 1.39 KB
/
flow.yaml
File metadata and controls
36 lines (29 loc) · 1.39 KB
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
_target_: rectified_point_flow.visualizer.FlowVisualizationCallback
save_dir: ${log_dir}
# We support the following renderers:
# - "mitsuba": Use Mitsuba for high quality ray-traced rendering.
# - "pytorch3d": Use PyTorch3D's PointRasterizer for fast rendering.
# - "none": Do not save any visualizations.
renderer: mitsuba
# Point cloud settings
center_points: false
scale_to_original_size: false
# Color settings
# We support the following colormaps:
# - "matplotlib:<name>": Use matplotlib colormap of the given name, e.g. "matplotlib:Set2"
# - "hue:<luminance>:<saturation>": Use hue-based color ring with the given luminance and saturation.
# - "shengyun": Use Shengyun's colormap defined in PyCG. We use this in the paper.
# - "default": Predefined 10 colors.
colormap: default
# Image settings
image_size: 480 # Output resolution (square image)
point_radius: 0.015 # Radius of sphere of each point
# Camera parameters
camera_dist: 4.0 # Distance from the camera to the point cloud center
camera_elev: 30.0 # Elevation angle above the horizon
camera_azim: 45.0 # Azimuth angle on the horizon plane
camera_fov: 40.0 # Field of view
# Trajectory GIF settings
save_trajectory: false # Whether to save the trajectory as a GIF animation
trajectory_gif_fps: 25 # Frames per second
trajectory_gif_pause_last_frame: 1.0 # Pause for the last frame in seconds