Skip to content

Commit 9f2c853

Browse files
authored
Merge pull request #22 from stereolabs/isaac_sim_4.5_support
Isaac sim 4.5 support
2 parents a262152 + 97ef26b commit 9f2c853

11 files changed

+204
-133
lines changed
Binary file not shown.
Binary file not shown.

exts/sl.sensor.camera/config/extension.toml

+13-11
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11

22
[package]
33
# Semantic Versioning is used: https://semver.org/
4-
version = "2.0.1"
4+
version = "3.0.0"
55

66
# Lists people or organizations that are considered the "authors" of the package.
77
authors = ["Stereolabs"]
88

99
# The title and description fields are primarly for displaying extension info in UI
1010
title = "ZED Camera Extension"
11-
description = "Streams virtual ZED camera data to the ZED SDK. "
11+
description="Streams virtual ZED camera data to the ZED SDK. "
1212

1313
# Path (relative to the root) or content of readme markdown file for UI.
14-
readme = "docs/README.md"
14+
readme = "docs/README.md"
1515

1616
# Path (relative to the root) or content of changelog markdown file for UI.
17-
changelog = "docs/CHANGELOG.md"
17+
changelog = "docs/CHANGELOG.md"
1818

1919
# URL of the extension source repository.
20-
repository = "https://github.com/stereolabs/zed-isaac-sim"
20+
repository="https://github.com/stereolabs/zed-isaac-sim"
2121

2222
# One of categories for UI.
2323
category = "simulation"
@@ -35,21 +35,23 @@ icon = "data/icon.png"
3535
[package.target]
3636
platform = ["windows-x86_64", "linux-x86_64"]
3737
python = ["cp310"]
38-
kit = ["106.1.0"]
38+
kit = ["106.5"]
3939

4040
# Watch the .ogn files for hot reloading (only works for Python files)
4141
[fswatcher.patterns]
4242
include = ["*.ogn", "*.py"]
4343
exclude = ["Ogn*Database.py"]
4444

45+
[package.writeTarget]
46+
kit = true
47+
4548
[dependencies]
46-
"omni.kit.test" = {}
4749
"omni.graph" = {}
4850
"omni.replicator.core" = {}
49-
"omni.isaac.core_nodes" = {}
50-
"omni.isaac.core" = {}
51-
"omni.isaac.sensor" = {}
52-
51+
"isaacsim.core.nodes" = {}
52+
"isaacsim.core.api" = {}
53+
"isaacsim.sensors.camera" = {}
54+
"isaacsim.sensors.physics" = {}
5355

5456
# Main python module this extension provides, it will be publicly available as "sl.sensor.camera".
5557
[[python.module]]

exts/sl.sensor.camera/docs/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
44

5+
## [3.0.0] - 2025-03-20
6+
- Add support for Isaac Sim 4.5.0
7+
- Add support for ZED SDK 5.0.0
8+
- Updated ZED X camera resolutions to match real resolutions: HD1200, HD1080, SVGA
9+
- Release streamer on stop button press, allowing to change camera parameters between start/stop without reloading the scene
10+
511
## [2.0.1] - 2025-02-25
612
- Fix ZED Camera extension compatibility with Stereolabs ZED SDK 4.2.5
713

exts/sl.sensor.camera/sl/sensor/camera/__init__.py

-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
# Any class derived from `omni.ext.IExt` in a top level module (defined in `python.modules` of `extension.toml`) will be
66
# instantiated when the extension is enabled and `on_startup(ext_id)` will be called. Later when extension gets disabled
77
# on_shutdown() will be called.
8-
9-
108
class SlSensorCameraExtension(omni.ext.IExt):
119
# ext_id is the current extension id. It can be used with the extension manager to query additional information,
1210
# such as where this extension is located in the filesystem.

exts/sl.sensor.camera/sl/sensor/camera/nodes/SlCameraStreamer.ogn

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@
3333
},
3434
"resolution": {
3535
"type" : "token",
36-
"description": "Camera stream resolution. Can be either HD1080, HD720 or VGA",
36+
"description": "Camera stream resolution. Can be either HD1200, HD1080 or SVGA",
3737
"metadata": {
38-
"allowedTokens": ["HD1080", "HD720", "VGA"]
38+
"allowedTokens": ["HD1200", "HD1080", "SVGA"]
3939
},
40-
"default" : "HD720"
40+
"default" : "HD1200"
4141
},
4242
"streaming_port": {
4343
"type": "uint",

0 commit comments

Comments
 (0)