From 7801679a2e6e38a0691cb5ba32685703a1436cb1 Mon Sep 17 00:00:00 2001 From: Philipp Schlegel Date: Mon, 6 May 2024 07:56:42 +0200 Subject: [PATCH] mesh_neuron: allow passing `use_mirror` and `threads` to get_voxels --- fafbseg/flywire/meshes.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fafbseg/flywire/meshes.py b/fafbseg/flywire/meshes.py index ed80560..25ed167 100644 --- a/fafbseg/flywire/meshes.py +++ b/fafbseg/flywire/meshes.py @@ -362,7 +362,8 @@ def mesh_neuron(x, mip=2, thin=False, bounds=None, progress=True, *, dataset=Non # Get voxels for this neuron vxl = get_voxels( - x, mip=mip, thin=thin, bounds=bounds, progress=progress, dataset=dataset + x, mip=mip, thin=thin, bounds=bounds, progress=progress, dataset=dataset, + use_mirror=False, threads=10 ) vol = get_cloudvolume(dataset)