-
Notifications
You must be signed in to change notification settings - Fork 61
Add ability to estimate intrinsics from frame #154
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
torbsorb
wants to merge
1
commit into
ros1-sdk-2.15.0
Choose a base branch
from
MISC-2025-08-27-backport-estimated-intrinsics-to-ros1-sdk-2.15.0
base: ros1-sdk-2.15.0
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,91 @@ | ||
| #!/usr/bin/env python | ||
|
|
||
| import rospy | ||
| import rospkg | ||
| from zivid_camera.srv import * | ||
| from sensor_msgs.msg import CameraInfo | ||
|
|
||
|
|
||
| class Sample: | ||
| def __init__(self): | ||
| rospy.init_node("sample_capture_with_settings_from_yml_py", anonymous=True) | ||
|
|
||
| rospy.loginfo("Starting sample_capture_with_settings_from_yml.py") | ||
|
|
||
| rospy.wait_for_service("/zivid_camera/capture", 30.0) | ||
|
|
||
| self.capture_service = rospy.ServiceProxy("/zivid_camera/capture", Capture) | ||
|
|
||
| rospy.Subscriber( | ||
| "/zivid_camera/color/camera_info", CameraInfo, self.on_color_camera_info | ||
| ) | ||
| rospy.Subscriber( | ||
| "/zivid_camera/depth/camera_info", CameraInfo, self.on_depth_camera_info | ||
| ) | ||
|
|
||
| samples_path = rospkg.RosPack().get_path("zivid_samples") | ||
| settings_path = samples_path + "/settings/camera_settings.yml" | ||
| rospy.loginfo("Loading settings from %s", settings_path) | ||
| self.load_settings_from_file_service = rospy.ServiceProxy( | ||
| "/zivid_camera/load_settings_from_file", LoadSettingsFromFile | ||
| ) | ||
| self.load_settings_from_file_service(settings_path) | ||
|
|
||
| def capture(self): | ||
| rospy.loginfo("Calling capture service") | ||
| self.capture_service() | ||
|
|
||
| def on_color_camera_info(self, msg: CameraInfo): | ||
| rospy.loginfo( | ||
| f"""\ | ||
| Received color camera info: | ||
| width: {msg.width} | ||
| height: {msg.height} | ||
| distortion_model: {msg.distortion_model} | ||
| D: [{msg.D}] | ||
| K: [{msg.K}] | ||
| R: [{msg.R}] | ||
| P: [{msg.P}] | ||
| """ | ||
| ) | ||
|
|
||
| def on_depth_camera_info(self, msg: CameraInfo): | ||
| rospy.loginfo( | ||
| f"""\ | ||
| Received depth camera info: | ||
| width: {msg.width} | ||
| height: {msg.height} | ||
| distortion_model: {msg.distortion_model} | ||
| D: [{msg.D}] | ||
| K: [{msg.K}] | ||
| R: [{msg.R}] | ||
| P: [{msg.P}] | ||
| """ | ||
| ) | ||
|
|
||
| def set_intrinsics_source(self, value: str): | ||
| param_name = ( | ||
| "/zivid_camera/zivid_camera/intrinsics_source" # Node-private parameter | ||
| ) | ||
| rospy.loginfo(f"Setting intrinsics source to: {value}") | ||
|
|
||
| rospy.set_param(param_name, value) | ||
|
|
||
| read_value = rospy.get_param(param_name, None) | ||
| if read_value is not None: | ||
| if read_value != value: | ||
| rospy.logwarn(f"Expected '{value}' but got '{read_value}'") | ||
| else: | ||
| rospy.loginfo(f"Param set successfully, value: {read_value}") | ||
| else: | ||
| rospy.logwarn("Failed to read back param") | ||
|
|
||
|
|
||
| if __name__ == "__main__": | ||
| s = Sample() | ||
| s.set_intrinsics_source("camera") | ||
| s.capture() | ||
| s.set_intrinsics_source("frame") | ||
| s.capture() | ||
|
|
||
| rospy.spin() |
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This code doesn't take into account that the settings could have a different 2D vs 3D resolution. On the ROS2 branch, I made a function to check first if 2D settings are defined, and if so uses that instead of the 3D settings: https://github.com/zivid/zivid-ros/pull/153/files