Re: [Paraview] PCL Plugin

2015-07-20 Thread Casey Goodlett
Eric, I am not familiar with the state of ParaView and Qt5 to be able to help. I believe there was a status update on the paraview-developers list recently. Regards, -- Casey B Goodlett, PhD Technical Leader Kitware, Inc. - North Carolina Office http://www.kitware.com (919) 969-6990 x310 _

Re: [Paraview] PCL Plugin

2015-07-20 Thread Casey Goodlett
On Fri, Jul 17, 2015 at 7:26 PM, Luca Morandini wrote: > As per the best way to do it, hmm... I'd rather like build documentation > to be as close to the source code as possible, lest they diverge. > Therefore, I would prefer updating the readme on the GitHub repo and drop > the "Download And Bui

Re: [Paraview] PCL Plugin

2015-07-17 Thread Casey Goodlett
Can you request a wiki account and update the page with any instructions you found helpful? You could also create a pull request to create an instructions file on the github page or create a page on the github wiki https://github.com/Kitware/PCLPlugin/wiki . Community help in keeping the plugin a

Re: [Paraview] PCL Plugin

2015-07-16 Thread Casey Goodlett
On Thu, Jul 16, 2015 at 12:46 AM, Luca Morandini wrote: > /home/lmorandini/PointCloudLibraryPlugin-v1.0/vtkAnnotateOBBs.cxx: In > member function ‘virtual int vtkAnnotateOBBs::RequestData(vtkInformation*, > vtkInformationVector**, vtkInformationVector*)’: > /home/lmorandini/PointCloudLibraryPlugi

Re: [Paraview] PCL Plugin

2015-07-14 Thread Casey Goodlett
:39, Casey Goodlett wrote: > >> Hi Eric, >> >> Thanks for your interest in the PCL plugin, I have used the plugin more >> recently >> than PCL 1.5.1. I last tested with ParaView 4.1 and PCL master (from >> around >> February of this year). >> > &

Re: [Paraview] PCL Plugin

2015-07-14 Thread Casey Goodlett
an1 compatible branch remains functional should we make major > changes. > > > > I might even volunteer to do the clean integration of pv-zoltan with the > pcl plugin should you be in need of volunteers. > > > > JB > > > > > > *From:* ParaView [mailto:par

Re: [Paraview] PCL Plugin

2015-07-13 Thread Casey Goodlett
On Mon, Jul 13, 2015 at 1:32 PM, Eric Younkin - NOAA Federal < eric.g.youn...@noaa.gov> wrote: > Casey, > > I don't mean to take up so much of your time, but I've been reviewing the > cmake configuration and I found that there were a number of HDF5 tests that > failed (see below). Is that signifi

Re: [Paraview] PCL Plugin

2015-07-13 Thread Casey Goodlett
; > . > > I suspect that I am just missing something obvious, but I'm not sure what > it is. Can you offer any advice? > > Thanks, > Eric > > On Fri, Jul 10, 2015 at 12:03 PM, Casey Goodlett < > casey.goodl...@kitware.com> wrote: > >> You should

Re: [Paraview] PCL Plugin

2015-07-10 Thread Casey Goodlett
r project developers. Use -Wno-dev to suppress it. > > I'm seeing some references on the VTK users group ( > http://public.kitware.com/pipermail/vtkusers/2013-July/080543.html) that > seem to indicate you can ignore them. Any reason I shouldn't continue with > Qt5.5? >

Re: [Paraview] PCL Plugin

2015-07-10 Thread Casey Goodlett
guides for doing so? >> >> I will continue to look at building from source and check out Project >> Tango. Thanks for the link. >> >> Thanks, >> Eric >> >> On Thu, Jul 9, 2015 at 11:14 AM, Casey Goodlett < >> casey.goodl...@kitware.

Re: [Paraview] PCL Plugin

2015-07-09 Thread Casey Goodlett
On Thu, Jul 9, 2015 at 10:53 AM, Eric Younkin - NOAA Federal < eric.g.youn...@noaa.gov> wrote: > Casey, > > I am mostly interested in the feature extraction routines and Paraview > integration with the Velodyne VLP-16. I'd like to experiment with PCL > algorithms to try and pick out fixed objects

Re: [Paraview] PCL Plugin

2015-07-09 Thread Casey Goodlett
Hi Eric, Thanks for your interest in the PCL plugin, I have used the plugin more recently than PCL 1.5.1. I last tested with ParaView 4.1 and PCL master (from around February of this year). I have a few small patches to the plugin, and I'll share those shortly. What errors are you seeing in th

Re: [Paraview] PCL plugin status and and support of newer PCL versions

2015-02-19 Thread Casey Goodlett
invest a lot of time. However, if it actually works as well as it > seems then yes, I could contribute patches. > > > Beste Grüße, > Stefan > > > > On Thu, Feb 19, 2015 at 3:37 PM, Casey Goodlett > wrote: > >> > >> Are there any plans to incorpora

Re: [Paraview] PCL plugin status and and support of newer PCL versions

2015-02-19 Thread Casey Goodlett
> > > Are there any plans to incorporate the PCL plugin into ParaView by default? > > I would love to see this happen. Currently the main challenge is making sure all the PCL dependencies (boost, eigen, flann, etc.) are built across all the needed platforms. Would you be able to help with dashboa

Re: [Paraview] PCL plugin status and and support of newer PCL versions

2015-02-19 Thread Casey Goodlett
Hi Stefan, Thanks for your interest. I have used the plugin with newer versions of PCL and ParaView, although there are a few fixes needed. Its been on my TODO list for a while to get these made publicly available. I'll get back to you with where you can find those latest changes. On Thu, Feb

Re: [Paraview] RGB color coding

2014-08-29 Thread Casey Goodlett
Hi all, I often do something similar when reading data originally from a text table. In this case I need to turn 3 arrays into a single 3-component uchar array for the purpose of RGB coloring. I found that I can also use the following python calculator expression to accomplish this goal (assumin

Re: [Paraview] Help with Programmable Filter

2014-08-13 Thread Casey Goodlett
> I wasn't sure if I had to convert to numpy arrays for this to work so I > tried > xx = vtkDataArrayToVTKArray(block.CellData['USTRTOTXX']) > ... > > to get numpy arrays to use in sigma, but that doesn't work either. > > I do not think you should need that when you access the cell data as you

Re: [Paraview] Writing csv data in python script (UNCLASSIFIED)

2014-08-12 Thread Casey Goodlett
I am not aware of any paraview specific way to do that. You could try the standard python csv module https://docs.python.org/2/library/csv.html or use numpy savetxt for arrays http://docs.scipy.org/doc/numpy/reference/generated/numpy.savetxt.html. -- Casey B. Goodlett, Ph.D. Technical Leader Ki

Re: [Paraview] Help with Programmable Filter

2014-08-12 Thread Casey Goodlett
Hi Dennis, I took a look at the filter to see what might be wrong, but I seem to be missing a couple of things: 1) Are you using the "Copy Arrays" option of the programmable filter? Otherwise you will need to reference the input data as well. 2) Where are the P1,P2,P3, etc vectors created? What

Re: [Paraview] Writing csv data in python script

2014-08-08 Thread Casey Goodlett
or and I read my data with > XMLPartitionedUnstructuredGridReader. > > Denis > > > > > On Fri, Aug 8, 2014 at 5:40 PM, Casey Goodlett > wrote: > >> Do you get any error messages in the python console or output window? >> >> What type of data do

Re: [Paraview] Writing csv data in python script

2014-08-08 Thread Casey Goodlett
> SetActiveSource(IntegrateVariables1) > DataSetCSVWriter() > FileName="foo_points.csv" > FieldAssociation = "Points" > UpdatePipeline() > > and other similar commands but none produced a csv file. Any hints? > > Thanks > > Denis > > > > > On Tue, A

Re: [Paraview] Writing csv data in python script

2014-08-05 Thread Casey Goodlett
Denis, You could look here on lines 468-476 for how this is done in VeloView. You can ignore the rotateCSVFile function call. On Sat, Aug 2, 20

Re: [Paraview] pv python scripting

2014-04-18 Thread Casey Goodlett
Simon, Selecting the reader in the pipeline browser and calling GetActiveSource() in the python shell should return a reference to the reader. On Fri, Apr 18, 2014 at 11:39 AM, Su, Simon M CTR USAF (US) < simon.m.su@mail.mil> wrote: > Hello, > > http://paraview.org/Wiki/ParaView/Python_Scr

[Paraview] immediate mode rendering on a single source

2013-12-08 Thread Casey Goodlett
Is there a way (preferably from python) to enable immediate mode rendering only for a single object? I would like the other objects in the scene to still use display lists. Thank you -- Casey B. Goodlett, Ph.D. R&D Engineer Kitware, Inc. - North Carolina Office http://www.kitware.com (919) 969-6

Re: [Paraview] error calling Delete in python script

2013-10-21 Thread Casey Goodlett
Tony, I think this should fix it http://review.source.kitware.com/#/t/3462/ On Mon, Oct 21, 2013 at 11:14 AM, Tony McDaniel wrote: > I was able to reproduce this error in Paraview 3.98.1 64-bit on MacOS X > 10.8.5 with the following code: > > s = Sphere() > c = Contour() > Delete(c) > > Which r

[Paraview] error calling Delete in python script

2013-10-21 Thread Casey Goodlett
Hi all, I am having receiving error messages with the 4.0.1 release of paraview as well as a recent build of master when deleting objects that are part of a pipeline. The following code snippet gives an an error message. from paraview import simple as smp s = smp.Sphere() smp.Show(s) smp.Render

[Paraview] recommendations to enable additional VTK modules for plugin

2013-09-25 Thread Casey Goodlett
Hi all, I am working on a plugin and would like to enable an additional VTK module that is not normally built by paraview (specifically vtklibproj4). To enable this I did four things 1) Enable Module_vtklibproj4 when building paraview To my plugin CMakeLists I did the following 2) Add vtk_modul

Re: [Paraview] paraviewweb error with master

2013-09-19 Thread Casey Goodlett
Utkarsh, On my linux system using next fixes that problem in a parview build directory. When running from a paraview install directory the problem remains. On Thu, Sep 19, 2013 at 4:07 PM, Utkarsh Ayachit < utkarsh.ayac...@kitware.com> wrote: > This is related to the broken install rules in Pa

[Paraview] python wrapping and paraview plugins

2013-09-04 Thread Casey Goodlett
H, I saw this thread from July http://www.paraview.org/pipermail/paraview/2013-July/028731.html and wanted to see if there were any updates that could avoid Pat's workaround. I also have a second error in generating the python wrapped module. I tried Pat's example project https://github.com/patm