Page MenuHomePhabricator
Feed Advanced Search

Aug 2 2016

graser added projects to T12876: Get/SetDirection missing for Geometry3D: MITK, Bugzilla.
Aug 2 2016, 9:56 AM · Bugzilla, MITK
graser added a comment to T12822: Make PointListWidget usable without MultiWidget.

PointListWidget can now be used without calling "SetMultiWidget" and does not crash!

Aug 2 2016, 9:56 AM · Bugzilla, MITK
graser added a comment to T12822: Make PointListWidget usable without MultiWidget.

[a90405]: Merge branch 'bug-12822-pointlistwidget'

Merged commits:

2012-08-08 16:00:57 Bastian Graser [d4bc2b]
PointSetWidget can now be used without StdMultiWidget. Instead call SetSnc to set the slicenavigationcontroller which will be used for crosshair centering if a point is selected from list.

Aug 2 2016, 9:56 AM · Bugzilla, MITK
graser added projects to T12822: Make PointListWidget usable without MultiWidget: MITK, Bugzilla.
Aug 2 2016, 9:56 AM · Bugzilla, MITK
graser added a comment to T12634: Typo in mitkSlicesRotator.

Not sure what is correct.
will take care of this with a different geometry rotation bug
T12634

Aug 2 2016, 9:55 AM · Bugzilla, MITK
graser added projects to T12634: Typo in mitkSlicesRotator: MITK, Bugzilla.
Aug 2 2016, 9:55 AM · Bugzilla, MITK
graser added a comment to T12634: Typo in mitkSlicesRotator.

not quite sure if that fix is really correct...
need more testing...

Aug 2 2016, 9:55 AM · Bugzilla, MITK
graser added a comment to T12634: Typo in mitkSlicesRotator.

bug is fixed, waiting for core flag

Aug 2 2016, 9:55 AM · Bugzilla, MITK
graser added a comment to T12408: Image clone method sets wrong geometry....

What is the status?
Can the bug be closed?

Aug 2 2016, 9:55 AM · Bugzilla, MITK
graser added a comment to T12222: ExtApp crashes on closing after right click on level window.

only mac

Aug 2 2016, 9:55 AM · MITK (2012-09), Bugzilla
graser added a comment to T12195: Save / Load Project takes too long.

correction: MITK scene file Loading/Saving takes over 5 minutes .. MUCH MUCH longer than doing it separatly.

Aug 2 2016, 9:54 AM · MITK (2013-03), Bugzilla
graser added a comment to T12195: Save / Load Project takes too long.

MITK Scene files are archives. Maybe it takes so long because of a "extremly high" compression rate.

Aug 2 2016, 9:54 AM · MITK (2013-03), Bugzilla
graser added a comment to T12195: Save / Load Project takes too long.

Need to examine Load function. Maybe basedata is casted in all available basedata-derived classes, to see which one does not fail. This might take a long time.

Aug 2 2016, 9:54 AM · MITK (2013-03), Bugzilla
graser added a comment to T12190: 2D Interpolation is disabling automatically.

[63d25e]: Merge branch 'bug-12190-interpolationDisable'

Merged commits:

2012-06-13 15:11:43 Bastian Graser [1df1f6]
After pressing "accept" for one slice in the 2D interpolation, the interpolation will NOT be changed to diasable

Aug 2 2016, 9:54 AM · Bugzilla, MITK
graser added projects to T12190: 2D Interpolation is disabling automatically: MITK, Bugzilla.
Aug 2 2016, 9:54 AM · Bugzilla, MITK
graser added projects to T12195: Save / Load Project takes too long: MITK, Bugzilla.
Aug 2 2016, 9:54 AM · MITK (2013-03), Bugzilla
graser added a comment to T12038: Image statistics are not shown on a threshold based segmentation..

The Histogram widget is initialized as "non visible".

Aug 2 2016, 9:54 AM · Bugzilla, MITK
graser added a comment to T12038: Image statistics are not shown on a threshold based segmentation..

It's a VTK Bug

Aug 2 2016, 9:54 AM · Bugzilla, MITK
graser added a comment to T12038: Image statistics are not shown on a threshold based segmentation..

Re-opened..
found a solution:

Aug 2 2016, 9:54 AM · Bugzilla, MITK
graser added a comment to T12038: Image statistics are not shown on a threshold based segmentation..

Works all for me.

Aug 2 2016, 9:54 AM · Bugzilla, MITK
graser added a comment to T12038: Image statistics are not shown on a threshold based segmentation..

Markus said, its ok. Lets discuss it together.
I compiled vtk and mitk with the flag off .. on the first sight everthing works fine

Aug 2 2016, 9:54 AM · Bugzilla, MITK
graser added a comment to T12036: Segmentation crash when creating very small contours with activated 3D interpolation.

Cant reproduce. Propably fixed by some other changes

Aug 2 2016, 9:54 AM · Bugzilla, MITK
graser added a comment to T11953: Restructure MITK concept documentation.

I would put "Geometry" out of data concept and together with the rendering concept in one chapter.

Aug 2 2016, 9:54 AM · Bugzilla, MITK
graser added a comment to T11948: ComputeBoundingGeometry3D grid wrong (world geometry calculation).

Markus is currently rewriting the ImageMapper. See T8165.

Aug 2 2016, 9:54 AM · Auto-closed, Bugzilla, MITK
graser added projects to T11948: ComputeBoundingGeometry3D grid wrong (world geometry calculation): MITK, Bugzilla.
Aug 2 2016, 9:54 AM · Auto-closed, Bugzilla, MITK
graser added a comment to T11948: ComputeBoundingGeometry3D grid wrong (world geometry calculation).

Ivo agrees, that the current behavior is wrong and that Matt's proposal is correct. The Problem might be in the Mapper.

Aug 2 2016, 9:54 AM · Auto-closed, Bugzilla, MITK
graser added a comment to T11948: ComputeBoundingGeometry3D grid wrong (world geometry calculation).

we found out that the reason for this behavior lies in
Mitk::ImageVtkMapper2D::GenerateDataForRenderer(..)
 
Here the “reslicer”, which is resampling the images, is creating shifted results. The shift is only noticeable if the images are really really small (like in your case).
 
Reslicer is taking an input image with its geometry and another desired geometry. Then it “resamples” the image, so it fits to the new geometry. The new, desired geometry is the world geometry, the smallest geometry, which contains all existing geometries. It is created by taking the bounds of the largest image (the 3x3 image with spacing 2,2 = world bounds are going from 0 to 6). The spacing is the lowest existing spacing (the spacing of the 5x5 image is 1,1.. this is taken).
 
So the world geometry has the spacing 1,1 and 6 pixels in y and x direction. Reslicer is now trying to resample the image with 5 pixels into an image with 6 pixels. Here it encounters a problem… visible in the pixel shift.

Aug 2 2016, 9:54 AM · Auto-closed, Bugzilla, MITK
graser added a comment to F835: testimages.zip.

testimages

Aug 2 2016, 9:54 AM
graser added projects to T11938: Segmentation on 2D Images: MITK, Bugzilla.
Aug 2 2016, 9:53 AM · Bugzilla, MITK
graser added a comment to F833: test_5_x_5.nii.

2d image

Aug 2 2016, 9:53 AM
graser added projects to T11922: Vtk Errors when having mitk::Image of dimensions 1,1,1: MITK, Bugzilla.
Aug 2 2016, 9:53 AM · Bugzilla, MITK
graser added a comment to T11821: Certain colors are not supported for images.

Markus, could u comment on this?

Aug 2 2016, 9:53 AM · Bugzilla, MITK
graser added projects to T11821: Certain colors are not supported for images: MITK, Bugzilla.
Aug 2 2016, 9:53 AM · Bugzilla, MITK
graser added a comment to T11821: Certain colors are not supported for images.

RGB (170, 170, 255) does not work as well

Aug 2 2016, 9:53 AM · Bugzilla, MITK
graser added a comment to T11810: Pointset clone method is copying references.

[a4cb22]: Merge branch 'bug-11810-psClone'

Merged commits:

2012-04-30 11:46:09 Bastian Graser [7060ff]
forgot pointset.cpp changes

Aug 2 2016, 9:53 AM · Bugzilla, MITK
graser added projects to T11810: Pointset clone method is copying references: MITK, Bugzilla.
Aug 2 2016, 9:53 AM · Bugzilla, MITK
graser added projects to T11777: Mousover Renderwindow hides all other windows of ExtApp: MITK, Bugzilla.
Aug 2 2016, 9:53 AM · Bugzilla, MITK
graser added a comment to T11777: Mousover Renderwindow hides all other windows of ExtApp.

[41bceb]: Merge branch 'bug-11777-mouseOverBug'

Merged commits:

2012-05-02 16:19:00 Bastian Graser [d9ccb9]
Threshold GUI Dialog is now having a parent. This way, it can be a modal (stays on top) dialog within the MainApplication.

Aug 2 2016, 9:53 AM · Bugzilla, MITK
graser added a comment to T11777: Mousover Renderwindow hides all other windows of ExtApp.

There are a number of Dialogs in the MainApplication.

Aug 2 2016, 9:53 AM · Bugzilla, MITK
graser added a comment to T11676: Provide a filter for combining set of 3D Volumes to a 4D Image.

If the 3D images have all the same geometrie, this is not very complicated. Here some code that should almost work:

Aug 2 2016, 9:53 AM · Bugzilla, MITK
graser added a comment to T11600: Uninitialized images cause crash.

Created a new fix with Marco:

Aug 2 2016, 9:53 AM · Bugzilla, MITK
graser added a comment to T11600: Uninitialized images cause crash.

Loading an uninitialized image in the Dataset does not cause crash!

Aug 2 2016, 9:53 AM · Bugzilla, MITK
graser added a comment to T11600: Uninitialized images cause crash.

Pushed the new version on the bug branch.

Aug 2 2016, 9:53 AM · Bugzilla, MITK
graser added a comment to T11600: Uninitialized images cause crash.

[121fb0]: Merge branch 'bug-11600-InitializeImage'

Merged commits:

2012-05-18 16:08:43 Bastian Graser [7a13f7]
removed tabs

Aug 2 2016, 9:53 AM · Bugzilla, MITK
graser added a comment to T11600: Uninitialized images cause crash.

Proposed solution is commited to bug-branch. Waiting for core flag.

Aug 2 2016, 9:53 AM · Bugzilla, MITK
graser added a comment to T11600: Uninitialized images cause crash.

Proposed Solution: Add the following lines in the mitk::Image Constructor:

Aug 2 2016, 9:53 AM · Bugzilla, MITK
graser added projects to T11570: ExtractDirectedPlaneImageFilterNew might have a 0.5 offset: MITK, Bugzilla.
Aug 2 2016, 9:52 AM · Bugzilla, MITK
graser added a comment to F819: pic3d_extracted.png.

border on upper and left sides

Aug 2 2016, 9:52 AM
graser added projects to T11540: unsigned long 2D images cause problems: MITK, Bugzilla.
Aug 2 2016, 9:52 AM · Bugzilla, MITK
graser added projects to T11541: 2D Nrrd / PIC images not loadable anymore: MITK, Bugzilla.
Aug 2 2016, 9:52 AM · Bugzilla, MITK
graser added a comment to T11541: 2D Nrrd / PIC images not loadable anymore.

rotation and saving of 2D images had a bug which was fixed.

Aug 2 2016, 9:52 AM · Bugzilla, MITK
graser added a comment to T11541: 2D Nrrd / PIC images not loadable anymore.

For "2dplane.nrrd": according to the file the matrix looks like that:

Aug 2 2016, 9:52 AM · Bugzilla, MITK
graser added projects to T11536: mitk::image::GetPixelValueByIndex cannot be called from const pointer: MITK, Bugzilla.
Aug 2 2016, 9:52 AM · Bugzilla, MITK
graser added a comment to F811: Plane2 p0.nrrd.

2d image

Aug 2 2016, 9:52 AM
graser added projects to T11512: MITK (and Windows) crashes when trying to save as PNG: MITK, Bugzilla.
Aug 2 2016, 9:52 AM · Bugzilla, MITK
graser added a comment to T11318: 2D interpolation preview still shifted.

[751ba5]: Merge branch 'bug-11318-2dinterpolationcoronal'

Merged commits:

2012-04-18 15:46:21 Bastian Graser [d9415a]
Added workaround for T11318. 2D interpolation in Coronal window is now displayed again

Aug 2 2016, 9:52 AM · Bugzilla, MITK
graser added a comment to T11253: image and segmentation image get hidden after creating a new segmentation.

Segmentation View needs a bigger redesign!

Aug 2 2016, 9:52 AM · Bugzilla, MITK
graser added projects to T11182: Zoom Interaction becomes extremly sensitive: MITK, Bugzilla.
Aug 2 2016, 9:52 AM · Bugzilla, MITK
graser added projects to T11181: Save MITK Project messes up the order of nodes: MITK, Bugzilla.
Aug 2 2016, 9:52 AM · MITK (2012-12), Bugzilla
graser added a comment to T11181: Save MITK Project messes up the order of nodes.

problem still there

Aug 2 2016, 9:52 AM · MITK (2012-12), Bugzilla
graser added a comment to T11115: Problem with saving / loading rotated 2D images.

[56dc1d]: Merge branch 'bug-11115-SaveRotated2DImages'

Merged commits:

2012-08-09 11:00:04 Bastian Graser [30ec8a]
COMP fixed again

Aug 2 2016, 9:52 AM · Bugzilla, MITK
graser added projects to T11116: Create SetPixel Function for mitk Image: MITK, Bugzilla.
Aug 2 2016, 9:52 AM · Bugzilla, MITK
graser added a comment to T11115: Problem with saving / loading rotated 2D images.

[fde886]: Merge branch 'bug-11115-SaveRotated2DImages'

Merged commits:

2012-08-09 10:34:37 Bastian Graser [678481]
COMP fixed typename issue

Aug 2 2016, 9:52 AM · Bugzilla, MITK
graser added a comment to T11115: Problem with saving / loading rotated 2D images.

Added documentation, moved "2D geometry loss check" to separate function in geometry 3D and added a MITK Warning in file writer

Aug 2 2016, 9:52 AM · Bugzilla, MITK
graser added a comment to T11115: Problem with saving / loading rotated 2D images.

[042d7a]: Merge branch 'bug-11115-SaveRotated2DImages'

Merged commits:

2012-08-09 10:08:50 Bastian Graser [b87f6a]
COMP corrected wrong datatype

Aug 2 2016, 9:52 AM · Bugzilla, MITK
graser added a comment to T11115: Problem with saving / loading rotated 2D images.

Pushed a fix in bug branch

Aug 2 2016, 9:52 AM · Bugzilla, MITK
graser added a comment to T11115: Problem with saving / loading rotated 2D images.

.. still need do change something..

Aug 2 2016, 9:52 AM · Bugzilla, MITK
graser added a comment to T11115: Problem with saving / loading rotated 2D images.

[f8e4b0]: Merge branch 'bug-11115-SaveRotated2DImages'

Merged commits:

2012-08-09 09:36:02 Bastian Graser [bab43d]
fixed bug in test

Aug 2 2016, 9:52 AM · Bugzilla, MITK
graser added projects to T11115: Problem with saving / loading rotated 2D images: MITK, Bugzilla.
Aug 2 2016, 9:52 AM · Bugzilla, MITK
graser added a comment to T10877: 3D Interpolation crashes when unchecking "Show Position Nodes".

C:\home\graser\BugSquashing\MITK\CoreUI\Qmitk\QmitkDataStorageTreeModel.cpp
line 479:

Aug 2 2016, 9:51 AM · Bugzilla, MITK
graser added projects to T10832: Threshold Tool does not work with Double Image with Range from 0.0 to 1.0: MITK, Bugzilla.
Aug 2 2016, 9:51 AM · Bugzilla, MITK
graser added a comment to T10785: Spacing of a worldGeometry of several images is not the greatest common divisor of all spacings.

Currently we have a shift in MITK, when several images are visible at the same time.

Aug 2 2016, 9:50 AM · Auto-closed, Bugzilla, MITK
graser added a comment to T10785: Spacing of a worldGeometry of several images is not the greatest common divisor of all spacings.

Not yet, added dependency

Aug 2 2016, 9:50 AM · Auto-closed, Bugzilla, MITK
graser added a comment to F768: P0005_annulusPSAlgo.mps.

4D pointset with emtpy timesteps in the end

Aug 2 2016, 9:50 AM
graser added projects to T10426: 4D Pointset sometimes not properly loaded: MITK, Bugzilla.
Aug 2 2016, 9:50 AM · Bugzilla, MITK
graser added a comment to T10333: implement an overwriteImageFilter based on the algorithm of vtkImageReslice.

Just found a bug in mitkExtractDirectedPlaneImageFilter.
When you extract a transversal slice, recieved the stdMultiwidget-Renderwindow, the extracted slice is moved by 0.5 pixels..

Aug 2 2016, 9:50 AM · MITK (2012-09), Bugzilla
graser added a comment to T10310: Create dynamic welcome screen.

No Welcome Screen shown at all, when starting current ExtApp for first time.

Aug 2 2016, 9:50 AM · Bugzilla, MITK
graser added a comment to T9909: Test Bug.

Wurst Bug

Aug 2 2016, 9:49 AM · Bugzilla, MITK
graser added projects to T9909: Test Bug: MITK, Bugzilla.
Aug 2 2016, 9:49 AM · Bugzilla, MITK
graser added a comment to T9834: "Toggle Visibility" does not refresh view.

[07a114]: Merge branch 'bug-9834-toggleVisibility'

Merged commits:

2012-02-22 14:19:36 Bastian Graser [1b7994]
Un-commented a refresh view.
In the function "Toogle Visiblity" called from the context menu in datamanager, we uncommented a refresh view call.

Aug 2 2016, 9:49 AM · Bugzilla, MITK
graser added projects to T9834: "Toggle Visibility" does not refresh view: MITK, Bugzilla.
Aug 2 2016, 9:49 AM · Bugzilla, MITK
graser added a comment to T9834: "Toggle Visibility" does not refresh view.

We'll do it

Aug 2 2016, 9:49 AM · Bugzilla, MITK
graser added a comment to T9830: Create Smoothed Polygon not working.

Cannot attach file.
You find the image file under
T:\Temp\Niere_Seg.nrrd

Aug 2 2016, 9:48 AM · Bugzilla, MITK
graser added projects to T9830: Create Smoothed Polygon not working: MITK, Bugzilla.
Aug 2 2016, 9:48 AM · Bugzilla, MITK
graser added projects to T9759: Strange include error: MITK, Bugzilla.
Aug 2 2016, 9:48 AM · Bugzilla, MITK
graser added a comment to T9759: Strange include error.

[d5f964]: Merge branch 'bug-9759-blueberry-include-error' into HEAD

Aug 2 2016, 9:48 AM · Bugzilla, MITK
graser added a comment to T9723: Smoothed Polygon for 4D Segmentation.

Currently: it is not working!

Aug 2 2016, 9:48 AM · Bugzilla, MITK
graser added a comment to T9723: Smoothed Polygon for 4D Segmentation.

Is working so far, thx.

Aug 2 2016, 9:48 AM · Bugzilla, MITK
graser added projects to T9723: Smoothed Polygon for 4D Segmentation: MITK, Bugzilla.
Aug 2 2016, 9:48 AM · Bugzilla, MITK
graser added projects to T9555: Need further Geometry Tests: MITK, Bugzilla.
Aug 2 2016, 9:48 AM · Bugzilla, MITK
graser added a comment to T9515: Threshold Tool is not updating.

[466bc0]: Merge branch 'bug-9515-treshold2'

Merged commits:

2012-01-25 16:30:02 Bastian Graser [b8a94b]
Threshold works now with float images. The slider, which only accepts int values, is set to a value from 0-99, which is projected to a respective double value.

Aug 2 2016, 9:48 AM · Bugzilla, MITK
graser added a comment to T9515: Threshold Tool is not updating.

[59bf66]: Merge branch 'bug-9515-treshold3'

Merged commits:

2012-01-25 17:03:33 Bastian Graser [e764ea]
COMP Fixed Pixeltype check

Aug 2 2016, 9:48 AM · Bugzilla, MITK
graser added a comment to T9515: Threshold Tool is not updating.

should continue on that sometime soon

Aug 2 2016, 9:48 AM · Bugzilla, MITK
graser added projects to T9515: Threshold Tool is not updating: MITK, Bugzilla.
Aug 2 2016, 9:48 AM · Bugzilla, MITK
graser added a comment to T9515: Threshold Tool is not updating.

Stefan made a quickfix for thresholding float images. He is multiplying the float values by 100 and convert them into integer.

Aug 2 2016, 9:48 AM · Bugzilla, MITK
graser added a comment to T9318: Remove duplicated Code from mitkImageVtkMapper2d and mitExtractDirectedPlaneImageFilter.

It would be nice to have several possibilites for cutting out planes!

Aug 2 2016, 9:48 AM · Bugzilla, MITK
graser added a comment to T9218: Crash after closing new window.

We have a look

Aug 2 2016, 9:47 AM · Bugzilla, MITK
graser added a comment to T9218: Crash after closing new window.

After small discussion with Marco:
It is NOT clearly defined what "new Window" should do. So far it opens another MainWindow which is synchronized with the existing one. This causes a lot of problems, especially in the Datamanger. Its context menu entries are empty or existing twice and/or do not work. Also the Datamanager will cause the application to crash, when one of the MainWindows is closed.

Aug 2 2016, 9:47 AM · Bugzilla, MITK
graser added a comment to T9134: Tresholding makes MITK crash.

Seems to be working again.

Aug 2 2016, 9:47 AM · Bugzilla, MITK
graser added projects to T9134: Tresholding makes MITK crash: MITK, Bugzilla.
Aug 2 2016, 9:47 AM · Bugzilla, MITK