[mitk-users] ctkPluginException: Failed to install plugin

2013-10-02 Thread Martin Klemm
Hi at all, When I start our application I get the following error in mbilog (see after the message). This application has two plug-ins and for both plug-ins I receive the same error. We have exactly the same applications running on two other computers of my colleagues and they are running with

Re: [mitk-users] ctkPluginException: Failed to install plugin

2013-10-03 Thread Martin Klemm
Hi Stefan, I forgot to say that we use MITK in an external project. However, we kept the way to start Visual Studio with a bat file. I double checked the paths. They seem to be correct and the files are actually in the right folders. To be more specific, our plugin, called liborg_xxx_tracking_

Re: [mitk-users] ctkPluginException: Failed to install plugin

2013-10-04 Thread Martin Klemm
her > library that you linked to your module. Please check that everything you > linked to your module can be found in the specified paths. BTW, > DependencyWalker is a good tool to check the dependencies of your module. > > Best, > Stefan > ____

[mitk-users] Expanding Bounding Boxes

2014-03-18 Thread Martin Klemm
Hello, is there a way to set minimum values for the bounding box? What I want to do is the following: mitk::DataStorage::Pointer ds = _objContainer->GetDataStorage(); // get all nodes that have not set "includeInBoundingBox" to false and compute bounding box if (ds.IsNull()) return;

Re: [mitk-users] Expanding Bounding Boxes

2014-03-19 Thread Martin Klemm
yForTimestep(). > > Best, > Stefan > ____ > Von: Martin Klemm [martin.kl...@hs-offenburg.de] > Gesendet: Dienstag, 18. März 2014 15:37 > An: mitk-users@lists.sourceforge.net > Betreff: [mitk-users] Expanding Bounding Boxes > > Hello,

Re: [mitk-users] Expanding Bounding Boxes

2014-03-19 Thread Martin Klemm
e bounding box"? If you want to hide all > objects inside your bounding box you have to manually hide each of these > objects via mitk::DataNode::SetVisibility() or by setting their "visible" > property to false. > > Best, > Stefan > ___

Re: [mitk-users] Expanding Bounding Boxes

2014-03-20 Thread Martin Klemm
derWindowPart* linkedRenderWindowPart = > dynamic_cast(this->GetRenderWindowPart()); > if (linkedRenderWindowPart != NULL) > linkedRenderWindowPart->EnableSlicingPlanes(false); > > Best, > Stefan > > -Ursprüngliche Nachricht- > Von: Martin Klemm [mailto:ma

[mitk-users] Select node in DataManager

2014-04-04 Thread Martin Klemm
o I use it? SetDataManagerSelection wants an ISelection pointer but I just have a mitk::DataNode pointer. Thank you very much. Best regards Martin -- Martin Klemm -BEGIN PGP PUBLIC KEY BLOCK- Version: GnuPG v2.0.22 (MingW32) mQENBFLmUekBCACp46Wgg+gXLpnQYlGjRS0jBVWmL+9boonSl+Imp/

[mitk-users] Neglected icon attribute in the extension point of the QmitkDataManagerView

2014-05-06 Thread Martin Klemm
Hello, I was successful in adding a new context menu action to the data manager menu: The action is shown and works as expected, however, the icon is missing. In QmitkDataManagerView::CreateQtPartControl(QWidget* parent) the context menu extension service is opened to read the descr

[mitk-users] Missing OnSelectionChanged event in Qmitkabstractview

2014-05-06 Thread Martin Klemm
Hello, I am currently working on a data node picking functionality for my plugin. My plugin uses the OnSelectionChanged method provided by Qmitkabstractview. When I click on a node inside the data manager view this method is called, as expected. But when I try to pick a node inside the renderer it

[mitk-users] Implementing a new event

2014-05-20 Thread Martin Klemm
from the event factory and EventConfig: Unknown Event-Type in config. Entry skipped: which comes from the event config. -- Martin Klemm Hochschule Offenburg Badstraße 24 77652 Offenburg Tel. +49 781 / 205 - 4681 -BEGIN PGP PUBLIC KEY BLOCK- Version: GnuPG v2.0.22 (MingW32) mQENBF

[mitk-users] accessing mitkDataStorage implementation from within a module

2014-06-17 Thread Martin Klemm
Hello everyone, I was wondering if there is a way to access the mitkDataStorage implementation from within a module. I have a class inside a module which needs the current data storage implementation. So far I implemented this class inside my plugin and used a function to set a reference to the cu

Re: [mitk-users] Neglected icon attribute in the extension point of the QmitkDataManagerView

2014-07-10 Thread Martin Klemm
wrote: > Hi Martin, > > I think it just hasn't been done yet. I also don't see a reason for not > doing it. Would you be up for contributing a patch to enable icons in > the context menu? > > Thanks, > > Sascha > > On 05/06/2014 10:37 AM, Martin Klemm

Re: [mitk-users] accessing mitkDataStorage implementation from within a module

2014-07-10 Thread Martin Klemm
Data. >> Leverages Graph Analysis for Fast Processing & Easy Data Exploration >> http://p.sf.net/sfu/hpccsystems >> ___ >> mitk-users mailing list >> mitk-users@lists.sourceforge.net >> https://lists.sourceforge.net/

[mitk-users] QuickRender Example App under Win7 VS2013 and Qt5.3.1

2014-08-05 Thread Martin Klemm
;QtQuick" is not installed Do you know how to "install" it in such way that this works? Adding the path to Qt5Quick.dll to the PATH variable did not help, neither copying this dll directly into the MITK_BUILD/bin/Debug folder. Best regards, Martin -- Martin Klemm -BEGIN

Re: [mitk-users] QuickRender Example App under Win7 VS2013 and Qt5.3.1

2014-08-06 Thread Martin Klemm
t; it in such way that this works? Adding the > path to Qt5Quick.dll to the PATH variable did not help, neither copying > this dll directly into the MITK_BUILD/bin/Debug folder. > > Best regards, > > Martin > > > -- Martin Klem

[mitk-users] AUTOLOAD_WITH Feature and Folder Hierarchy

2014-08-21 Thread Martin Klemm
regards, Martin -- Martin Klemm Hochschule Offenburg Badstraße 24 77652 Offenburg Tel. +49 781 / 205 - 4681 -BEGIN PGP PUBLIC KEY BLOCK- Version: GnuPG v2.0.22 (MingW32) mQENBFLmUekBCACp46Wgg+gXLpnQYlGjRS0jBVWmL+9boonSl+Imp//bJ2I9XYxE

Re: [mitk-users] AUTOLOAD_WITH Feature and Folder Hierarchy

2014-08-21 Thread Martin Klemm
ause > these extensions should be available from the beginning "AUTOLOAD_WITH > MitkCore" is used to ensure the earliest possible load time. However, > such DLLs do not expose further API / functionality. > > Hope this helps, > > Sascha > > On 08/21/2014 11:50 AM, Ma

[mitk-users] Picking in QuickRender Example

2014-08-21 Thread Martin Klemm
nd(pickedNode); } } Does anyone knows where this error could come from? Is it possible that the QmlMitkRenderWindowItem is not doing the same as the QmitkRenderWindow? Best regards Martin -- Martin Klemm Hochschule Offenburg Badstraße 24 77652 Offenburg Tel. +49 781 / 205 - 468

Re: [mitk-users] Picking in QuickRender Example

2014-08-26 Thread Martin Klemm
1.08.2014 16:48, Martin Klemm wrote: > Hello everyone, > > I implemented a picking functionality for the QuickRender example and my > normal Workbench application. In both the same code is handling the > picking. While it works in the workbench it produces completely wrong > pi

[mitk-users] Autoload Services DLL Problem

2014-09-25 Thread Martin Klemm
\ MITK_superQt5\MITK-build\bin\MitkCore\Debug\MitkVtkShaders.dll And all this is missing when I start the application directly. Thanks for your help. Best regards Martin -- Martin Klemm Hochschule Offenburg Badstraße 24 77652 Offenburg Tel. +49 781 / 205 - 4681 -BEGIN PGP PUBLIC KEY BLOCK

Re: [mitk-users] Autoload Services DLL Problem

2014-09-25 Thread Martin Klemm
subfolder, where I would assume > they are being searched for by mitk at startup - that's probably why you > can't start your app by simply copying the dlls next to your executable. > > Rostislav. > >> On 25 Sep 2014, at 10:58, "Martin Klemm" >>

Re: [mitk-users] Neglected icon attribute in the extension point of the QmitkDataManagerView

2014-12-01 Thread Martin Klemm
>> icon is still missing. >>> >>> I added my icon to the CACHED_RESOURCE_FILES in files.cmake for my >>> plugin. The location is, say, "resources/icon.png" and in plugin.xml I have >>> >> icon="resources/icon.png" class="MyAction&

Re: [mitk-users] auto-save feature

2014-12-04 Thread Martin Klemm
Hi list, I am also interested in the auto-save feature. Did someone of you already start working on it? Best Martin On 10/17/2014 08:16 PM, Miklos Espak wrote: On 17 October 2014 15:49, Rostislav Khlebnikov > wrote: Hi Miklos, I understan

[mitk-users] Touch interaction

2015-01-22 Thread Martin Klemm
Hi, I am currently trying to implement the interaction with a touch screen. Did anyone work on this before? Our software is based on the QuickRender (QML) example and we use a touch screen instead of a mouse to interact with it. I am already able to receive the touch interactions from QML. These

Re: [mitk-users] Touch interaction

2015-01-28 Thread Martin Klemm
nts that derive from InteractionEvent such that >> the Interaction Framework remains GUI Framework independent. >> >> >> I'll be happy to assist if there are any more question, or look over any >> designs. >> >> Best >> Christian >> &g

[mitk-users] Pointless DisplayInteractor in VTK 3D render window

2015-01-30 Thread Martin Klemm
Hi all, I am currently working on implementing touch interactions in my QML application. After I recognize gestures I send them to the display interactor to process them. I adapted the display interactor to work for GestureEvents. The events arrived but nothing was moving in the render window. I t

Re: [mitk-users] Touch interaction

2015-01-30 Thread Martin Klemm
> Can't we use this for basic gesture recognition ? > > > Best, > Christian > > > -Original Message- > From: Martin Klemm [mailto:martin.kl...@hs-offenburg.de] > Sent: Mittwoch, 28. Januar 2015 19:36 > To: Clarkson, Matt > Cc: MITK > Subject: Re: [mitk

[mitk-users] Changing the pixel size of mitk::Surface points in the mitk::SurfaceMapper

2015-03-11 Thread Martin Klemm
Hi, we have a point cloud stored in a mitk::Surface and want to visualize it. At the moment these points are displayed as one single pixel. This is not visible enough in our application so we want to have them visualized with at least 9 pixel (diameter of 3 pixel). vtkProperty already has a method

[mitk-users] ReleaseGraphicsResources(mitk::BaseRenderer *renderer) is not called

2015-03-13 Thread Martin Klemm
deleting it? If yes how do I do that? I also found this bug http://bugs.mitk.org/show_bug.cgi?id=13121 Is there any connection? It looks like that MITK expects the call of ReleaseGraphicsResources but does not receive it. Thanks for your help and have a nice weekend. Best Martin -- Martin Klemm

[mitk-users] mitk::DataNode::InternalClone missing

2015-03-20 Thread Martin Klemm
Hello everyone, I was just wondering why data nodes have no InternalClone method? Was it never needed so far? If there is no reason that speaks against it I would give it a try to implement it. Best Martin -- Dive into

Re: [mitk-users] ReleaseGraphicsResources(mitk::BaseRenderer *renderer) is not called

2015-03-27 Thread Martin Klemm
verlay.GetPointer()); > And the overlay should be gone. > > Regards > Christoph > > On 03/13/2015 06:46 PM, Martin Klemm wrote: >> Hi everybody, >> >> I tried to implement on overlay showing the name of an object. I found >> the presentation of Christoph ( >

[mitk-users] Saving/Loading scenes with objects that have the same layer property

2015-03-27 Thread Martin Klemm
Hi, my problem is similar to the one described in this bug http://bugs.mitk.org/show_bug.cgi?id=18168 I have several objects in the scene that I want to save and load. I do not have a 2D window which is why I do not use the layer property. Therefore, it is always set to 0 or 1. Saving the scene w

Re: [mitk-users] mitk::DataNode::InternalClone missing

2015-03-30 Thread Martin Klemm
gt; > Best, > Andreas > > Am 20/03/15 14:26 schrieb "Martin Klemm" unter > : > >> Hello everyone, >> >> I was just wondering why data nodes have no InternalClone method? Was it >> never needed so far? If there is no reason

Re: [mitk-users] Serialization of a surface node

2015-03-30 Thread Martin Klemm
Hello everyone, I just wanted to ask if geometries can already be serialized separately from the surfaces when saving the scene. Best Martin -- Dive into the World of Parallel Programming The Go Parallel Website, sponso

Re: [mitk-users] Serialization of a surface node

2015-03-30 Thread Martin Klemm
Sorry, I accidentally deleted the history of this thread... Hello everyone, I just wanted to ask if geometries can already be serialized separately from the surfaces when saving the scene. Best Martin Hi again, we'll have a look at the vrml reader/writer. I guess there is no particular r

Re: [mitk-users] Saving/Loading scenes with objects that have the same layer property

2015-04-01 Thread Martin Klemm
> is a quite exotic use case to override the auto-layering of MITK (with the > fixedLayer property). :) > > Cheers, > Stefan > > -Original Message- > From: Martin Klemm [mailto:martin.kl...@hs-offenburg.de] > Sent: Freitag, 27. März 2015 12:39 > To: mitk-u

[mitk-users] mitkNodeDisplacementFilter in MITKUSNavigation

2015-04-08 Thread Martin Klemm
Hello everyone, I was wondering why the mitkNodeDisplacementFilter and the mitkNavigationDataPassThroughFilter is in the USNavigation module and not in the IGT module? If I see it properly both classes have no dependency from the US module. My point is that you have to compile OpenCV and MitkUS to

[mitk-users] Missing procedure entry points

2015-07-02 Thread Martin Klemm
Hi everyone, after switching to MITK 2015.05 I experience the following error message while starting my application: The procedure entry point "?GetStaticNameOfClass@NavigationDataSet@mitk@@SAPEBDXZ" could not be located in the dynamic library "MITKIGTBase.dll". It occurs before any other compon

Re: [mitk-users] Missing procedure entry points

2015-07-10 Thread Martin Klemm
Hi everyone, the simple solution to this problem is deleting MitkIGTIO.dll. I still dont understand how this could happen because I had two clean builds on two different PCs and both produced the same error... Have a nice weekend ;) Best Martin On 03.07.2015 08:45, Martin Klemm wrote: >

[mitk-users] Some QML topics

2015-07-22 Thread Martin Klemm
Hi everyone, I have some questions and comments regarding the QML classes in MITK: 1. There is an old bug 16843 from the beginning of last year http://bugs.mitk.org/show_bug.cgi?id=16843 which is in progress, are you currently working on the topics written there? 2. In my qml based application I

[mitk-users] Precommit hook returning error

2015-08-14 Thread Martin Klemm
Hi everyone, I just downloaded the pre-commit hook from your webpage http://www.mitk.org/wiki/File:Pre-commit.sample To test it I added a whitespace and deleted the eof. Both were detected. Then I fixed them and tried to commit the changes but received the following errors from the hook: d:/Proj

[mitk-users] Invalid layer for renderer: not rendered / Bug 18910

2015-11-17 Thread Martin Klemm
Hi, did anyone of you receive the vtk error message "Invalid layer for renderer: not rendered." before? This message appears after I call renderer->GetOverlayManager() the first time in my mapper. The overlay manager itself works perfectly. Everything is placed properly and nothing is missing. The

Re: [mitk-users] How to get data storage from module, is it possible?

2015-12-15 Thread Martin Klemm
le? Is it possible? > Thank you! > > > > -- > > > > ___ > mitk-users mailing list > mitk-users@lists.sourceforge.net > https://lis

[mitk-users] Qt 5.4/5.5

2016-01-18 Thread Martin Klemm
Hi, Did anyone try to compile MITK with Qt 5.4 or 5.5 yet? (under Windows7) Best Martin -- Site24x7 APM Insight: Get Deep Visibility into Application Performance APM + Mobile APM + RUM: Monitor 3 App instances at just

Re: [mitk-users] Better VTK integration with QML/Qt Quick

2016-01-19 Thread Martin Klemm
Hi, is anyone still working on this? I tried to integrate these changes into my MITK 15.05.2 build but as Taylor writes in the bug reports it is not working properly under V.15.05. Best Martin Hello mitk-users (+ a few others) - I would like to share a work-in-progress solution to bug 18393

Re: [mitk-users] How to use CUDA in MITK ?

2017-10-10 Thread Martin Klemm
, Slashdot.org! http://sdm.link/slashdot > ___ > mitk-users mailing list > mitk-users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/mitk-users > --

Re: [mitk-users] How to use CUDA in MITK ?

2017-10-12 Thread Martin Klemm
regards > > On Tue, Oct 10, 2017 at 10:21 AM, Martin Klemm > wrote: > >> Hi favour888, >> >> here is an example of one of my modules that uses CUDA. It is probably >> not the nicest way but it works like this: >> >> >> --- CMakeLists.txt of

Re: [mitk-users] How to use CUDA in MITK ?

2017-10-13 Thread Martin Klemm
:07, Ehsan Golkar wrote: > Dear Martin, > > Yes, I want to add CUDA into a plugin not a module but its seems its not as > easy as adding CUDA to a module > I am struggling with this issue for couple of days > > regards > > On Thu, Oct 12, 2017 at 12:24 PM, Martin Kl

[mitk-users] Visual Studio 2017

2018-01-30 Thread Martin Klemm
Hi MITK users, I was wondering if you already (unofficially?) support Visual Studio 2017 and if you could recommend a branch or tag that I could check out. Thanks for the information. Best regards, Martin <>-- Check out

[mitk-users] Aurora 5DoF support

2018-04-17 Thread Martin Klemm
Hi MITK-users, I wanted to use our Aurora system together with the MITK workbench. I have the following configuration: - An Aurora Tabletop Field Generator - A 6DoF reference tool connected to port 1 - Four 5DoF tools (inside a catheter) connected to port 2 and 3 (two tools on one port) This cat

Re: [mitk-users] Aurora 5DoF support

2018-04-19 Thread Martin Klemm
the NDI API are needed to > make this work? I can offer help to modify the NDI protocol classes in > MITK. > > Best, > > Alfred > > > Am 17.04.2018 um 09:43 schrieb Martin Klemm: >> Hi MITK-users, >> >> I wanted to use our Aurora system together wi