Last active
September 22, 2022 12:08
-
-
Save csaybar/c48245c8fe1087b4ef3de0a175a02041 to your computer and use it in GitHub Desktop.
STARCOP IRIS jsonfile
This file contains 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
{ | |
"name": "main", | |
"authentication_required": true, | |
"images": { | |
"path": { | |
"R": "{id}/input/AR.tif", | |
"G": "{id}/input/AG.tif", | |
"B": "{id}/input/AB.tif", | |
"mag1c": "{id}/input/mag1c.tif", | |
"mag1c_scaled": "{id}/input/mag1c_scaled.tif" | |
}, | |
"shape": [612, 612], | |
"metadata": "{id}/metadata.json" | |
}, | |
"segmentation": { | |
"path": "{id}/target/manual.png", | |
"mask_encoding": "rgb", | |
"mask_area": [50, 50, 562, 562], | |
"score": "f1", | |
"pending_threshold": 1, | |
"test_images": null | |
}, | |
"classes": [ | |
{ | |
"name": "Clear", | |
"description": "All clear pixels, i.e. without methane contamination.", | |
"colour": [255, 255, 255, 0], | |
"user_colour": [0, 255, 255, 70] | |
}, | |
{ | |
"name": "Contaminated", | |
"description": "All pixels with methane contamination.", | |
"colour": [255, 255, 0, 100] | |
} | |
], | |
"views": { | |
"Mag1c": { | |
"description": "Mag1c methane predictions.", | |
"type": "image", | |
"data": "$mag1c.B1", | |
"cmap": "jet" | |
}, | |
"Mag1c_scaled": { | |
"description": "Mag1c methane predictions scaled to [200-5000].", | |
"type": "image", | |
"data": "$mag1c_scaled.B1", | |
"cmap": "jet" | |
}, | |
"RGB": { | |
"description": "Normal RGB image.", | |
"type": "image", | |
"data": ["$R.B1", "$G.B1", "$B.B1"] | |
}, | |
"black": { | |
"description": "A black background to finetune results.", | |
"type": "image", | |
"data": ["$R.B1*0", "$G.B1*0", "$B.B1*0"] | |
} | |
}, | |
"view_groups": { | |
"default": ["Mag1c", "RGB", "black"] | |
} | |
} |
Author
csaybar
commented
Sep 22, 2022
•
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment