banc_voxdims
returns the image voxel dimensions which
are normally used to scale between raw and nm coordinates.
Usage
banc_voxdims(url = choose_banc(set = FALSE)[["fafbseg.sampleurl"]])
banc_nm2raw(x, vd = banc_voxdims())
banc_raw2nm(x, vd = banc_voxdims())
Arguments
- url
Optional neuroglancer URL containing voxel size. Defaults to
getOption("fafbseg.sampleurl")
as set bychoose_banc
.- x
3D coordinates in any form compatible with
xyzmatrix
- vd
The voxel dimensions in nm. Expert use only. Normally found automatically.
Examples
banc_voxdims()
#> Warning: Multiple segmentation layers. Choosing first!
#> x y z
#> 4 4 45
#> attr(,"units")
#> [1] "nm"
banc_raw2nm(c(159144, 22192, 3560))
#> X Y Z
#> [1,] 636576 88768 160200
banc_raw2nm('159144 22192 3560')
#> X Y Z
#> [1,] 636576 88768 160200
if (FALSE) { # \dontrun{
banc_nm2raw(clipr::read_clip())
} # }