You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An init argument is rank, i.e. the value within a downsampled pixel neighborhood to retain in the downsampled volume. rank=0 would be a minimum value downsampling, rank=-1 would be a maximum value downsampling. Maximum value would propagate too much noise, therefore we should use rank=-2 to always retain the 2nd brightest pixel.
Change livestreaming downsampling class to new rank order class
Use rank=-2
The text was updated successfully, but these errors were encountered:
Change downsampling class to new rank order based GPU processing. Sparse images will become dim and muted when doing traditional mean based downsampling. To retain sparse signals in downsampled images, rank order based downsampling can be used. This is now implemented in https://github.com/AllenNeuralDynamics/voxel/blob/develop/voxel/processes/downsample/gpu/gputools/rank_downsample_3d.py#L85-L88.
An init argument is
rank
, i.e. the value within a downsampled pixel neighborhood to retain in the downsampled volume.rank=0
would be a minimum value downsampling,rank=-1
would be a maximum value downsampling. Maximum value would propagate too much noise, therefore we should userank=-2
to always retain the 2nd brightest pixel.rank=-2
The text was updated successfully, but these errors were encountered: