fzi-aura 1.0.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. fzi_aura-1.0.1/LICENSE +202 -0
  2. fzi_aura-1.0.1/MANIFEST.in +4 -0
  3. fzi_aura-1.0.1/PKG-INFO +462 -0
  4. fzi_aura-1.0.1/README.md +220 -0
  5. fzi_aura-1.0.1/notebooks/00_quickstart.ipynb +409 -0
  6. fzi_aura-1.0.1/notebooks/01_sensor_data_and_pcd_fields.ipynb +382 -0
  7. fzi_aura-1.0.1/notebooks/02_annotations_calibration_projection.ipynb +926 -0
  8. fzi_aura-1.0.1/notebooks/03_context_vehicle_state_and_trajectories.ipynb +1121 -0
  9. fzi_aura-1.0.1/pyproject.toml +68 -0
  10. fzi_aura-1.0.1/setup.cfg +4 -0
  11. fzi_aura-1.0.1/src/fzi_aura/__init__.py +49 -0
  12. fzi_aura-1.0.1/src/fzi_aura/availability.py +79 -0
  13. fzi_aura-1.0.1/src/fzi_aura/boxes.py +157 -0
  14. fzi_aura-1.0.1/src/fzi_aura/calibration.py +198 -0
  15. fzi_aura-1.0.1/src/fzi_aura/cli/__init__.py +0 -0
  16. fzi_aura-1.0.1/src/fzi_aura/cli/pcd_schema_stats.py +34 -0
  17. fzi_aura-1.0.1/src/fzi_aura/cli/stats.py +23 -0
  18. fzi_aura-1.0.1/src/fzi_aura/cli/validate.py +726 -0
  19. fzi_aura-1.0.1/src/fzi_aura/contract.py +25 -0
  20. fzi_aura-1.0.1/src/fzi_aura/dataset.py +234 -0
  21. fzi_aura-1.0.1/src/fzi_aura/download.py +992 -0
  22. fzi_aura-1.0.1/src/fzi_aura/errors.py +47 -0
  23. fzi_aura-1.0.1/src/fzi_aura/frame.py +603 -0
  24. fzi_aura-1.0.1/src/fzi_aura/frame_dataset.py +286 -0
  25. fzi_aura-1.0.1/src/fzi_aura/geometry.py +116 -0
  26. fzi_aura-1.0.1/src/fzi_aura/index.py +33 -0
  27. fzi_aura-1.0.1/src/fzi_aura/io.py +68 -0
  28. fzi_aura-1.0.1/src/fzi_aura/pointcloud.py +228 -0
  29. fzi_aura-1.0.1/src/fzi_aura/scene.py +956 -0
  30. fzi_aura-1.0.1/src/fzi_aura/semantics.py +98 -0
  31. fzi_aura-1.0.1/src/fzi_aura/splits.py +67 -0
  32. fzi_aura-1.0.1/src/fzi_aura.egg-info/SOURCES.txt +31 -0
  33. fzi_aura-1.0.1/tests/test_core.py +1325 -0
  34. fzi_aura-1.0.1/tests/test_download.py +483 -0
fzi_aura-1.0.1/LICENSE ADDED
@@ -0,0 +1,202 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright [yyyy] [name of copyright owner]
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
@@ -0,0 +1,4 @@
1
+ # Executed notebooks are versioned documentation. Include them in the source
2
+ # distribution; package discovery keeps them out of the installable wheel.
3
+ recursive-include notebooks *.ipynb
4
+ prune src/fzi_aura.egg-info
@@ -0,0 +1,462 @@
1
+ Metadata-Version: 2.4
2
+ Name: fzi-aura
3
+ Version: 1.0.1
4
+ Summary: Python SDK for the FZI-AURA dataset.
5
+ Author-email: Rupert Polley <polley@fzi.de>
6
+ Maintainer-email: Rupert Polley <polley@fzi.de>
7
+ License:
8
+ Apache License
9
+ Version 2.0, January 2004
10
+ http://www.apache.org/licenses/
11
+
12
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
13
+
14
+ 1. Definitions.
15
+
16
+ "License" shall mean the terms and conditions for use, reproduction,
17
+ and distribution as defined by Sections 1 through 9 of this document.
18
+
19
+ "Licensor" shall mean the copyright owner or entity authorized by
20
+ the copyright owner that is granting the License.
21
+
22
+ "Legal Entity" shall mean the union of the acting entity and all
23
+ other entities that control, are controlled by, or are under common
24
+ control with that entity. For the purposes of this definition,
25
+ "control" means (i) the power, direct or indirect, to cause the
26
+ direction or management of such entity, whether by contract or
27
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
28
+ outstanding shares, or (iii) beneficial ownership of such entity.
29
+
30
+ "You" (or "Your") shall mean an individual or Legal Entity
31
+ exercising permissions granted by this License.
32
+
33
+ "Source" form shall mean the preferred form for making modifications,
34
+ including but not limited to software source code, documentation
35
+ source, and configuration files.
36
+
37
+ "Object" form shall mean any form resulting from mechanical
38
+ transformation or translation of a Source form, including but
39
+ not limited to compiled object code, generated documentation,
40
+ and conversions to other media types.
41
+
42
+ "Work" shall mean the work of authorship, whether in Source or
43
+ Object form, made available under the License, as indicated by a
44
+ copyright notice that is included in or attached to the work
45
+ (an example is provided in the Appendix below).
46
+
47
+ "Derivative Works" shall mean any work, whether in Source or Object
48
+ form, that is based on (or derived from) the Work and for which the
49
+ editorial revisions, annotations, elaborations, or other modifications
50
+ represent, as a whole, an original work of authorship. For the purposes
51
+ of this License, Derivative Works shall not include works that remain
52
+ separable from, or merely link (or bind by name) to the interfaces of,
53
+ the Work and Derivative Works thereof.
54
+
55
+ "Contribution" shall mean any work of authorship, including
56
+ the original version of the Work and any modifications or additions
57
+ to that Work or Derivative Works thereof, that is intentionally
58
+ submitted to Licensor for inclusion in the Work by the copyright owner
59
+ or by an individual or Legal Entity authorized to submit on behalf of
60
+ the copyright owner. For the purposes of this definition, "submitted"
61
+ means any form of electronic, verbal, or written communication sent
62
+ to the Licensor or its representatives, including but not limited to
63
+ communication on electronic mailing lists, source code control systems,
64
+ and issue tracking systems that are managed by, or on behalf of, the
65
+ Licensor for the purpose of discussing and improving the Work, but
66
+ excluding communication that is conspicuously marked or otherwise
67
+ designated in writing by the copyright owner as "Not a Contribution."
68
+
69
+ "Contributor" shall mean Licensor and any individual or Legal Entity
70
+ on behalf of whom a Contribution has been received by Licensor and
71
+ subsequently incorporated within the Work.
72
+
73
+ 2. Grant of Copyright License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ copyright license to reproduce, prepare Derivative Works of,
77
+ publicly display, publicly perform, sublicense, and distribute the
78
+ Work and such Derivative Works in Source or Object form.
79
+
80
+ 3. Grant of Patent License. Subject to the terms and conditions of
81
+ this License, each Contributor hereby grants to You a perpetual,
82
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
83
+ (except as stated in this section) patent license to make, have made,
84
+ use, offer to sell, sell, import, and otherwise transfer the Work,
85
+ where such license applies only to those patent claims licensable
86
+ by such Contributor that are necessarily infringed by their
87
+ Contribution(s) alone or by combination of their Contribution(s)
88
+ with the Work to which such Contribution(s) was submitted. If You
89
+ institute patent litigation against any entity (including a
90
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
91
+ or a Contribution incorporated within the Work constitutes direct
92
+ or contributory patent infringement, then any patent licenses
93
+ granted to You under this License for that Work shall terminate
94
+ as of the date such litigation is filed.
95
+
96
+ 4. Redistribution. You may reproduce and distribute copies of the
97
+ Work or Derivative Works thereof in any medium, with or without
98
+ modifications, and in Source or Object form, provided that You
99
+ meet the following conditions:
100
+
101
+ (a) You must give any other recipients of the Work or
102
+ Derivative Works a copy of this License; and
103
+
104
+ (b) You must cause any modified files to carry prominent notices
105
+ stating that You changed the files; and
106
+
107
+ (c) You must retain, in the Source form of any Derivative Works
108
+ that You distribute, all copyright, patent, trademark, and
109
+ attribution notices from the Source form of the Work,
110
+ excluding those notices that do not pertain to any part of
111
+ the Derivative Works; and
112
+
113
+ (d) If the Work includes a "NOTICE" text file as part of its
114
+ distribution, then any Derivative Works that You distribute must
115
+ include a readable copy of the attribution notices contained
116
+ within such NOTICE file, excluding those notices that do not
117
+ pertain to any part of the Derivative Works, in at least one
118
+ of the following places: within a NOTICE text file distributed
119
+ as part of the Derivative Works; within the Source form or
120
+ documentation, if provided along with the Derivative Works; or,
121
+ within a display generated by the Derivative Works, if and
122
+ wherever such third-party notices normally appear. The contents
123
+ of the NOTICE file are for informational purposes only and
124
+ do not modify the License. You may add Your own attribution
125
+ notices within Derivative Works that You distribute, alongside
126
+ or as an addendum to the NOTICE text from the Work, provided
127
+ that such additional attribution notices cannot be construed
128
+ as modifying the License.
129
+
130
+ You may add Your own copyright statement to Your modifications and
131
+ may provide additional or different license terms and conditions
132
+ for use, reproduction, or distribution of Your modifications, or
133
+ for any such Derivative Works as a whole, provided Your use,
134
+ reproduction, and distribution of the Work otherwise complies with
135
+ the conditions stated in this License.
136
+
137
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
138
+ any Contribution intentionally submitted for inclusion in the Work
139
+ by You to the Licensor shall be under the terms and conditions of
140
+ this License, without any additional terms or conditions.
141
+ Notwithstanding the above, nothing herein shall supersede or modify
142
+ the terms of any separate license agreement you may have executed
143
+ with Licensor regarding such Contributions.
144
+
145
+ 6. Trademarks. This License does not grant permission to use the trade
146
+ names, trademarks, service marks, or product names of the Licensor,
147
+ except as required for reasonable and customary use in describing the
148
+ origin of the Work and reproducing the content of the NOTICE file.
149
+
150
+ 7. Disclaimer of Warranty. Unless required by applicable law or
151
+ agreed to in writing, Licensor provides the Work (and each
152
+ Contributor provides its Contributions) on an "AS IS" BASIS,
153
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
154
+ implied, including, without limitation, any warranties or conditions
155
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
156
+ PARTICULAR PURPOSE. You are solely responsible for determining the
157
+ appropriateness of using or redistributing the Work and assume any
158
+ risks associated with Your exercise of permissions under this License.
159
+
160
+ 8. Limitation of Liability. In no event and under no legal theory,
161
+ whether in tort (including negligence), contract, or otherwise,
162
+ unless required by applicable law (such as deliberate and grossly
163
+ negligent acts) or agreed to in writing, shall any Contributor be
164
+ liable to You for damages, including any direct, indirect, special,
165
+ incidental, or consequential damages of any character arising as a
166
+ result of this License or out of the use or inability to use the
167
+ Work (including but not limited to damages for loss of goodwill,
168
+ work stoppage, computer failure or malfunction, or any and all
169
+ other commercial damages or losses), even if such Contributor
170
+ has been advised of the possibility of such damages.
171
+
172
+ 9. Accepting Warranty or Additional Liability. While redistributing
173
+ the Work or Derivative Works thereof, You may choose to offer,
174
+ and charge a fee for, acceptance of support, warranty, indemnity,
175
+ or other liability obligations and/or rights consistent with this
176
+ License. However, in accepting such obligations, You may act only
177
+ on Your own behalf and on Your sole responsibility, not on behalf
178
+ of any other Contributor, and only if You agree to indemnify,
179
+ defend, and hold each Contributor harmless for any liability
180
+ incurred by, or claims asserted against, such Contributor by reason
181
+ of your accepting any such warranty or additional liability.
182
+
183
+ END OF TERMS AND CONDITIONS
184
+
185
+ APPENDIX: How to apply the Apache License to your work.
186
+
187
+ To apply the Apache License to your work, attach the following
188
+ boilerplate notice, with the fields enclosed by brackets "[]"
189
+ replaced with your own identifying information. (Don't include
190
+ the brackets!) The text should be enclosed in the appropriate
191
+ comment syntax for the file format. We also recommend that a
192
+ file or class name and description of purpose be included on the
193
+ same "printed page" as the copyright notice for easier
194
+ identification within third-party archives.
195
+
196
+ Copyright [yyyy] [name of copyright owner]
197
+
198
+ Licensed under the Apache License, Version 2.0 (the "License");
199
+ you may not use this file except in compliance with the License.
200
+ You may obtain a copy of the License at
201
+
202
+ http://www.apache.org/licenses/LICENSE-2.0
203
+
204
+ Unless required by applicable law or agreed to in writing, software
205
+ distributed under the License is distributed on an "AS IS" BASIS,
206
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
207
+ See the License for the specific language governing permissions and
208
+ limitations under the License.
209
+
210
+ Project-URL: Repository, https://github.com/fzi-forschungszentrum-informatik/fzi-aura-sdk
211
+ Project-URL: Issues, https://github.com/fzi-forschungszentrum-informatik/fzi-aura-sdk/issues
212
+ Keywords: autonomous-driving,dataset,lidar,radar,camera,fzi-aura
213
+ Classifier: Development Status :: 4 - Beta
214
+ Classifier: Intended Audience :: Science/Research
215
+ Classifier: License :: OSI Approved :: Apache Software License
216
+ Classifier: Programming Language :: Python :: 3
217
+ Classifier: Programming Language :: Python :: 3.8
218
+ Classifier: Programming Language :: Python :: 3.9
219
+ Classifier: Programming Language :: Python :: 3.10
220
+ Classifier: Programming Language :: Python :: 3.11
221
+ Classifier: Programming Language :: Python :: 3.12
222
+ Classifier: Programming Language :: Python :: 3.13
223
+ Classifier: Programming Language :: Python :: 3.14
224
+ Requires-Python: >=3.8
225
+ Description-Content-Type: text/markdown
226
+ License-File: LICENSE
227
+ Requires-Dist: numpy>=1.22
228
+ Requires-Dist: pandas
229
+ Requires-Dist: pyarrow
230
+ Requires-Dist: Pillow
231
+ Provides-Extra: dev
232
+ Requires-Dist: pytest; extra == "dev"
233
+ Requires-Dist: ruff; extra == "dev"
234
+ Provides-Extra: vis
235
+ Requires-Dist: matplotlib; extra == "vis"
236
+ Provides-Extra: download
237
+ Requires-Dist: huggingface_hub>=0.24; extra == "download"
238
+ Provides-Extra: mount
239
+ Requires-Dist: huggingface_hub>=0.24; extra == "mount"
240
+ Requires-Dist: ratarmount; extra == "mount"
241
+ Dynamic: license-file
242
+
243
+ <h1 align="center">
244
+ <img src="https://raw.githubusercontent.com/fzi-forschungszentrum-informatik/fzi-aura-sdk/main/assets/FZI_Logo.svg" style="height: 1em; vertical-align: middle;">
245
+ FZI-AURA SDK
246
+ </h1>
247
+
248
+ <div align="center">
249
+ Python tools for downloading, validating, and working with the
250
+ FZI-AURA dataset.
251
+ </div>
252
+
253
+ <div align="center">
254
+ <a href="https://huggingface.co/datasets/fzi-forschungszentrum-informatik/FZI-AURA">Dataset</a>
255
+ · <a href="https://github.com/fzi-forschungszentrum-informatik/fzi-aura-sdk/blob/main/notebooks/00_quickstart.ipynb">Quickstart notebook</a>
256
+ · <a href="https://github.com/fzi-forschungszentrum-informatik/fzi-aura-sdk/issues">Issues</a>
257
+ </div>
258
+
259
+ ## Compatibility
260
+
261
+ FZI-AURA SDK 1.0.x supports:
262
+
263
+ - FZI-AURA dataset release v1.X
264
+ - FZI-AURA data format v1.2.1
265
+ - Python 3.8+
266
+
267
+ ## Installation
268
+
269
+ Install the SDK from PyPI with:
270
+
271
+ ```bash
272
+ python -m pip install fzi-aura
273
+ ```
274
+
275
+ The downloader is an optional dependency:
276
+
277
+ ```bash
278
+ python -m pip install "fzi-aura[download]"
279
+ ```
280
+
281
+ Visualization packages used by the notebooks can be installed with:
282
+
283
+ ```bash
284
+ python -m pip install "fzi-aura[vis]"
285
+ ```
286
+
287
+ For development from a repository checkout, install the development,
288
+ downloader, and notebook visualization dependencies together:
289
+
290
+ ```bash
291
+ python -m pip install -e ".[dev,download,vis]"
292
+ ```
293
+
294
+ ## Download FZI-AURA
295
+
296
+ Accept the dataset terms on
297
+ [Hugging Face](https://huggingface.co/datasets/fzi-forschungszentrum-informatik/FZI-AURA)
298
+ and sign in:
299
+
300
+ ```bash
301
+ hf auth login
302
+ ```
303
+
304
+ Download and extract the published keyframe data:
305
+
306
+ ```bash
307
+ fzi-aura-download /data/fzi-aura
308
+ ```
309
+
310
+ The downloader can select splits, scenes, and data layers. Use `--dry-run` to
311
+ inspect a selection before downloading it:
312
+
313
+ ```bash
314
+ fzi-aura-download /data/fzi-aura \
315
+ --splits train \
316
+ --layers camera_keyframes,lidar_raw_keyframes \
317
+ --dry-run
318
+ ```
319
+
320
+ Data is published in complete scene blocks, so a scene selection may include
321
+ neighboring scenes from the same block. Re-running the downloader picks up newly
322
+ published blocks and keeps data that is already present.
323
+
324
+ Set the dataset root for the examples and notebooks:
325
+
326
+ ```bash
327
+ export FZI_AURA_ROOT=/data/fzi-aura
328
+ ```
329
+
330
+ See [Downloading FZI-AURA](https://github.com/fzi-forschungszentrum-informatik/fzi-aura-sdk/blob/main/docs/downloading.md) for layer selection, archive
331
+ retention, verification, parallel extraction, and archive mounting.
332
+
333
+ ## Quickstart
334
+
335
+ ```python
336
+ import os
337
+
338
+ from fzi_aura import FZIAURADataset
339
+
340
+ dataset = FZIAURADataset(os.environ["FZI_AURA_ROOT"], split="train")
341
+ scene = dataset[0]
342
+ frame = scene[0]
343
+
344
+ print(scene.scene_id, len(scene))
345
+ print(frame.timestamp_ns)
346
+ print(frame.available_cameras())
347
+ print(frame.available_lidars())
348
+ ```
349
+
350
+ `FZIAURADataset` provides scene-level access. A scene contains lazy frame
351
+ objects, and sensor data is read when a `load_*` method is called.
352
+
353
+ ```text
354
+ FZIAURADataset
355
+ └── FZIAURAScene
356
+ └── FZIAURAFrame
357
+ ```
358
+
359
+ Use `dataset.as_frames()` when you need a flat frame index across a split:
360
+
361
+ ```python
362
+ frames = dataset.as_frames(sample_filter="any_label")
363
+ print(len(frames))
364
+ ```
365
+
366
+ ## Working with the dataset
367
+
368
+ Frame filters make it easy to select samples with the data required by a task.
369
+ For example, select a frame with a front camera and motion-compensated LiDAR:
370
+
371
+ ```python
372
+ frames = scene.frames(
373
+ sample_filter="sensor_available",
374
+ require_cameras=["front_medium"],
375
+ require_lidars=["top_left"],
376
+ )
377
+
378
+ frame = frames[0]
379
+ image = frame.load_camera("front_medium")
380
+ cloud = frame.load_lidar("top_left", stage="motion_compensated")
381
+ ```
382
+
383
+ Load 3D boxes from an annotated frame:
384
+
385
+ ```python
386
+ box_frame = scene.frames(sample_filter="boxes_3d")[0]
387
+ boxes = box_frame.load_boxes(frame="base_link")
388
+ ```
389
+
390
+ Load point-aligned semantic and instance labels:
391
+
392
+ ```python
393
+ semantic_frame = scene.frames(
394
+ sample_filter="semantic_lidar",
395
+ require_lidars=["top_left"],
396
+ require_semantics_for=["top_left"],
397
+ )[0]
398
+
399
+ cloud, labels = semantic_frame.load_lidar_semantic_pair(
400
+ "top_left", stage="motion_compensated"
401
+ )
402
+ ```
403
+
404
+ ## Data conventions
405
+
406
+ - Sensor data and 3D boxes can be transformed through the ROS `base_link`
407
+ frame: X points forward, Y left, and Z up.
408
+ - Raw and motion-compensated LiDAR may contain different point fields. Inspect
409
+ `cloud.field_names` before selecting fields.
410
+ - Semantic labels follow LiDAR point order. Use
411
+ `load_lidar_semantic_pair(...)` to load and check the pair together.
412
+ - The sample stream runs at 10 Hz and annotations are provided on 2 Hz
413
+ keyframes. An annotated frame may contain zero boxes.
414
+ - Object IDs identify tracks within one scene.
415
+
416
+ The notebooks cover calibration, coordinate transforms, camera projection, ego
417
+ poses, and temporal trajectories with complete examples.
418
+
419
+ See [FZI-AURA data format](https://github.com/fzi-forschungszentrum-informatik/fzi-aura-sdk/blob/main/docs/data-format.md) for the public dataset layout,
420
+ sample index, sensor files, annotations, calibration, and ego data.
421
+ Transform directions, temporal alignment, and projection conventions are
422
+ covered in [Coordinate systems and transforms](https://github.com/fzi-forschungszentrum-informatik/fzi-aura-sdk/blob/main/docs/coordinate-systems.md).
423
+
424
+ ## Validation
425
+
426
+ Validate an extracted or selectively downloaded dataset with:
427
+
428
+ ```bash
429
+ fzi-aura-validate "$FZI_AURA_ROOT"
430
+ ```
431
+
432
+ The validator checks the dataset structure, metadata, installed sensor files,
433
+ annotations, calibration, and point-label alignment.
434
+
435
+ ## Examples and notebooks
436
+
437
+ - [`examples/quickstart.py`](https://github.com/fzi-forschungszentrum-informatik/fzi-aura-sdk/blob/main/examples/quickstart.py): compact SDK example
438
+ - [`notebooks/00_quickstart.ipynb`](https://github.com/fzi-forschungszentrum-informatik/fzi-aura-sdk/blob/main/notebooks/00_quickstart.ipynb): dataset,
439
+ scene, and frame access
440
+ - [`notebooks/01_sensor_data_and_pcd_fields.ipynb`](https://github.com/fzi-forschungszentrum-informatik/fzi-aura-sdk/blob/main/notebooks/01_sensor_data_and_pcd_fields.ipynb): camera, LiDAR, radar, and PCD fields
441
+ - [`notebooks/02_annotations_calibration_projection.ipynb`](https://github.com/fzi-forschungszentrum-informatik/fzi-aura-sdk/blob/main/notebooks/02_annotations_calibration_projection.ipynb):
442
+ boxes, semantic labels, calibration, projection, and point-cloud fusion
443
+ - [`notebooks/03_context_vehicle_state_and_trajectories.ipynb`](https://github.com/fzi-forschungszentrum-informatik/fzi-aura-sdk/blob/main/notebooks/03_context_vehicle_state_and_trajectories.ipynb):
444
+ context, vehicle state, ego motion, and object trajectories
445
+
446
+ ## Contributing and support
447
+
448
+ Use [GitHub Issues](https://github.com/fzi-forschungszentrum-informatik/fzi-aura-sdk/issues)
449
+ for bugs and usage questions. Pull requests are welcome.
450
+
451
+ The release process is documented in
452
+ [docs/releasing.md](https://github.com/fzi-forschungszentrum-informatik/fzi-aura-sdk/blob/main/docs/releasing.md).
453
+
454
+ ## License
455
+
456
+ The SDK is licensed under [Apache License 2.0](https://github.com/fzi-forschungszentrum-informatik/fzi-aura-sdk/blob/main/LICENSE). The FZI-AURA dataset is distributed separately and is subject to its own
457
+ license. See the [FZI-AURA dataset page](https://huggingface.co/datasets/fzi-forschungszentrum-informatik/FZI-AURA#license-and-third-party-data)
458
+ for dataset licensing information.
459
+
460
+ ## Citation
461
+
462
+ Please use the citation provided in the [FZI-AURA dataset card](https://huggingface.co/datasets/fzi-forschungszentrum-informatik/FZI-AURA/blob/main/README.md#citation).