Page MenuHomePhabricator
Feed Advanced Search

Nov 16 2022

kalali triaged T29393: [mxn multi widget] Concept for individual render window synchronization as Normal priority.
Nov 16 2022, 3:46 PM · MITK
kalali closed T25604: New concept for switching between different render windows, a subtask of T25603: Combine render window manager with custom multi widget, as Invalid.
Nov 16 2022, 3:03 PM · Restricted Project, MITK
kalali closed T25604: New concept for switching between different render windows as Invalid.

This task is invalid since we moved the functionality of the render window manager to render window specific drop-down menus. More discussion about the concept will happen in T29297: [mxn multi widget] Optimize data accessibility inside render windows.

Nov 16 2022, 3:03 PM · Auto-closed, Request for Discussion, Restricted Project, MITK
kalali closed T25601: Modernize render window manager as Resolved.
Nov 16 2022, 2:59 PM · Restricted Project, MITK
kalali added a comment to T29388: [Segmentation] Loading a nifti segmentation (nii) leads to a crash.

We will add the two suggested changes as a hotfix / release patch because

  • we should definitely avoid workbench crashes
  • also old legacy segmentations / scene files will provoke the crash
Nov 16 2022, 2:28 PM · MITK
kalali added a comment to T29388: [Segmentation] Loading a nifti segmentation (nii) leads to a crash.

The seg predicate of the view is wrong. Should not be able to select the nifti at all.

Also seg in nifti form have to be converted into label image currently via context menu "convert to segmentation".

Nov 16 2022, 9:26 AM · MITK
kalali renamed T29388: [Segmentation] Loading a nifti segmentation (nii) leads to a crash from [Segmentation] Loading a nifty segmentation (nii) leads to a crash to [Segmentation] Loading a nifti segmentation (nii) leads to a crash.
Nov 16 2022, 9:24 AM · MITK
kalali added a revision to T29388: [Segmentation] Loading a nifti segmentation (nii) leads to a crash: Unknown Object (Differential Revision).
Nov 16 2022, 9:21 AM · MITK
kalali moved T29388: [Segmentation] Loading a nifti segmentation (nii) leads to a crash from Backlog to MITK Meeting on the Request for Discussion board.
Nov 16 2022, 8:40 AM · MITK
kalali moved T26959: [Segmentation] Newly created LabelSet segmentation is not displayed as "outline binary" from MITK Meeting to Backlog on the Request for Discussion board.
Nov 16 2022, 8:39 AM · MITK (v2024.06), Checklist, Request for Discussion

Nov 15 2022

kalali added a comment to T29388: [Segmentation] Loading a nifti segmentation (nii) leads to a crash.

I added a first fix to avoid crashes. More changes are required:
Inside QmitkSegmentationView::UpdateGUI() the two functions m_Controls->layersWidget->UpdateGUI() and m_Controls->labelsWidget->UpdateGUI() are called. They both require the working image to be a LabelSetImage, otherwise the GUI elements will stay deactivated. Also, since no layer is available the toolselectionboxes stay deactivated.

Nov 15 2022, 6:31 PM · MITK
kalali added a revision to T29388: [Segmentation] Loading a nifti segmentation (nii) leads to a crash: Unknown Object (Differential Revision).
Nov 15 2022, 6:27 PM · MITK
kalali added a project to T29388: [Segmentation] Loading a nifti segmentation (nii) leads to a crash: Request for Discussion.
Nov 15 2022, 5:53 PM · MITK
kalali updated subscribers of T29388: [Segmentation] Loading a nifti segmentation (nii) leads to a crash.
Nov 15 2022, 5:53 PM · MITK
kalali triaged T29388: [Segmentation] Loading a nifti segmentation (nii) leads to a crash as Unbreak Now! priority.
Nov 15 2022, 5:52 PM · MITK

Nov 11 2022

kalali added a revision to T29385: [mxn multi widget] Pixel value view does not change on crosshair selection: Unknown Object (Differential Revision).
Nov 11 2022, 6:58 PM · MITK (v2023.04)
kalali triaged T29386: [mxn multi widget] StdDisplay unnecessarily uses the crosshair manager as Normal priority.
Nov 11 2022, 5:23 PM · MITK (v2024.06)
kalali updated the task description for T29385: [mxn multi widget] Pixel value view does not change on crosshair selection.
Nov 11 2022, 11:06 AM · MITK (v2023.04)

Nov 10 2022

kalali renamed T29385: [mxn multi widget] Pixel value view does not change on crosshair selection from [mxn to [mxn multi widget] Pixel value view does not change on crosshair selection.
Nov 10 2022, 6:10 PM · MITK (v2023.04)
kalali created T29385: [mxn multi widget] Pixel value view does not change on crosshair selection.
Nov 10 2022, 6:09 PM · MITK (v2023.04)
kalali added a revision to T29383: [mxn multi widget] Crosshair does not show a gap: Unknown Object (Differential Revision).
Nov 10 2022, 6:09 PM · MITK

Nov 9 2022

kalali triaged T29383: [mxn multi widget] Crosshair does not show a gap as Normal priority.
Nov 9 2022, 7:57 PM · MITK
kalali closed T19284: Display Update with crosshair interaction (Scrolling/..) is inefficient as Resolved.

I looked into this and although I understand the problem, the issue does not really exist, as far as I can see:

  • changing the slice via scrolling will call SliceNavigationController::SelectSliceByPoint
  • calling SliceNavigationController::SelectSliceByPoint will call SliceNavigationController::SendCreatedWorldGeometryUpdate
  • calling SliceNavigationController::SendCreatedWorldGeometryUpdate will InvokeEvent(GeometryUpdateEvent(m_CreatedWorldGeometry, m_Slice->GetPos()))
  • invoking the event will lead to a call to BaseRenderer::UpdateGeometry

-> until here I agree with the task description

Nov 9 2022, 6:48 PM · MITK (v2022.10), Bugzilla
kalali updated the task description for T26543: Enum for AXIAL, SAGITTAL, CORONAL 3D/ORIGINAL/NONE is provided at many different locations.
Nov 9 2022, 9:36 AM · Breaking Change, Noteworthy, MITK

Nov 8 2022

kalali claimed T28989: [Segmentation] CanHandle functions seem to be inconsistent.
Nov 8 2022, 5:56 PM · MITK, Request for Discussion
kalali added a comment to T28989: [Segmentation] CanHandle functions seem to be inconsistent.

mitk::Tool::CanHandle:

In T28989, @kalali wrote:

The basic mitk::Tool restricts the data that can be handled to reference-data - working-data pairs, where

  • the reference-data is valid

Why is it not required for the working-data to be valid? This is a requirement for all following CanHandle-functions (working data needs to be an mitk::LabelSetImage or an mitk::Image) that override the basic function, so why not put it in the basic class function?

Nov 8 2022, 5:56 PM · MITK, Request for Discussion
kalali added a revision to T28989: [Segmentation] CanHandle functions seem to be inconsistent: Unknown Object (Differential Revision).
Nov 8 2022, 5:56 PM · MITK, Request for Discussion
kalali updated the task description for T28989: [Segmentation] CanHandle functions seem to be inconsistent.
Nov 8 2022, 5:25 PM · MITK, Request for Discussion
kalali updated the task description for T28989: [Segmentation] CanHandle functions seem to be inconsistent.
Nov 8 2022, 5:21 PM · MITK, Request for Discussion
kalali updated the task description for T28989: [Segmentation] CanHandle functions seem to be inconsistent.
Nov 8 2022, 5:21 PM · MITK, Request for Discussion
kalali edited projects for T28989: [Segmentation] CanHandle functions seem to be inconsistent, added: MITK; removed MITK (v2022.10).
Nov 8 2022, 5:11 PM · MITK, Request for Discussion
kalali updated the task description for T28989: [Segmentation] CanHandle functions seem to be inconsistent.
Nov 8 2022, 5:11 PM · MITK, Request for Discussion
kalali updated subscribers of T27413: MITK Workflow Q&A.

@kompan and I created this guide some time ago. We can reuse it, extend it and put the content into the Phabricator wiki: https://hub.dkfz.de/f/7173768

Nov 8 2022, 4:42 PM · MITK, Request for Discussion
kalali updated the task description for T27413: MITK Workflow Q&A.
Nov 8 2022, 4:42 PM · MITK, Request for Discussion
kalali edited projects for T29140: [Selection widget] Optional selection can not be removed if a fitting node is always found, added: MITK, Next Milestone, Request for Discussion; removed MITK (v2022.10).
Nov 8 2022, 4:27 PM · MITK (v2024.06), Request for Discussion
kalali renamed T27413: MITK Workflow Q&A from MITK 2020 Workflow Q&A to MITK Workflow Q&A.
Nov 8 2022, 4:27 PM · MITK, Request for Discussion
kalali edited projects for T29313: Add a Test to check if the GrowCut algorithm produces a different output, added: MITK; removed MITK (v2022.10).
Nov 8 2022, 4:12 PM · MITK (v2024.06)
kalali added a revision to T26543: Enum for AXIAL, SAGITTAL, CORONAL 3D/ORIGINAL/NONE is provided at many different locations: Unknown Object (Differential Revision).
Nov 8 2022, 12:48 PM · Breaking Change, Noteworthy, MITK
kalali claimed T26543: Enum for AXIAL, SAGITTAL, CORONAL 3D/ORIGINAL/NONE is provided at many different locations.
Nov 8 2022, 12:48 PM · Breaking Change, Noteworthy, MITK
kalali added a comment to T26543: Enum for AXIAL, SAGITTAL, CORONAL 3D/ORIGINAL/NONE is provided at many different locations.

It seems as if there is a mapping between the SliceNavigationController::ViewDirection and PlaneGeometry::PlaneOrientation, which makes it unnecessary to keep the direction / orientation in both classes.

Nov 8 2022, 12:47 PM · Breaking Change, Noteworthy, MITK

Nov 7 2022

kalali edited projects for T26959: [Segmentation] Newly created LabelSet segmentation is not displayed as "outline binary", added: MITK, Next Milestone; removed MITK (v2022.10).
Nov 7 2022, 7:12 PM · MITK (v2024.06), Checklist, Request for Discussion
kalali edited projects for T29163: [XNAT] Opening XNAT session fails, added: MITK; removed MITK (v2022.10).
Nov 7 2022, 7:10 PM · MITK (v2024.06)
kalali edited projects for T25057: Check IContextMenuActions and extension points, added: MITK; removed MITK (v2022.10).
Nov 7 2022, 7:10 PM · MITK (v2024.06)
kalali closed T29220: StatusBar info is dependent on the pointer position, not on the crosshair / mouse click as Resolved.

All related tasks have been resolved so we can close this task as well. The "issue" still remains but we are exploiting it on purpose now using the changes made in {D686}, to show pixel information dynamically (position under the mouse cursor) in the status bar.
With the changes made in {D749} we now have the possibility to explicitly show image pixel information for the crosshair position in the newly introduced pixel value view.

Nov 7 2022, 3:06 PM · Request for Discussion, MITK
kalali triaged T29382: [Jenkins] Differential-clients do not clean old ui-files as Normal priority.
Nov 7 2022, 2:28 PM · CI, Next Milestone
kalali added a revision to T28752: [Segmentation] Move Segmentation utilities widgets to SegmentationUI module: Restricted Differential Revision.
Nov 7 2022, 2:01 PM · MITK (v2023.04)
kalali created T29381: Move Multilabel classes to Core module.
Nov 7 2022, 1:36 PM · MITK, Request for Discussion
kalali added a comment to T29025: Preference service (access) based on cpp microservices.

I stumbled upon this while working on T28752: [Segmentation] Move Segmentation utilities widgets to SegmentationUI module. I would like to tackle this issue and already started looking into this. Do you already have an idea how to approach it or do we want to discuss it next week?

I already implemented most of it as core service a while ago but then was interrupted by something else. As far as I remember it is nearly complete except for the equivalent of BlueBerry's preference storage. I will look for the branch the upcoming week and push it. Never assigned the task, sorry.

Nov 7 2022, 11:38 AM · MITK (v2023.04), Breaking Change

Nov 4 2022

kalali added a project to T29027: Move NodeSelectionWidgets to QtWidgets module: Next Milestone.
Nov 4 2022, 6:07 PM · MITK (v2023.04)
kalali added a comment to T29027: Move NodeSelectionWidgets to QtWidgets module.

Required for T28752: [Segmentation] Move Segmentation utilities widgets to SegmentationUI module / T27133: [Segmentation] Is QmitkDataSelectionWidget needed anymore?.

Nov 4 2022, 6:07 PM · MITK (v2023.04)
kalali added a comment to T29025: Preference service (access) based on cpp microservices.

I stumbled upon this while working on T28752: [Segmentation] Move Segmentation utilities widgets to SegmentationUI module. I would like to tackle this issue and already started looking into this. Do you already have an idea how to approach it or do we want to discuss it next week?

Nov 4 2022, 6:06 PM · MITK (v2023.04), Breaking Change

Nov 2 2022

kalali closed T29367: [Segmentation] New render window specific reinit warning is confusing as Resolved.

The warning was reverted for the StdMultiWidget. More changes (problems were already mentioned here in this task) will be further implemented using T29335: [Segmentation] Show interactive warning for uninitialized render window geometry.

Nov 2 2022, 12:08 PM · MITK (v2022.10)

Oct 26 2022

kalali added a comment to T29375: Cursor offset in 2D tools with Qt 5.15 on macOS.

Could you explicitly "reinit" the reference node and see if that changes anything?

Oct 26 2022, 2:58 PM · MITK (v2023.04)
kalali committed rMITKacd85df8ff0d: Remove new reinit overlay for StdMultiWidget (authored by kalali).
Remove new reinit overlay for StdMultiWidget
Oct 26 2022, 2:23 PM
kalali committed rMITK06ed0391f50c: Remove unnecessary function overriding (authored by kalali).
Remove unnecessary function overriding
Oct 26 2022, 2:23 PM
kalali committed rMITK5c26d8bfc5e3: Remove automatic state definition (authored by kalali).
Remove automatic state definition
Oct 26 2022, 2:23 PM
kalali committed rMITKd7a2545323de: Add geometry comparison if coupled render windows are found (authored by kalali).
Add geometry comparison if coupled render windows are found
Oct 26 2022, 2:23 PM
kalali committed rMITK2fb5f239bbfa: Add virtual function for subclass (authored by kalali).
Add virtual function for subclass
Oct 26 2022, 2:23 PM
kalali committed rMITK30b5bc42bc6c: React only if coupled render windows are found (authored by kalali).
React only if coupled render windows are found
Oct 26 2022, 2:23 PM
kalali committed rMITKf0c2ee26ca76: Provide function to check for coupled render windows (authored by kalali).
Provide function to check for coupled render windows
Oct 26 2022, 2:23 PM

Oct 21 2022

kalali reopened T28500: Multilabel Segmentation Utilities do not work for multilabel segmentations as "Open".

I guess the second issue is not yet fixed and will be covered in T29369: [Segmentation Utilities] Handle / select different labels independently.

Oct 21 2022, 9:17 AM · MITK (v2024.06), Missing Info
kalali reopened T28500: Multilabel Segmentation Utilities do not work for multilabel segmentations, a subtask of T28936: [Segmentation] Remove utilities redundancy with MultiLabelSegmentation, as Open.
Oct 21 2022, 9:17 AM · MITK (v2022.10), Breaking Change

Oct 20 2022

kalali closed T29349: [SEG] Improve/correct button names of live wire/lasso tool. as Resolved.
Oct 20 2022, 8:21 PM · Cleared, Restricted Project, Checklist, MITK (v2022.10)
kalali committed rMITK21b8d4f2265f: Improve and correct tool GUI strings (authored by kalali).
Improve and correct tool GUI strings
Oct 20 2022, 8:21 PM
kalali committed rMITKc9307f68b879: Rename variables and elements to better show their purpose (authored by kalali).
Rename variables and elements to better show their purpose
Oct 20 2022, 8:21 PM
kalali committed rMITKf0fbdbe3bfe7: Use correct spelling of "subtract" (authored by kalali).
Use correct spelling of "subtract"
Oct 20 2022, 8:21 PM
kalali closed T28793: [Segmentation][Multilabel][Options] Changing only decimation rate has no visible effect in "Create smoothed polygon model" as Resolved.
Oct 20 2022, 7:36 PM · Cleared, MITK (v2022.10), Checklist
kalali committed rMITK50199e8ec2b0: Remove preferences for smoothed surface creation (authored by kalali).
Remove preferences for smoothed surface creation
Oct 20 2022, 7:31 PM
kalali committed rMITK30294d5b57e7: Use default values for the property preferences (authored by kalali).
Use default values for the property preferences
Oct 20 2022, 7:31 PM
kalali committed rMITK31008a2e2ee3: Remove decimation parameter from the preference page (authored by kalali).
Remove decimation parameter from the preference page
Oct 20 2022, 7:31 PM
kalali committed rMITK1aec60f62812: Remove smoothing parameters from the preference page (authored by kalali).
Remove smoothing parameters from the preference page
Oct 20 2022, 7:31 PM
kalali removed a revision from T28936: [Segmentation] Remove utilities redundancy with MultiLabelSegmentation: Unknown Object (Differential Revision).
Oct 20 2022, 6:41 PM · MITK (v2022.10), Breaking Change
kalali added a revision to T27809: [Segmentation Utilities] "Labels" tabs in operations of Utilities view is empty: Unknown Object (Differential Revision).
Oct 20 2022, 6:40 PM · MITK (v2023.12), Request for Discussion
kalali added a comment to T27809: [Segmentation Utilities] "Labels" tabs in operations of Utilities view is empty.

If D744 is landed, we can close this task. The issue will be addressed here: T29369: [Segmentation Utilities] Handle / select different labels independently.

Oct 20 2022, 6:40 PM · MITK (v2023.12), Request for Discussion
kalali triaged T29369: [Segmentation Utilities] Handle / select different labels independently as Normal priority.
Oct 20 2022, 6:38 PM · MITK (v2024.06)
kalali added a comment to T28135: [MultiLabel Segmentation] Utilities view cannot handle non-binary multilabel segmentations.

In general with {D744} being landed the multilabel utilities do not exist anymore so this task is obsolete.
We could discuss how to handle multiple labels for the single segmentation utilities, though, but I opened a new task for this: T29369: [Segmentation Utilities] Handle / select different labels independently.

Oct 20 2022, 6:32 PM · MITK (v2023.04)
kalali added a revision to T28135: [MultiLabel Segmentation] Utilities view cannot handle non-binary multilabel segmentations: Unknown Object (Differential Revision).
Oct 20 2022, 6:29 PM · MITK (v2023.04)
kalali moved T27810: [Multilabel Segmentation] Inconsistencies and unclear functionality in operations of Utilities view from Segmentation to Cycle on the MITK (v2022.10) board.
Oct 20 2022, 6:04 PM · MITK (v2022.10), Cleared, Restricted Project
kalali added a comment to T27810: [Multilabel Segmentation] Inconsistencies and unclear functionality in operations of Utilities view.

The way the masking is done inside the QmitkImageMaskingWidget of the segmentation-plugin is different but it works as expected and is easy to understand.
As written in the task description the QmitkImageMaskingWidget of the multilabelsegmentation-plugin provided different options, but they were not used so I think we are safe here.

Oct 20 2022, 6:04 PM · MITK (v2022.10), Cleared, Restricted Project
kalali claimed T27810: [Multilabel Segmentation] Inconsistencies and unclear functionality in operations of Utilities view.
Oct 20 2022, 5:09 PM · MITK (v2022.10), Cleared, Restricted Project
kalali updated subscribers of T28752: [Segmentation] Move Segmentation utilities widgets to SegmentationUI module.

With {D744} being landed we can finally move the widgets to the SegmentationUI module.

Oct 20 2022, 12:42 PM · MITK (v2023.04)
kalali added a comment to T27810: [Multilabel Segmentation] Inconsistencies and unclear functionality in operations of Utilities view.

With {D744 } being landed we need to check if this also applies for the single remaining Segmentation Utilities view.

Oct 20 2022, 12:39 PM · MITK (v2022.10), Cleared, Restricted Project
kalali added a comment to T27809: [Segmentation Utilities] "Labels" tabs in operations of Utilities view is empty.

With {D744} we only have a single Segmentation Utilities view. Labels operation should be added to this and then the issue of this task needs to be considered.

Oct 20 2022, 12:37 PM · MITK (v2023.12), Request for Discussion
kalali renamed T27809: [Segmentation Utilities] "Labels" tabs in operations of Utilities view is empty from [Multilabel Segmentation] "Labels" tabs in operations of Utilities view is empty to [Segmentation Utilities] "Labels" tabs in operations of Utilities view is empty.
Oct 20 2022, 12:36 PM · MITK (v2023.12), Request for Discussion

Oct 19 2022

kalali added a revision to T29367: [Segmentation] New render window specific reinit warning is confusing: Unknown Object (Differential Revision).
Oct 19 2022, 6:35 PM · MITK (v2022.10)
kalali claimed T29352: Segmentation Options Checklist - "Create Smoothed Polygon" Seems Not to Work.

I added a task in the "smoothed polygon" section:
Task

extend one segmentation to multiple neighboring slices to create a “3D” segmentation

Result

The segmentation mask is rendered on multiple neighboring slices.

Oct 19 2022, 2:37 PM · MITK (v2024.06), Cleared, Checklist
kalali added a comment to T28793: [Segmentation][Multilabel][Options] Changing only decimation rate has no visible effect in "Create smoothed polygon model".

I removed the „Smoothed surface creation“ Preference section from the Segmentation - Options checklist.

Oct 19 2022, 2:36 PM · Cleared, MITK (v2022.10), Checklist
kalali edited projects for T28793: [Segmentation][Multilabel][Options] Changing only decimation rate has no visible effect in "Create smoothed polygon model", added: Cleared; removed Missing Info.
Oct 19 2022, 2:34 PM · Cleared, MITK (v2022.10), Checklist
kalali renamed T28793: [Segmentation][Multilabel][Options] Changing only decimation rate has no visible effect in "Create smoothed polygon model" from [Segmentation][Multilabel][Options] Changing only decimation rate has no visible effect in "Create smothed polygon model" to [Segmentation][Multilabel][Options] Changing only decimation rate has no visible effect in "Create smoothed polygon model".
Oct 19 2022, 2:34 PM · Cleared, MITK (v2022.10), Checklist
kalali added a comment to T29352: Segmentation Options Checklist - "Create Smoothed Polygon" Seems Not to Work.

We discussed this and we decided to remove the options from the preferences completely. This will be done in the mentioned task T28793: [Segmentation][Multilabel][Options] Changing only decimation rate has no visible effect in "Create smoothed polygon model".

Oct 19 2022, 12:46 PM · MITK (v2024.06), Cleared, Checklist
kalali added a revision to T28793: [Segmentation][Multilabel][Options] Changing only decimation rate has no visible effect in "Create smoothed polygon model": Restricted Differential Revision.
Oct 19 2022, 12:45 PM · Cleared, MITK (v2022.10), Checklist
kalali added a comment to T28793: [Segmentation][Multilabel][Options] Changing only decimation rate has no visible effect in "Create smoothed polygon model".

We discussed this and we decided to remove the options from the preferences completely. That means, that

  • the user cannot change the smoothing hint / value
  • the user cannot change the decimation rate
  • the checklists don't need to ask for changing these values
  • the smoothing will use the default values (set inside QmitkCreatePolygonModelAction::Run)
    • "smoothing hint" = true (will always use image spacing as hint)
    • "smoothing value" = 1.0
    • "decimation rate" = 0.5
    • "closing ratio" was not used at all
    • note that different default values are given in ShowSegmentationAsSurface::Initialize (and other functions of this class), but are overwritten / reset by the polygon action.
Oct 19 2022, 12:06 PM · Cleared, MITK (v2022.10), Checklist
kalali added a comment to T29286: Rework segmentation checklist for new live wire and lasso tool.

I modified the 2D Segmentation checklist accordingly, taking also T29349: [SEG] Improve/correct button names of live wire/lasso tool. into account:

  • UI element strings were updated
  • section for "Lasso" tool was added
Oct 19 2022, 9:18 AM · MITK (v2022.10)

Oct 18 2022

kalali added a comment to T28803: [Properties] Fine-tune selection widget.

Maybe I can clarify a few things:

  1. I think it is important to also show helper nodes. In the basic simple case this leads to only showing the widget planes but in other scenarios helper nodes might be important to inspect. However, we could think about adding a checkbox inside a node-selection dialog to show / hide helper nodes, if the list of nodes is too long in scenarios with many helper nodes.
Oct 18 2022, 8:56 PM · MITK, Checklist
kalali claimed T29286: Rework segmentation checklist for new live wire and lasso tool.
Oct 18 2022, 8:26 PM · MITK (v2022.10)
kalali moved T25057: Check IContextMenuActions and extension points from mxn MultiWidget to Cycle on the MITK (v2022.10) board.
Oct 18 2022, 6:49 PM · MITK (v2024.06)
kalali claimed T25057: Check IContextMenuActions and extension points.

While I was looking into T29352: Segmentation Options Checklist - "Create Smoothed Polygon" Seems Not to Work I remembered this task. A small differential for this task has been added. The purpose is to clean the interface for those classes that don't need the extra functions / properties and provide an additional interface solely (for now) for the QmitkCreatePolygonModelAction.

Oct 18 2022, 6:49 PM · MITK (v2024.06)
kalali added a revision to T25057: Check IContextMenuActions and extension points: Unknown Object (Differential Revision).
Oct 18 2022, 6:49 PM · MITK (v2024.06)
kalali moved T29352: Segmentation Options Checklist - "Create Smoothed Polygon" Seems Not to Work from Backlog to Cycle on the MITK (v2022.10) board.
Oct 18 2022, 5:46 PM · MITK (v2024.06), Cleared, Checklist
kalali moved T28793: [Segmentation][Multilabel][Options] Changing only decimation rate has no visible effect in "Create smoothed polygon model" from Segmentation to Cycle on the MITK (v2022.10) board.
Oct 18 2022, 5:45 PM · Cleared, MITK (v2022.10), Checklist