Add segmented object affine transformation module with benchmarking#9
Open
Add segmented object affine transformation module with benchmarking#9
Conversation
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
Description
franka_env.utils.image_object_affineimplementingEuclideanAffine2D,build_affine_matrix,preprocess_mask,transform_segmented_object,update_planar_robot_state, andbenchmark_affine_strategiesusing NumPy andscipy.ndimagefor warping and morphology.ndimage.map_coordinates, background hole-filling viadistance_transform_edt, and mask denoising with morphological close/open.franka_env.utilsby updating__init__.py.serl_robot_infra/tests/test_image_object_affine.pycovering object movement, robot-state coupling, and benchmark metrics.Testing
pytest -q serl_robot_infra/tests/test_image_object_affine.py, which reports3 passedafter replacing an initial OpenCV-based implementation with a SciPy-based one to avoidlibGL.so.1runtime issues.benchmark_affine_strategiesis exercised by the tests and returns the expected keys (full_frame_ms,roi_only_ms,speedup_x).Codex Task