[Paraview] Segmented Data Writer

2010-04-16 Thread Thorsten Hater
Hello, I'm trying to convert my custom data to VTK mapper to using the VTK classes for writing xml-Data. How can I present the PImage Writer class with pre-segmented data to produce a .pvti-file? Thorsten ___ Powered by www.kitware.com Visit other

Re: [Paraview] Compiling Paraview from CVS

2010-02-24 Thread Thorsten Hater
can help others narrow down what problems you may be encountering. Thanks, -Eric -- Eric E Monson Duke Visualization Technology Group On Feb 23, 2010, at 10:48 AM, Thorsten Hater wrote: Hello, when I try to compile the CVS version

[Paraview] Compiling Paraview from CVS

2010-02-23 Thread Thorsten Hater
]: *** [Utilities/VTKClientServer/Common/CMakeFiles/vtkCommonCS.dir/all] Error 2 make: *** [all] Error 2 -- Thorsten Hater Institut fuer Theoretische Physik I Ruhr-Universitaet Bochum E-Mail: t...@tp1.rub.de Tel.: 0234/32-23-441 ___ Powered by www.kitware.com

Re: [Paraview] Moving slice with particle

2010-02-22 Thread Thorsten Hater
with an empty output field. Am 20.02.2010 02:08, schrieb Berk Geveci: To make sure that I understand, vtkCutter does not work, right? Why? Are you trying to extract a cut/slice or a subset with constant i, j or k from an image data? -berk On Fri, Feb 19, 2010 at 10:12 AM, Thorsten Hater t

Re: [Paraview] Moving slice with particle

2010-02-19 Thread Thorsten Hater
import paraview.simple a new connection pops up and PV itself is messed up, so I can't use simple's Slice. Can I work around this behaviour? Am 19.02.2010 01:42, schrieb Berk Geveci: self.GetInputDataObject(0, n) should return the nth input. -berk On Thu, Feb 18, 2010 at 4:45 PM, Thorsten Hater

Re: [Paraview] Moving slice with particle

2010-02-18 Thread Thorsten Hater
multiple inputs. You could use the point from on of its inputs to setup the parameter of an internal slice filter - which requires importing the vtk.graphics module. If you can't figure it out, let me know, I'll help. -berk On Wed, Feb 17, 2010 at 10:46 AM, Thorsten Hater t...@tp1.rub.de mailto:t

[Paraview] Moving slice with particle

2010-02-17 Thread Thorsten Hater
an animation. Has anybody done something like this before? The programmable filter seems a good point to start, but I need at least two inputs for figuring out the offset. Thanks in advance for any pointers or help! Cheers, Thorsten -- Thorsten Hater Institut fuer Theoretische Physik I Ruhr

[Paraview] Populating GUI elements in custom reader

2009-10-06 Thread Thorsten Hater
Hello, I have a custom reader, which displays some information in the GUI, like the domain it is going to extract. The question is, how can I populate these elements with sensible information, which is not known before RequestInformation (like the domain sizes)? Thorsten

Re: [Paraview] Ellipsoid glyphs

2009-07-30 Thread Thorsten Hater
and check the ParaView Wiki at: http://paraview.org/Wiki/ParaView Follow this link to subscribe/unsubscribe: http://www.paraview.org/mailman/listinfo/paraview -- Thorsten Hater Institut fuer Theoretische Physik I Ruhr-Universitaet Bochum E-Mail: t...@tp1.rub.de Tel.: 0234/32-23-441

Re: [Paraview] Ellipsoid glyphs

2009-07-29 Thread Thorsten Hater
There is a request concerning ellipsoid glyphs/source on the feedback site, so I voted for that. As a quick fix, how do I enable vtk filters in ParaView? I know that it was possible a while ago, but the wiki entry is out of date (seems to refer to 2.X) Thorsten Utkarsh Ayachit schrieb: Such

[Paraview] Ellipsoid glyphs

2009-07-28 Thread Thorsten Hater
Hello, I looking for a method to visualize a set of ellipsoids, defined by three vectors at each point. As far as I can see, the vtkTensorGlyph would be suited best, but unfortunately it is not available in ParaView. Has someone imported this filter into ParaView (the wiki article seems quite

Re: [Paraview] VTK XML Binary Output

2009-04-01 Thread Thorsten Hater
that it would be greatly appreciated. Also, how do I calculate what value goes in for the offset? I had a look at a couple of output files from paraview and it wasnt obvious how it was calculated. Thanks David From: Thorsten Hater Sent: Tuesday, March 31, 2009 2:23 PM To: David

Re: [Paraview] VTK XML Binary Output

2009-04-01 Thread Thorsten Hater
Exactly, sorry for the typo. thorsten Olesen, Mark schrieb: I just tried that and it is now giving me a segmentation fault... I am using the following line: file.write(reinterpret_castconst char*(size), 4); The segfault isn't surprising. If you obtain the address of the variable

Re: [Paraview] VTK XML Binary Output

2009-03-31 Thread Thorsten Hater
Hello, the solution might be to append your data as DataArray ... format="appended" /DataArray AppendedData encoding="raw" _Data /AppendedData where you should replace with a four byte integer containing the number of bytes in the data array as 4 chars. Setting the encoding to

Re: [Paraview] Two follow-up questions on readers

2009-03-30 Thread Thorsten Hater
The first question is already answered in another thread, which I believed dead already (Question on ...), thank you for clarifying the matter there. Actually I'm working with the XML-generated GUI elements. The benefits of writing custom Qt-GUI-Panels would the access to the whole power of

Re: [Paraview] Readers and multiple arrays

2009-03-30 Thread Thorsten Hater
PM, Moreland, Kenneth kmo...@sandia.gov wrote: Utkarsh, You’re the expert on server manager XML. Can you explain how to set a range domain that depends on something else (like an information property)? -Ken On 3/23/09 9:23 AM, Thorsten Hater t...@tp1.rub.de wrote: Thanks a lot, my plugin

[Paraview] Two follow-up questions on readers

2009-03-26 Thread Thorsten Hater
Hello, I've got two more questions on reader plugins in ParaView. 1) How do I populate GUI-Elements with data read from a file. The ParaView book mentions InformationHelpers but does not explain their usage. 2) Can I use custom files - which I provide a reader for - in

Re: [Paraview] Readers and multiple arrays

2009-03-23 Thread Thorsten Hater
is not called, then the pipeline will not know that something has changed for your reader and it will not request a new read. -Ken On 3/17/09 3:20 AM, Thorsten Hater t...@tp1.rub.de wrote: Hello again, solved this problem. But encountered a new minor one, which is to dynamically reread

Re: [Paraview] Readers and multiple arrays

2009-03-17 Thread Thorsten Hater
exactly and how is it used? Best regards, Thorsten Thorsten Hater wrote: Hi, could anybody give me some information on the problem of adding multiple arrays to a single output of a reader. Managing and displaying the array names GUI-wise is not problematic, but rather where to put the data

[Paraview] Readers and multiple arrays

2009-03-16 Thread Thorsten Hater
Hi, could anybody give me some information on the problem of adding multiple arrays to a single output of a reader. Managing and displaying the array names GUI-wise is not problematic, but rather where to put the data arrays in the RequestData member. Best regards, Thorsten

Re: [Paraview] Question on Image reader

2009-01-07 Thread Thorsten Hater
...@bluequartz.net BlueQuartz Softwarewww.bluequartz.net Principal Software Engineer Dayton, Ohio On Jan 6, 2009, at 11:17 AM, Thorsten Hater wrote: Hello everyone. I'm trying to implement a custom reader for ParaView 3.4. The output data is of the ImageData type

[Paraview] Question on Image reader

2009-01-06 Thread Thorsten Hater
Hello everyone. I'm trying to implement a custom reader for ParaView 3.4. The output data is of the ImageData type. With the help of the ParaView guid I got as far as implementing the reader, save the most important bit of filling the actual data into the output object. So I have got the raw