Re: [Paraview] [EXTERNAL] Regarding creating high quality small size animations

2017-03-07 Thread Felipe Bordeu
Hi, I always have problems choosing the settings when doing videos (bitrate, framerate, resolution...). Now I make my videos in full resolution/no compression. And use my Google(YouTube) account to upload my video to my private space. YouTube will automatically recompress the video. And because

Re: [Paraview] CellCenters filter produces non-deterministic result

2017-03-07 Thread Andy Bauer
Hi David, I'm not sure how it works with structured grids but with vtkUniformGrids (i.e. vtkImageData with blanking) the VTK readers and writers really just produce vtkImageData and the blanking is ignored. It may be the same with the XML structured grid files. My suggestion would be to look at

Re: [Paraview] [EXTERNAL] Regarding creating high quality small size animations

2017-03-07 Thread Scott, W Alan
As with most things in life, you have a balance. Generally speaking, for better quality, you will need larger movies. For smaller movies, you will have higher compression and poorer quality. And of course, the smaller the screen size, the smaller the resultant movie. So, you get to choose.

Re: [Paraview] [EXTERNAL] Regarding creating high quality small size animations

2017-03-07 Thread JAIRAJ MATHUR
Hi Scott Thanks for your reply. Will PNG ensure the final movie size is small? Or is there something else that will determine the final size? Jairaj Mathur Mechanical Engineering Washington University in St Louis On Mar 7, 2017 7:16 PM, "Scott, W Alan" wrote: > Save as a

[Paraview] Regarding creating high quality small size animations

2017-03-07 Thread JAIRAJ MATHUR
Dear all I am trying to export my animation, but want to keep the size small, and quality of the simulation good. How can I go about it? I tried to directly save in the avi format, but the quality is bad and size is too large. -- Jairaj Mathur, Mechanical Engineering Washington University in

Re: [Paraview] Query on EGL libs for Paraview 5.0.1

2017-03-07 Thread Chuck Atkins
Hi Bishwajit, I hate to be the bearer of bad news, but the K20c was a specific model of Tesla that is restricted to compute functionality only and is not capable of performing OpenGL functions via EGL. As such, it won't be usable by ParaView for rendering. Almost all other Teslas, including the

Re: [Paraview] OnlyReportSelectionStatistics not turning off statistics

2017-03-07 Thread John
Thank you. Is there a way to do something similar for points? Because I tried to just change "CELL" to "POINT" and it did not work. Regards, John ___ Powered by www.kitware.com Visit other Kitware open-source projects at

Re: [Paraview] Paraveiw.exe has stopped working

2017-03-07 Thread Utkarsh Ayachit
Mahmud, Please cc-ing the mailing list so that everyone can benefit from this discussion. Like I said in my previous emails, ParaView now uses Qt 5 and there's a known issues with Dell Backup & Recovery Tools and Qt 5 ( http://en.community.dell.com/support-forums/software-os/f/3526/t/19634253).

Re: [Paraview] OnlyReportSelectionStatistics not turning off statistics

2017-03-07 Thread Utkarsh Ayachit
Currently, "PlotSelectionOverTime" can only generate summaries (aka OnlyReportSelectionStatistics=1) when the selection is query-based selection. The `simple.SelectCells` only creates query-based selection. Currently here's no clean way to create an id-based selection. Attached script directly

[Paraview] OnlyReportSelectionStatistics not turning off statistics

2017-03-07 Thread John
Hello Paraviewers, I'm trying to save a table to csv (similar to http://markmail.org/search/?q=ParaView+order%3Adate-backward+plotselectionovertime#query:ParaView%20order%3Adate-backward%20plotselectionovertime+page:3+mid:7k7wbaoz23uxhpgf+state:results ) However, even though I have

[Paraview] Programmable Filter/Source 5.3 RC2

2017-03-07 Thread Rustem Khabetdinov
Hello, When I try to type any non-latin symbols inside Script field I get this error: QTextCursor::setPosition: Position '1' out of range (:0, ) Previous versions did not have that issue. Best Regards, Rustem Khabetdinov. ___ Powered by www.kitware.com

Re: [Paraview] Making a package for Nix system

2017-03-07 Thread Mathieu Westphal
Hi Without debug symbols, we can't really use the backtrace. Regarding 5.3 version, are you saying that it does not have the segfault ? Mathieu Westphal On Tue, Mar 7, 2017 at 4:29 PM, Yves Rogez < yves.ro...@univ-grenoble-alpes.fr> wrote: > Hi Mathieu, > > for info, here is the backtrace for

Re: [Paraview] Making a package for Nix system

2017-03-07 Thread Yves Rogez
Hi Mathieu, for info, here is the backtrace for the PV5.2 bug with seg fault when disconnecting (sorry it was stuck in my draft e-mails since a while :-). I did not find the time to rebuild with the last version. I will try to do so soon... I think I have to rebuild it from source as the

Re: [Paraview] Paraveiw.exe has stopped working

2017-03-07 Thread Utkarsh Ayachit
On Mon, Mar 6, 2017 at 11:28 PM, Mahmud Hasan wrote: > Mr. Utkarsh, > ...Yes, I have Dell laptop. > > Mahmud, if you have "Dell Backup and Recovery" tools installed, you'll need to either remove them or update them to the latest version due a known issue. See this for

Re: [Paraview] CellCenters filter produces non-deterministic result

2017-03-07 Thread David Doria
On Mon, Mar 6, 2017 at 11:14 AM, Andy Bauer wrote: > Thanks for the bug report! > > I think the stackoverflow issue is probably also related to blanking. I > added to your bug report with two other (likely) related issues. > > As a side note, I think if blanking was used

Re: [Paraview] Axes Grid

2017-03-07 Thread Utkarsh Ayachit
Yup, it's indeed a bug. Please report it with steps to reproduce (or state file) on the bug tracker: https://gitlab.kitware.com/paraview/paraview/issues Thanks Utkarsh On Tue, Mar 7, 2017 at 10:15 AM, Rustem Khabetdinov < rustem.khabetdi...@gmail.com> wrote: > Hello, > Under certain angles axes

[Paraview] Axes Grid

2017-03-07 Thread Rustem Khabetdinov
Hello, Under certain angles axes grid behaves like this(or just disappears):[image: Встроенное изображение 2] Is it a bug? Best Regards, Rustem Khabetdinov. ___ Powered by www.kitware.com Visit other Kitware open-source projects at

Re: [Paraview] Maintain triangulation of slive from vtk to numpy

2017-03-07 Thread Gallagher, Timothy P
Kyle, Once you get a slice, you can extract the underlying vtkUnstructuredGrid and use that to extract the connectivity. For example: uns_grid = servermanager.Fetch(slice) npts = uns_grid.GetNumberOfCells() for n in xrange(npts): ptids = vtk.vtkIdList() uns_grid.GetCellPoints(0,