forked from DLR-RM/BlenderProc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
19b5104
commit 306541b
Showing
11 changed files
with
20 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
from blenderproc.python.filter.Filter import by_attr, by_cp, one_by_cp, one_by_attr, all_with_type, by_attr_in_interval, by_attr_outside_interval | ||
from blenderproc.python.filter.Filter import by_attr, by_cp, one_by_cp, one_by_attr, all_with_type, \ | ||
by_attr_in_interval, by_attr_outside_interval |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
from blenderproc.python.lighting.SuncgLighting import light_suncg_scene | ||
from blenderproc.python.lighting.SurfaceLighting import light_surface | ||
from blenderproc.python.lighting.SurfaceLighting import light_surface |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
from blenderproc.python.utility.MathUtility import build_transformation_mat, change_coordinate_frame_of_point, change_source_coordinate_frame_of_transformation_matrix, change_target_coordinate_frame_of_transformation_matrix | ||
from blenderproc.python.utility.MathUtility import build_transformation_mat, change_coordinate_frame_of_point, \ | ||
change_source_coordinate_frame_of_transformation_matrix, change_target_coordinate_frame_of_transformation_matrix |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
from blenderproc.python.postprocessing.PostProcessingUtility import dist2depth, oil_paint_filter, remove_segmap_noise, trim_redundant_channels, depth2dist | ||
from blenderproc.python.postprocessing.PostProcessingUtility import dist2depth, oil_paint_filter, \ | ||
remove_segmap_noise, trim_redundant_channels, depth2dist | ||
from blenderproc.python.postprocessing.StereoGlobalMatching import stereo_global_matching | ||
from blenderproc.python.camera.LensDistortionUtility import apply_lens_distortion |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
|
||
from blenderproc.python.renderer.RendererUtility import set_denoiser, set_light_bounces, \ | ||
set_cpu_threads, toggle_stereo, set_simplify_subdivision_render, set_noise_threshold, \ | ||
set_max_amount_of_samples, enable_distance_output, enable_depth_output, enable_normals_output, enable_diffuse_color_output,\ | ||
map_file_format_to_file_ending, render, set_output_format, enable_motion_blur, set_world_background, set_render_devices, enable_experimental_features | ||
set_max_amount_of_samples, enable_distance_output, enable_depth_output, enable_normals_output, \ | ||
enable_diffuse_color_output, map_file_format_to_file_ending, render, set_output_format, enable_motion_blur, \ | ||
set_world_background, set_render_devices, enable_experimental_features | ||
from blenderproc.python.renderer.SegMapRendererUtility import render_segmap | ||
from blenderproc.python.renderer.FlowRendererUtility import render_optical_flow | ||
from blenderproc.python.renderer.NOCSRendererUtility import render_nocs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
from blenderproc.python.utility.Utility import resolve_path, num_frames, resolve_resource, set_keyframe_render_interval, reset_keyframes, UndoAfterExecution, BlockStopWatch | ||
from blenderproc.python.utility.Utility import resolve_path, num_frames, resolve_resource, \ | ||
set_keyframe_render_interval, reset_keyframes, UndoAfterExecution, BlockStopWatch | ||
from blenderproc.python.utility.LabelIdMapping import LabelIdMapping | ||
from blenderproc.python.utility.PatternUtility import generate_random_pattern_img |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from blenderproc.python.writer.GifWriterUtility import write_gif_animation | ||
from blenderproc.python.writer.BopWriterUtility import write_bop | ||
from blenderproc.python.writer.CocoWriterUtility import write_coco_annotations | ||
from blenderproc.python.writer.WriterUtility import write_hdf5 | ||
from blenderproc.python.writer.WriterUtility import write_hdf5 |