Re: [Paraview] [vtkusers] gcode2vtk animation example

2015-09-24 Thread Shakthi Kannan
Hi Cory, --- On Thu, Sep 24, 2015 at 1:02 AM, Cory Quammen

[Paraview] ParaViewWeb - Issues with Loading ASCII STL file & Rendering the Output Fields

2015-09-24 Thread kai liu via ParaView
Dear, I have deployed ParaViewWeb. Everything seems to work fine, but I am not able to visualize outputs, such as rendering the output fields such as T, V, etc.  I built and tried ParaViewWeb 4.1, 4.3 and 4.4 with offscreen OSMesa, and I have received the same issues. Currently I use Apache

Re: [Paraview] More Customization of Python programmable Filter Panel

2015-09-24 Thread Cory Quammen
Hi Dennis, Answers inlined below. On Wed, Sep 23, 2015 at 2:39 PM, Dennis Conklin wrote: > All, > > > > Pat Marion discussed adding interactive Properties for a Programmable > Filter here: > > http://www.kitware.com/blog/home/post/534 > > > > I have a few

[Paraview] X Error: BadWindow

2015-09-24 Thread Ethan Hereth
Hey all, I have a quick question. This has been annoying me for some time. I like to have as much screen real estate as possible for my post-processing so I like to detach the Pipeline Browser, Properties, Information, etc. windows and move them across to another monitor. Ever since I've started

Re: [Paraview] Send an array from client to server

2015-09-24 Thread Utkarsh Ayachit
Attached is the solution, there a small mistake in my origin script: vtkClientServerStream stream; stream << vtkClientServerStream::Invoke << VTKOBJECT(proxy) << SetValues << maxValues << stream.InsertArray(values, maxValues)

Re: [Paraview] 400GB dataset out of memory on 1k cores?

2015-09-24 Thread Anton Shterenlikht
sorry, I think the dataset I posted is bad, i.e. there is only a single volume that is shown with a threshold. I'll try to generate a better one shortly. Apologies, and thank you for your help. Anton ___ Powered by www.kitware.com Visit other Kitware

Re: [Paraview] [EXT] Re: More Customization of Python programmable Filter Panel

2015-09-24 Thread Dennis Conklin
Cory, Wow, that’s exactly what I need – now I just need to get some time to re-implement my filters using this! Thanks again Dennis From: Cory Quammen [mailto:cory.quam...@kitware.com] Sent: Thursday, September 24, 2015 11:07 AM To: Dennis Conklin Cc: Paraview

Re: [Paraview] ParaViewWeb - Issues with Loading ASCII STL file & Rendering the Output Fields

2015-09-24 Thread Scott Wittenburg
Hello Kai, Thanks for your questions, I have put my responses inline below: On Thu, Sep 24, 2015 at 5:45 AM, kai liu via ParaView wrote: > Dear, > > > I have deployed ParaViewWeb. Everything seems to work fine, but I am not > able to visualize outputs, such as

Re: [Paraview] [EXT] Re: More Customization of Python programmable Filter Panel

2015-09-24 Thread Dennis Conklin
One more question – the original article says that Alternatively, the Script properties can be hidden completely from the properties panel. How is this accomplished? Thanks again Dennis From: Dennis Conklin Sent: Thursday, September 24, 2015 12:20 PM To: 'Cory Quammen'

Re: [Paraview] [EXT] Re: More Customization of Python programmable Filter Panel

2015-09-24 Thread Cory Quammen
Hi Dennis, The converter evaluates your Python script and then uses some Python reflection features to extract the code in your RequestData function. But it does this only for the RequestData function (as well as a RequestInformation and RequestUpdateExtent functions, but these aren't always

Re: [Paraview] Guide to installing paraview for offscreen rendering

2015-09-24 Thread David E DeMarle
On Wed, Sep 23, 2015 at 9:52 PM, Amit Goel wrote: > 1. I used CCMAKE to build paraview. CCMAKE, which is graphical/ncurses > based, and in advanced mode - has hundreds of options (spread over 14 > pages) that I dont remember myself which options I chose last time I built >

Re: [Paraview] [EXT] Re: More Customization of Python programmable Filter Panel

2015-09-24 Thread Dennis Conklin
Cory, I had just thought of this and tried it (successfully) about when your note came in. I hate to quibble, but I would suggest that in the typeMap in the python_filter_generator.py vtkMultiBlockDataSet is listed as vtkMultiblockDataSet and I had to figure this out and use a small ‘b’

Re: [Paraview] Saving with Solid Color information

2015-09-24 Thread Cory Quammen
Hi Léo, On Thu, Sep 24, 2015 at 3:27 PM, Léo Pessanha wrote: > I am using state files as a solution for now, while i can't find a way of > saving solid color info. > I'm not sure if I understand exactly what you mean. Statefiles are meant to be the way to save

Re: [Paraview] [vtkusers] gcode2vtk animation example

2015-09-24 Thread Shakthi Kannan
Hi Cory, I would like to render lines using a Python callback method, and I am assuming Paraview does the same as well. I am using the following code snippet as a template: http://www.vtk.org/Wiki/VTK/Examples/Python/GeometricObjects/Display/LongLine and the following examples for a callback

Re: [Paraview] [EXT] Re: More Customization of Python programmable Filter Panel

2015-09-24 Thread Dennis Conklin
Cory, I’m pretending to be a real programmer, so my Programmable Filter script looks something like this: Def sub1: Do some stuff Return var Def sub2(var): Do some stuff Return newVar Def sub3(var): Do some stuff Return newVar Def RequestData(): X=sub1()

Re: [Paraview] Saving with Solid Color information

2015-09-24 Thread Léo Pessanha
I am using state files as a solution for now, while i can't find a way of saving solid color info. The problem is that each filter that I apply in my data, I have to color the data again. It is a large group of data so it's counter-productive. Maybe, when there's time, I will produce a scalar

Re: [Paraview] [EXT] Re: More Customization of Python programmable Filter Panel

2015-09-24 Thread Dennis Conklin
All, So, I can load the xml plugin but the filter is grayed out on the Filters menu. I have tried removing the InputDataSetType so that it should accept any type of input, but still gray. I am not sure how Paraview decides which filters are inappropriate (greyed-out) so I don’t have many

Re: [Paraview] [EXT] Re: More Customization of Python programmable Filter Panel

2015-09-24 Thread Cory Quammen
Oops, copying the list in to my last response. On Thu, Sep 24, 2015 at 4:53 PM, Cory Quammen wrote: > > > On Thu, Sep 24, 2015 at 4:47 PM, Dennis Conklin < > dennis_conk...@goodyear.com> wrote: > >> Cory, >> >> >> >> I applied to bake.e, which is a vtkMultiblockDataSet

Re: [Paraview] [EXT] Re: More Customization of Python programmable Filter Panel

2015-09-24 Thread Cory Quammen
Hi Dennis, What is your input to the Test Filter? I can apply it to a Sphere source input. For your custom filter, the XML file should contain the following: This tells ParaView to enable your

Re: [Paraview] [EXT] Re: More Customization of Python programmable Filter Panel

2015-09-24 Thread Cory Quammen
Dennis, Great! I'm glad it's what you are looking for. You can hide any property by editing the XML file. In the property element, add an attribute called "panel_visibility" and set this to "never". This will hide the property from view. You can also set it to "advanced" so that it shows up only

Re: [Paraview] Volume Rendering with opacity mapping and specular highlights

2015-09-24 Thread Aashish Chaudhary
On Wed, Sep 23, 2015 at 3:34 PM, Mathew Guilfoyle wrote: > Aashish - thanks for the reply > > I am using the latest OS X binary download (4.4.0) - is this OpenGL2? > When I switch ‘Volume Rendering Mode’ to GPU rendering all images disappear > so I presume I’m only able to