Page MenuHomePhabricator

Region growing 3D doesn't work on float/double images with value range 0-1
Closed, WontfixPublic

Description

Test dataset

Event Timeline

First investigation:
-Internally the seed point value is temporarily stored as an integer
-> fails for 0..1

-The upper and lower threshold are adjusted:

upper += 1
lower -= 1

-> undesired behaviour for 0..1

See QmitkAdaptiveRegionGrowingToolGUI #390, #184.

For storing the seed point value as double, following lines have to be adapted:

  • QmitkAdaptiveRegionGrowingToolGUI.h: line 210
    • change to 'double m_SeedpointValue;'
  • QmitkAdaptiveRegionGrowingToolGUI.cpp: line 156
    • change type of parameter 'val' from int to double

QmitkAdaptiveRegionGrowingToolGUI.cpp: line 413
--> The member variable 'm_CompleteData' of the resultImage generated by region grower contains null pointer.

Should be fixed for the upcoming release

kislinsk claimed this task.
kislinsk added a project: Auto-closed.
kislinsk added a subscriber: kislinsk.

Hi there! 🙂

This task was auto-closed according to our Task Lifecycle Management.
Please follow this link for more information and don't forget that you are encouraged to reasonable re-open tasks to revive them. 🚑

Best wishes,
The MITK devs

kislinsk removed kislinsk as the assignee of this task.May 26 2020, 12:05 PM
kislinsk removed a subscriber: kislinsk.