gofigure2 / GoFigure2

http://gofigure2.org
8 stars 4 forks source link

Change threshold settings #55

Closed krm15 closed 13 years ago

krm15 commented 13 years ago

Change it from 2 digits to 3 digits (0-255). Currently, it is for 2 digits.

NicolasRannou commented 13 years ago

in the trace editing widget, watershed segmentation

arnaudgelas commented 13 years ago

threshold values must be in between

NicolasRannou commented 13 years ago

fixed but might overflow: itk::NumericTraits< ImageType::PixelType >::min() and itk::NumericTraits< ImageType::PixelType >::max() might not be a solution since each image(time, channel) will have different values. using the image type should be enough (i.e. if unsigned char: max= 255)