Re: [Paraview] particle tracking

2012-02-21 Thread Utkarsh Ayachit
Marcelo, Is this using OSMesa for offscreen rendering? There was a memory leak in 3.10.0 that has been subsequently fixed when saving animations with OS Mesa and offscreen rendering enabled. Utkarsh On Mon, Feb 20, 2012 at 6:23 AM, Marcelo Emmel marc...@emmel.eng.br wrote: Jean Favre jfavre at

[Paraview] Set TextureMaptoPlane texture via Python

2012-02-21 Thread Ryan Danks
I've been trying to have a texture (PNG file) applied to a multiblock surface via a Python script. My starting point was a trace of the process,which looks like this t1 = TextureMaptoPlane() rep = Show() rep.Texture = [] When I load the PNG file with PNGSeriesReader, and make the command

Re: [Paraview] particle tracking

2012-02-21 Thread Christian Richter
Hi, Utkarsh, sorry I forgot to replay to the list. I wrote Marcelo yesterday "Dear Marcelo, try Edit-Settings-Render View and disable "Use Offscreenrendering for Screenshots". The animation will take more time, but the memory ussage is constant

Re: [Paraview] Bug with MaskPoints + GaussianSplatter pipeline/

2012-02-21 Thread Cory Quammen
Hal, I confirm this bug in ParaView 3.12 on Mac OS X, Windows 7 64-bit, and Linux 64-bit. One of the strange behaviors is that no matter the size of the image produced by the Gaussian resampling filter, the three subsections of the surface consist of an 11x11 point grid (as long as the

Re: [Paraview] Bug with MaskPoints + GaussianSplatter pipeline/

2012-02-21 Thread Cory Quammen
I just confirmed that the bug is also in ParaView 3.14.0 RC2 Windows 64-bit. Cory On Tue, Feb 21, 2012 at 11:18 AM, Cory Quammen cquam...@cs.unc.edu wrote: Hal, I confirm this bug in ParaView 3.12 on Mac OS X, Windows 7 64-bit, and Linux 64-bit. One of the strange behaviors is that no

Re: [Paraview] ParaView 3.12.0 hanging

2012-02-21 Thread Goodwin Lawlor
Following up on this. I built a debug 32bit version of ParaView 3.14.0-RC2 client on Win7 It hangs on connecting to a remote server (linux 64bit) too. Here's the backtrace: ntdll.dll!7714f8c1() mswsock.dll!73be6f0f() mswsock.dll!73be76a6() ws2_32.dll!763170fa()

Re: [Paraview] ParaView 3.12.0 hanging

2012-02-21 Thread Burlen Loring
Hi Goodwin, There is a bug in vtkSocket::Receive, where the error condition is not tested for in return from recv socket call on *nix systems. It may or may not be the source of/related to the issue that you are having but it's certainly could cause ParaView to hang silently. Sorry that I

Re: [Paraview] ParaView 3.12.0 hanging

2012-02-21 Thread Robert Maynard
As far as getting VTK changes into ParaView the easiest way is to follow the VTK Gerrit workflow (http://www.vtk.org/Wiki/VTK/Git/Develop) and then just wait for ParaView to absorb those changes when we update ParaView's VTK branch. This works well for non critical changes as we merge VTK master

Re: [Paraview] ParaView 3.12.0 hanging

2012-02-21 Thread Utkarsh Ayachit
Goodwin, Can you verify that the patch works, please?. It still might be too late for 3.14, but it'll be nice to know if it fixes the issue. Utkarsh On Tue, Feb 21, 2012 at 1:18 PM, Burlen Loring blor...@lbl.gov wrote: Hi Goodwin, There is a bug in vtkSocket::Receive, where the error

[Paraview] Apparent problems with NVIDIA driver on Linux

2012-02-21 Thread Cory Quammen
I wanted to post some information to hopefully save others time in case they are running into rendering oddities while saving an animation. Summary We have seen rendering problems while generating animations from ParaView 3.12.0 64-bit using the NVIDIA 295.20 driver on both Red Hat Enterprise

[Paraview] Python scripts and exit

2012-02-21 Thread Scott, W Alan
When I run pvbatch, with the following script, pvbatch never exits. Is there a way to get pvbatch to exit? # write a file f = open('/... /working.txt', 'w') f.write('script worked\n') f.close() # exit exit() Thanks, Alan W. Alan

Re: [Paraview] Apparent problems with NVIDIA driver on Linux

2012-02-21 Thread Utkarsh Ayachit
Thanks for the info, Cory. Utkarsh On Tue, Feb 21, 2012 at 1:51 PM, Cory Quammen cquam...@cs.unc.edu wrote: I wanted to post some information to hopefully save others time in case they are running into rendering oddities while saving an animation. Summary We have seen rendering problems

[Paraview] 3D point cloud with color

2012-02-21 Thread Giulio Reina
Hi, I have been working with 3D stereo reconstruction. So, I have huge 3d point clouds co-registered with color in this format [X Y Z R G B] (the first three vector columns specify the location of the single point and the last three one its color in RGB space). I have been trying to display

Re: [Paraview] plot selection over time

2012-02-21 Thread Scott, W Alan
Suppose I want to plot a cell variable as a function of time. I can see how to do that with the PlotSelectionOverTime filter. But what I really want to do is the same plot for many cells, all at the same time. Is there an easy way to do that? On the Display tab, PlotSelectionOverTime only

Re: [Paraview] ParaView 3.12.0 hanging

2012-02-21 Thread Goodwin Lawlor
Hi Utkarsh and Burlen, I applied the patch but it didn't make a difference unfortunately. A colleague also sees the same problem connecting from a Mac client, btw. The main thread on the client is stuck here: vtkRestartInterruptedSystemCallMacro( recv(this-SocketDescriptor,

Re: [Paraview] ParaView 3.12.0 hanging

2012-02-21 Thread Utkarsh Ayachit
IN that case, can you check where the server process is stuck? A call stack for the server would be helpful. Utkarsh On Tue, Feb 21, 2012 at 2:45 PM, Goodwin Lawlor goodwin.law...@ucd.ie wrote: Hi Utkarsh and Burlen, I applied the patch but it didn't make a difference unfortunately. A

Re: [Paraview] 3D point cloud with color

2012-02-21 Thread Pat Marion
Hi Giulio, After applying Table to Points, you should have a dataset with R, G, and B data arrays. You could use the the Python Calculator filter with an expression: [R, G, B] to combine the three arrays into a single array, but ParaView will only color points if the array type is unsigned

Re: [Paraview] Python scripts and exit

2012-02-21 Thread Andy Bauer
That worked for me for bin/pvbatch scriptname. I did get 2 debug leak warnings but no problems exiting. If I comment out exit(), I don't get the leaks. When I ran in parallel I get similar behavior with respect to using exit(). I do have to use the -sym flag (mpirun -np X bin/pvbatch -sym

Re: [Paraview] [EXTERNAL] Re: Python scripts and exit

2012-02-21 Thread Scott, W Alan
Yep, I am not using -sym. Thanks. From: Andy Bauer [mailto:andy.ba...@kitware.com] Sent: Tuesday, February 21, 2012 1:22 PM To: Scott, W Alan Cc: paraview@paraview.org Subject: [EXTERNAL] Re: [Paraview] Python scripts and exit That worked for me for bin/pvbatch scriptname. I did get 2 debug

Re: [Paraview] 3D point cloud with color

2012-02-21 Thread Andrew Maclean
Hi Giulio, I would apply a programmable filter to the data like this for example ( it also passes through any data not used at the end - if you have any): #--- # Copy colour as (r, g, b) into a single unsigned char array. pdi = self.GetPolyDataInput() pdo =

Re: [Paraview] plot selection over time

2012-02-21 Thread Utkarsh Ayachit
That's not possible currently. There is a feature request on the bug tracker I believe, but we havent addressed it yet. Utkarsh On Tue, Feb 21, 2012 at 2:43 PM, Scott, W Alan wasc...@sandia.gov wrote: Suppose I want to plot a cell variable as a function of time. I can see how to do that with

[Paraview] mpirun ./pvserver

2012-02-21 Thread Kaster Might
Hi all, I have issues with running parallel pvserver on linux machine. When I try this `mpirun -np 3 ./pvserver` I get error `vtkServerSocket (0xe09640): Socket error in call to bind. Address already in use.` for every process but first. I believe it's because each of `pvserver` processes