Skip to content

Commit

Permalink
start to replace term resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
knollengewaechs committed Oct 2, 2024
1 parent 32b7cb4 commit c4be79f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/data_formats.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ A WEBKNOSSOS dataset can contain several `color` and `segmentation` layers which

### Magnification Steps and Downsampling

To enable zooming within huge datasets in WEBKNOSSOS, dataset layers usually contain multiple magnification steps (also called mipmaps or image pyramids or resolutions).
`1` is the magnification step with the finest resolution, i.e. the original data.
To enable zooming within huge datasets in WEBKNOSSOS, dataset layers usually contain multiple magnification steps (also called mags, mipmaps, image pyramids or resolutions).
`1` is the magnification step with the finest magnification, i.e. the original data.
`2` is downsampled by a factor of two in all dimensions and therefore only is an eighth of the file size of the original data.
Downsampling is done in power-of-two steps: `1, 2, 4, 8, 16, 32, 64, …`

Expand Down
2 changes: 1 addition & 1 deletion docs/neuroglancer_precomputed.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ WEBKNOSSOS expects the following file structure for Neuroglancer Precomputed dat
```
my_dataset.precomputed # One root folder per dataset
├─ info # Dataset [metadata in JSON format](https://github.com/google/neuroglancer/blob/master/src/neuroglancer/datasource/precomputed/volume.md#info-json-file-specification)
├─ scale_1 # One subdirectory with the same name as each scale/magnification "key" value specified in the info file. Each subdirectory contains a chunked representation of the data for a single resolution.
├─ scale_1 # One subdirectory with the same name as each scale/magnification "key" value specified in the info file. Each subdirectory contains a chunked representation of the data for a single mag.
│  ├─ <chunks>
│  └─ ...
├─ ...
Expand Down

0 comments on commit c4be79f

Please sign in to comment.