{
"data_type": "uint8",
"mesh": "mesh_mip_0_err_40",
"num_channels": 1,
"scales": [
{
"chunk_sizes": [
[
256,
256,
256
]
],
"encoding": "compresso",
"key": "1600_1600_1600",
"resolution": [
1600,
1600,
1600
],
"size": [
1000,
1000,
1200
],
"voxel_offset": [
0,
0,
0
]
},
{
"chunk_sizes": [
[
256,
256,
256
]
],
"encoding": "compresso",
"key": "3200_3200_3200",
"resolution": [
3200,
3200,
3200
],
"size": [
500,
500,
600
],
"voxel_offset": [
0,
0,
0
]
},
{
"chunk_sizes": [
[
256,
256,
256
]
],
"encoding": "compresso",
"key": "6400_6400_6400",
"resolution": [
6400,
6400,
6400
],
"size": [
250,
250,
300
],
"voxel_offset": [
0,
0,
0
]
},
{
"chunk_sizes": [
[
256,
256,
256
]
],
"encoding": "compresso",
"key": "12800_12800_12800",
"resolution": [
12800,
12800,
12800
],
"size": [
125,
125,
150
],
"voxel_offset": [
0,
0,
0
]
},
{
"chunk_sizes": [
[
256,
256,
256
]
],
"encoding": "compresso",
"key": "25600_25600_25600",
"resolution": [
25600,
25600,
25600
],
"size": [
63,
63,
75
],
"voxel_offset": [
0,
0,
0
]
}
],
"type": "segmentation"
}
Hi, I am creating a precomputed segmentation with
cloudvolumeandigneous, and generating the mesh on the fly. The mesh directory is not empty, and neuroglancer can detect the "mesh" entry in the info file, but it does not render. (Unfortunately, the gs bucket is private, I cannot share the link directly. Instead, I provide the MWE below with a spherical phantom.)Phantom creation script
`cloudvolume` & `igneous` script
Info file
{ "data_type": "uint8", "mesh": "mesh_mip_0_err_40", "num_channels": 1, "scales": [ { "chunk_sizes": [ [ 256, 256, 256 ] ], "encoding": "compresso", "key": "1600_1600_1600", "resolution": [ 1600, 1600, 1600 ], "size": [ 1000, 1000, 1200 ], "voxel_offset": [ 0, 0, 0 ] }, { "chunk_sizes": [ [ 256, 256, 256 ] ], "encoding": "compresso", "key": "3200_3200_3200", "resolution": [ 3200, 3200, 3200 ], "size": [ 500, 500, 600 ], "voxel_offset": [ 0, 0, 0 ] }, { "chunk_sizes": [ [ 256, 256, 256 ] ], "encoding": "compresso", "key": "6400_6400_6400", "resolution": [ 6400, 6400, 6400 ], "size": [ 250, 250, 300 ], "voxel_offset": [ 0, 0, 0 ] }, { "chunk_sizes": [ [ 256, 256, 256 ] ], "encoding": "compresso", "key": "12800_12800_12800", "resolution": [ 12800, 12800, 12800 ], "size": [ 125, 125, 150 ], "voxel_offset": [ 0, 0, 0 ] }, { "chunk_sizes": [ [ 256, 256, 256 ] ], "encoding": "compresso", "key": "25600_25600_25600", "resolution": [ 25600, 25600, 25600 ], "size": [ 63, 63, 75 ], "voxel_offset": [ 0, 0, 0 ] } ], "type": "segmentation" }