From espakm at gmail.com Thu May 2 21:34:31 2013 From: espakm at gmail.com (Miklos Espak) Date: Thu, 2 May 2013 22:34:31 +0100 Subject: [Ctk-developers] ctkSliderWidget, ctkDoubleSlider and ctkDoubleSpinBox invertedControls property Message-ID: Hi Julien, I added an invertedAppearance an invertedControls property to the ctkDoubleSlider and ctkSliderWidget classes. The QSlider has already these properties, so most of the code is just delegation. The QDoubleSpinBox, that was used internally by ctkSliderWidget, however, does not have an invertedControls property. So, I derived a ctkDoubleSpinBox from QDoubleSpinBox to implement this feature. Then, I replaced the spin box of the slider widget from the Qt one to this one. All works fine, but I cannot send a pull request, because somebody else has also replaced the spin box of the sliderwidget with a custom class (ctkSpinBox), recently. I pushed my tweak to our fork here: https://github.com/NifTK/CTK/commit/f1a2e0e62e1c6285810c84685ca945675e9e16fd Branch name: slider-inverted-properties Qt has a separate QSpinBox and QDoubleSpinBox class, but as I see, the ctkSpinBox is already for doubles. I do not know what would be the best way to resolve this conflict. Could you please review the change and merge it if you agree? Thank you, Miklos From a.biancardi at sheffield.ac.uk Thu May 2 22:33:52 2013 From: a.biancardi at sheffield.ac.uk (Alberto Biancardi) Date: Thu, 2 May 2013 23:33:52 +0100 Subject: [Ctk-developers] participation to the CTK hackfest Message-ID: Hi all, I am Alberto Biancardi and I just joined CISTIB (Center for Computational Imaging & Simulation Technologies in Biomedicine) in Sheffield. I have been working on medical image analysis for several years at Cornell University, Ithaca, NY. At CISTIB I am part of the software development team for the research tool platform of the VPH-DARE at IT project. The topic I'd like to focus on is the Command Line Modules Best, -- Alberto Biancardi Scientific Software Developer Center for Computational Imaging & Simulation Technologies in Biomedicine (CISTIB) INSIGNEO Institute for In silico Medicine - The University of Sheffield Room B85, Portobello Centre, Pitt St Sheffield S1 4ET United Kingdom T: +44 (0) 114 222 0166 | W: www.cistib.org -------------- next part -------------- An HTML attachment was scrubbed... URL: From julien.finet at kitware.com Thu May 2 23:12:21 2013 From: julien.finet at kitware.com (Julien Finet) Date: Thu, 2 May 2013 19:12:21 -0400 Subject: [Ctk-developers] ctkSliderWidget, ctkDoubleSlider and ctkDoubleSpinBox invertedControls property In-Reply-To: References: Message-ID: Hi Miklos, We recently added ctkSpinBox to further extend QDoubleBox. In order to have only 1 class to maintain, we decided to have only 1 class in CTK for spinboxes (therefore ctkSpinBox instead of ctkDoubleSpinBox). ctkSpinBox could behave as a QSpinBox if the number of decimals is 0. However I realize it might lead to some issues. Anyway, I don't think it is incompatible with your change. All you have to do is to add the invertedControls and invertedAppearance properties to ctkSpinBox. Then you should be able to make a pull request. Thanks, Julien. On Thu, May 2, 2013 at 5:34 PM, Miklos Espak wrote: > Hi Julien, > > I added an invertedAppearance an invertedControls property to the > ctkDoubleSlider and ctkSliderWidget classes. > > The QSlider has already these properties, so most of the code is just > delegation. The QDoubleSpinBox, that was used internally by > ctkSliderWidget, however, does not have an invertedControls property. > > So, I derived a ctkDoubleSpinBox from QDoubleSpinBox to implement this > feature. Then, I replaced the spin box of the slider widget from the > Qt one to this one. > > All works fine, but I cannot send a pull request, because somebody > else has also replaced the spin box of the sliderwidget with a custom > class (ctkSpinBox), recently. > > I pushed my tweak to our fork here: > > > https://github.com/NifTK/CTK/commit/f1a2e0e62e1c6285810c84685ca945675e9e16fd > > Branch name: slider-inverted-properties > > Qt has a separate QSpinBox and QDoubleSpinBox class, but as I see, the > ctkSpinBox is already for doubles. I do not know what would be the > best way to resolve this conflict. > > Could you please review the change and merge it if you agree? > > Thank you, > Miklos > _______________________________________________ > Ctk-developers mailing list > Ctk-developers at commontk.org > http://public.kitware.com/cgi-bin/mailman/listinfo/ctk-developers > -------------- next part -------------- An HTML attachment was scrubbed... URL: From espakm at gmail.com Thu May 2 23:32:33 2013 From: espakm at gmail.com (Miklos Espak) Date: Fri, 3 May 2013 00:32:33 +0100 Subject: [Ctk-developers] ctkSliderWidget, ctkDoubleSlider and ctkDoubleSpinBox invertedControls property In-Reply-To: References: Message-ID: Hi Julien, I am afraid, I cannot do this in the close future. We are still stuck with an older revision of CTK and cannot upgrade because MITK cannot be built with the current CTK master. This is because of a DCMTK CMake issue that has been discussed by JC and Marco recently. So, I do not have a ctkSpinBox yet, and the upgrade would break our build. You said, the ctkSpinBox might lead to some issues. Does this mean that you are thinking of having a separate double and integer spin boxes? I noticed a little problem with my code, I will fix it in our fork soon. Thanks, Miklos From julien.finet at kitware.com Thu May 2 23:56:37 2013 From: julien.finet at kitware.com (Julien Finet) Date: Thu, 2 May 2013 19:56:37 -0400 Subject: [Ctk-developers] ctkSliderWidget, ctkDoubleSlider and ctkDoubleSpinBox invertedControls property In-Reply-To: References: Message-ID: On Thu, May 2, 2013 at 7:32 PM, Miklos Espak wrote: > Hi Julien, > > I am afraid, I cannot do this in the close future. > > We are still stuck with an older revision of CTK and cannot upgrade > because MITK cannot be built with the current CTK master. This is > because of a DCMTK CMake issue that has been discussed by JC and Marco > recently. > > So, I do not have a ctkSpinBox yet, and the upgrade would break our build. > I believe you should be able to cherry-pick some commits though. > > You said, the ctkSpinBox might lead to some issues. Does this mean > that you are thinking of having a separate double and integer spin > boxes? > I'm not sure yet, but it's a possibility. I would like to have a good reason to do it before doing so. For example, one (false) problem I was thinking of was that the ctkSpinBox has signals and slots that take doubles and not ints. And sometimes it's much easier when the signals/slots have the right type. But we could add those signal/slots to ctkSpinBox, it's not a problem. Julien. -------------- next part -------------- An HTML attachment was scrubbed... URL: From espakm at gmail.com Fri May 3 00:08:21 2013 From: espakm at gmail.com (Miklos Espak) Date: Fri, 3 May 2013 01:08:21 +0100 Subject: [Ctk-developers] ctkSliderWidget, ctkDoubleSlider and ctkDoubleSpinBox invertedControls property In-Reply-To: References: Message-ID: On Fri, May 3, 2013 at 12:56 AM, Julien Finet wrote: > > On Thu, May 2, 2013 at 7:32 PM, Miklos Espak wrote: >> >> Hi Julien, >> >> I am afraid, I cannot do this in the close future. >> >> We are still stuck with an older revision of CTK and cannot upgrade >> because MITK cannot be built with the current CTK master. This is >> because of a DCMTK CMake issue that has been discussed by JC and Marco >> recently. >> >> So, I do not have a ctkSpinBox yet, and the upgrade would break our build. > > I believe you should be able to cherry-pick some commits though. We tried it with Sascha today, it conflicted. I would resolve it if I could benefit of the change, but currently, I cannot for the reasons mentioned before. I just mentioned that I cannot upgrade the CTK, that means I am *not able to test* those changes even if I could resolve the conflicts and build it, which in itself is just double work, with questionable result and no benefit for me. >> >> You said, the ctkSpinBox might lead to some issues. Does this mean >> that you are thinking of having a separate double and integer spin >> boxes? > > I'm not sure yet, but it's a possibility. I would like to have a good reason > to do it before doing so. For example, one (false) problem I was thinking of > was that the ctkSpinBox has signals and slots that take doubles and not > ints. And sometimes it's much easier when the signals/slots have the right > type. But we could add those signal/slots to ctkSpinBox, it's not a problem. In this case, it might be better to wait until the design is finalised. Cheers, Miklos From s.zelzer at dkfz-heidelberg.de Fri May 3 11:47:41 2013 From: s.zelzer at dkfz-heidelberg.de (Sascha Zelzer) Date: Fri, 03 May 2013 13:47:41 +0200 Subject: [Ctk-developers] participation to the CTK hackfest In-Reply-To: References: Message-ID: <5183A3DD.3060101@dkfz-heidelberg.de> Hi Alberto, Welcome to the ctk-developers list! As Ivo, Steve, Stephen and I discussed, we are very happy to see you participating in the upcoming CTK hackfest. I have added you to the attendee list at http://www.commontk.org/index.php/CTK-Hackfest-May-2013#Attendees and am looking forward to meet you in Kingston. It looks like Command Line Modules will be a hot topic again. Best, Sascha On 05/03/2013 12:33 AM, Alberto Biancardi wrote: > Hi all, > I am Alberto Biancardi and I just joined CISTIB (Center for Computational > Imaging & Simulation Technologies in Biomedicine) in Sheffield. > I have been working on medical image analysis for several years at > Cornell University, Ithaca, NY. > At CISTIB I am part of the software development team for the > research tool platform of the VPH-DARE at IT project. > > The topic I'd like to focus on is the Command Line Modules > > Best, > > -- > Alberto Biancardi > Scientific Software Developer > > Center for Computational Imaging & Simulation Technologies in > Biomedicine (CISTIB) > INSIGNEO Institute for In silico Medicine - The University of Sheffield > Room B85, Portobello Centre, Pitt St > Sheffield S1 4ET > United Kingdom > T: +44 (0) 114 222 0166 | W: > www.cistib.org > -------------- next part -------------- An HTML attachment was scrubbed... URL: From pieper at ibility.net Fri May 3 12:24:30 2013 From: pieper at ibility.net (Steve Pieper) Date: Fri, 3 May 2013 08:24:30 -0400 Subject: [Ctk-developers] Introductions ... In-Reply-To: <7CC3F1E228E90A4CACC7D23B514809520DD2F4FE@x10-mbx7.yu.yale.edu> References: <7CC3F1E228E90A4CACC7D23B514809520DD2F4FE@x10-mbx7.yu.yale.edu> Message-ID: Hi Xenios and all - The hackfest is getting closer and plans are coming together - it'll be great to work with everyone! Participants please be sure to sign up for a commontk wiki account and make sure that you are on the attendee list if you will be there in person [1]. If you aren't able to travel but want to be part of the effort please email the list since we'll probably schedule a few google hangouts during the week. See you soon, Steve [1] http://www.commontk.org/index.php/CTK-Hackfest-May-2013#Attendees On Tue, Apr 16, 2013 at 9:16 PM, Papademetris, Xenophon < xenophon.papademetris at yale.edu> wrote: > Hi all, > > Steve Pieper invited me to join people in Kingston in May which I will > hopefully do (95% at this point). Some of the names (as listed on "The > Team" page) are familiar. For those of you I have not met before, I work at > Yale and coordinate for many years our in house software package ( > bioimagesuite.org). Most of my experience is with VTK (I taught a > Graduate seminar with this -- see here > http://bioimagesuite.yale.edu/vtkbook/index.aspx > ) , though I have > played with other stuff (e.g. OpenIGTLink/VVLink etc.) > > My primary interests with respect to CTK is with the Command Line > Interfaces and the whole general area of formalizing interoperability > between software in this area. On my non-programming side I work on a > variety of medical image analysis projects ranging from fMRI to > Registration to Angiography to image-guided intervention work. > > Looking forward to meeting people in Kingston in May, > > Xenios > > > --------------------------------------------------------------------------------------- > Xenios Papademetris > Assoc. Professor of Diagnostic Radiology and Biomedical Engineering > Yale University School of Medicine, > New Haven, CT 06520-8042 USA > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From pinter at cs.queensu.ca Tue May 7 15:35:13 2013 From: pinter at cs.queensu.ca (Csaba Pinter) Date: Tue, 07 May 2013 11:35:13 -0400 Subject: [Ctk-developers] CTK Hackfest activity: Kingston Haunted Walks Message-ID: <51891F31.8030404@cs.queensu.ca> Hi all, especially those who will attend the CTK hackfest in Kingston starting two weeks from now. We have been trying to come up with fun activities in Kingston besides hacking, and one option (among others, see [1]) is the Kingston Haunted Walks tour [2], which is a narrated late-evening walk in the historical downtown of Kingston, presenting the most famous ghost stories in town. Despite the childish sound of the event, it is actually quite fun, and it's a good opportunity to see the nice historical downtown. The reason I'm writing about this now is that there is a groupon that offers serious discount, and can be bought for one more day. Those who would like to come, please either let me know, or buy one for themselves. I paste the link [3] under the email, I hope it will work. Looking forward to seeing everyone in about two weeks! Cheers, Csaba [1] http://www.commontk.org/index.php/CTK-Hackfest-May-2013#Travel_.26_Hotel [2] http://www.hauntedwalk.com/kingstontours.php [3] http://www.groupon.com/deals/haunted-walk-5?p=4&utm_source=newsletter&utm_medium=email&sid=ab43a77f-2db4-43eb-993f-b7722e9bd376&division=kingston&user=84b66d60c6aab9e02e3a7744fddeb8706bf07c10889845613441a6801dc3f33b&date=20130507&s=body&c=deal_img&d=deal-page&utm_campaign=haunted-walk-5 From pieper at ibility.net Tue May 7 17:04:12 2013 From: pieper at ibility.net (Steve Pieper) Date: Tue, 7 May 2013 13:04:12 -0400 Subject: [Ctk-developers] CTK Hackfest activity: Kingston Haunted Walks In-Reply-To: <51891F31.8030404@cs.queensu.ca> References: <51891F31.8030404@cs.queensu.ca> Message-ID: Thanks Csaba - this looks like fun, and it's a great deal. I didn't even realize that for $15 Canadian I was buying tickets for two people - so I'll have an extra if someone wants to use it. -Steve On Tue, May 7, 2013 at 11:35 AM, Csaba Pinter wrote: > Hi all, > > especially those who will attend the CTK hackfest in Kingston starting two > weeks from now. > > We have been trying to come up with fun activities in Kingston besides > hacking, and one option (among others, see [1]) is the Kingston Haunted > Walks tour [2], which is a narrated late-evening walk in the historical > downtown of Kingston, presenting the most famous ghost stories in town. > Despite the childish sound of the event, it is actually quite fun, and it's > a good opportunity to see the nice historical downtown. > > The reason I'm writing about this now is that there is a groupon that > offers serious discount, and can be bought for one more day. > Those who would like to come, please either let me know, or buy one for > themselves. I paste the link [3] under the email, I hope it will work. > > Looking forward to seeing everyone in about two weeks! > > Cheers, > Csaba > > > [1] http://www.commontk.org/index.**php/CTK-Hackfest-May-2013#** > Travel_.26_Hotel > > [2] http://www.hauntedwalk.com/**kingstontours.php > > [3] http://www.groupon.com/deals/**haunted-walk-5?p=4&utm_source=** > newsletter&utm_medium=email&**sid=ab43a77f-2db4-43eb-993f-** > b7722e9bd376&division=**kingston&user=**84b66d60c6aab9e02e3a7744fddeb8** > 706bf07c10889845613441a6801dc3**f33b&date=20130507&s=body&c=** > deal_img&d=deal-page&utm_**campaign=haunted-walk-5 > ______________________________**_________________ > Ctk-developers mailing list > Ctk-developers at commontk.org > http://public.kitware.com/cgi-**bin/mailman/listinfo/ctk-**developers > -------------- next part -------------- An HTML attachment was scrubbed... URL: From pinter at cs.queensu.ca Tue May 7 17:09:12 2013 From: pinter at cs.queensu.ca (Csaba Pinter) Date: Tue, 07 May 2013 13:09:12 -0400 Subject: [Ctk-developers] CTK Hackfest activity: Kingston Haunted Walks In-Reply-To: References: <51891F31.8030404@cs.queensu.ca> Message-ID: <51893538.3060000@cs.queensu.ca> I just bought one too, so I can also bring another person! csaba On 5/7/2013 13:04, Steve Pieper wrote: > Thanks Csaba - this looks like fun, and it's a great deal. I didn't > even realize that for $15 Canadian I was buying tickets for two people > - so I'll have an extra if someone wants to use it. > > -Steve > > > On Tue, May 7, 2013 at 11:35 AM, Csaba Pinter > wrote: > > Hi all, > > especially those who will attend the CTK hackfest in Kingston > starting two weeks from now. > > We have been trying to come up with fun activities in Kingston > besides hacking, and one option (among others, see [1]) is the > Kingston Haunted Walks tour [2], which is a narrated late-evening > walk in the historical downtown of Kingston, presenting the most > famous ghost stories in town. Despite the childish sound of the > event, it is actually quite fun, and it's a good opportunity to > see the nice historical downtown. > > The reason I'm writing about this now is that there is a groupon > that offers serious discount, and can be bought for one more day. > Those who would like to come, please either let me know, or buy > one for themselves. I paste the link [3] under the email, I hope > it will work. > > Looking forward to seeing everyone in about two weeks! > > Cheers, > Csaba > > > [1] > http://www.commontk.org/index.php/CTK-Hackfest-May-2013#Travel_.26_Hotel > > [2] http://www.hauntedwalk.com/kingstontours.php > > [3] > http://www.groupon.com/deals/haunted-walk-5?p=4&utm_source=newsletter&utm_medium=email&sid=ab43a77f-2db4-43eb-993f-b7722e9bd376&division=kingston&user=84b66d60c6aab9e02e3a7744fddeb8706bf07c10889845613441a6801dc3f33b&date=20130507&s=body&c=deal_img&d=deal-page&utm_campaign=haunted-walk-5 > _______________________________________________ > Ctk-developers mailing list > Ctk-developers at commontk.org > http://public.kitware.com/cgi-bin/mailman/listinfo/ctk-developers > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From xenophon.papademetris at yale.edu Tue May 7 17:26:10 2013 From: xenophon.papademetris at yale.edu (Papademetris, Xenophon) Date: Tue, 7 May 2013 17:26:10 +0000 Subject: [Ctk-developers] CTK Hackfest activity: Kingston Haunted Walks In-Reply-To: <51893538.3060000@cs.queensu.ca> References: <51891F31.8030404@cs.queensu.ca> <51893538.3060000@cs.queensu.ca> Message-ID: <7CC3F1E228E90A4CACC7D23B514809520DD57130@x10-mbx7.yu.yale.edu> I will buy a ticket of one of you guys so long as you plan to go before Thursday. Xenios From: ctk-developers-bounces at commontk.org [mailto:ctk-developers-bounces at commontk.org] On Behalf Of Csaba Pinter Sent: Tuesday, May 07, 2013 1:09 PM To: pieper at bwh.harvard.edu Cc: Steve Pieper; CTK Developers Mailing List Subject: Re: [Ctk-developers] CTK Hackfest activity: Kingston Haunted Walks I just bought one too, so I can also bring another person! csaba On 5/7/2013 13:04, Steve Pieper wrote: Thanks Csaba - this looks like fun, and it's a great deal. I didn't even realize that for $15 Canadian I was buying tickets for two people - so I'll have an extra if someone wants to use it. -Steve On Tue, May 7, 2013 at 11:35 AM, Csaba Pinter > wrote: Hi all, especially those who will attend the CTK hackfest in Kingston starting two weeks from now. We have been trying to come up with fun activities in Kingston besides hacking, and one option (among others, see [1]) is the Kingston Haunted Walks tour [2], which is a narrated late-evening walk in the historical downtown of Kingston, presenting the most famous ghost stories in town. Despite the childish sound of the event, it is actually quite fun, and it's a good opportunity to see the nice historical downtown. The reason I'm writing about this now is that there is a groupon that offers serious discount, and can be bought for one more day. Those who would like to come, please either let me know, or buy one for themselves. I paste the link [3] under the email, I hope it will work. Looking forward to seeing everyone in about two weeks! Cheers, Csaba [1] http://www.commontk.org/index.php/CTK-Hackfest-May-2013#Travel_.26_Hotel [2] http://www.hauntedwalk.com/kingstontours.php [3] http://www.groupon.com/deals/haunted-walk-5?p=4&utm_source=newsletter&utm_medium=email&sid=ab43a77f-2db4-43eb-993f-b7722e9bd376&division=kingston&user=84b66d60c6aab9e02e3a7744fddeb8706bf07c10889845613441a6801dc3f33b&date=20130507&s=body&c=deal_img&d=deal-page&utm_campaign=haunted-walk-5 _______________________________________________ Ctk-developers mailing list Ctk-developers at commontk.org http://public.kitware.com/cgi-bin/mailman/listinfo/ctk-developers -------------- next part -------------- An HTML attachment was scrubbed... URL: From pieper at ibility.net Tue May 7 18:21:22 2013 From: pieper at ibility.net (Steve Pieper) Date: Tue, 7 May 2013 14:21:22 -0400 Subject: [Ctk-developers] CTK Hackfest activity: Kingston Haunted Walks In-Reply-To: <7CC3F1E228E90A4CACC7D23B514809520DD57130@x10-mbx7.yu.yale.edu> References: <51891F31.8030404@cs.queensu.ca> <51893538.3060000@cs.queensu.ca> <7CC3F1E228E90A4CACC7D23B514809520DD57130@x10-mbx7.yu.yale.edu> Message-ID: Xenios: We're thinking of Wednesday night so you should be good. Larry: I'll join forces with you - you can owe me C$7.50 for the ticket. -Steve On Tue, May 7, 2013 at 1:26 PM, Papademetris, Xenophon < xenophon.papademetris at yale.edu> wrote: > I will buy a ticket of one of you guys so long as you plan to go before > Thursday.**** > > ** ** > > Xenios**** > > ** ** > > ** ** > > *From:* ctk-developers-bounces at commontk.org [mailto: > ctk-developers-bounces at commontk.org] *On Behalf Of *Csaba Pinter > *Sent:* Tuesday, May 07, 2013 1:09 PM > > *To:* pieper at bwh.harvard.edu > *Cc:* Steve Pieper; CTK Developers Mailing List > *Subject:* Re: [Ctk-developers] CTK Hackfest activity: Kingston Haunted > Walks**** > > ** ** > > I just bought one too, so I can also bring another person! > > > csaba > > > On 5/7/2013 13:04, Steve Pieper wrote:**** > > Thanks Csaba - this looks like fun, and it's a great deal. I didn't > even realize that for $15 Canadian I was buying tickets for two people - so > I'll have an extra if someone wants to use it. **** > > ** ** > > -Steve**** > > ** ** > > On Tue, May 7, 2013 at 11:35 AM, Csaba Pinter > wrote:**** > > Hi all, > > especially those who will attend the CTK hackfest in Kingston starting two > weeks from now. > > We have been trying to come up with fun activities in Kingston besides > hacking, and one option (among others, see [1]) is the Kingston Haunted > Walks tour [2], which is a narrated late-evening walk in the historical > downtown of Kingston, presenting the most famous ghost stories in town. > Despite the childish sound of the event, it is actually quite fun, and it's > a good opportunity to see the nice historical downtown. > > The reason I'm writing about this now is that there is a groupon that > offers serious discount, and can be bought for one more day. > Those who would like to come, please either let me know, or buy one for > themselves. I paste the link [3] under the email, I hope it will work. > > Looking forward to seeing everyone in about two weeks! > > Cheers, > Csaba > > > [1] > http://www.commontk.org/index.php/CTK-Hackfest-May-2013#Travel_.26_Hotel > > [2] http://www.hauntedwalk.com/kingstontours.php > > [3] > http://www.groupon.com/deals/haunted-walk-5?p=4&utm_source=newsletter&utm_medium=email&sid=ab43a77f-2db4-43eb-993f-b7722e9bd376&division=kingston&user=84b66d60c6aab9e02e3a7744fddeb8706bf07c10889845613441a6801dc3f33b&date=20130507&s=body&c=deal_img&d=deal-page&utm_campaign=haunted-walk-5 > _______________________________________________ > Ctk-developers mailing list > Ctk-developers at commontk.org > http://public.kitware.com/cgi-bin/mailman/listinfo/ctk-developers**** > > ** ** > > ** ** > -------------- next part -------------- An HTML attachment was scrubbed... URL: From xenophon.papademetris at yale.edu Wed May 8 15:38:53 2013 From: xenophon.papademetris at yale.edu (Papademetris, Xenophon) Date: Wed, 8 May 2013 15:38:53 +0000 Subject: [Ctk-developers] Build Error Message-ID: <7CC3F1E228E90A4CACC7D23B514809520DD57917@x10-mbx7.yu.yale.edu> Back to simpler stuff after the whole scheduling issue. I am getting started with CTK and I am running into a build issue. I am on a "fresh" Debian 7 64-bit Virtual Machine. (See the attached screenshot and CMakeCache.txt files). Basically FindDCMTK.cmake fails to find DCMTK. Any help appreciated. Xenios [cid:image003.jpg at 01CE4BE0.9CE51760] -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image003.jpg Type: image/jpeg Size: 25426 bytes Desc: image003.jpg URL: -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: CMakeCache.txt URL: From xenophon.papademetris at yale.edu Wed May 8 17:18:51 2013 From: xenophon.papademetris at yale.edu (Papademetris, Xenophon) Date: Wed, 8 May 2013 17:18:51 +0000 Subject: [Ctk-developers] Build Error In-Reply-To: <7CC3F1E228E90A4CACC7D23B514809520DD57917@x10-mbx7.yu.yale.edu> References: <7CC3F1E228E90A4CACC7D23B514809520DD57917@x10-mbx7.yu.yale.edu> Message-ID: <7CC3F1E228E90A4CACC7D23B514809520DD57A4E@x10-mbx7.yu.yale.edu> To follow up: I got the build to work by commenting out the following lines in FindDCMTK.cmake and setting DCMTK_DIR to point to ${BUILD}/CMakeExternals/Install +#find_package(DCMTK ${_DCMTK_REQUIRED} ${_DCMTK_QUIET} NO_MODULE) +#if(DCMTK_FOUND +# AND NOT "x" STREQUAL "x${DCMTK_LIBRARIES}" +# AND NOT "x" STREQUAL "x${DCMTK_INCLUDE_DIRS}") +# return() +#endif() Xenios From: ctk-developers-bounces at commontk.org [mailto:ctk-developers-bounces at commontk.org] On Behalf Of Papademetris, Xenophon Sent: Wednesday, May 08, 2013 11:39 AM To: CTK Developers Mailing List (ctk-developers at commontk.org) Subject: [Ctk-developers] Build Error Back to simpler stuff after the whole scheduling issue. I am getting started with CTK and I am running into a build issue. I am on a "fresh" Debian 7 64-bit Virtual Machine. (See the attached screenshot and CMakeCache.txt files). Basically FindDCMTK.cmake fails to find DCMTK. Any help appreciated. Xenios [cid:image001.jpg at 01CE4BEE.93F06CF0] -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 25426 bytes Desc: image001.jpg URL: From pieper at ibility.net Wed May 8 18:19:05 2013 From: pieper at ibility.net (Steve Pieper) Date: Wed, 8 May 2013 14:19:05 -0400 Subject: [Ctk-developers] Build Error In-Reply-To: <7CC3F1E228E90A4CACC7D23B514809520DD57A4E@x10-mbx7.yu.yale.edu> References: <7CC3F1E228E90A4CACC7D23B514809520DD57917@x10-mbx7.yu.yale.edu> <7CC3F1E228E90A4CACC7D23B514809520DD57A4E@x10-mbx7.yu.yale.edu> Message-ID: Hi Xenios - Yes, there's been a lot of work in the past several months to improve the cmake infrastructure of DMCTK -- a key issue is making the installed packages discoverable, so the DCMTKConfig.cmake is findable by the FindDCMTK.cmake. There's been a long history of different packages (ITK, etc) providing one (or more!) custom FindDCMTK.cmake files in their distributions. There's been some discussion on the slicer and itk mailing lists [1]. So in a nutshell, it looks like ctk found that you had a DCMTK installed, but couldn't recognize the variables in it. -Steve [1] http://www.itk.org/pipermail/insight-developers/2013-January/022414.html On Wed, May 8, 2013 at 1:18 PM, Papademetris, Xenophon < xenophon.papademetris at yale.edu> wrote: > To follow up:**** > > ** ** > > I got the build to work by commenting out the following lines in > FindDCMTK.cmake and setting DCMTK_DIR to point to > ${BUILD}/CMakeExternals/Install**** > > ** ** > > +#find_package(DCMTK ${_DCMTK_REQUIRED} ${_DCMTK_QUIET} NO_MODULE)**** > > +#if(DCMTK_FOUND**** > > +# AND NOT "x" STREQUAL "x${DCMTK_LIBRARIES}"**** > > +# AND NOT "x" STREQUAL "x${DCMTK_INCLUDE_DIRS}")**** > > +# return()**** > > +#endif()**** > > ** ** > > Xenios**** > > ** ** > > *From:* ctk-developers-bounces at commontk.org [mailto: > ctk-developers-bounces at commontk.org] *On Behalf Of *Papademetris, Xenophon > *Sent:* Wednesday, May 08, 2013 11:39 AM > *To:* CTK Developers Mailing List (ctk-developers at commontk.org) > *Subject:* [Ctk-developers] Build Error**** > > ** ** > > Back to simpler stuff after the whole scheduling issue.**** > > ** ** > > I am getting started with CTK and I am running into a build issue. I am on > a ?fresh? Debian 7 64-bit Virtual Machine. (See the attached screenshot and > CMakeCache.txt files). Basically FindDCMTK.cmake fails to find DCMTK.**** > > ** ** > > Any help appreciated.**** > > ** ** > > Xenios**** > > ** ** > > ** ** > > **** > > _______________________________________________ > Ctk-developers mailing list > Ctk-developers at commontk.org > http://public.kitware.com/cgi-bin/mailman/listinfo/ctk-developers > > -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 25426 bytes Desc: not available URL: From yves.martelli at upf.edu Thu May 9 09:08:34 2013 From: yves.martelli at upf.edu (Yves Martelli) Date: Thu, 9 May 2013 11:08:34 +0200 Subject: [Ctk-developers] Introductions ... In-Reply-To: References: <7CC3F1E228E90A4CACC7D23B514809520DD2F4FE@x10-mbx7.yu.yale.edu> Message-ID: Dear Steve and all, Unfortunately I can't make it to Kingston but I am interested in hangouts regarding command line plugins! Best, Yves 2013/5/3 Steve Pieper > Hi Xenios and all - > > The hackfest is getting closer and plans are coming together - it'll be > great to work with everyone! Participants please be sure to sign up for a > commontk wiki account and make sure that you are on the attendee list if > you will be there in person [1]. > > If you aren't able to travel but want to be part of the effort please > email the list since we'll probably schedule a few google hangouts during > the week. > > See you soon, > Steve > > [1] http://www.commontk.org/index.php/CTK-Hackfest-May-2013#Attendees > > > On Tue, Apr 16, 2013 at 9:16 PM, Papademetris, Xenophon < > xenophon.papademetris at yale.edu> wrote: > >> Hi all, >> >> Steve Pieper invited me to join people in Kingston in May which I will >> hopefully do (95% at this point). Some of the names (as listed on "The >> Team" page) are familiar. For those of you I have not met before, I work at >> Yale and coordinate for many years our in house software package ( >> bioimagesuite.org). Most of my experience is with VTK (I taught a >> Graduate seminar with this -- see here >> http://bioimagesuite.yale.edu/vtkbook/index.aspx >> ) , though I have >> played with other stuff (e.g. OpenIGTLink/VVLink etc.) >> >> My primary interests with respect to CTK is with the Command Line >> Interfaces and the whole general area of formalizing interoperability >> between software in this area. On my non-programming side I work on a >> variety of medical image analysis projects ranging from fMRI to >> Registration to Angiography to image-guided intervention work. >> >> Looking forward to meeting people in Kingston in May, >> >> Xenios >> >> >> --------------------------------------------------------------------------------------- >> Xenios Papademetris >> Assoc. Professor of Diagnostic Radiology and Biomedical Engineering >> Yale University School of Medicine, >> New Haven, CT 06520-8042 USA >> >> > > _______________________________________________ > Ctk-developers mailing list > Ctk-developers at commontk.org > http://public.kitware.com/cgi-bin/mailman/listinfo/ctk-developers > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From s.zelzer at dkfz-heidelberg.de Thu May 9 10:22:05 2013 From: s.zelzer at dkfz-heidelberg.de (Sascha Zelzer) Date: Thu, 09 May 2013 12:22:05 +0200 Subject: [Ctk-developers] Fwd: [mitk-users] MITK with Latest CTK - problem with DCMTK In-Reply-To: References: <5169D05D.4020004@dkfz-heidelberg.de> <0A532190-CCFD-4197-A1CE-9DFCEFC8E5A7@live.ucl.ac.uk> Message-ID: <518B78CD.4060000@dkfz-heidelberg.de> Hi JC, Did you have time to have a look at the broken support for the official DCMTK snapshot inside CTK? If I remember correctly, we settled on the decision to support the latest official DCMTK snapshot together with the patched versions of DCMTK contained in the commontk Github repositories (eventually by "ifdef"s in the CTK code). As Marco pointed out in his E-Mail, it looks like your merge containing changes to the FindDCMTK.cmake script broke the support for the DCMTK snapshot... It would be great to solve this issue before the Hackfest. Thanks, Sascha On 04/19/2013 02:40 PM, Jean-Christophe Fillion-Robin wrote: > Hi Matt, > > I don't know which change or who did these changes. But if we can find > out, I could provide guidance so that we can add so configure check in > order to make the feature introspection of DCMTK robust. That way, we > would be able to include / exclude part of the CTKDCMTK library > appropriately. > > Thanks > Jc > > > On Fri, Apr 19, 2013 at 2:50 AM, Clarkson, Matt > wrote: > > Hi there CTK-ers, > > please can anyone help me out with a CTK / DCMTK problem? It > looks to me like recent changes to CTK stop CTK working with the > official DCMTK snapshots which are used in MITK. > Is that right? > > If anyone can shed light on the way forward, Im happy to try and > help here. > > Thanks > > Matt > > > Begin forwarded message: > >> *From: *Marco Nolden > > >> *Subject: **Re: [mitk-users] MITK with Latest CTK - problem with >> DCMTK* >> *Date: *13 April 2013 22:38:37 BST >> *To: *"Clarkson, Matt" > > >> *Cc: *mitk-users > > >> >> Hi Matt, >> >> MITK's super build is using dcmtk-3.6.1_20120222, but there is a >> newer snapshot here [1] and from a quick look through the Changes >> we could upgrade if it compiles with MITK. If you like to try it >> you could replace the URL in CMakeExternals/DCMTK.cmake (and >> remove or adapt the URL_MD5 line). >> >> I'm not sure though that the CTK change you mention will work >> with that snapshot. CTK by default uses a forked version of DCMTK >> and there has been some activity lately. IIRC we agreed that CTK >> _should_ always build with the official DCMTK snapshots as well, >> but I'm afraid that doesn't get tested regularly. So if that is >> broken we should contact JC if the changes can be made in a >> compatible way. >> >> If you could confirm that MITK builds with the newer snapshot we >> could upgrade this on our side. Unfortunately I can't test it >> myself at the moment. >> >> Upgrading the CTK version can be more tricky, Sascha could maybe >> comment on that. If you are just interested in the slider tick >> change, we could also use a special version, did that before. >> >> Best, >> >> Marco >> >> [1]: >> http://dicom.offis.de/download/dcmtk/snapshot/dcmtk-3.6.1_20121102.tar.gz >> >> >> >> Am 04.04.2013 21:06, schrieb Clarkson, Matt: >>> Hi there, >>> >>> Following the merging of CTK issue #313 to CTK master (CTK >>> commit 099a88bb24), I then tried to update my MITK to compile >>> with this version of CTK, so I could pick up Miklos's new slider >>> tick interval. >>> However, in the CTK master branch, commit 52d9539f5e, which is 3 >>> before the latest, causes CTK to not build using the DCMTK >>> version that MITK is using. >>> >>> So, it looks to me like MITK will need to consider upgrading >>> DCMTK before they can move to the latest CTK, which is the >>> reason I post here, instead of the CTK mailing list. >>> >>> However, I don't really understand what the reason for the CTK >>> change is, or why CTK has a different fork of DCMTK, or what >>> exactly is the version of DCMTK that MITK is using - >>> dcmtk-3.6.1_20120222.tar.gz, so Im a bit stuck. >>> >>> Can anyone in MITK-land shed a light on a way forward? >>> >>> Thanks >>> >>> Matt >>> >>> >>> >>> ------------------------------------------------------------------------------ >>> Minimize network downtime and maximize team effectiveness. >>> Reduce network management and security costs.Learn how to hire >>> the most talented Cisco Certified professionals. Visit the >>> Employer Resources Portal >>> http://www.cisco.com/web/learning/employer_resources/index.html >>> _______________________________________________ >>> mitk-users mailing list >>> mitk-users at lists.sourceforge.net >>> >>> https://lists.sourceforge.net/lists/listinfo/mitk-users >> >> > > > _______________________________________________ > Ctk-developers mailing list > Ctk-developers at commontk.org > http://public.kitware.com/cgi-bin/mailman/listinfo/ctk-developers > > > > > -- > +1 919 869 8849 -------------- next part -------------- An HTML attachment was scrubbed... URL: From Zovastra.Attah at creatis.insa-lyon.fr Thu May 9 14:02:47 2013 From: Zovastra.Attah at creatis.insa-lyon.fr (Zovastra Attah) Date: Thu, 9 May 2013 16:02:47 +0200 Subject: [Ctk-developers] Presentation Zovastra Attah and Bug in CTK installation Message-ID: Hello!! My name is Zovastra ATTAH. I am a student in master 2 Complementary competence in Computer Science. As part of my end of study I completed an internship at Creatis laboratory in Lyon(France) on "the exploration and development of plugins for the medical imaging CommonTK open-source". My mission for this course is : -To contribute to improving the CTK plugin QtTesting analyzing feedback and solving bugs listed on github. -Embed in a BBTK implementation features QtTesting provided by CTK (automated testing of graphical user interfaces in Qt, integrable CTest / CDash). -Possibly integrate BBTK tools MAF Quality Assurance providing various tests (statistics, respect coding conventions, code complexity, memory leak, coverage ...). I also hold a master medical imaging I 'm trying to install CTK and I have some bug. Wanting to run CTK_BUILD_ALL_APPS , After That I have configured and generated and doing a make. I get as error: In file included from /CTK-superbuild/PythonQt/src/PythonQtInstanceWrapper.h:45:0, /CTK-superbuild/PythonQt/src/PythonQt.h:46, /CTK-superbuild/PythonQt/src/PythonQtClassInfo.h:41, /CTK-superbuild/PythonQt/src/PythonQtClassInfo.cpp:42: /CTK-superbuild/PythonQt/src/PythonQtPythonInclude.h:93:21: fatal error: Python.h: No such file or directory compilation terminated. HEAD is now at 1d46d0e... Include CTest module so that CTestUseLaunchers is included [ 56%] Performing configure step for 'qxmlrpc' make[5]: *** [CMakeFiles/PythonQt.dir/src/PythonQtClassInfo.cpp.o] Error 1 make[4]: *** [CMakeFiles/PythonQt.dir/all] Error 2 make[3]: *** [all] Error 2 make[2]: *** [PythonQt-cmake/src/PythonQt-stamp/PythonQt-install] Error 2 make[1]: *** [CMakeFiles/PythonQt.dir/all] Error 2 make[1]: *** Waiting for unfinished jobs.... -- Configuring done -- Generating done CMake Warning: Manually-specified variables were not used by the project: CMAKE_C_FLAGS If I understand CTK is pointing on the package python already installed on the machine instead of pointing to the package cloned. I have then uninstall the package python-dev, but I have always the same errors. Please can you give me advise. I work with fedora thank From jchris.fillionr at kitware.com Thu May 16 22:30:59 2013 From: jchris.fillionr at kitware.com (Jean-Christophe Fillion-Robin) Date: Thu, 16 May 2013 18:30:59 -0400 Subject: [Ctk-developers] ctkSliderWidget, ctkDoubleSlider and ctkDoubleSpinBox invertedControls property In-Reply-To: References: Message-ID: Hi Folks, As this been resolved / finalised ? Jc On Thu, May 2, 2013 at 8:08 PM, Miklos Espak wrote: > On Fri, May 3, 2013 at 12:56 AM, Julien Finet > wrote: > > > > On Thu, May 2, 2013 at 7:32 PM, Miklos Espak wrote: > >> > >> Hi Julien, > >> > >> I am afraid, I cannot do this in the close future. > >> > >> We are still stuck with an older revision of CTK and cannot upgrade > >> because MITK cannot be built with the current CTK master. This is > >> because of a DCMTK CMake issue that has been discussed by JC and Marco > >> recently. > >> > >> So, I do not have a ctkSpinBox yet, and the upgrade would break our > build. > > > > I believe you should be able to cherry-pick some commits though. > > We tried it with Sascha today, it conflicted. I would resolve it if I > could benefit of the change, but currently, I cannot for the reasons > mentioned before. > > I just mentioned that I cannot upgrade the CTK, that means I am *not > able to test* those changes even if I could resolve the conflicts and > build it, which in itself is just double work, with questionable > result and no benefit for me. > > >> > >> You said, the ctkSpinBox might lead to some issues. Does this mean > >> that you are thinking of having a separate double and integer spin > >> boxes? > > > > I'm not sure yet, but it's a possibility. I would like to have a good > reason > > to do it before doing so. For example, one (false) problem I was > thinking of > > was that the ctkSpinBox has signals and slots that take doubles and not > > ints. And sometimes it's much easier when the signals/slots have the > right > > type. But we could add those signal/slots to ctkSpinBox, it's not a > problem. > > In this case, it might be better to wait until the design is finalised. > > Cheers, > Miklos > _______________________________________________ > Ctk-developers mailing list > Ctk-developers at commontk.org > http://public.kitware.com/cgi-bin/mailman/listinfo/ctk-developers > -- +1 919 869 8849 -------------- next part -------------- An HTML attachment was scrubbed... URL: From espakm at gmail.com Fri May 17 06:52:18 2013 From: espakm at gmail.com (Miklos Espak) Date: Fri, 17 May 2013 07:52:18 +0100 Subject: [Ctk-developers] ctkSliderWidget, ctkDoubleSlider and ctkDoubleSpinBox invertedControls property In-Reply-To: References: Message-ID: Hi Jc, no, it has not. I tried to rebase the fix onto the upstream/master, but there are conflicts that I cannot resolve. For my fix, I introduced a new ctkDoubleSpinBox class that derives from QDoubleSpinBox and adds the invertedControls property. I changed the ctkSliderWidget to use this ctkDoubleSpinBox instead of QDoubleSpinBox. In the meantime, a new ctkSpinBox class has appeared in CTK, that derives from QWidget, and delegates its calls to an internal QDoubleSpinBox. The ctkSliderWidget has been changed to use this ctkSpinBox instead of QDoubleSpinBox. It is not clear to me what is the rationale for this change, and why it could not be done by inheritance. Anyway, there is no straightforward way to apply my fix on this new code. Another problem is that I cannot build the CTK master, because of the DCMTK issue. The bug breaks the build, and so, I cannot test any change that is applied on the master. It would be important to be able to build CTK with the official DCMTK. The last version of the "inverted" properties feature is here: https://github.com/NifTK/CTK/commits/slider-inverted-properties Thanks, Miklos -------------- next part -------------- An HTML attachment was scrubbed... URL: From m.clarkson at ucl.ac.uk Fri May 17 09:27:38 2013 From: m.clarkson at ucl.ac.uk (Clarkson, Matt) Date: Fri, 17 May 2013 09:27:38 +0000 Subject: [Ctk-developers] Proposal: CTK Hackfest - London - 4th Nov 2013 Message-ID: Dear CTK Developers We would like to organise a CTK Hackfest in London, UK. As a proposal, how about: Date: 4th Nov - 8th Nov, 2013 Location: Room 2.14, Malet Place Engineering Building, UCL. http://goo.gl/maps/2encP Best bet for a reasonably priced hotel: The Tavistock Hotel http://goo.gl/maps/DM7Hd Please can people reply to indicate their interest. We have a room booked, and the proposed week is preferable for us as it is a reading week. However, if the date is not suitable for too many people, then maybe we can re-think. If we get enough people, then maybe we can also try and get a better hotel rate. Thanks Matt and Miklos ------------------------------------------------------ Matt Clarkson Ph.D. CMIC Software Manager Senior Research Associate m.clarkson at ucl.ac.uk Skype: drmattclarkson Centre For Medical Image Computing http://cmic.cs.ucl.ac.uk/staff/matt_clarkson/ Tel: 020 7679 0257 Fax: 020 7679 0255 Room: 2.21 Malet Place Engineering Building Dementia Research Centre http://dementia.ion.ucl.ac.uk/ Fax: 020 7676 2066 ------------------------------------------------------ -------------- next part -------------- An HTML attachment was scrubbed... URL: From pinter at cs.queensu.ca Sun May 19 15:48:00 2013 From: pinter at cs.queensu.ca (=?ISO-8859-1?Q?Csaba_Pint=E9r?=) Date: Sun, 19 May 2013 11:48:00 -0400 Subject: [Ctk-developers] Hackfest starting Message-ID: <5198F430.6060205@cs.queensu.ca> Dear hackfest participants, I hope everyone will have arrived alright by this evening. The hackfest starts tomorrow. Our room is in the kinesiology building, located on campus [1], well within walking distance from most hotels around downtown. The room number is 107. It is on the first floor to the left hand side, quite easy to find by following the signs. Let's meet there around 9AM, I hope we will be done with moving all the stuff by then. If you encounter any problems, you can call me on my cell phone: +1-613-893-2706. Looking forward to seeing you tomorrow! Cheers, Csaba [1] http://www.queensu.ca/campusmap/?mapquery=kinesiology From pieper at ibility.net Sun May 19 15:59:30 2013 From: pieper at ibility.net (Steve Pieper) Date: Sun, 19 May 2013 11:59:30 -0400 Subject: [Ctk-developers] Hackfest starting In-Reply-To: <5198F430.6060205@cs.queensu.ca> References: <5198F430.6060205@cs.queensu.ca> Message-ID: Thanks Csaba - I'm about ready to hit the road. See you in the morning! I started putting some notes and links on the event page for our discussion [1]. Other people please add topics that you want to go over so we can make plans for the week. I'm looking forward to the group discussion on technology priorities, common objectives, and the proposals for future hackfests. -Steve [1] http://www.commontk.org/index.php/CTK-Hackfest-May-2013#Topics_and_Projects On Sun, May 19, 2013 at 11:48 AM, Csaba Pint?r wrote: > Dear hackfest participants, > > I hope everyone will have arrived alright by this evening. > > The hackfest starts tomorrow. Our room is in the kinesiology building, > located on campus [1], well within walking distance from most hotels around > downtown. The room number is 107. It is on the first floor to the left hand > side, quite easy to find by following the signs. > > Let's meet there around 9AM, I hope we will be done with moving all the > stuff by then. > > If you encounter any problems, you can call me on my cell phone: > +1-613-893-2706. > > Looking forward to seeing you tomorrow! > > Cheers, > Csaba > > [1] http://www.queensu.ca/**campusmap/?mapquery=**kinesiology > ______________________________**_________________ > Ctk-developers mailing list > Ctk-developers at commontk.org > http://public.kitware.com/cgi-**bin/mailman/listinfo/ctk-**developers > -------------- next part -------------- An HTML attachment was scrubbed... URL: From jchris.fillionr at kitware.com Sun May 19 21:57:48 2013 From: jchris.fillionr at kitware.com (Jean-Christophe Fillion-Robin) Date: Sun, 19 May 2013 17:57:48 -0400 Subject: [Ctk-developers] Hackfest starting In-Reply-To: References: <5198F430.6060205@cs.queensu.ca> Message-ID: Hi Folks, Sounds like a great plan. Considering some of us won't be able to attend the hackfest, would be nice to schedule some Google hangout session. First one being on Monday morning. To make it easier, I propose to create a Google plus community, what do you all think ? Thanks Jc On Sun, May 19, 2013 at 11:59 AM, Steve Pieper wrote: > Thanks Csaba - I'm about ready to hit the road. See you in the morning! > > I started putting some notes and links on the event page for our > discussion [1]. Other people please add topics that you want to go over so > we can make plans for the week. I'm looking forward to the group > discussion on technology priorities, common objectives, and the proposals > for future hackfests. > > -Steve > > [1] > http://www.commontk.org/index.php/CTK-Hackfest-May-2013#Topics_and_Projects > > > > > On Sun, May 19, 2013 at 11:48 AM, Csaba Pint?r wrote: > >> Dear hackfest participants, >> >> I hope everyone will have arrived alright by this evening. >> >> The hackfest starts tomorrow. Our room is in the kinesiology building, >> located on campus [1], well within walking distance from most hotels around >> downtown. The room number is 107. It is on the first floor to the left hand >> side, quite easy to find by following the signs. >> >> Let's meet there around 9AM, I hope we will be done with moving all the >> stuff by then. >> >> If you encounter any problems, you can call me on my cell phone: >> +1-613-893-2706. >> >> Looking forward to seeing you tomorrow! >> >> Cheers, >> Csaba >> >> [1] http://www.queensu.ca/**campusmap/?mapquery=**kinesiology >> ______________________________**_________________ >> Ctk-developers mailing list >> Ctk-developers at commontk.org >> http://public.kitware.com/cgi-**bin/mailman/listinfo/ctk-**developers >> > > > _______________________________________________ > Ctk-developers mailing list > Ctk-developers at commontk.org > http://public.kitware.com/cgi-bin/mailman/listinfo/ctk-developers > > -- +1 919 869 8849 -------------- next part -------------- An HTML attachment was scrubbed... URL: From m.nolden at dkfz-heidelberg.de Mon May 20 03:51:12 2013 From: m.nolden at dkfz-heidelberg.de (Marco Nolden) Date: Mon, 20 May 2013 05:51:12 +0200 Subject: [Ctk-developers] Build Error In-Reply-To: References: <7CC3F1E228E90A4CACC7D23B514809520DD57917@x10-mbx7.yu.yale.edu> <7CC3F1E228E90A4CACC7D23B514809520DD57A4E@x10-mbx7.yu.yale.edu> Message-ID: <51999DB0.80207@dkfz-heidelberg.de> I can confirm the same error for a clean build on Windows 7 64bit with MSVC 2010. Current master, all defaults, just CTK_APP_ctkDICOM turned on. It can also be seen on the dashboard. The workaround worked as well for me. I guess the latest change to FindDCMTK.cmake [1] has to be revised. Marco [1]: https://github.com/commontk/CTK/commit/52d9539f5e76149f3d3e7a69f19181dfd7e3dc56 Am 08.05.2013 20:19, schrieb Steve Pieper: > Hi Xenios - > > Yes, there's been a lot of work in the past several months to improve > the cmake infrastructure of DMCTK -- a key issue is making the > installed packages discoverable, so the DCMTKConfig.cmake is findable > by the FindDCMTK.cmake. There's been a long history of different > packages (ITK, etc) providing one (or more!) custom FindDCMTK.cmake > files in their distributions. There's been some discussion on the > slicer and itk mailing lists [1]. So in a nutshell, it looks like ctk > found that you had a DCMTK installed, but couldn't recognize the > variables in it. > > -Steve > > [1] > http://www.itk.org/pipermail/insight-developers/2013-January/022414.html > > > On Wed, May 8, 2013 at 1:18 PM, Papademetris, Xenophon > > wrote: > > To follow up: > > I got the build to work by commenting out the following lines in > FindDCMTK.cmake and setting DCMTK_DIR to point to > ${BUILD}/CMakeExternals/Install > > +#find_package(DCMTK ${_DCMTK_REQUIRED} ${_DCMTK_QUIET} NO_MODULE) > > +#if(DCMTK_FOUND > > +# AND NOT "x" STREQUAL "x${DCMTK_LIBRARIES}" > > +# AND NOT "x" STREQUAL "x${DCMTK_INCLUDE_DIRS}") > > +# return() > > +#endif() > > Xenios > > *From:*ctk-developers-bounces at commontk.org > > [mailto:ctk-developers-bounces at commontk.org > ] *On Behalf Of > *Papademetris, Xenophon > *Sent:* Wednesday, May 08, 2013 11:39 AM > *To:* CTK Developers Mailing List (ctk-developers at commontk.org > ) > *Subject:* [Ctk-developers] Build Error > > Back to simpler stuff after the whole scheduling issue. > > I am getting started with CTK and I am running into a build issue. > I am on a ?fresh? Debian 7 64-bit Virtual Machine. (See the > attached screenshot and CMakeCache.txt files). Basically > FindDCMTK.cmake fails to find DCMTK. > > Any help appreciated. > > Xenios > > > _______________________________________________ > Ctk-developers mailing list > Ctk-developers at commontk.org > http://public.kitware.com/cgi-bin/mailman/listinfo/ctk-developers > > -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: image/jpeg Size: 25426 bytes Desc: not available URL: From pieper at ibility.net Mon May 20 13:16:56 2013 From: pieper at ibility.net (Steve Pieper) Date: Mon, 20 May 2013 09:16:56 -0400 Subject: [Ctk-developers] Hackfest starting In-Reply-To: References: <5198F430.6060205@cs.queensu.ca> Message-ID: Hi Jc - Great idea! We are getting settled in the room here, but if you could be setting up a hangout we can join from here soon. -Steve On Sun, May 19, 2013 at 5:57 PM, Jean-Christophe Fillion-Robin < jchris.fillionr at kitware.com> wrote: > Hi Folks, > > Sounds like a great plan. Considering some of us won't be able to attend > the hackfest, would be nice to schedule some Google hangout session. First > one being on Monday morning. > > To make it easier, I propose to create a Google plus community, what do > you all think ? > > Thanks > Jc > > > On Sun, May 19, 2013 at 11:59 AM, Steve Pieper wrote: > >> Thanks Csaba - I'm about ready to hit the road. See you in the morning! >> >> I started putting some notes and links on the event page for our >> discussion [1]. Other people please add topics that you want to go over so >> we can make plans for the week. I'm looking forward to the group >> discussion on technology priorities, common objectives, and the proposals >> for future hackfests. >> >> -Steve >> >> [1] >> http://www.commontk.org/index.php/CTK-Hackfest-May-2013#Topics_and_Projects >> >> >> >> >> On Sun, May 19, 2013 at 11:48 AM, Csaba Pint?r wrote: >> >>> Dear hackfest participants, >>> >>> I hope everyone will have arrived alright by this evening. >>> >>> The hackfest starts tomorrow. Our room is in the kinesiology building, >>> located on campus [1], well within walking distance from most hotels around >>> downtown. The room number is 107. It is on the first floor to the left hand >>> side, quite easy to find by following the signs. >>> >>> Let's meet there around 9AM, I hope we will be done with moving all the >>> stuff by then. >>> >>> If you encounter any problems, you can call me on my cell phone: >>> +1-613-893-2706. >>> >>> Looking forward to seeing you tomorrow! >>> >>> Cheers, >>> Csaba >>> >>> [1] http://www.queensu.ca/**campusmap/?mapquery=**kinesiology >>> ______________________________**_________________ >>> Ctk-developers mailing list >>> Ctk-developers at commontk.org >>> http://public.kitware.com/cgi-**bin/mailman/listinfo/ctk-**developers >>> >> >> >> _______________________________________________ >> Ctk-developers mailing list >> Ctk-developers at commontk.org >> http://public.kitware.com/cgi-bin/mailman/listinfo/ctk-developers >> >> > > > -- > +1 919 869 8849 > -------------- next part -------------- An HTML attachment was scrubbed... URL: From pieper at ibility.net Mon May 20 13:32:34 2013 From: pieper at ibility.net (Steve Pieper) Date: Mon, 20 May 2013 09:32:34 -0400 Subject: [Ctk-developers] Hackfest starting In-Reply-To: References: <5198F430.6060205@cs.queensu.ca> Message-ID: While we are setting up the community, I started a hangout session for testing - you should be able to join this link: https://plus.google.com/hangouts/_/a578950cf1972896282954d23439e7a332004bcb?authuser=0&hl=en On Mon, May 20, 2013 at 9:16 AM, Steve Pieper wrote: > Hi Jc - > > Great idea! We are getting settled in the room here, but if you could be > setting up a hangout we can join from here soon. > > -Steve > > > On Sun, May 19, 2013 at 5:57 PM, Jean-Christophe Fillion-Robin < > jchris.fillionr at kitware.com> wrote: > >> Hi Folks, >> >> Sounds like a great plan. Considering some of us won't be able to attend >> the hackfest, would be nice to schedule some Google hangout session. First >> one being on Monday morning. >> >> To make it easier, I propose to create a Google plus community, what do >> you all think ? >> >> Thanks >> Jc >> >> >> On Sun, May 19, 2013 at 11:59 AM, Steve Pieper wrote: >> >>> Thanks Csaba - I'm about ready to hit the road. See you in the morning! >>> >>> I started putting some notes and links on the event page for our >>> discussion [1]. Other people please add topics that you want to go over so >>> we can make plans for the week. I'm looking forward to the group >>> discussion on technology priorities, common objectives, and the proposals >>> for future hackfests. >>> >>> -Steve >>> >>> [1] >>> http://www.commontk.org/index.php/CTK-Hackfest-May-2013#Topics_and_Projects >>> >>> >>> >>> >>> On Sun, May 19, 2013 at 11:48 AM, Csaba Pint?r wrote: >>> >>>> Dear hackfest participants, >>>> >>>> I hope everyone will have arrived alright by this evening. >>>> >>>> The hackfest starts tomorrow. Our room is in the kinesiology building, >>>> located on campus [1], well within walking distance from most hotels around >>>> downtown. The room number is 107. It is on the first floor to the left hand >>>> side, quite easy to find by following the signs. >>>> >>>> Let's meet there around 9AM, I hope we will be done with moving all the >>>> stuff by then. >>>> >>>> If you encounter any problems, you can call me on my cell phone: >>>> +1-613-893-2706. >>>> >>>> Looking forward to seeing you tomorrow! >>>> >>>> Cheers, >>>> Csaba >>>> >>>> [1] http://www.queensu.ca/**campusmap/?mapquery=**kinesiology >>>> ______________________________**_________________ >>>> Ctk-developers mailing list >>>> Ctk-developers at commontk.org >>>> http://public.kitware.com/cgi-**bin/mailman/listinfo/ctk-**developers >>>> >>> >>> >>> _______________________________________________ >>> Ctk-developers mailing list >>> Ctk-developers at commontk.org >>> http://public.kitware.com/cgi-bin/mailman/listinfo/ctk-developers >>> >>> >> >> >> -- >> +1 919 869 8849 >> > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From pieper at ibility.net Mon May 20 16:29:07 2013 From: pieper at ibility.net (Steve Pieper) Date: Mon, 20 May 2013 12:29:07 -0400 Subject: [Ctk-developers] Proposal: CTK Hackfest - London - 4th Nov 2013 In-Reply-To: References: Message-ID: Hi Matt, Miklos - Greetings from Kingston! Since we have a quorum of CTK developers here we reviewed the London idea and it looks like it will work for people. Want to start up a wiki page with some of the details so people can start planning? To economize there was a question about maybe getting a apartment of something that people to share (airbnb?). Thanks for organizing! -Steve On Fri, May 17, 2013 at 5:27 AM, Clarkson, Matt wrote: > Dear CTK Developers > > We would like to organise a CTK Hackfest in London, UK. > > As a proposal, how about: > > Date: 4th Nov - 8th Nov, 2013 > > Location: Room 2.14, Malet Place Engineering Building, UCL. > http://goo.gl/maps/2encP > > Best bet for a reasonably priced hotel: The Tavistock Hotel > http://goo.gl/maps/DM7Hd > > Please can people reply to indicate their interest. We have a room > booked, and the proposed week is preferable for us as it is a reading week. > However, if the date is not suitable for too many people, then maybe we can > re-think. > > If we get enough people, then maybe we can also try and get a better > hotel rate. > > Thanks > > Matt and Miklos > > ------------------------------------------------------ > Matt Clarkson Ph.D. > CMIC Software Manager > Senior Research Associate > m.clarkson at ucl.ac.uk > Skype: drmattclarkson > > Centre For Medical Image Computing > http://cmic.cs.ucl.ac.uk/staff/matt_clarkson/ > Tel: 020 7679 0257 > Fax: 020 7679 0255 > Room: 2.21 Malet Place Engineering Building > > Dementia Research Centre > http://dementia.ion.ucl.ac.uk/ > Fax: 020 7676 2066 > ------------------------------------------------------ > > > > > > > > > > _______________________________________________ > Ctk-developers mailing list > Ctk-developers at commontk.org > http://public.kitware.com/cgi-bin/mailman/listinfo/ctk-developers > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From jchris.fillionr at kitware.com Mon May 20 18:35:21 2013 From: jchris.fillionr at kitware.com (Jean-Christophe Fillion-Robin) Date: Mon, 20 May 2013 14:35:21 -0400 Subject: [Ctk-developers] Build Error In-Reply-To: <51999DB0.80207@dkfz-heidelberg.de> References: <7CC3F1E228E90A4CACC7D23B514809520DD57917@x10-mbx7.yu.yale.edu> <7CC3F1E228E90A4CACC7D23B514809520DD57A4E@x10-mbx7.yu.yale.edu> <51999DB0.80207@dkfz-heidelberg.de> Message-ID: Hi Folks, I just updated my original topic with a fix: https://github.com/jcfr/CTK/compare/update-find-dcmtk-to-support-no-module Will touch base with Kent (who originally updated FindDCMTK.cmake) and check if it still work as expected for Slicer. Stay tuned, Jc On Sun, May 19, 2013 at 11:51 PM, Marco Nolden wrote: > I can confirm the same error for a clean build on Windows 7 64bit with > MSVC 2010. Current master, all defaults, just CTK_APP_ctkDICOM turned on. > It can also be seen on the dashboard. > > The workaround worked as well for me. I guess the latest change to > FindDCMTK.cmake [1] has to be revised. > > Marco > > [1]: > https://github.com/commontk/CTK/commit/52d9539f5e76149f3d3e7a69f19181dfd7e3dc56 > > Am 08.05.2013 20:19, schrieb Steve Pieper: > > Hi Xenios - > > Yes, there's been a lot of work in the past several months to improve > the cmake infrastructure of DMCTK -- a key issue is making the installed > packages discoverable, so the DCMTKConfig.cmake is findable by the > FindDCMTK.cmake. There's been a long history of different packages (ITK, > etc) providing one (or more!) custom FindDCMTK.cmake files in their > distributions. There's been some discussion on the slicer and itk mailing > lists [1]. So in a nutshell, it looks like ctk found that you had a DCMTK > installed, but couldn't recognize the variables in it. > > -Steve > > [1] > http://www.itk.org/pipermail/insight-developers/2013-January/022414.html > > > On Wed, May 8, 2013 at 1:18 PM, Papademetris, Xenophon < > xenophon.papademetris at yale.edu> wrote: > >> To follow up: >> >> >> >> I got the build to work by commenting out the following lines in >> FindDCMTK.cmake and setting DCMTK_DIR to point to >> ${BUILD}/CMakeExternals/Install >> >> >> >> +#find_package(DCMTK ${_DCMTK_REQUIRED} ${_DCMTK_QUIET} NO_MODULE) >> >> +#if(DCMTK_FOUND >> >> +# AND NOT "x" STREQUAL "x${DCMTK_LIBRARIES}" >> >> +# AND NOT "x" STREQUAL "x${DCMTK_INCLUDE_DIRS}") >> >> +# return() >> >> +#endif() >> >> >> >> Xenios >> >> >> >> *From:* ctk-developers-bounces at commontk.org [mailto: >> ctk-developers-bounces at commontk.org] *On Behalf Of *Papademetris, >> Xenophon >> *Sent:* Wednesday, May 08, 2013 11:39 AM >> *To:* CTK Developers Mailing List (ctk-developers at commontk.org) >> *Subject:* [Ctk-developers] Build Error >> >> >> >> Back to simpler stuff after the whole scheduling issue. >> >> >> >> I am getting started with CTK and I am running into a build issue. I am >> on a ?fresh? Debian 7 64-bit Virtual Machine. (See the attached screenshot >> and CMakeCache.txt files). Basically FindDCMTK.cmake fails to find DCMTK. >> >> >> >> Any help appreciated. >> >> >> >> Xenios >> >> >> >> >> >> >> _______________________________________________ >> Ctk-developers mailing list >> Ctk-developers at commontk.org >> http://public.kitware.com/cgi-bin/mailman/listinfo/ctk-developers >> >> > > > _______________________________________________ > Ctk-developers mailing list > Ctk-developers at commontk.org > http://public.kitware.com/cgi-bin/mailman/listinfo/ctk-developers > > -- +1 919 869 8849 -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: image/jpeg Size: 25426 bytes Desc: not available URL: From jchris.fillionr at kitware.com Mon May 20 23:02:23 2013 From: jchris.fillionr at kitware.com (Jean-Christophe Fillion-Robin) Date: Mon, 20 May 2013 19:02:23 -0400 Subject: [Ctk-developers] Fwd: [mitk-users] MITK with Latest CTK - problem with DCMTK In-Reply-To: <518B78CD.4060000@dkfz-heidelberg.de> References: <5169D05D.4020004@dkfz-heidelberg.de> <0A532190-CCFD-4197-A1CE-9DFCEFC8E5A7@live.ucl.ac.uk> <518B78CD.4060000@dkfz-heidelberg.de> Message-ID: For reference, a solution has been proposed: https://github.com/commontk/CTK/issues/329 It should be merged shortly. On Thu, May 9, 2013 at 6:22 AM, Sascha Zelzer wrote: > Hi JC, > > Did you have time to have a look at the broken support for the official > DCMTK snapshot inside CTK? If I remember correctly, we settled on the > decision to support the latest official DCMTK snapshot together with the > patched versions of DCMTK contained in the commontk Github repositories > (eventually by "ifdef"s in the CTK code). > > As Marco pointed out in his E-Mail, it looks like your merge containing > changes to the FindDCMTK.cmake script broke the support for the DCMTK > snapshot... > > It would be great to solve this issue before the Hackfest. > > Thanks, > > Sascha > > > On 04/19/2013 02:40 PM, Jean-Christophe Fillion-Robin wrote: > > Hi Matt, > > I don't know which change or who did these changes. But if we can find > out, I could provide guidance so that we can add so configure check in > order to make the feature introspection of DCMTK robust. That way, we would > be able to include / exclude part of the CTKDCMTK library appropriately. > > Thanks > Jc > > > On Fri, Apr 19, 2013 at 2:50 AM, Clarkson, Matt wrote: > >> Hi there CTK-ers, >> >> please can anyone help me out with a CTK / DCMTK problem? It looks to >> me like recent changes to CTK stop CTK working with the official DCMTK >> snapshots which are used in MITK. >> Is that right? >> >> If anyone can shed light on the way forward, Im happy to try and help >> here. >> >> Thanks >> >> Matt >> >> >> Begin forwarded message: >> >> *From: *Marco Nolden >> *Subject: **Re: [mitk-users] MITK with Latest CTK - problem with DCMTK* >> *Date: *13 April 2013 22:38:37 BST >> *To: *"Clarkson, Matt" >> *Cc: *mitk-users >> >> Hi Matt, >> >> MITK's super build is using dcmtk-3.6.1_20120222, but there is a newer >> snapshot here [1] and from a quick look through the Changes we could >> upgrade if it compiles with MITK. If you like to try it you could replace >> the URL in CMakeExternals/DCMTK.cmake (and remove or adapt the URL_MD5 >> line). >> >> I'm not sure though that the CTK change you mention will work with that >> snapshot. CTK by default uses a forked version of DCMTK and there has been >> some activity lately. IIRC we agreed that CTK _should_ always build with >> the official DCMTK snapshots as well, but I'm afraid that doesn't get >> tested regularly. So if that is broken we should contact JC if the changes >> can be made in a compatible way. >> >> If you could confirm that MITK builds with the newer snapshot we could >> upgrade this on our side. Unfortunately I can't test it myself at the >> moment. >> >> Upgrading the CTK version can be more tricky, Sascha could maybe comment >> on that. If you are just interested in the slider tick change, we could >> also use a special version, did that before. >> >> Best, >> >> Marco >> >> [1]: >> http://dicom.offis.de/download/dcmtk/snapshot/dcmtk-3.6.1_20121102.tar.gz >> >> >> >> Am 04.04.2013 21:06, schrieb Clarkson, Matt: >> >> Hi there, >> >> Following the merging of CTK issue #313 to CTK master (CTK commit >> 099a88bb24), I then tried to update my MITK to compile with this version of >> CTK, so I could pick up Miklos's new slider tick interval. >> However, in the CTK master branch, commit 52d9539f5e, which is 3 before >> the latest, causes CTK to not build using the DCMTK version that MITK is >> using. >> >> So, it looks to me like MITK will need to consider upgrading DCMTK before >> they can move to the latest CTK, which is the reason I post here, instead >> of the CTK mailing list. >> >> However, I don't really understand what the reason for the CTK change is, >> or why CTK has a different fork of DCMTK, or what exactly is the version of >> DCMTK that MITK is using - dcmtk-3.6.1_20120222.tar.gz, so Im a bit stuck. >> >> Can anyone in MITK-land shed a light on a way forward? >> >> Thanks >> >> Matt >> >> >> >> >> ------------------------------------------------------------------------------ >> Minimize network downtime and maximize team effectiveness. >> Reduce network management and security costs.Learn how to hire >> the most talented Cisco Certified professionals. Visit the >> Employer Resources Portal >> http://www.cisco.com/web/learning/employer_resources/index.html >> _______________________________________________ >> mitk-users mailing list >> mitk-users at lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/mitk-users >> >> >> >> >> >> _______________________________________________ >> Ctk-developers mailing list >> Ctk-developers at commontk.org >> http://public.kitware.com/cgi-bin/mailman/listinfo/ctk-developers >> >> > > > -- > +1 919 869 8849 > > > -- +1 919 869 8849 -------------- next part -------------- An HTML attachment was scrubbed... URL: From Zovastra.Attah at creatis.insa-lyon.fr Tue May 21 12:22:38 2013 From: Zovastra.Attah at creatis.insa-lyon.fr (Zovastra Attah) Date: Tue, 21 May 2013 14:22:38 +0200 Subject: [Ctk-developers] Hackfest starting In-Reply-To: References: Message-ID: Hello!! I would like to participate in google hangout, especially with the team that s'handles Qt testing framework QtTest and widget. Zovastra ATTAH From pieper at ibility.net Tue May 21 13:25:14 2013 From: pieper at ibility.net (Steve Pieper) Date: Tue, 21 May 2013 09:25:14 -0400 Subject: [Ctk-developers] A new developer for CTK In-Reply-To: <517536D9.4080205@creatis.insa-lyon.fr> References: <517536D9.4080205@creatis.insa-lyon.fr> Message-ID: Hi Claire - Greetings from Kingston! We had a chance yesterday to brainstorm about testing and some very good ideas came up that might be of interest to you and Zovastra: http://www.commontk.org/index.php/CTK-Hackfest-May-2013#Tests_Framework I'd guess some items are clear and others might need some clarification - if there is a good fit to Zovastra's projects we can have a discussion on the ctk list to go over options. Very best, Steve On Mon, Apr 22, 2013 at 9:10 AM, Claire Mouton < claire.mouton at creatis.insa-lyon.fr> wrote: > Hi, CTK community! > > It is nice to hear from the hackfest coming soon, it reminds me good > memories of Bologna! :) I would have been glad to join to hack with you > once again, but unfortunately I can not. > > To stay involved in the project, CREATIS has hired a Master student for 5 > months (from May to September), Zovastra Attah. He will participate in CTK > on full time. The idea is to go on on the projects I started working on in > Bologna, i.e. QtTest and eventually QAT module. Do you have any suggestions > on these topics? > > Otherwise, the student is willing to provide one significant contribution > to CTK, for example by adding a specific widget or plugin. Maybe the ROI > functionality would be interesting. Any suggestion of a widget or plugin > that would be useful adding to CTK? > > Regards, > > -- > Claire Mouton > > CREATIS INSA LYON CNRS UMR 5220, INSERM U 1044 > B?timent Blaise Pascal - 4?me ?tage > 7 avenue Jean Capelle, 69621 Villeurbanne Cedex France > > Phone : +33 (0)4 72 43 82 58 > > CREATIS home page : http://www.creatis.univ-lyon1.**fr > > ______________________________**_________________ > Ctk-developers mailing list > Ctk-developers at commontk.org > http://public.kitware.com/cgi-**bin/mailman/listinfo/ctk-**developers > -------------- next part -------------- An HTML attachment was scrubbed... URL: From pieper at ibility.net Tue May 21 13:28:10 2013 From: pieper at ibility.net (Steve Pieper) Date: Tue, 21 May 2013 09:28:10 -0400 Subject: [Ctk-developers] Hackfest starting In-Reply-To: References: Message-ID: We were planning to review the status on our list of project on Wednesday morning - would 10:30 am North American Eastern time work for you guys? -Steve On Tue, May 21, 2013 at 8:22 AM, Zovastra Attah < Zovastra.Attah at creatis.insa-lyon.fr> wrote: > Hello!! > I would like to participate in google hangout, especially with the team > that s'handles Qt testing framework QtTest and widget. > Zovastra ATTAH > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From jchris.fillionr at kitware.com Tue May 21 14:21:19 2013 From: jchris.fillionr at kitware.com (Jean-Christophe Fillion-Robin) Date: Tue, 21 May 2013 10:21:19 -0400 Subject: [Ctk-developers] Hackfest starting In-Reply-To: References: Message-ID: Works for me. Thanks Jc On Tue, May 21, 2013 at 9:28 AM, Steve Pieper wrote: > We were planning to review the status on our list of project on Wednesday > morning - would 10:30 am North American Eastern time work for you guys? > > -Steve > > > On Tue, May 21, 2013 at 8:22 AM, Zovastra Attah < > Zovastra.Attah at creatis.insa-lyon.fr> wrote: > >> Hello!! >> I would like to participate in google hangout, especially with the team >> that s'handles Qt testing framework QtTest and widget. >> Zovastra ATTAH >> >> >> > -- +1 919 869 8849 -------------- next part -------------- An HTML attachment was scrubbed... URL: From claire.mouton at creatis.insa-lyon.fr Tue May 21 14:43:07 2013 From: claire.mouton at creatis.insa-lyon.fr (Claire Mouton) Date: Tue, 21 May 2013 16:43:07 +0200 Subject: [Ctk-developers] Hackfest starting In-Reply-To: References: Message-ID: <519B87FB.90208@creatis.insa-lyon.fr> Works for me too. Thanks Claire Le 21/05/13 16:21, Jean-Christophe Fillion-Robin a ?crit : > Works for me. > Thanks > Jc > > > On Tue, May 21, 2013 at 9:28 AM, Steve Pieper > wrote: > > We were planning to review the status on our list of project on > Wednesday morning - would 10:30 am North American Eastern time > work for you guys? > > -Steve > > > On Tue, May 21, 2013 at 8:22 AM, Zovastra Attah > > wrote: > > Hello!! > I would like to participate in google hangout, especially with > the team > that s'handles Qt testing framework QtTest and widget. > Zovastra ATTAH > > > > > > > -- > +1 919 869 8849 > > > _______________________________________________ > Ctk-developers mailing list > Ctk-developers at commontk.org > http://public.kitware.com/cgi-bin/mailman/listinfo/ctk-developers -- Claire Mouton CREATIS INSA LYON CNRS UMR 5220, INSERM U 1044 B?timent Blaise Pascal - 4?me ?tage 7 avenue Jean Capelle, 69621 Villeurbanne Cedex France Phone : +33 (0)4 72 43 82 58 CREATIS home page : http://www.creatis.univ-lyon1.fr -------------- next part -------------- An HTML attachment was scrubbed... URL: From pieper at ibility.net Tue May 21 21:05:34 2013 From: pieper at ibility.net (Steve Pieper) Date: Tue, 21 May 2013 17:05:34 -0400 Subject: [Ctk-developers] Hackfest starting In-Reply-To: <519B87FB.90208@creatis.insa-lyon.fr> References: <519B87FB.90208@creatis.insa-lyon.fr> Message-ID: Great - thanks for setting up the hangout Jc. -Steve On Tue, May 21, 2013 at 10:43 AM, Claire Mouton < claire.mouton at creatis.insa-lyon.fr> wrote: > Works for me too. > Thanks > Claire > > Le 21/05/13 16:21, Jean-Christophe Fillion-Robin a ?crit : > > Works for me. > Thanks > Jc > > > On Tue, May 21, 2013 at 9:28 AM, Steve Pieper wrote: > >> We were planning to review the status on our list of project on Wednesday >> morning - would 10:30 am North American Eastern time work for you guys? >> >> -Steve >> >> >> On Tue, May 21, 2013 at 8:22 AM, Zovastra Attah < >> Zovastra.Attah at creatis.insa-lyon.fr> wrote: >> >>> Hello!! >>> I would like to participate in google hangout, especially with the team >>> that s'handles Qt testing framework QtTest and widget. >>> Zovastra ATTAH >>> >>> >>> >> > > > -- > +1 919 869 8849 > > > _______________________________________________ > Ctk-developers mailing listCtk-developers at commontk.orghttp://public.kitware.com/cgi-bin/mailman/listinfo/ctk-developers > > > > -- > Claire Mouton > > CREATIS INSA LYON CNRS UMR 5220, INSERM U 1044 > B?timent Blaise Pascal - 4?me ?tage > 7 avenue Jean Capelle, 69621 Villeurbanne Cedex France > > Phone : +33 (0)4 72 43 82 58 > > CREATIS home page : http://www.creatis.univ-lyon1.fr > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From nasil122002 at yahoo.de Wed May 22 09:46:33 2013 From: nasil122002 at yahoo.de (Yusuf OEZBEK) Date: Wed, 22 May 2013 10:46:33 +0100 (BST) Subject: [Ctk-developers] CTK Plugin Example Message-ID: <1369215993.91115.YahooMailNeo@web171704.mail.ir2.yahoo.com> Dear CTK developers and users, I am new to CTK and mailing list and would like to implement/create a program with CTK plugin. For this reason, I look for a simple plugin example that I could not find in the wiki-page.? This tutorial-page "Creating a New CTK Plugin" is unfortunately empty. ? Thank you. Mit freundlichen Gr??en Yusuf ?ZBEK -------------- next part -------------- An HTML attachment was scrubbed... URL: From m.khosrownejad at gmail.com Wed May 22 10:10:25 2013 From: m.khosrownejad at gmail.com (Mostafa) Date: Wed, 22 May 2013 12:10:25 +0200 Subject: [Ctk-developers] CTK Plugin Example In-Reply-To: <1369215993.91115.YahooMailNeo@web171704.mail.ir2.yahoo.com> References: <1369215993.91115.YahooMailNeo@web171704.mail.ir2.yahoo.com> Message-ID: <519C9991.6000201@gmail.com> Dear all I have the same problem. I am new to CTK and I am not able to find a proper starting point on using the plugin framework. Thanks Mostafa Khosrownejad On 05/22/2013 11:46 AM, Yusuf OEZBEK wrote: > Dear CTK developers and users, > > I am new to CTK and mailing list and would like to implement/create a > program with CTK plugin. For this reason, I look for a simple plugin > examplethat I could not find in the wiki-page. This tutorial-page > "Creating a New CTK Plugin" is unfortunately empty. > > > Thank you. > > > > Mit freundlichen Gr??en > Yusuf ?ZBEK > > > _______________________________________________ > Ctk-developers mailing list > Ctk-developers at commontk.org > http://public.kitware.com/cgi-bin/mailman/listinfo/ctk-developers -------------- next part -------------- An HTML attachment was scrubbed... URL: From jchris.fillionr at kitware.com Wed May 22 14:29:12 2013 From: jchris.fillionr at kitware.com (Jean-Christophe Fillion-Robin) Date: Wed, 22 May 2013 10:29:12 -0400 Subject: [Ctk-developers] Fwd: Reminder: CTK Hackfest - Project review - Google hangout @ Wed May 22, 2013 10:30am - 11:20am (jchris.fillionr@kitware.com) In-Reply-To: <90e6ba613b12bc981904dd4f3026@google.com> References: <90e6ba613b12bc981904dd4f3026@google.com> Message-ID: Hi Folks, Here is the link for today's hangout. Jc ---------- Forwarded message ---------- From: Google Calendar Date: Wed, May 22, 2013 at 10:14 AM Subject: Reminder: CTK Hackfest - Project review - Google hangout @ Wed May 22, 2013 10:30am - 11:20am (jchris.fillionr at kitware.com) To: Jean-Christophe Fillion-Robin more details ? CTK Hackfest - Project review - Google hangout *When* ********Wed May 22, 2013 10:30am ? 11:20am Eastern Time *Video call* Join Google+ Hangout *Calendar* jchris.fillionr at kitware.com *Who* ? Jean-Christophe Fillion-Robin - organizer ? pieper at bwh.harvard.edu ? zovastra.attah at creatis.insa-lyon.fr ? claire.mouton at creatis.insa-lyon.fr Going? ***Yes- Maybe- No * **more options ? Invitation from Google Calendar You are receiving this email at the account jchris.fillionr at kitware.combecause you are subscribed for reminders on calendar jchris.fillionr at kitware.com. To stop receiving these notifications, please log in to https://www.google.com/calendar/ and change your notification settings for this calendar. -- +1 919 869 8849 -------------- next part -------------- An HTML attachment was scrubbed... URL: From pieper at ibility.net Wed May 22 14:31:03 2013 From: pieper at ibility.net (Steve Pieper) Date: Wed, 22 May 2013 10:31:03 -0400 Subject: [Ctk-developers] Reminder: CTK Hackfest - Project review - Google hangout @ Wed May 22, 2013 10:30am - 11:20am (jchris.fillionr@kitware.com) In-Reply-To: References: <90e6ba613b12bc981904dd4f3026@google.com> Message-ID: Hi Jc - It says I'm not allowed to join the hangout - can you send a public link? Thanks, Steve On Wed, May 22, 2013 at 10:29 AM, Jean-Christophe Fillion-Robin < jchris.fillionr at kitware.com> wrote: > Hi Folks, > > Here is the link for today's hangout. > > Jc > > ---------- Forwarded message ---------- > From: Google Calendar > Date: Wed, May 22, 2013 at 10:14 AM > Subject: Reminder: CTK Hackfest - Project review - Google hangout @ Wed > May 22, 2013 10:30am - 11:20am (jchris.fillionr at kitware.com) > To: Jean-Christophe Fillion-Robin > > > more details ? > CTK Hackfest - Project review - Google hangout > *When* > ********Wed May 22, 2013 10:30am ? 11:20am Eastern Time > *Video call* > Join Google+ Hangout > *Calendar* > jchris.fillionr at kitware.com > *Who* > ? > Jean-Christophe Fillion-Robin - organizer > ? > pieper at bwh.harvard.edu > ? > zovastra.attah at creatis.insa-lyon.fr > ? > claire.mouton at creatis.insa-lyon.fr > > Going? ***Yes- > Maybe- > No > * **more options ? > > Invitation from Google Calendar > > You are receiving this email at the account jchris.fillionr at kitware.combecause you are subscribed for reminders on calendar > jchris.fillionr at kitware.com. > > To stop receiving these notifications, please log in to > https://www.google.com/calendar/ and change your notification settings > for this calendar. > > > > -- > +1 919 869 8849 > -------------- next part -------------- An HTML attachment was scrubbed... URL: From jchris.fillionr at kitware.com Wed May 22 14:32:30 2013 From: jchris.fillionr at kitware.com (Jean-Christophe Fillion-Robin) Date: Wed, 22 May 2013 10:32:30 -0400 Subject: [Ctk-developers] Reminder: CTK Hackfest - Project review - Google hangout @ Wed May 22, 2013 10:30am - 11:20am (jchris.fillionr@kitware.com) In-Reply-To: References: <90e6ba613b12bc981904dd4f3026@google.com> Message-ID: What about this one: https://plus.google.com/hangouts/_/95e7f0d5a3339ea6ea76f0fe68948d396391ae2f On Wed, May 22, 2013 at 10:31 AM, Steve Pieper wrote: > Hi Jc - > > It says I'm not allowed to join the hangout - can you send a public link? > > Thanks, > Steve > > > On Wed, May 22, 2013 at 10:29 AM, Jean-Christophe Fillion-Robin < > jchris.fillionr at kitware.com> wrote: > >> Hi Folks, >> >> Here is the link for today's hangout. >> >> Jc >> >> ---------- Forwarded message ---------- >> From: Google Calendar >> Date: Wed, May 22, 2013 at 10:14 AM >> Subject: Reminder: CTK Hackfest - Project review - Google hangout @ Wed >> May 22, 2013 10:30am - 11:20am (jchris.fillionr at kitware.com) >> To: Jean-Christophe Fillion-Robin >> >> >> more details ? >> CTK Hackfest - Project review - Google hangout >> *When* >> ********Wed May 22, 2013 10:30am ? 11:20am Eastern Time >> *Video call* >> Join Google+ Hangout >> *Calendar* >> jchris.fillionr at kitware.com >> *Who* >> ? >> Jean-Christophe Fillion-Robin - organizer >> ? >> pieper at bwh.harvard.edu >> ? >> zovastra.attah at creatis.insa-lyon.fr >> ? >> claire.mouton at creatis.insa-lyon.fr >> >> Going? ***Yes- >> Maybe- >> No >> * **more options ? >> >> Invitation from Google Calendar >> >> You are receiving this email at the account jchris.fillionr at kitware.combecause you are subscribed for reminders on calendar >> jchris.fillionr at kitware.com. >> >> To stop receiving these notifications, please log in to >> https://www.google.com/calendar/ and change your notification settings >> for this calendar. >> >> >> >> -- >> +1 919 869 8849 >> > > -- +1 919 869 8849 -------------- next part -------------- An HTML attachment was scrubbed... URL: From julien.finet at kitware.com Wed May 22 14:32:17 2013 From: julien.finet at kitware.com (Julien Finet) Date: Wed, 22 May 2013 10:32:17 -0400 Subject: [Ctk-developers] Reminder: CTK Hackfest - Project review - Google hangout @ Wed May 22, 2013 10:30am - 11:20am (jchris.fillionr@kitware.com) In-Reply-To: References: <90e6ba613b12bc981904dd4f3026@google.com> Message-ID: https://plus.google.com/hangouts/_/calendar/amNocmlzLmZpbGxpb25yQGtpdHdhcmUuY29t.77vrea8o9mp8h90bajvak13f10 On Wed, May 22, 2013 at 10:31 AM, Steve Pieper wrote: > Hi Jc - > > It says I'm not allowed to join the hangout - can you send a public link? > > Thanks, > Steve > > > On Wed, May 22, 2013 at 10:29 AM, Jean-Christophe Fillion-Robin < > jchris.fillionr at kitware.com> wrote: > >> Hi Folks, >> >> Here is the link for today's hangout. >> >> Jc >> >> ---------- Forwarded message ---------- >> From: Google Calendar >> Date: Wed, May 22, 2013 at 10:14 AM >> Subject: Reminder: CTK Hackfest - Project review - Google hangout @ Wed >> May 22, 2013 10:30am - 11:20am (jchris.fillionr at kitware.com) >> To: Jean-Christophe Fillion-Robin >> >> >> more details ? >> CTK Hackfest - Project review - Google hangout >> *When* >> ********Wed May 22, 2013 10:30am ? 11:20am Eastern Time >> *Video call* >> Join Google+ Hangout >> *Calendar* >> jchris.fillionr at kitware.com >> *Who* >> ? >> Jean-Christophe Fillion-Robin - organizer >> ? >> pieper at bwh.harvard.edu >> ? >> zovastra.attah at creatis.insa-lyon.fr >> ? >> claire.mouton at creatis.insa-lyon.fr >> >> Going? ***Yes- >> Maybe- >> No >> * **more options ? >> >> Invitation from Google Calendar >> >> You are receiving this email at the account jchris.fillionr at kitware.combecause you are subscribed for reminders on calendar >> jchris.fillionr at kitware.com. >> >> To stop receiving these notifications, please log in to >> https://www.google.com/calendar/ and change your notification settings >> for this calendar. >> >> >> >> -- >> +1 919 869 8849 >> > > > _______________________________________________ > Ctk-developers mailing list > Ctk-developers at commontk.org > http://public.kitware.com/cgi-bin/mailman/listinfo/ctk-developers > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From pieper at ibility.net Wed May 22 14:36:26 2013 From: pieper at ibility.net (Steve Pieper) Date: Wed, 22 May 2013 10:36:26 -0400 Subject: [Ctk-developers] Reminder: CTK Hackfest - Project review - Google hangout @ Wed May 22, 2013 10:30am - 11:20am (jchris.fillionr@kitware.com) In-Reply-To: References: <90e6ba613b12bc981904dd4f3026@google.com> Message-ID: No luck yet with any of the links... On Wed, May 22, 2013 at 10:34 AM, Steve Pieper wrote: > No luck - we get the attached :( > > > On Wed, May 22, 2013 at 10:32 AM, Julien Finet wrote: > >> >> https://plus.google.com/hangouts/_/calendar/amNocmlzLmZpbGxpb25yQGtpdHdhcmUuY29t.77vrea8o9mp8h90bajvak13f10 >> >> >> On Wed, May 22, 2013 at 10:31 AM, Steve Pieper wrote: >> >>> Hi Jc - >>> >>> It says I'm not allowed to join the hangout - can you send a public link? >>> >>> Thanks, >>> Steve >>> >>> >>> On Wed, May 22, 2013 at 10:29 AM, Jean-Christophe Fillion-Robin < >>> jchris.fillionr at kitware.com> wrote: >>> >>>> Hi Folks, >>>> >>>> Here is the link for today's hangout. >>>> >>>> Jc >>>> >>>> ---------- Forwarded message ---------- >>>> From: Google Calendar >>>> Date: Wed, May 22, 2013 at 10:14 AM >>>> Subject: Reminder: CTK Hackfest - Project review - Google hangout @ Wed >>>> May 22, 2013 10:30am - 11:20am (jchris.fillionr at kitware.com) >>>> To: Jean-Christophe Fillion-Robin >>>> >>>> >>>> more details ? >>>> CTK Hackfest - Project review - Google hangout >>>> *When* >>>> ********Wed May 22, 2013 10:30am ? 11:20am Eastern Time >>>> *Video call* >>>> Join Google+ Hangout >>>> *Calendar* >>>> jchris.fillionr at kitware.com >>>> *Who* >>>> ? >>>> Jean-Christophe Fillion-Robin - organizer >>>> ? >>>> pieper at bwh.harvard.edu >>>> ? >>>> zovastra.attah at creatis.insa-lyon.fr >>>> ? >>>> claire.mouton at creatis.insa-lyon.fr >>>> >>>> Going? ***Yes- >>>> Maybe- >>>> No >>>> * **more options ? >>>> >>>> Invitation from Google Calendar >>>> >>>> You are receiving this email at the account jchris.fillionr at kitware.combecause you are subscribed for reminders on calendar >>>> jchris.fillionr at kitware.com. >>>> >>>> To stop receiving these notifications, please log in to >>>> https://www.google.com/calendar/ and change your notification settings >>>> for this calendar. >>>> >>>> >>>> >>>> -- >>>> +1 919 869 8849 >>>> >>> >>> >>> _______________________________________________ >>> Ctk-developers mailing list >>> Ctk-developers at commontk.org >>> http://public.kitware.com/cgi-bin/mailman/listinfo/ctk-developers >>> >>> >> > -------------- next part -------------- An HTML attachment was scrubbed... URL: From jchris.fillionr at kitware.com Wed May 22 14:37:05 2013 From: jchris.fillionr at kitware.com (Jean-Christophe Fillion-Robin) Date: Wed, 22 May 2013 10:37:05 -0400 Subject: [Ctk-developers] Reminder: CTK Hackfest - Project review - Google hangout @ Wed May 22, 2013 10:30am - 11:20am (jchris.fillionr@kitware.com) In-Reply-To: References: <90e6ba613b12bc981904dd4f3026@google.com> Message-ID: Not sure what is going one .. could you start a new hangout and share the address. The problem is probably due to the fact I scheduled it from within kitware account ... On Wed, May 22, 2013 at 10:34 AM, Steve Pieper wrote: > No luck - we get the attached :( > > > On Wed, May 22, 2013 at 10:32 AM, Julien Finet wrote: > >> >> https://plus.google.com/hangouts/_/calendar/amNocmlzLmZpbGxpb25yQGtpdHdhcmUuY29t.77vrea8o9mp8h90bajvak13f10 >> >> >> On Wed, May 22, 2013 at 10:31 AM, Steve Pieper wrote: >> >>> Hi Jc - >>> >>> It says I'm not allowed to join the hangout - can you send a public link? >>> >>> Thanks, >>> Steve >>> >>> >>> On Wed, May 22, 2013 at 10:29 AM, Jean-Christophe Fillion-Robin < >>> jchris.fillionr at kitware.com> wrote: >>> >>>> Hi Folks, >>>> >>>> Here is the link for today's hangout. >>>> >>>> Jc >>>> >>>> ---------- Forwarded message ---------- >>>> From: Google Calendar >>>> Date: Wed, May 22, 2013 at 10:14 AM >>>> Subject: Reminder: CTK Hackfest - Project review - Google hangout @ Wed >>>> May 22, 2013 10:30am - 11:20am (jchris.fillionr at kitware.com) >>>> To: Jean-Christophe Fillion-Robin >>>> >>>> >>>> more details ? >>>> CTK Hackfest - Project review - Google hangout >>>> *When* >>>> ********Wed May 22, 2013 10:30am ? 11:20am Eastern Time >>>> *Video call* >>>> Join Google+ Hangout >>>> *Calendar* >>>> jchris.fillionr at kitware.com >>>> *Who* >>>> ? >>>> Jean-Christophe Fillion-Robin - organizer >>>> ? >>>> pieper at bwh.harvard.edu >>>> ? >>>> zovastra.attah at creatis.insa-lyon.fr >>>> ? >>>> claire.mouton at creatis.insa-lyon.fr >>>> >>>> Going? ***Yes- >>>> Maybe- >>>> No >>>> * **more options ? >>>> >>>> Invitation from Google Calendar >>>> >>>> You are receiving this email at the account jchris.fillionr at kitware.combecause you are subscribed for reminders on calendar >>>> jchris.fillionr at kitware.com. >>>> >>>> To stop receiving these notifications, please log in to >>>> https://www.google.com/calendar/ and change your notification settings >>>> for this calendar. >>>> >>>> >>>> >>>> -- >>>> +1 919 869 8849 >>>> >>> >>> >>> _______________________________________________ >>> Ctk-developers mailing list >>> Ctk-developers at commontk.org >>> http://public.kitware.com/cgi-bin/mailman/listinfo/ctk-developers >>> >>> >> > -- +1 919 869 8849 -------------- next part -------------- An HTML attachment was scrubbed... URL: From pieper at ibility.net Wed May 22 14:38:36 2013 From: pieper at ibility.net (Steve Pieper) Date: Wed, 22 May 2013 10:38:36 -0400 Subject: [Ctk-developers] Reminder: CTK Hackfest - Project review - Google hangout @ Wed May 22, 2013 10:30am - 11:20am (jchris.fillionr@kitware.com) In-Reply-To: References: <90e6ba613b12bc981904dd4f3026@google.com> Message-ID: Let's try this one: https://plus.google.com/hangouts/_/ed8eee87adbed3348b63d20e70c799af3b331d86?authuser=0&hl=en On Wed, May 22, 2013 at 10:37 AM, Jean-Christophe Fillion-Robin < jchris.fillionr at kitware.com> wrote: > Not sure what is going one .. could you start a new hangout and share the > address. > > The problem is probably due to the fact I scheduled it from within kitware > account ... > > > On Wed, May 22, 2013 at 10:34 AM, Steve Pieper wrote: > >> No luck - we get the attached :( >> >> >> On Wed, May 22, 2013 at 10:32 AM, Julien Finet wrote: >> >>> >>> https://plus.google.com/hangouts/_/calendar/amNocmlzLmZpbGxpb25yQGtpdHdhcmUuY29t.77vrea8o9mp8h90bajvak13f10 >>> >>> >>> On Wed, May 22, 2013 at 10:31 AM, Steve Pieper wrote: >>> >>>> Hi Jc - >>>> >>>> It says I'm not allowed to join the hangout - can you send a public >>>> link? >>>> >>>> Thanks, >>>> Steve >>>> >>>> >>>> On Wed, May 22, 2013 at 10:29 AM, Jean-Christophe Fillion-Robin < >>>> jchris.fillionr at kitware.com> wrote: >>>> >>>>> Hi Folks, >>>>> >>>>> Here is the link for today's hangout. >>>>> >>>>> Jc >>>>> >>>>> ---------- Forwarded message ---------- >>>>> From: Google Calendar >>>>> Date: Wed, May 22, 2013 at 10:14 AM >>>>> Subject: Reminder: CTK Hackfest - Project review - Google hangout @ >>>>> Wed May 22, 2013 10:30am - 11:20am (jchris.fillionr at kitware.com) >>>>> To: Jean-Christophe Fillion-Robin >>>>> >>>>> >>>>> more details ? >>>>> CTK Hackfest - Project review - Google hangout >>>>> *When* >>>>> ********Wed May 22, 2013 10:30am ? 11:20am Eastern Time >>>>> *Video call* >>>>> Join Google+ Hangout >>>>> *Calendar* >>>>> jchris.fillionr at kitware.com >>>>> *Who* >>>>> ? >>>>> Jean-Christophe Fillion-Robin - organizer >>>>> ? >>>>> pieper at bwh.harvard.edu >>>>> ? >>>>> zovastra.attah at creatis.insa-lyon.fr >>>>> ? >>>>> claire.mouton at creatis.insa-lyon.fr >>>>> >>>>> Going? ***Yes- >>>>> Maybe- >>>>> No >>>>> * **more options ? >>>>> >>>>> Invitation from Google Calendar >>>>> >>>>> You are receiving this email at the account >>>>> jchris.fillionr at kitware.com because you are subscribed for reminders >>>>> on calendar jchris.fillionr at kitware.com. >>>>> >>>>> To stop receiving these notifications, please log in to >>>>> https://www.google.com/calendar/ and change your notification >>>>> settings for this calendar. >>>>> >>>>> >>>>> >>>>> -- >>>>> +1 919 869 8849 >>>>> >>>> >>>> >>>> _______________________________________________ >>>> Ctk-developers mailing list >>>> Ctk-developers at commontk.org >>>> http://public.kitware.com/cgi-bin/mailman/listinfo/ctk-developers >>>> >>>> >>> >> > > > -- > +1 919 869 8849 > -------------- next part -------------- An HTML attachment was scrubbed... URL: From m.nolden at dkfz-heidelberg.de Thu May 23 22:15:02 2013 From: m.nolden at dkfz-heidelberg.de (Marco Nolden) Date: Fri, 24 May 2013 00:15:02 +0200 Subject: [Ctk-developers] ctkDICOMDataset to ctkDICOMItem transition Message-ID: <519E94E6.9020403@dkfz-heidelberg.de> Hi CTK developers, I just refactored ctkDICOMDataset into a new class ctkDICOMItem which better reflects its internal representation. I renamed all usages in master and also added a legacy typedef and header to support code which still uses ctkDICOMDataset. Still you should test that everything works after merging your changes. Best Marco From Florian.Ganglberger at student.i-med.ac.at Fri May 24 13:07:18 2013 From: Florian.Ganglberger at student.i-med.ac.at (Florian Ganglberger) Date: Fri, 24 May 2013 15:07:18 +0200 Subject: [Ctk-developers] CTK plugin framework tutorial/example Message-ID: Hi all, I'm new to CTK. Me and my colleges want to develop a CTK application that involves IGSTK for tracking. Unfortunately we can not find any suitable example application / tutorial to learn how to use the plugin framework. Do you have any suggestions for us? Or maybe a nice person can send us a minimal example application ;-) From pieper at ibility.net Fri May 24 14:21:37 2013 From: pieper at ibility.net (Steve Pieper) Date: Fri, 24 May 2013 10:21:37 -0400 Subject: [Ctk-developers] will start hangout in a few minutes Message-ID: We have a lot of result to talk about, so we'll get the hangout started early if we can. See if you can join this link: https://plus.google.com/hangouts/_/33c4f3b6fd88ee2330172c2c91439632c7d6e9b6?authuser=0&hl=en -Steve -------------- next part -------------- An HTML attachment was scrubbed... URL: From jchris.fillionr at kitware.com Fri May 24 15:34:34 2013 From: jchris.fillionr at kitware.com (Jean-Christophe Fillion-Robin) Date: Fri, 24 May 2013 11:34:34 -0400 Subject: [Ctk-developers] CTK plugin framework tutorial/example In-Reply-To: References: Message-ID: Hi Florian, Seem the following page could be helpful: http://www.commontk.org/index.php/Documentation/Plugin_Framework#Documentation And more particularly: http://www.commontk.org/index.php/Documentation/CTK_Plugin_Framework:_Embedding_the_CTK_Plugin_Framework Hth Jc On Fri, May 24, 2013 at 9:07 AM, Florian Ganglberger < Florian.Ganglberger at student.i-med.ac.at> wrote: > Hi all, > I'm new to CTK. Me and my colleges want to develop a CTK application > that involves IGSTK for tracking. Unfortunately we can not find any > suitable example application / tutorial to learn how to use the plugin > framework. Do you have any suggestions for us? Or maybe a nice person > can send us a minimal example application ;-) > _______________________________________________ > Ctk-developers mailing list > Ctk-developers at commontk.org > http://public.kitware.com/cgi-bin/mailman/listinfo/ctk-developers > -- +1 919 869 8849 -------------- next part -------------- An HTML attachment was scrubbed... URL: From lasso at cs.queensu.ca Fri May 24 15:24:26 2013 From: lasso at cs.queensu.ca (Andras Lasso) Date: Fri, 24 May 2013 11:24:26 -0400 Subject: [Ctk-developers] CTK plugin framework tutorial/example In-Reply-To: References: Message-ID: <011f01ce5892$ca155bf0$5e4013d0$@cs.queensu.ca> I would suggest to use the Plus toolkit (www.plustoolkit.org). Plus can connect to multiple imaging and tracking devices simultaneously, acquire, synchronize, record data, stream through OpenIGTLink, contains spatial and temporal calibration algorithms, etc. For visualization there is no need to develop any new software, you can just stream the Plus output to 3D Slicer and visualize everything there (see www.slicerigt.org). All open-source, non-restrictive license, fully customizable, extensible, etc. with good training & support (email/remote desktop/personal visit), all free. So, consider using these existing platforms before start coding. Andras ________________________________ Andras Lasso, PhD Senior Medical Image Computing & Applications Engineer Associate Director of Laboratory for Percutanous Surgery School of Computing Queen's University Kingston, ON, CANADA Email: lasso at cs.queensu.ca Web: http://perk.cs.queensu.ca -----Original Message----- From: ctk-developers-bounces at commontk.org [mailto:ctk-developers-bounces at commontk.org] On Behalf Of Florian Ganglberger Sent: May 24, 2013 9:07 AM To: ctk-developers at commontk.org Subject: [Ctk-developers] CTK plugin framework tutorial/example Hi all, I'm new to CTK. Me and my colleges want to develop a CTK application that involves IGSTK for tracking. Unfortunately we can not find any suitable example application / tutorial to learn how to use the plugin framework. Do you have any suggestions for us? Or maybe a nice person can send us a minimal example application ;-) _______________________________________________ Ctk-developers mailing list Ctk-developers at commontk.org http://public.kitware.com/cgi-bin/mailman/listinfo/ctk-developers From Florian.Ganglberger at student.i-med.ac.at Fri May 24 17:48:12 2013 From: Florian.Ganglberger at student.i-med.ac.at (Florian Ganglberger) Date: Fri, 24 May 2013 19:48:12 +0200 Subject: [Ctk-developers] CTK plugin framework tutorial/example In-Reply-To: <011f01ce5892$ca155bf0$5e4013d0$@cs.queensu.ca> References: <011f01ce5892$ca155bf0$5e4013d0$@cs.queensu.ca> Message-ID: Thank you for your suggestion, but I think the Plus toolkit is not directly what we need. What we want to do is to use CTK as a lightweight framework for our own applications, so we can make several plugins and merge them for different purposes. Anyway, the Plus toolkit looks quite nice for some of our projects, we'll take it into consideration ;-) 2013/5/24 Andras Lasso : > I would suggest to use the Plus toolkit (www.plustoolkit.org). Plus can > connect to multiple imaging and tracking devices simultaneously, acquire, > synchronize, record data, stream through OpenIGTLink, contains spatial and > temporal calibration algorithms, etc. > > For visualization there is no need to develop any new software, you can just > stream the Plus output to 3D Slicer and visualize everything there (see > www.slicerigt.org). > > All open-source, non-restrictive license, fully customizable, extensible, > etc. with good training & support (email/remote desktop/personal visit), all > free. So, consider using these existing platforms before start coding. > > Andras > > ________________________________ > Andras Lasso, PhD > Senior Medical Image Computing & Applications Engineer > Associate Director of Laboratory for Percutanous Surgery > School of Computing > Queen's University > Kingston, ON, CANADA > Email: lasso at cs.queensu.ca > Web: http://perk.cs.queensu.ca > > > > -----Original Message----- > From: ctk-developers-bounces at commontk.org > [mailto:ctk-developers-bounces at commontk.org] On Behalf Of Florian > Ganglberger > Sent: May 24, 2013 9:07 AM > To: ctk-developers at commontk.org > Subject: [Ctk-developers] CTK plugin framework tutorial/example > > Hi all, > I'm new to CTK. Me and my colleges want to develop a CTK application that > involves IGSTK for tracking. Unfortunately we can not find any suitable > example application / tutorial to learn how to use the plugin framework. Do > you have any suggestions for us? Or maybe a nice person can send us a > minimal example application ;-) > _______________________________________________ > Ctk-developers mailing list > Ctk-developers at commontk.org > http://public.kitware.com/cgi-bin/mailman/listinfo/ctk-developers > From Florian.Ganglberger at student.i-med.ac.at Fri May 24 17:56:51 2013 From: Florian.Ganglberger at student.i-med.ac.at (Florian Ganglberger) Date: Fri, 24 May 2013 19:56:51 +0200 Subject: [Ctk-developers] CTK plugin framework tutorial/example In-Reply-To: References: Message-ID: Hi Jean-Christophe, I have already had a look at the wiki. Unfortunately the "Create a new CTK Plugin" [1] page is empty which would help us a lot... [1] http://www.commontk.org/index.php/Documentation/CTK_Plugin_Framework:_Creating_a_new_CTK_Plugin 2013/5/24 Jean-Christophe Fillion-Robin : > Hi Florian, > > Seem the following page could be helpful: > http://www.commontk.org/index.php/Documentation/Plugin_Framework#Documentation > > And more particularly: > http://www.commontk.org/index.php/Documentation/CTK_Plugin_Framework:_Embedding_the_CTK_Plugin_Framework > > Hth > Jc > > > > > On Fri, May 24, 2013 at 9:07 AM, Florian Ganglberger > wrote: >> >> Hi all, >> I'm new to CTK. Me and my colleges want to develop a CTK application >> that involves IGSTK for tracking. Unfortunately we can not find any >> suitable example application / tutorial to learn how to use the plugin >> framework. Do you have any suggestions for us? Or maybe a nice person >> can send us a minimal example application ;-) >> _______________________________________________ >> Ctk-developers mailing list >> Ctk-developers at commontk.org >> http://public.kitware.com/cgi-bin/mailman/listinfo/ctk-developers > > > > > -- > +1 919 869 8849 From s.zelzer at Dkfz-Heidelberg.de Fri May 24 20:57:15 2013 From: s.zelzer at Dkfz-Heidelberg.de (Zelzer, Sascha) Date: Fri, 24 May 2013 22:57:15 +0200 Subject: [Ctk-developers] CTK plugin framework tutorial/example Message-ID: <8w9onoma0dj2t8bwmaqon627.1369428865462@email.android.com> Hi, There is an application in CTK called PluginGenerator helping you with generating a plugin. I am traveling right now but will send you more information soon. Thanks, Sascha Von Samsung Mobile gesendet -------- Urspr?ngliche Nachricht -------- Von: Florian Ganglberger Datum: An: ctk-developers at commontk.org Betreff: Re: [Ctk-developers] CTK plugin framework tutorial/example Hi Jean-Christophe, I have already had a look at the wiki. Unfortunately the "Create a new CTK Plugin" [1] page is empty which would help us a lot... [1] http://www.commontk.org/index.php/Documentation/CTK_Plugin_Framework:_Creating_a_new_CTK_Plugin 2013/5/24 Jean-Christophe Fillion-Robin : > Hi Florian, > > Seem the following page could be helpful: > http://www.commontk.org/index.php/Documentation/Plugin_Framework#Documentation > > And more particularly: > http://www.commontk.org/index.php/Documentation/CTK_Plugin_Framework:_Embedding_the_CTK_Plugin_Framework > > Hth > Jc > > > > > On Fri, May 24, 2013 at 9:07 AM, Florian Ganglberger > wrote: >> >> Hi all, >> I'm new to CTK. Me and my colleges want to develop a CTK application >> that involves IGSTK for tracking. Unfortunately we can not find any >> suitable example application / tutorial to learn how to use the plugin >> framework. Do you have any suggestions for us? Or maybe a nice person >> can send us a minimal example application ;-) >> _______________________________________________ >> Ctk-developers mailing list >> Ctk-developers at commontk.org >> http://public.kitware.com/cgi-bin/mailman/listinfo/ctk-developers > > > > > -- > +1 919 869 8849 _______________________________________________ Ctk-developers mailing list Ctk-developers at commontk.org http://public.kitware.com/cgi-bin/mailman/listinfo/ctk-developers From pieper at ibility.net Wed May 22 14:34:59 2013 From: pieper at ibility.net (Steve Pieper) Date: Wed, 22 May 2013 10:34:59 -0400 Subject: [Ctk-developers] Reminder: CTK Hackfest - Project review - Google hangout @ Wed May 22, 2013 10:30am - 11:20am (jchris.fillionr@kitware.com) In-Reply-To: References: <90e6ba613b12bc981904dd4f3026@google.com> Message-ID: No luck - we get the attached :( On Wed, May 22, 2013 at 10:32 AM, Julien Finet wrote: > > https://plus.google.com/hangouts/_/calendar/amNocmlzLmZpbGxpb25yQGtpdHdhcmUuY29t.77vrea8o9mp8h90bajvak13f10 > > > On Wed, May 22, 2013 at 10:31 AM, Steve Pieper wrote: > >> Hi Jc - >> >> It says I'm not allowed to join the hangout - can you send a public link? >> >> Thanks, >> Steve >> >> >> On Wed, May 22, 2013 at 10:29 AM, Jean-Christophe Fillion-Robin < >> jchris.fillionr at kitware.com> wrote: >> >>> Hi Folks, >>> >>> Here is the link for today's hangout. >>> >>> Jc >>> >>> ---------- Forwarded message ---------- >>> From: Google Calendar >>> Date: Wed, May 22, 2013 at 10:14 AM >>> Subject: Reminder: CTK Hackfest - Project review - Google hangout @ Wed >>> May 22, 2013 10:30am - 11:20am (jchris.fillionr at kitware.com) >>> To: Jean-Christophe Fillion-Robin >>> >>> >>> more details ? >>> CTK Hackfest - Project review - Google hangout >>> *When* >>> ********Wed May 22, 2013 10:30am ? 11:20am Eastern Time >>> *Video call* >>> Join Google+ Hangout >>> *Calendar* >>> jchris.fillionr at kitware.com >>> *Who* >>> ? >>> Jean-Christophe Fillion-Robin - organizer >>> ? >>> pieper at bwh.harvard.edu >>> ? >>> zovastra.attah at creatis.insa-lyon.fr >>> ? >>> claire.mouton at creatis.insa-lyon.fr >>> >>> Going? ***Yes- >>> Maybe- >>> No >>> * **more options ? >>> >>> Invitation from Google Calendar >>> >>> You are receiving this email at the account jchris.fillionr at kitware.combecause you are subscribed for reminders on calendar >>> jchris.fillionr at kitware.com. >>> >>> To stop receiving these notifications, please log in to >>> https://www.google.com/calendar/ and change your notification settings >>> for this calendar. >>> >>> >>> >>> -- >>> +1 919 869 8849 >>> >> >> >> _______________________________________________ >> Ctk-developers mailing list >> Ctk-developers at commontk.org >> http://public.kitware.com/cgi-bin/mailman/listinfo/ctk-developers >> >> > -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: Screen Shot 2013-05-22 at 10.33.45 AM.png Type: image/png Size: 2205460 bytes Desc: not available URL: From jchris.fillionr at kitware.com Mon May 27 15:07:23 2013 From: jchris.fillionr at kitware.com (Jean-Christophe Fillion-Robin) Date: Mon, 27 May 2013 11:07:23 -0400 Subject: [Ctk-developers] CTK Plugin Example In-Reply-To: <519C9991.6000201@gmail.com> References: <1369215993.91115.YahooMailNeo@web171704.mail.ir2.yahoo.com> <519C9991.6000201@gmail.com> Message-ID: Cross referencing similar thread: http://public.kitware.com/pipermail/ctk-developers/2013-May/001158.html Jc On Wed, May 22, 2013 at 6:10 AM, Mostafa wrote: > Dear all > > I have the same problem. I am new to CTK and I am not able to find a > proper starting point on using the plugin framework. > > Thanks > Mostafa Khosrownejad > > > On 05/22/2013 11:46 AM, Yusuf OEZBEK wrote: > > Dear CTK developers and users, > > I am new to CTK and mailing list and would like to implement/create a > program with CTK plugin. For this reason, I look for a simple plugin example that > I could not find in the wiki-page. This tutorial-page "Creating a New > CTK Plugin" is unfortunately empty. > > > Thank you. > > > > Mit freundlichen Gr??en > Yusuf ?ZBEK > > > _______________________________________________ > Ctk-developers mailing listCtk-developers at commontk.orghttp://public.kitware.com/cgi-bin/mailman/listinfo/ctk-developers > > > > _______________________________________________ > Ctk-developers mailing list > Ctk-developers at commontk.org > http://public.kitware.com/cgi-bin/mailman/listinfo/ctk-developers > > -- +1 919 869 8849 -------------- next part -------------- An HTML attachment was scrubbed... URL: From sergio.vera at alma3d.com Mon May 27 15:48:18 2013 From: sergio.vera at alma3d.com (Sergio Vera) Date: Mon, 27 May 2013 17:48:18 +0200 Subject: [Ctk-developers] CTK plugin framework tutorial/example In-Reply-To: <8w9onoma0dj2t8bwmaqon627.1369428865462@email.android.com> References: <8w9onoma0dj2t8bwmaqon627.1369428865462@email.android.com> Message-ID: Hi all I tried to do a plugin test some time ago but unfortunately I could not develop it much becasue I had more urgent and important work to do :( I managed to create a minium skeleton of plugin enabled app and test plugin. I home might help someone advance a bit. Here is my recipe: TOP LEVEL SOURCE DIRECTORY ( A CmakeLists.txt file with the project general infor and the plugin enabling commands with something like this: ----------------------------------------------------------------------------------------- cmake_minimum_required(VERSION 2.8) PROJECT(MyViewer) FIND_PACKAGE(Qt4 REQUIRED) INCLUDE(${QT_USE_FILE}) # include UseQt4.cmake FIND_PACKAGE(CTK REQUIRED) INCLUDE(${CTK_USE_FILE}) # include UseCTK.cmake # Extract all library names starting with org_mydomain_ this regular domain defines your plugins macro(GetMyTargetLibraries all_target_libraries varname) set(re_ctkplugin "^com_alma_[a-zA-Z0-9_]+$") set(_tmp_list) list(APPEND _tmp_list ${all_target_libraries}) ctkMacroListFilter(_tmp_list re_ctkplugin OUTPUT_VARIABLE ${varname}) endmacro() #> Create a list of available plug-ins and make them known to the build system set(plugins Plugins/com.alma.rd.tracker:ON ) ctkMacroSetupPlugins(${plugins}) add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/CoreApp) # This is the main App, that should load ------------------------------------------------------------------------------------------------------------ Now, I Have a Root\Plugins\com.alma.rd.tracker directory with another CMakelistst.txt for the plugin itself: ------------------------------------------------------------------------------- PROJECT(com_alma_rd_tracker) #IIRC this projectname is important set(PLUGIN_export_directive "com_alma_rd_tracker_EXPORT") set(PLUGIN_SRCS TrackerListenerActivator.cpp TrackerListenerLogic.cpp TrackerListenerLogic.h ) # Files which should be processed by Qts moc set(PLUGIN_MOC_SRCS TrackerListenerActivator.h ) # Qt Designer files which should be processed by Qts uic set(PLUGIN_UI_FORMS ) # QRC Files which should be compiled into the plugin set(PLUGIN_resources ) #Compute the plugin dependencies ctkFunctionGetTargetLibraries(PLUGIN_target_libraries) ctkMacroBuildPlugin( NAME ${PROJECT_NAME} EXPORT_DIRECTIVE ${PLUGIN_export_directive} SRCS ${PLUGIN_SRCS} MOC_SRCS ${PLUGIN_MOC_SRCS} UI_FORMS ${PLUGIN_UI_FORMS} RESOURCES ${PLUGIN_resources} TARGET_LIBRARIES ${PLUGIN_target_libraries} ) --------------------------------------------------------------------------------------------------- The TrackerListenerActivator class is the interface with the CTK's plugin system while the logic class should do whatever work the plugin is supposed to do. The CoreApp folders is there the main APP that can list and use plugins lies... The CMakeLists.txt in this folder does no have any plugin specific command at all. Inside CoreApp\MainWindow.cxx I have a initplugin function: You'll see that I was testing the exact way to init the plugins when I had to put the project away.* I cannot guarantee that this code really works 100% but I think it will be a good starting point for anyone willing to try CTK plugins:* ________________________________________________________________________________________________ void MainWindow::InitPluginSystem() { //ctkPluginFrameworkLauncher::addSearchPath("C:\\work\\pruebas-bin\\CTKTest\\Plugins\\com.alma.rd.tracker"); //ctkPluginFrameworkLauncher::addSearchPath("C:\\work\\pruebas-bin\\CTKTest\\Plugins\\com.alma.rd.tracker\\Release"); ctkPluginFrameworkLauncher::addSearchPath("C:/work/pruebas-bin/CTKTest/Plugins/com.alma.rd.tracker/Release"); bool succeeded = false; try { succeeded = ctkPluginFrameworkLauncher::start("com.alma.rd.tracker"); }catch(ctkPluginException &e) { std::cout << e.message().toStdString() << std::endl; const ctkException* e2 = e.cause(); if(e2) std::cout << e2->message().toStdString() << std::endl; }catch(ctkRuntimeException &e) { std::cout << e.what() << std::endl; const ctkException* e2 = e.cause(); if(e2) std::cout << e2->message().toStdString() << std::endl; } /* succeeded = ctkPluginFrameworkLauncher::start("org.commontk.eventadmin"); if (succeeded) { std::cout << "org.commontk.eventadmin started succesfully" << std::endl; ctkPluginContext* pluginContext = ctkPluginFrameworkLauncher::getPluginContext(); ctkServiceReference eventAdminRef = pluginContext->getServiceReference(); ctkEventAdmin* eventAdmin = pluginContext->getService(eventAdminRef); eventAdmin->sendEvent(ctkEvent("mydomain/tutorial/CustomEvent")); } else std::cout << "org.commontk.eventadmin not started" << std::endl; succeeded = ctkPluginFrameworkLauncher::start("com.alma.rd.trackerlistener"); if (succeeded) { std::cout << "com.alma.rd.trackerlistenerservice started succesfully" << std::endl; } else std::cout << "com.alma.rd.trackerlistenerservice not started" << std::endl; */ } ________________________________________________________________________________________________ I've stripped the code from unnecesary files and I've attached the relevant code bits in this email. I hope it helps to some degree. Best Regards On Fri, May 24, 2013 at 10:57 PM, Zelzer, Sascha < s.zelzer at dkfz-heidelberg.de> wrote: > Hi, > > There is an application in CTK called PluginGenerator helping you with > generating a plugin. > > I am traveling right now but will send you more information soon. > > Thanks, > > Sascha > > > Von Samsung Mobile gesendet > > > > -------- Urspr?ngliche Nachricht -------- > Von: Florian Ganglberger > Datum: > An: ctk-developers at commontk.org > Betreff: Re: [Ctk-developers] CTK plugin framework tutorial/example > > > Hi Jean-Christophe, > I have already had a look at the wiki. Unfortunately the "Create a new > CTK Plugin" [1] page is empty which would help us a lot... > > [1] > http://www.commontk.org/index.php/Documentation/CTK_Plugin_Framework:_Creating_a_new_CTK_Plugin > > 2013/5/24 Jean-Christophe Fillion-Robin : > > Hi Florian, > > > > Seem the following page could be helpful: > > > http://www.commontk.org/index.php/Documentation/Plugin_Framework#Documentation > > > > And more particularly: > > > http://www.commontk.org/index.php/Documentation/CTK_Plugin_Framework:_Embedding_the_CTK_Plugin_Framework > > > > Hth > > Jc > > > > > > > > > > On Fri, May 24, 2013 at 9:07 AM, Florian Ganglberger > > wrote: > >> > >> Hi all, > >> I'm new to CTK. Me and my colleges want to develop a CTK application > >> that involves IGSTK for tracking. Unfortunately we can not find any > >> suitable example application / tutorial to learn how to use the plugin > >> framework. Do you have any suggestions for us? Or maybe a nice person > >> can send us a minimal example application ;-) > >> _______________________________________________ > >> Ctk-developers mailing list > >> Ctk-developers at commontk.org > >> http://public.kitware.com/cgi-bin/mailman/listinfo/ctk-developers > > > > > > > > > > -- > > +1 919 869 8849 > _______________________________________________ > Ctk-developers mailing list > Ctk-developers at commontk.org > http://public.kitware.com/cgi-bin/mailman/listinfo/ctk-developers > _______________________________________________ > Ctk-developers mailing list > Ctk-developers at commontk.org > http://public.kitware.com/cgi-bin/mailman/listinfo/ctk-developers > -- Sergio Vera Alma IT Systems C/ Vilana, 4B, 4? 1? 08022 Barcelona T. (+34) 932 380 592 www.alma3d.com -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: PluginExample.zip Type: application/zip Size: 9047 bytes Desc: not available URL: From jchris.fillionr at kitware.com Wed May 29 05:24:28 2013 From: jchris.fillionr at kitware.com (Jean-Christophe Fillion-Robin) Date: Wed, 29 May 2013 01:24:28 -0400 Subject: [Ctk-developers] Presentation Zovastra Attah and Bug in CTK installation In-Reply-To: References: Message-ID: Hi Zovastra, As we already discussed, this is great and we are very happy that you chose to work on CTK :) @everybody: Zovastra and I planned on meeting using Google hangout this coming Friday (10am EST). We will be discussing what could be done to improve QtTesting framework. More particularly, we will quickly go through the current QtTesting documentation [1] and review the current QtTesting issues [2] . Then, based on your preference, we will look at the project idea listed during the hackfest [3] and set an action plan. Note also that I will be replying to that email with the hangout link in case some of you would like to join. [1] http://www.slicer.org/slicerWiki/index.php/Documentation/Nightly/Developers/QtTesting [2] https://github.com/commontk/CTK/issues?labels=QtTesting&milestone=&page=1&state=open [3] http://www.commontk.org/index.php/CTK-Hackfest-May-2013#Tests_Framework Regarding the build error you reported, CTK doesn't (yet) clone or build its own python, you have to make sure it is installed on your system. You coulc check what are the value of the PYTHON_* variables in the PythonQt-build/CMakeCache.txt file. Thanks Jc -- +1 919 869 8849 -------------- next part -------------- An HTML attachment was scrubbed... URL: From Zovastra.Attah at creatis.insa-lyon.fr Wed May 29 15:22:50 2013 From: Zovastra.Attah at creatis.insa-lyon.fr (Zovastra Attah) Date: Wed, 29 May 2013 17:22:50 +0200 Subject: [Ctk-developers] Presentation Zovastra Attah and Bug in CTK installation In-Reply-To: References: Message-ID: <5b99a3f1618a6cc2f01fc41b6e0af1e8.squirrel@www.creatis.insa-lyon.fr> I am also be interest in testing two apllications : ctkDICOM and ctkQtTesting in CTK-superbuild/CTK-build/bin I have built CTK base on : On Wed, May 8, 2013 at 1:18 PM, Papademetris, Xenophon > wrote: To follow up: I got the build to work by commenting out the following lines in FindDCMTK.cmake and setting DCMTK_DIR to point to ${BUILD}/CMakeExternals/Install +#find_package(DCMTK ${_DCMTK_REQUIRED} ${_DCMTK_QUIET} NO_MODULE) +#if(DCMTK_FOUND +# AND NOT "x" STREQUAL "x${DCMTK_LIBRARIES}" +# AND NOT "x" STREQUAL "x${DCMTK_INCLUDE_DIRS}") +# return() +#endif() Xenios bug report In exploring applications in CTK-superbuild/CTK-build/bin/ I have noticed that for CTKDICOMObjectViewer application does not load the DICOM images and the stop, cancel and suspend widget in the CTKExampleHost does not work. Zovastra > Hi Zovastra, > > As we already discussed, this is great and we are very happy that you > chose > to work on CTK :) > > @everybody: Zovastra and I planned on meeting using Google hangout this > coming Friday (10am EST). We will be discussing what could be done to > improve QtTesting framework. More particularly, we will quickly go through > the current QtTesting documentation [1] and review the current QtTesting > issues [2] . Then, based on your preference, we will look at the project > idea listed during the hackfest [3] and set an action plan. > > Note also that I will be replying to that email with the hangout link in > case some of you would like to join. > > [1] > http://www.slicer.org/slicerWiki/index.php/Documentation/Nightly/Developers/QtTesting > [2] > https://github.com/commontk/CTK/issues?labels=QtTesting&milestone=&page=1&state=open > [3] > http://www.commontk.org/index.php/CTK-Hackfest-May-2013#Tests_Framework > > > > Regarding the build error you reported, CTK doesn't (yet) clone or build > its own python, you have to make sure it is installed on your system. You > coulc check what are the value of the PYTHON_* variables in the > PythonQt-build/CMakeCache.txt file. > > Thanks > Jc > > -- > +1 919 869 8849 > From Zovastra.Attah at creatis.insa-lyon.fr Wed May 29 15:08:51 2013 From: Zovastra.Attah at creatis.insa-lyon.fr (Zovastra Attah) Date: Wed, 29 May 2013 17:08:51 +0200 Subject: [Ctk-developers] bug report In-Reply-To: References: Message-ID: <59ca39492181da9615a5fcafaaad27f0.squirrel@www.creatis.insa-lyon.fr> hello!!, In exploring applications in CTK-superbuild/CTK-build/bin/ I have noticed that for CTKDICOMObjectViewer application does not load the DICOM images and the stop, cancel and suspend widget in the CTKExampleHost widget does not work. Zovastra From jchris.fillionr at kitware.com Thu May 30 17:38:25 2013 From: jchris.fillionr at kitware.com (Jean-Christophe Fillion-Robin) Date: Thu, 30 May 2013 13:38:25 -0400 Subject: [Ctk-developers] bug report In-Reply-To: References: <59ca39492181da9615a5fcafaaad27f0.squirrel@www.creatis.insa-lyon.fr> Message-ID: Re-adding the CTK dev list. On Thu, May 30, 2013 at 1:29 PM, Jean-Christophe Fillion-Robin < jchris.fillionr at kitware.com> wrote: > Hi Zovastra, > > Good to know you are exploring the different option offered by CTK :) > > The preferred way to report issue is to use the CTK bug tracker [1] > > Would it be possible to create an issue ? Describing how you load the data > and providing the data is also helpful. > > Thanks > Jc > > [1] https://github.com/commontk/CTK/issues/new > > > On Wed, May 29, 2013 at 11:08 AM, Zovastra Attah < > Zovastra.Attah at creatis.insa-lyon.fr> wrote: > >> >> >> >> hello!!, >> In exploring applications in CTK-superbuild/CTK-build/bin/ >> I have noticed that for CTKDICOMObjectViewer application does not load the >> DICOM images and the stop, cancel and suspend widget in the >> CTKExampleHost widget does not work. >> Zovastra >> >> >> >> >> >> >> >> >> >> _______________________________________________ >> Ctk-developers mailing list >> Ctk-developers at commontk.org >> http://public.kitware.com/cgi-bin/mailman/listinfo/ctk-developers >> > > > > -- > +1 919 869 8849 > -- +1 919 869 8849 -------------- next part -------------- An HTML attachment was scrubbed... URL: From jchris.fillionr at kitware.com Thu May 30 17:43:04 2013 From: jchris.fillionr at kitware.com (Jean-Christophe Fillion-Robin) Date: Thu, 30 May 2013 13:43:04 -0400 Subject: [Ctk-developers] bug report In-Reply-To: References: <59ca39492181da9615a5fcafaaad27f0.squirrel@www.creatis.insa-lyon.fr> Message-ID: Hi, Going through my email, I just saw the notification from github about issue #338. If you create an issue in the tracker, there is usually no need to send an email on the list. Indeed, most of the CTK dev will get the notification already. Thanks Jc See https://github.com/commontk/CTK/issues/338 On Thu, May 30, 2013 at 1:38 PM, Jean-Christophe Fillion-Robin < jchris.fillionr at kitware.com> wrote: > Re-adding the CTK dev list. > > > On Thu, May 30, 2013 at 1:29 PM, Jean-Christophe Fillion-Robin < > jchris.fillionr at kitware.com> wrote: > >> Hi Zovastra, >> >> Good to know you are exploring the different option offered by CTK :) >> >> The preferred way to report issue is to use the CTK bug tracker [1] >> >> Would it be possible to create an issue ? Describing how you load the >> data and providing the data is also helpful. >> >> Thanks >> Jc >> >> [1] https://github.com/commontk/CTK/issues/new >> >> >> On Wed, May 29, 2013 at 11:08 AM, Zovastra Attah < >> Zovastra.Attah at creatis.insa-lyon.fr> wrote: >> >>> >>> >>> >>> hello!!, >>> In exploring applications in CTK-superbuild/CTK-build/bin/ >>> I have noticed that for CTKDICOMObjectViewer application does not load >>> the >>> DICOM images and the stop, cancel and suspend widget in the >>> CTKExampleHost widget does not work. >>> Zovastra >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> _______________________________________________ >>> Ctk-developers mailing list >>> Ctk-developers at commontk.org >>> http://public.kitware.com/cgi-bin/mailman/listinfo/ctk-developers >>> >> >> >> >> -- >> +1 919 869 8849 >> > > > > -- > +1 919 869 8849 > -- +1 919 869 8849 -------------- next part -------------- An HTML attachment was scrubbed... URL: