Skip to content
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

50 add brdf look up table to the material data #18

Merged
merged 2 commits into from
Oct 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion examples/example_material.xomp
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@
"density": 2699.0,
"source": "internet: https://en.wikipedia.org/wiki/Aluminium"
},
"electromagneticPropertiesUri": "example_material_emp.xompt"
"electromagneticPropertiesUri": "example_material_emp.xompt",
"brdfUris": [
"example_material_camera_brdf.xompt",
"example_material_lidar_brdf.xompt",
"example_material_radar_brdf.xompt"
]
}
}
8 changes: 8 additions & 0 deletions schemas/material_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,14 @@
"description": "Relative path to a property lookup table file with electromagnetic material properties.",
"pattern": ".*_emp\\.xompt$"
},
"brdfUris": {
"type": "array",
"description": "Relative paths to one or multiple property lookup table files with wavelength-dependent bidirectional reflectance distribution functions.",
"items": {
"type": "string",
"pattern": ".*_brdf\\.xompt$"
}
},
"retroreflectivityData": {
"type": "object",
"description": "Information about the retro-reflective properties of the material in the visible light spectrum.",
Expand Down