[Paraview] ParaView Plugin Idea

2016-04-30 Thread Dean, Kevin
Hey guys, I am trying to write a paraview filter that utilizes "Extract Subset." However, I want to base it off of a slider methodology as opposed to typing in the extents. Are there any examples that could get me started on manipulating the render view based off sliders? This is the end goal of

[Paraview] Paraview plugin with drop down list with values from input arrays

2015-11-30 Thread Andrzej Peczak
Hi Is it possible to create multiple drop down list with values based on arbitrary number of attribute arrays in a dataset ? Andrzej ** Please consider the environment. Only print this email if absolutely necessary. This

Re: [Paraview] Paraview Plugin: two enumerations next to each other

2014-12-07 Thread Utkarsh Ayachit
Attached is an example plugin code that demonstrates how this could be done. Utkarsh On Wed, Nov 19, 2014 at 12:24 PM, Gonzalo Brito Gadeschi g.br...@aia.rwth-aachen.de wrote: I'm trying to write an IntVectorProperty with two drop down list next to each other. Ideally it would call a

Re: [Paraview] Paraview Plugin: two enumerations next to each other

2014-11-20 Thread Utkarsh Ayachit
The default widget portfolio in ParaView doesn't support such a property. However, you can implement a custom pqPropertyWidget subclass that places 2 combo-boxes. Use pqIntVectorPropertyWidget [1] as a reference. [2],[3] may be useful reads to understand the property-widget infrastructure in

[Paraview] Paraview Plugin: two enumerations next to each other

2014-11-19 Thread Gonzalo Brito Gadeschi
I'm trying to write an IntVectorProperty with two drop down list next to each other. Ideally it would call a function that takes to arguments, and passes the value of each drop down menu to each argument. I am however open to workarounds. This is my best attempt but of course it crashes

Re: [Paraview] ParaView plugin load error

2014-10-09 Thread Vanmoer, Mark W
: [Paraview] ParaView plugin load error Mark, If you intend your plugin to be loadable with the distributed binaries for 3.14, you must indeed use the same compiler as listed here[1] for the appropriate version and OS. For 3.14, that's VS2008. [1] http://www.paraview.org/Wiki/ParaView/Binaries

[Paraview] ParaView plugin load error

2014-10-07 Thread Vanmoer, Mark W
Hi, I'm working on a legacy ParaView 3.14.1 plugin project. On Windows, I can't seem to figure out the settings so that the plugin .dlls will work on any machine other than the dev machine. The errors I get are along the lines of: *** Attempting

Re: [Paraview] ParaView plugin load error

2014-10-07 Thread Vanmoer, Mark W
Follow up question, since the ParaView 3.14.1 pre-built 64 bit binaries come with msvcr90.dll, msvcp90.dll, etc. which is from VS 2005, does that mean VS 2005 is the newest Visual Studio I can use to build redistributable plugins for ParaView 3.14.1? Mark From: Vanmoer, Mark W Sent: Tuesday,

Re: [Paraview] ParaView plugin load error

2014-10-07 Thread Utkarsh Ayachit
Mark, If you intend your plugin to be loadable with the distributed binaries for 3.14, you must indeed use the same compiler as listed here[1] for the appropriate version and OS. For 3.14, that's VS2008. [1] http://www.paraview.org/Wiki/ParaView/Binaries On Tue, Oct 7, 2014 at 6:40 PM,

[Paraview] Paraview plugin doesn't load the GUI.

2013-01-11 Thread Nico Kruithof
Hello, I'm trying to get the HelixSource plugin loaded (Examples/Plugings/HelixSource). In paraview I added the plugin: Tools-Manage plugins-add helix.xml. The plugin is loaded as I can create a helix, however the modified user interface (HelixSource.ui) is not used. For example, the python code

Re: [Paraview] Paraview plugin doesn't load the GUI.

2013-01-11 Thread Sebastien Jourdain
If the plugin is composed of C++ code (ui or processing code), what need to be loaded is the compiled library (.dll/.so/.dylib) not the xml. The XML is just when you want to expose some VTK classes to the ParaView GUI with auto generated panel. To build the ParaView examples you will need to

Re: [Paraview] Paraview plugin doesn't load the GUI.

2013-01-11 Thread Nico Kruithof
The HelixSource plugin doesn't contain a CMakeLists.txt file so the shared library isn't compiled. Nico On Fri, Jan 11, 2013 at 3:36 PM, Sebastien Jourdain sebastien.jourd...@kitware.com wrote: If the plugin is composed of C++ code (ui or processing code), what need to be loaded is the

Re: [Paraview] Paraview plugin doesn't load the GUI.

2013-01-11 Thread Utkarsh Ayachit
I don't think ParaView ever supported loading UI files directly as so. If you want to specify a custom GUI, you'll have to compile a plugin and then load it. The XML loading mechanism is only for bringing in Proxy XMLs for simple plugins. Utkarsh On Fri, Jan 11, 2013 at 9:46 AM, Nico Kruithof

Re: [Paraview] ParaView Plugin .xml how to

2012-06-08 Thread Tuan Ha Tran
...@kitware.com To: Tuan Ha Tran tuan-ha.t...@insa-lyon.fr Cc: David E DeMarle dave.dema...@kitware.com, paraview-develop...@paraview.org, paraview@paraview.org Sent: Thu, 07 Jun 2012 17:53:02 +0200 (CEST) Subject: Re: [Paraview] ParaView Plugin .xml how to On Thu, Jun 7, 2012 at 11:44 AM, Tuan Ha Tran wrote

[Paraview] ParaView Plugin .xml how to

2012-06-07 Thread Tuan Ha Tran
Hi everybody, I have another question, I hope that you can help me. So, my class vtkOtsuSphereSource has an attribute name OpThreshold of type double. I want to Set it value using ParaView. I followed an tutorial from which I can get my job done by adding some tab in my .xml

Re: [Paraview] ParaView Plugin .xml how to

2012-06-07 Thread Tuan Ha Tran
...@paraview.org, paraview@paraview.org Sent: Thu, 07 Jun 2012 16:45:22 +0200 (CEST) Subject: [Paraview] ParaView Plugin .xml how to Hi everybody, I have another question, I hope that you can help me. So, my class vtkOtsuSphereSource has an attribute name OpThreshold of type double. I want to Set

Re: [Paraview] ParaView Plugin .xml how to

2012-06-07 Thread David E DeMarle
important for me indeed. Thank you from my heart for your help. - Original Message - From: Tuan Ha Tran tuan-ha.t...@insa-lyon.fr To: paraview-develop...@paraview.org, paraview@paraview.org Sent: Thu, 07 Jun 2012 16:45:22 +0200 (CEST) Subject: [Paraview] ParaView Plugin .xml how

Re: [Paraview] ParaView Plugin .xml how to

2012-06-07 Thread Tuan Ha Tran
dave.dema...@kitware.com To: Tuan Ha Tran tuan-ha.t...@insa-lyon.fr Cc: paraview-develop...@paraview.org, paraview@paraview.org Sent: Thu, 07 Jun 2012 17:21:55 +0200 (CEST) Subject: Re: [Paraview] ParaView Plugin .xml how to Your c++ class has: double calculateOptimalThreshold(vtkImageData *voi

Re: [Paraview] ParaView Plugin .xml how to

2012-06-07 Thread Yumin Yuan
On Thu, Jun 7, 2012 at 11:44 AM, Tuan Ha Tran tuan-ha.t...@insa-lyon.fr wrote: That really helpful your reply. But, I always have errors with ===    DoubleVectorProperty name=OpThreshold  command=SetOpThreshold number_of_elements =1

[Paraview] paraview plugin for vtkImageGaussianSmooth

2012-03-14 Thread FISSELL
Hi, I didn't see a paraview plugin for the vtkImageGaussianSmooth.cxx filter in the paraview Filters menus or the filters.xml file. Is there some equivalent ? If not: am I right that I will need to write a little paraview plugin wrapper in order to be able to use vtkImageGaussianSmooth in a

Re: [Paraview] paraview plugin for vtkImageGaussianSmooth

2012-03-14 Thread Utkarsh Ayachit
Kate, ParaView doesn't include most of the imaging filters by default due to 2 reasons, 1. not commonly used by users 2. may not necessary work in parallel (esp. for filters that change extents) You are correct, you'd need to write a little plugin to use it in pvpython or the GUI. You can simply

Re: [Paraview] paraview plugin for vtkImageGaussianSmooth

2012-03-14 Thread Burlen Loring
Hi Kate, It shouldn't be too hard for you to expose the vtkImageGaussianSmooth in PV. I have one caveat for you re: using vtkImageGaussianSmooth in parallel: when it runs it will trigger a complete re-execution of your entire pipeline including the reader.This happens because

Re: [Paraview] paraview plugin for vtkImageGaussianSmooth

2012-03-14 Thread Utkarsh Ayachit
You are correct, you'd need to write a little plugin to use it in pvpython or the GUI. You can simply write an XML plugin. It should be fairly simple for vtkImageGaussianSmooth, it doesn't seem to have any complex properties. I just saw Burlen's response and yes, I missed the fact that

[Paraview] ParaView plugin talk this Friday in Second Life

2009-10-28 Thread Christine Corbett Moran
Hi All, I'm giving a talk this Friday in Second Life about ParaView and the visualization plugin I am developing for it at The Meta Institute for Computational Astrophysics (MICA), a professional scientific organization based in Second Life. Friday, October 30 at 10:00 AM PDT Seminar- Christine

Re: [Paraview] Paraview plugin

2009-07-09 Thread Moreland, Kenneth
A FindParaView.cmake file is not necessary. The ParaView build and install follows the appropriate CMake conventions to find and setup the install without it. In short, a command like FIND_PACKAGE(ParaView) is sufficient to find the ParaView installation. If you are having trouble creating

[Paraview] Paraview plugin

2009-07-03 Thread Franck Perignon
Hello, is there a file FindParaview.cmake in the paraview distribution? I need it to create my own plugin and I can not find it ... If it does not exist, can someone help me and give me an example of a working CMakeLists.txt file for a plugin? Thanks a lot! Best regards F. Perignon

[Paraview] paraview plugin

2009-02-23 Thread Biao She
Hi everyone. I have successfully created a plugin for paraview in Linux. Now I want to move it to Windows. CMake vs8 2005 code generator is used for generating the plugin project. Nothing went wrong before I tried to build the project. I got the following two building errors: 1C:\Program

Re: [Paraview] paraview plugin

2009-02-23 Thread Moreland, Kenneth
Offhand, I don't specifically recognize this error. I'm not sure there is enough information here to adequately diagnose the problem. -Ken On 2/23/09 9:47 AM, Biao She sheb...@gmail.com wrote: Hi everyone. I have successfully created a plugin for paraview in Linux. Now I want to move it to

Re: [Paraview] Paraview Plugin

2008-09-08 Thread Samuel Crow
as well. I hope this answers your questions, --Sam --- On Mon, 9/8/08, lee shi yun [EMAIL PROTECTED] wrote: From: lee shi yun [EMAIL PROTECTED] Subject: [Paraview] Paraview Plugin To: paraview@paraview.org Date: Monday, September 8, 2008, 5:28 AM Hi, I installed Paraview 3.2.1 for both

[Paraview] Paraview Plugin

2008-09-07 Thread lee shi yun
Hi, I installed Paraview 3.2.1 for both client and server. Can I still plugin some stuff to it? * The example given is for Paraview 3.3, izit means Paraview with older edition cant plugin?? Thanks! Val _ Manage multiple email

[Paraview] Paraview Plugin

2008-09-07 Thread lee shi yun
Hi, I installed Paraview 3.2.1 for both client and server. Can I still plugin some stuff to it? * The example given is for Paraview 3.3, izit means Paraview with older edition cant plugin?? Thanks! Val _ Join the Fantasy