Page MenuHomePhabricator
Feed Advanced Search

Mar 9 2017

maleike created T22607: Export MimeType's swap() and stream output..
Mar 9 2017, 11:29 AM · MITK, Pull Request

Mar 8 2017

maleike added a comment to T22602: Cannot use special characters (umlauts, accents) in Data Manager's tree view.

Ohhhh, now I also discovered the cloud symbol :-) I havn't yet made the connection between "cloud" and "storage", still attached to disks obviously :-)

Mar 8 2017, 9:18 AM · Pull Request, MITK

Mar 7 2017

kislinsk added a comment to T22602: Cannot use special characters (umlauts, accents) in Data Manager's tree view.

@maleike Regarding attachments, simply drag & drop them into the comment text box. 💡

Mar 7 2017, 8:36 PM · Pull Request, MITK
maleike added a comment to T22602: Cannot use special characters (umlauts, accents) in Data Manager's tree view.

I spent quite some time now on understanding what is happening. Attached to this task are my detailed notes (see two comments further down).
The overall situation is complicated, so I need to meditate on it for some time before any further changes. Discussions are welcome.

Mar 7 2017, 6:03 PM · Pull Request, MITK
kislinsk added a comment to T22572: Migrate plugins from deprecated org.mitk.gui.qt.common.legacy dependency to org.mitk.gui.qt.common.

Seems to be related to the migration towards ILifeCycleAwarePart views, as the old Activated/Deactivated stuff apparently doesn't match to the new mechanism. For example, the interactions don't work because the selection is explicitly cleared in the Deactivated() method when clicking into the editor. I fixed the QmitkPointSetInteractionView so far. Needs to be tested manually, though, as it's always a strange feeling when simply deleting code and it still seems to work (again).

Mar 7 2017, 2:39 PM · Pull Request, MITK
kislinsk added a comment to T22602: Cannot use special characters (umlauts, accents) in Data Manager's tree view.

@maleike Did you try to use QString::toLatin1() instead of QString::toStdString()? AFAIK this is used rather often in MITK.

Mar 7 2017, 12:59 PM · Pull Request, MITK
goch added a comment to T22602: Cannot use special characters (umlauts, accents) in Data Manager's tree view.

@maleike I think the current policy could be best described as "free for all"
However I am fully in favor of using a consistent conversion and policy and am open for suggestions. UTF 8 as internal string encoding seems reasonable to me and should harmonize reasonably well with Qt.
The most trouble would probably be the interplay with other, especially file system related, toolkits.
itksys is a problem you already encountered. I believe boost filesystem is currently not used anywhere, Poco might be another issue. I believe tinyxml supports UTF8 as well.

Mar 7 2017, 11:54 AM · Pull Request, MITK
maleike added a comment to T22602: Cannot use special characters (umlauts, accents) in Data Manager's tree view.
In T22602#96049, @goch wrote:

However as modern systems tend to support unicode filenames as well we might even want to consider changing the behaviour in QmitkIOUtil

Mar 7 2017, 11:35 AM · Pull Request, MITK
goch added a comment to T22602: Cannot use special characters (umlauts, accents) in Data Manager's tree view.

I do not see an issue with it. EncodeName is really the wrong function to use at this point, as it was designed for encoding file names into platform/locale specific 8 bit.

Mar 7 2017, 10:51 AM · Pull Request, MITK
maleike added a comment to T22602: Cannot use special characters (umlauts, accents) in Data Manager's tree view.

Wait a little, there's more to this, I'll probably add to the first commit!

Mar 7 2017, 10:36 AM · Pull Request, MITK
kislinsk triaged T22591: Error compiling Mitk 2016-11 : Error on SimpleITK installation phase (patch provided) as Normal priority.
Mar 7 2017, 10:32 AM · Restricted Project, Pull Request, MITK
kislinsk added a project to T22591: Error compiling Mitk 2016-11 : Error on SimpleITK installation phase (patch provided): Pull Request.
Mar 7 2017, 10:32 AM · Restricted Project, Pull Request, MITK
kislinsk added a project to T22603: Cannot use external Eigen library with Mitk 2016-03 (patch provided): Pull Request.
Mar 7 2017, 10:29 AM · Pull Request, MITK
maleike added a comment to T22602: Cannot use special characters (umlauts, accents) in Data Manager's tree view.

I just fixed the original description, the encodeName() originates from a commit by @zelzer, not @floca (the commit I originally cited just reused the pattern in multiple other lines)

Mar 7 2017, 10:23 AM · Pull Request, MITK
kislinsk triaged T22602: Cannot use special characters (umlauts, accents) in Data Manager's tree view as Normal priority.

@goch As you put some effort in these things as far as I know, is there something against the PR?

Mar 7 2017, 10:15 AM · Pull Request, MITK
maleike updated the task description for T22602: Cannot use special characters (umlauts, accents) in Data Manager's tree view.
Mar 7 2017, 10:04 AM · Pull Request, MITK

Mar 6 2017

maleike created T22602: Cannot use special characters (umlauts, accents) in Data Manager's tree view.
Mar 6 2017, 7:06 PM · Pull Request, MITK

Mar 3 2017

kislinsk added a comment to T22572: Migrate plugins from deprecated org.mitk.gui.qt.common.legacy dependency to org.mitk.gui.qt.common.

Hi, cool PR! 👍
Only had a very straight forward merge conflict and a forgotten migration from std::vector<mitk::DataNode*> to QList<mitk::DataNode::Pointer>. However, the interactions doesn't work anymore. For example, neither segmentation, clipping plane, nor point set work. I start to investigate what's going on, or what isn't.

Mar 3 2017, 2:31 PM · Pull Request, MITK
kislinsk added a comment to T22572: Migrate plugins from deprecated org.mitk.gui.qt.common.legacy dependency to org.mitk.gui.qt.common.

Pushed new branch T22572-no-common-legacy.

Mar 3 2017, 2:27 PM · Pull Request, MITK
kislinsk triaged T22572: Migrate plugins from deprecated org.mitk.gui.qt.common.legacy dependency to org.mitk.gui.qt.common as Normal priority.
Mar 3 2017, 1:31 PM · Pull Request, MITK
kislinsk claimed T22572: Migrate plugins from deprecated org.mitk.gui.qt.common.legacy dependency to org.mitk.gui.qt.common.
Mar 3 2017, 1:31 PM · Pull Request, MITK

Feb 28 2017

kislinsk added a comment to T22065: QmitkRenderWindowMenu disappears or flickers on OS X.

Well it depends on the details but it is possible that if a public method doesn't make no sense anymore, a strategy could be to mark that method as deprecated in the class declaration and making a no-op out of it in the class definition. The more interesting question is if code from other clients would still work as they expect or if they would need to follow a migration guide.

Feb 28 2017, 11:48 PM · MITK, Pull Request
goyette added a comment to T22065: QmitkRenderWindowMenu disappears or flickers on OS X.

Haha, ok, you're right, I don't want to do that. I don't know much about the deprecation process, so here's one question. Lets say my code is ok, the bug is fixed, but I deleted one public method somewhere because it made no sense anymore and it's incompatible with what I did. Are you telling me I must keep the old implementation along my new implementation for the next version(s)? The old implementation is buggy; it would make no sense to keep it.

Feb 28 2017, 6:08 PM · MITK, Pull Request

Feb 27 2017

goch closed T19360: Compatibility with old scene files broken (Surface line width redefined from int to float) as Resolved.
Feb 27 2017, 5:30 PM · Pull Request, Bugzilla, MITK
kislinsk added a comment to T22065: QmitkRenderWindowMenu disappears or flickers on OS X.

The thing is, if you change public interface, you must go through the deprecation process. And you don't want to do this. 😄 Especially if it is simply a cosmetic change. Thanks for looking into it again.

Feb 27 2017, 3:55 PM · MITK, Pull Request
goyette added a comment to T22065: QmitkRenderWindowMenu disappears or flickers on OS X.

Yes, I changed the public interface. I understand that you don't want to change it because some people might be using it, but all changes are related to the RenderWindowMenu. I doubt anyone outside of MITK is using this class.

Feb 27 2017, 3:33 PM · MITK, Pull Request
kislinsk added a project to T22573: Bad rotation zone for images with small spacing: Pull Request.
Feb 27 2017, 10:48 AM · Auto-closed, Pull Request, MITK
kislinsk added a comment to T22065: QmitkRenderWindowMenu disappears or flickers on OS X.

It's hard to understand what you actually did to fix the issue as you touched large portions of the code. It also seems like you changed the public interface? Please describe the bug precisely and why the QSplitter is causing the trouble and what's needed to fix the issue. Also, please simplify your commit to the bare minimum necessary to fix the issue, as otherwise it is too confusing to review, thank you. :-)

Feb 27 2017, 10:37 AM · MITK, Pull Request
kislinsk closed T22494: Region growing becomes unusable after several usages as Resolved.
Feb 27 2017, 10:22 AM · Pull Request, MITK
kislinsk closed T22464: Stuck in crosshair rotation as Resolved.

Thank you, @goyette. 👍

Feb 27 2017, 9:49 AM · Pull Request, MITK
kislinsk added a comment to T22464: Stuck in crosshair rotation.

Pushed new branch T22464-CrosshairRotation.

Feb 27 2017, 9:48 AM · Pull Request, MITK
kislinsk claimed T22464: Stuck in crosshair rotation.
Feb 27 2017, 9:43 AM · Pull Request, MITK
franza lowered the priority of T19559: Adding the possibility to only record valid NavigationData in the NavigationDataRecorder from Low to Wishlist.
Feb 27 2017, 9:30 AM · MITK, Pull Request, Bugzilla
franza lowered the priority of T19825: SegFault when activating MitkIGTTrackingToolbox plugin while having registered a custom stl reader from Low to Wishlist.
Feb 27 2017, 9:30 AM · Pull Request, Bugzilla, MITK
franza raised the priority of T19559: Adding the possibility to only record valid NavigationData in the NavigationDataRecorder from Wishlist to Low.
Feb 27 2017, 9:29 AM · MITK, Pull Request, Bugzilla
kislinsk raised the priority of T22464: Stuck in crosshair rotation from Low to Normal.
Feb 27 2017, 7:47 AM · Pull Request, MITK

Feb 24 2017

kislinsk added a project to T22572: Migrate plugins from deprecated org.mitk.gui.qt.common.legacy dependency to org.mitk.gui.qt.common: Pull Request.
Feb 24 2017, 9:59 PM · Pull Request, MITK
maleike added a comment to T19360: Compatibility with old scene files broken (Surface line width redefined from int to float).

Feb 24 2017, 6:07 PM · Pull Request, Bugzilla, MITK
goch added a revision to T19360: Compatibility with old scene files broken (Surface line width redefined from int to float): Restricted Differential Revision.
Feb 24 2017, 6:05 PM · Pull Request, Bugzilla, MITK
goch added a comment to T19360: Compatibility with old scene files broken (Surface line width redefined from int to float).

@maleike I will just go ahead and add that line myself.

Feb 24 2017, 6:00 PM · Pull Request, Bugzilla, MITK
maleike added a comment to T19360: Compatibility with old scene files broken (Surface line width redefined from int to float).

@goch: very good point! I missed this while rebasing my branch.. sorry for that. I think your solution would work fine. I can adapt the code and test it Monday (wouldn't mind if you do it if you already have this change locally)

Feb 24 2017, 5:55 PM · Pull Request, Bugzilla, MITK
goch added a comment to T19360: Compatibility with old scene files broken (Surface line width redefined from int to float).

The provided pull request does not solve the problem for me. It only replaces the renderer specific property, but in most cases the property will not be renderer specific. node->GetProperty(name, renderer) will return the unspecific one if no specific is found.

Feb 24 2017, 5:46 PM · Pull Request, Bugzilla, MITK
goch added a comment to T19360: Compatibility with old scene files broken (Surface line width redefined from int to float).

Pushed new branch T19360-legacy-scene-surface-line-width-incompatible.

Feb 24 2017, 4:23 PM · Pull Request, Bugzilla, MITK
kislinsk assigned T19360: Compatibility with old scene files broken (Surface line width redefined from int to float) to goch.
Feb 24 2017, 2:50 PM · Pull Request, Bugzilla, MITK
maleike placed T19360: Compatibility with old scene files broken (Surface line width redefined from int to float) up for grabs.
Feb 24 2017, 1:54 PM · Pull Request, Bugzilla, MITK
kislinsk added a comment to T19360: Compatibility with old scene files broken (Surface line width redefined from int to float).

Thank you! 👍

Feb 24 2017, 11:08 AM · Pull Request, Bugzilla, MITK
kislinsk added a project to T19360: Compatibility with old scene files broken (Surface line width redefined from int to float): Pull Request.
Feb 24 2017, 11:06 AM · Pull Request, Bugzilla, MITK

Feb 17 2017

norajitr added a comment to T22494: Region growing becomes unusable after several usages.

Pushed new branch T22494-region-growing-fix-mitk.

Feb 17 2017, 3:53 PM · Pull Request, MITK

Feb 8 2017

goch triaged T22494: Region growing becomes unusable after several usages as Normal priority.
Feb 8 2017, 1:26 PM · Pull Request, MITK

Feb 6 2017

kislinsk edited projects for T19559: Adding the possibility to only record valid NavigationData in the NavigationDataRecorder, added: MITK; removed MITK (2016-11).
Feb 6 2017, 11:23 AM · MITK, Pull Request, Bugzilla
kislinsk edited projects for T22065: QmitkRenderWindowMenu disappears or flickers on OS X, added: MITK; removed MITK (2016-11).
Feb 6 2017, 11:23 AM · MITK, Pull Request

Jan 30 2017

kislinsk raised the priority of T22254: Render windows show *not* the corresponding orientation after reinit with permuted axes from High to Needs Triage.
Jan 30 2017, 1:50 PM · Pull Request, MITK (2016-11)

Jan 23 2017

espak added a comment to T22254: Render windows show *not* the corresponding orientation after reinit with permuted axes.

Yippie yay!

Jan 23 2017, 5:46 PM · Pull Request, MITK (2016-11)
kislinsk closed T22254: Render windows show *not* the corresponding orientation after reinit with permuted axes as Resolved.

Thank you! I cherry-picked the conversion fix as I completely rewrote the slice navigation controller test. I also updated the test data. All tests are green now. Seems like we made it! *fingers crossed*

Jan 23 2017, 5:17 PM · Pull Request, MITK (2016-11)

Jan 20 2017

espak added a comment to T22254: Render windows show *not* the corresponding orientation after reinit with permuted axes.

I pushed a few fixes here:

Jan 20 2017, 8:55 PM · Pull Request, MITK (2016-11)
kislinsk added a comment to T22254: Render windows show *not* the corresponding orientation after reinit with permuted axes.

Thank you! Yes, I also checked the coronal view direction. Works! The biggest problem was my misunderstanding of the axis vectors of the geometry. I thought that these vectors would point along the OpenGL coordinate system axes, however, they actually map the LPS coordinate frame into the OpenGL coordinate frame, which is why the other components than the main diagonal can be set when putting the vectors into a matrix. That's why the tables in my long comment above had the correct values but in the wrong places. I edited the comment to reflect the status quo.

Jan 20 2017, 3:12 PM · Pull Request, MITK (2016-11)
espak added a comment to T22254: Render windows show *not* the corresponding orientation after reinit with permuted axes.

Ah, ok, so the behaviour is good.

Jan 20 2017, 10:27 AM · Pull Request, MITK (2016-11)
kislinsk added a comment to T22254: Render windows show *not* the corresponding orientation after reinit with permuted axes.
In T22254#92234, @espak wrote:

Have you pushed the fix for the flipped parameter of mitk::Image::Initialize() somewhere? I do not see it on the T22254-GeometryFixesAsProposed branch.

Jan 20 2017, 9:11 AM · Pull Request, MITK (2016-11)

Jan 19 2017

espak added a comment to T22254: Render windows show *not* the corresponding orientation after reinit with permuted axes.

For the image test, the missing image geometry flag wasn't the actual problem. The problem is that mitk::Image::Initialize() has a parameter called flipped. As you changed a similar signature in the InitializeByStandardPlane() methods of a geometry, this bool flag was now passed as number of slices (false -> 0). I fixed it by making the Initialize() method deprecated and adding a new signature without the flag.

I have trouble with the mitkSliceNavigationControllerTest, though. The frontal case fails and I didn't get it. It doesn't seem to be a changed sign problem alone. Would be really cool, if you could have a look at the test. It can be executed by the CoreTestDriver.

The PointSetInteraction test seems to be tricky as well as a few points out of many have a difference of 1 in the second coordinate (128.x vs 127.x).

Jan 19 2017, 3:44 PM · Pull Request, MITK (2016-11)

Jan 17 2017

espak added a comment to T22254: Render windows show *not* the corresponding orientation after reinit with permuted axes.

For my best understanding, scrolling up should move right in sagittal, posterior in coronal and superior in axial. And as I remember, only the coronal did not match, because the coronal renderer had left-handed coordinate system. So, the scrolling direction changed there as a consequence of the changes. I might remember wrong.

Jan 17 2017, 11:49 AM · Pull Request, MITK (2016-11)
espak added a comment to T22254: Render windows show *not* the corresponding orientation after reinit with permuted axes.

"scrolling up brings us to the heart"

Jan 17 2017, 11:15 AM · Pull Request, MITK (2016-11)
kislinsk added a comment to T22254: Render windows show *not* the corresponding orientation after reinit with permuted axes.
In T22254#91916, @espak wrote:

No, scrolling up should go to the slice behind in any render window. In sagittal, scrolling up should go towards the patient's right. It was like this when I was testing. If it is not like that, something is wrong.

Jan 17 2017, 11:09 AM · Pull Request, MITK (2016-11)
kislinsk added a comment to T22254: Render windows show *not* the corresponding orientation after reinit with permuted axes.

Referring to your long comment: Yes, this makes sense and it is what I tried to do. I had a wrong assumption, though, regarding the view direction for the L-axis, in which case, for whatever reason, we have look along the negative axis. In the P-case we look from anterior towards posterior and in the S-case we look from inferior towards superior.

Jan 17 2017, 11:07 AM · Pull Request, MITK (2016-11)
espak added a comment to T22254: Render windows show *not* the corresponding orientation after reinit with permuted axes.

No, scrolling up should go to the slice behind in any render window. In sagittal, scrolling up should go towards the patient's right. It was like this when I was testing. If it is not like that, something is wrong.

Jan 17 2017, 11:03 AM · Pull Request, MITK (2016-11)
kislinsk added a comment to T22254: Render windows show *not* the corresponding orientation after reinit with permuted axes.

This is very odd as it doesn't fit nicely into the LPS scheme, where we're moving along the positive axes in the P and S case. So at the moment we are looking from the patient's left to the right but we're scrolling from the patient's right to the left. Can you confirm?

Jan 17 2017, 10:58 AM · Pull Request, MITK (2016-11)
espak added a comment to T22254: Render windows show *not* the corresponding orientation after reinit with permuted axes.

The actual values all look correct to me.

Jan 17 2017, 10:58 AM · Pull Request, MITK (2016-11)
espak added a comment to T22254: Render windows show *not* the corresponding orientation after reinit with permuted axes.

In sagittal we see the left side of the face of the patient, i.e. we are looking towards the patient's right, what is on their other side. We can't see their right.

Jan 17 2017, 10:08 AM · Pull Request, MITK (2016-11)
kislinsk added a comment to T22254: Render windows show *not* the corresponding orientation after reinit with permuted axes.

It is a non-image geometry. Voxel width and height are 1mm each, thickness 2mm. The "Actual" tables show the values of the origin/axis vectors with the current master implementation (including your fixes).

Jan 17 2017, 9:03 AM · Pull Request, MITK (2016-11)

Jan 12 2017

espak added a comment to T22254: Render windows show *not* the corresponding orientation after reinit with permuted axes.

Are these isotropic voxels? I mean the slice thickness is 2mm in all the directions?

Jan 12 2017, 7:57 PM · Pull Request, MITK (2016-11)
espak added a comment to T22254: Render windows show *not* the corresponding orientation after reinit with permuted axes.

The assumptions are valid at the top.

Jan 12 2017, 7:00 PM · Pull Request, MITK (2016-11)
kislinsk added a comment to T22254: Render windows show *not* the corresponding orientation after reinit with permuted axes.

I will rewrite the SliceNavigationControllerTest, as it is highly confusing. For the new test, I will assume the following points:

Jan 12 2017, 2:23 PM · Pull Request, MITK (2016-11)

Jan 11 2017

kislinsk added a comment to T22254: Render windows show *not* the corresponding orientation after reinit with permuted axes.

For the image test, the missing image geometry flag wasn't the actual problem. The problem is that mitk::Image::Initialize() has a parameter called flipped. As you changed a similar signature in the InitializeByStandardPlane() methods of a geometry, this bool flag was now passed as number of slices (false -> 0). I fixed it by making the Initialize() method deprecated and adding a new signature without the flag.

Jan 11 2017, 3:36 PM · Pull Request, MITK (2016-11)
kislinsk added a comment to T22254: Render windows show *not* the corresponding orientation after reinit with permuted axes.

Pushed new branch T22254-Fixes.

Jan 11 2017, 3:25 PM · Pull Request, MITK (2016-11)
espak added a comment to T22254: Render windows show *not* the corresponding orientation after reinit with permuted axes.

These tests fail, as I see:
http://cdash.mitk.org/viewTest.php?onlyfailed&buildid=643361

Jan 11 2017, 2:02 PM · Pull Request, MITK (2016-11)
kislinsk added a comment to T22254: Render windows show *not* the corresponding orientation after reinit with permuted axes.

Some other tests fail after the geometry changes on our dart clients. So it's not over yet. :)

Jan 11 2017, 12:31 PM · Pull Request, MITK (2016-11)
kislinsk added a comment to T22254: Render windows show *not* the corresponding orientation after reinit with permuted axes.

Thank you, everything was successfully merged into the master branch and the release branch. I guess there are some PRs that need to be closed manually now?

Jan 11 2017, 11:17 AM · Pull Request, MITK (2016-11)

Jan 10 2017

espak added a comment to T22254: Render windows show *not* the corresponding orientation after reinit with permuted axes.

My guess is that the minus sign has to be removed from line 750 and 773.

Jan 10 2017, 5:00 PM · Pull Request, MITK (2016-11)
kislinsk added a comment to T22254: Render windows show *not* the corresponding orientation after reinit with permuted axes.

Sorry, forgot to add the line numbers:

Jan 10 2017, 4:20 PM · Pull Request, MITK (2016-11)
espak added a comment to T22254: Render windows show *not* the corresponding orientation after reinit with permuted axes.

The direction can be either way, as you can create left or right handed systems as well. If right handed, the direction is the same as the cross product of the righ and bottomvectors. If left-handed then the normal points in the opposite direction. You can create left-handed plande geometries by specifying negative thickness.

Jan 10 2017, 3:51 PM · Pull Request, MITK (2016-11)
espak added a comment to T22254: Render windows show *not* the corresponding orientation after reinit with permuted axes.

Which asserts?
Line 468 and 496 here?
https://phabricator.mitk.org/source/mitk/browse/T22254-GeometryFixesAsProposed/Modules/Core/test/mitkPlaneGeometryTest.cpp;4261ef7a44c7e44b4a7b38a9781533235a366293

Jan 10 2017, 3:47 PM · Pull Request, MITK (2016-11)
kislinsk added a comment to T22254: Render windows show *not* the corresponding orientation after reinit with permuted axes.

@espak The asserts in the PlaneGeometryTests that fail are always because of the normal pointing in the opposite direction as expected by the test. In one example the frontside parameter when initializing the plane geometry is set to false and then its normal is checked against (-normal). Is it expected that the normals after your changes in these cases are flipped?

Jan 10 2017, 3:32 PM · Pull Request, MITK (2016-11)
kislinsk added a comment to T22254: Render windows show *not* the corresponding orientation after reinit with permuted axes.

Just to let you know, I started working on the two tests above again after the holidays. The SlicedGeometry3DTest is done, the PlaneGeometryTest follows.

Jan 10 2017, 12:59 PM · Pull Request, MITK (2016-11)

Dec 22 2016

kislinsk added a comment to T22254: Render windows show *not* the corresponding orientation after reinit with permuted axes.

Fixed remaining compile errors in tests. We need to adapt the following two tests:

  • mitkPlaneGeometryTest
  • mitkSlicedGeometry3DTest
Dec 22 2016, 12:00 PM · Pull Request, MITK (2016-11)

Dec 21 2016

espak added a comment to T22254: Render windows show *not* the corresponding orientation after reinit with permuted axes.

That's totally possible. The PlaneGeometry API was already a bit messy, and my commit made it worse by adding 'top' at the end. (Some functions had 'top' somewhere at the beginning already, not directly before the 'frontside' and 'rotated' args as usual.)

Dec 21 2016, 1:25 PM · Pull Request, MITK (2016-11)
kislinsk added a comment to T22254: Render windows show *not* the corresponding orientation after reinit with permuted axes.

Had to fix a a wrong signature as the top parameter was present twice, but now it looks very promising in the first tests.

Dec 21 2016, 12:07 PM · Pull Request, MITK (2016-11)

Dec 20 2016

kislinsk added a comment to T22254: Render windows show *not* the corresponding orientation after reinit with permuted axes.

Thank you for the explanation, Miklos. I'll give it another try tomorrow, as I'm currently in the middle of another complicated bug. :-/

Dec 20 2016, 3:17 PM · Pull Request, MITK (2016-11)
espak added a comment to T22254: Render windows show *not* the corresponding orientation after reinit with permuted axes.

A bit of an explanation about the last commit:

Dec 20 2016, 1:45 PM · Pull Request, MITK (2016-11)

Dec 19 2016

espak added a comment to T22254: Render windows show *not* the corresponding orientation after reinit with permuted axes.

Sorry, silly mistake. :-(

Dec 19 2016, 7:29 PM · Pull Request, MITK (2016-11)
kislinsk moved T22065: QmitkRenderWindowMenu disappears or flickers on OS X from Backlog to OS X on the MITK (2016-11) board.
Dec 19 2016, 1:41 PM · MITK, Pull Request
kislinsk added a comment to T22254: Render windows show *not* the corresponding orientation after reinit with permuted axes.

Pushed new branch T22254-GeometryFixesAsProposed.

Dec 19 2016, 12:51 PM · Pull Request, MITK (2016-11)
kislinsk added a comment to T22254: Render windows show *not* the corresponding orientation after reinit with permuted axes.

The changes unfortunately seem to break like "everything". The Coronal plane is completly off and touches the actual image volume in only one slice. The other windows are mirrored and/or upside down. This is our Pic3D.nrrd (same problem with every other image I tried, though):

Dec 19 2016, 12:51 PM · Pull Request, MITK (2016-11)
kislinsk added a project to T19559: Adding the possibility to only record valid NavigationData in the NavigationDataRecorder: Pull Request.
Dec 19 2016, 10:44 AM · MITK, Pull Request, Bugzilla
kislinsk added a project to T19825: SegFault when activating MitkIGTTrackingToolbox plugin while having registered a custom stl reader: Pull Request.
Dec 19 2016, 10:43 AM · Pull Request, Bugzilla, MITK
kislinsk added a project to T13974: Undo functionality on planar figures would be useful.: Pull Request.
Dec 19 2016, 10:43 AM · Auto-closed, Pull Request, Bugzilla, MITK
kislinsk lowered the priority of T19104: Integrate Coverity Scan static analysis into superbuild and CDash scripts from Normal to Wishlist.
Dec 19 2016, 10:43 AM · Pull Request, Bugzilla, MITK
kislinsk added a project to T19104: Integrate Coverity Scan static analysis into superbuild and CDash scripts: Pull Request.
Dec 19 2016, 10:42 AM · Pull Request, Bugzilla, MITK

Dec 16 2016

espak added a comment to T22254: Render windows show *not* the corresponding orientation after reinit with permuted axes.

And another glitch that is even more minor.

Dec 16 2016, 1:50 PM · Pull Request, MITK (2016-11)
espak added a comment to T22254: Render windows show *not* the corresponding orientation after reinit with permuted axes.

So, PR172 should now contain all the proposed changes.

Dec 16 2016, 12:40 PM · Pull Request, MITK (2016-11)

Dec 15 2016

kislinsk added a comment to T22254: Render windows show *not* the corresponding orientation after reinit with permuted axes.

http://git.mitk.org/MITK.git isn't valid anymore, we moved to https://phabricator.mitk.org/source/mitk.git in August.

Dec 15 2016, 4:49 PM · Pull Request, MITK (2016-11)
kislinsk closed T22202: Sometimes PaintbrushTool::OnMousePressed fails because m_WorkingSlice is null as Resolved.
Dec 15 2016, 3:12 PM · Pull Request, MITK (2016-11)