[Paraview] Problems positioning image slices in 3D

2012-04-16 Thread Richard Beare
Hi, I have a set of slices extracted from a 3D volume. These slices have been processed with image magick to produce a transparent background and a colour overlay. I can load several into paraview, feed them through the image to pointset filter and then transform them so that they are in a 3D

[Paraview] problem in displaying filters affects

2012-04-16 Thread Roba Binyahib
Hi everyone I'm having a problem with applying filters using python and paraview I can load the data file and change the colors but when I apply filters I can not see any changes I'm using paraview version 3.14.0 and this is an example of the code I'm trying to run from paraview import

Re: [Paraview] Qt QTWEBKIT library not found

2012-04-16 Thread Utkarsh Ayachit
BTW, I've added bug to easily disable WebKit in ParaView. Though certain components may not work, at least ParaView should build easily without webkit (http://vtk.org/Bug/view.php?id=13061) Utkarsh On Sat, Apr 14, 2012 at 5:21 AM, Magician f_magic...@mac.com wrote: I had been trying to rebuild

Re: [Paraview] problem in displaying filters affects

2012-04-16 Thread Sebastien Jourdain
Try that, from paraview.simple import * reader = OpenDataFile( /home/.../disk_out_ref.ex2 ) Show() Render() clip = Clip(reader) clip.ClipType.Normal = [.5,.5,0] Show(clip) Render() Hide(reader) Render() That should do what you script was doing. But at the end I make sure that I hide the

Re: [Paraview] paravire crashed when dumping images during saving animation

2012-04-16 Thread Utkarsh Ayachit
It's hard to say what could be going wrong. What file format is your dataset in? Is ParaView running out of memory? On Fri, Apr 13, 2012 at 1:07 PM, Pei-Ying Hsieh phsieh2...@yahoo.com wrote: Hi, Utkarsh, Thanks for the reply! What version of ParaView are you using? 3.12.0 64 bit Are

Re: [Paraview] paravire crashed when dumping images during saving animation

2012-04-16 Thread Pei-Ying Hsieh
Hi, Utkarsh, What file format is yourdataset in? VTK. Is ParaView running out of memory? Possible.  However, when I advanced each time step and saved the screen shot manually, I was able to save the pictures of all time steps.  So, maybe the computer/paraview cannot reload the data fast

Re: [Paraview] Time animation: Paraview, Python, XDMF

2012-04-16 Thread Guillaume Simon
No I probably not build with FFMPEG support because it's work in png. It's output image.png, image0001.png, image0003.png ... Thanks, G On 04/13/2012 01:16 PM, Utkarsh Ayachit wrote: Is your ParaView built with FFMPEG support? Try saving a png e.g. movie.png instead of movie.avi, does that

[Paraview] MPI Socket in use

2012-04-16 Thread Adam Dershowitz
I just built paraview on an opensuse linux box. When I use the GUI, and a single connection it seems to work fine. But, if I try to use multiple CPUs, or run with mpi, it fails. I do have OpenMPI installed. When I first started getting the error, I googled around some and found that maybe

Re: [Paraview] MPI Socket in use

2012-04-16 Thread Utkarsh Ayachit
You may want to verify PARAVIEW_USE_MPI flag again and ensure that the pvserver you're running is indeed the one that has PARAVIEW_USE_MPI set to ON. The problem you're seeing is typical when ParaView not built with MPI. Utkarsh On Mon, Apr 16, 2012 at 8:10 PM, Adam Dershowitz

Re: [Paraview] MPI Socket in use

2012-04-16 Thread Adam Dershowitz, Ph.D., P.E.
I am sure that I use ccmake and changed PARAVIEW_USE_MPI to ON, (I also enabled python and pointed to the open mpi compiler, so that it then filled in most of the variables for MPI, as the note explains). Then I did configure and generate. Finally I did make, and sudo make install. All