[Paraview] Plugin with Qt 4.4, but Paraview binaries with 4.3 ?

2008-12-11 Thread Jérôme
warning-, and maybe this is the source of the problem. - Can someone tell me if I am wrong ? - Have I to distribute my own ParaView built or is there a hack for that ? - If I have to downgrade Qt to 4.3, where can I find the MS Windows package ? Thanks fo

[Paraview] Plugins deployment with external lib: Windows wants STATIC ?

2008-12-16 Thread Jérôme
Hi, I am writing plugins under Fedora that need to be run on Windows. I have to link the plugin to another lib, let's say myGenericLib, included in the project. With Linux, I have to build a SHARED lib. ### CMake generates myGenericLib through: ADD_LIBRARY( myGenericLib SHARED file cxx file.

Re: [Paraview] Not a valid QT plugin on windows

2009-01-06 Thread Jérôme
Dear all, I go further with this discussion : I have also a "not a valid Qt plugin" error on windows. The devel system is : - Windows XP SP3 - ParaView 3.4 built with - Python 2.5 - Qt 4.3.5 - MS Visual C++ 9.0 Express Qt is also built with Visual 9.0 The plugin compiles and works well

[Paraview] PointPicker on 2D view for 3D point location

2009-01-06 Thread Jérôme
Hi, I have to place interactively a point in a volume (medical image). Today, I use the PointSource and move the cursor in the volume by changing the current plane view (camera). this is not easy for the user 'Lambda'. My question is : Is it possible to use the 2D view, ie a slice-by-slice volume

Re: [Paraview] FILE > OPEN plugin

2009-01-07 Thread Jérôme
Hi, I also need such a functionality, as I want to share a simple, easy demo of a filter -it seems that "open" then "load state" is a too complicated process...-. On my mind, the purpose is to built automatically a pipeline when a file is open, that is not straight-forward: depending on the type o

Re: [Paraview] FILE > OPEN plugin

2009-01-08 Thread Jérôme
Thank you ! This will help for sure, when the loaded file is the same at each session. But in the case where the user wants to try another file, will it be possible for him to change the filename in a simple way ? Thanks ! Jérôme 2009/1/8 mirko heuegger : > Hello! > > On Thu, Jan 8,

[Paraview] PointData and the components' name

2009-01-08 Thread Jérôme
know how to do that ? Thanks ! Jérôme ___ ParaView mailing list ParaView@paraview.org http://www.paraview.org/mailman/listinfo/paraview

Re: [Paraview] Transform filter from python

2009-01-13 Thread Jérôme
Hi, Just an idea: It seems that the error message warns about typo... Are you sure it is "translation" and not "Translation" ? regards, Jerome 2009/1/13 Jorge Mario Mazo : > I'm trying to use the TransformFilter > > but I do not know how to set the paramater for the filter > > help(servermanage

[Paraview] Slicer along a track

2009-01-14 Thread Jérôme
Hi all, Is there in ParaView3 an image slicer that slices along a track ? Explanation: I have a vtkPolyData that contains one polyline. This vtkPolyData is embedded in a volume vtkImageData. I would like to get a slice of the volume at each polydata point, oriented by the tangent of the line. I th

Re: [Paraview] Writer Plugin cannot be loaded

2009-01-15 Thread Jérôme
Yes indeed, you have to be root for that. "make install" copies files into /usr/.../lib... which simple users cannot. you can maybe use this command: > sudo make install Hope this helps. Jerome 2009/1/15 Natalie Happenhofer : > Ok, > maybe this is the reason for the problem: > Building Paraview

[Paraview] Changing "Representation" toolbar

2009-01-16 Thread Jérôme
Hi, I wonder how I can add the "slice" slider of a slice representation in the representation toolbar. First, is it possible within a plugin ? If not, I can make changes in ParaView source code, but I didn't find how the combo box for the representation is added, so I cannot do the same ! Thanks

Re: [Paraview] building code as part of paraview

2009-01-20 Thread Jérôme
Hi, I found - I was lucky ! - something interesting for loading a plugin without environment variables and ParaView build. I made a sub-directory named Plugins in the folder that contains the paraview executable. I put in this subdir the dynamic lib involved in the plugin. My surprise was that my

Re: [Paraview] Changing "Representation" toolbar

2009-01-20 Thread Jérôme
gt; Before even creating your render views, you can simply split the > frames and create empty frames layed out the way you want. Then create > the views. pqViewManager will automatically assign those views to > already existing empty frames. > > Utkarsh > > > On Mon, Jan 19, 2

[Paraview] Reader plugin for files without extension

2009-01-20 Thread Jérôme
Hi, I successfully created a reader in paraview that uses the vtkDICOMImageReader. I used the hint "UseDirectory" in the xml, so that the directory name is used instead of the selected file name. My problem is : I have files without extensions ! How can I handle this ? I am currently using this G

Re: [Paraview] building code as part of paraview

2009-01-21 Thread Jérôme
Yes, that is exactly the case with Windows XP. I didn't try yet with my Linux. Regards, Jerome 2009/1/21 Natalie Happenhofer : > I´m sorry, I didn´t really understand. > You made a subdirectory named Plugins in the -in my case - > Paraview/build/bin directory, you put libMyPlugin.so there and th

Re: [Paraview] Reader plugin for files without extension

2009-01-22 Thread Jérôme
ltering > by extension and then a window should pop up asking what reader you want to > use. > Jacques > > 2009/1/20 Jérôme >> >> Hi, >> >> I successfully created a reader in paraview that uses the >> vtkDICOMImageReader. I used the hint "UseDirector

Re: [Paraview] export ParaView session?

2009-01-23 Thread Jérôme
Hi, When I use "Save state", I have this result. Isn't it the case for you? My pvsm files contain the user parameters and pipelines (except maybe the writer, but I used to use "Save data" from the file menu, so they are not really in the pipeline..) Regards, Jerome 2009/1/24 Pierre JUILLARD : >

Re: [Paraview] Feature Request: vtkImageResample

2009-01-30 Thread Jérôme
Hi, I tried to do what you talked about, because I need isotropic volumes for a number of algorithms. I think it is the same for you, right? I wrote an xml file that you can load in the plugin manager menu, according to this wiki page: http://paraview.org/Wiki/Plugin_HowTo#Enabling_a_filter_in

[Paraview] vtk data objects as property: how to handle that in Paraview?

2009-01-30 Thread Jérôme
Hi, Some VTK filters, such as vtkImageReslice, have vtkImageData as property. This is not really an input, just an object than may give information about, for example, spacing, extent, data type, etc. What is the property to be used in a paraview XML plugin file ? I wondered about ProxyProperty, b

Re: [Paraview] DICOM series reader for Paraview

2009-02-05 Thread Jérôme
Hi, if you intend to use a DICOM reader in Paraview, why not using directly GDCM, instead of ITK? It contains a VTK Reader... If I am right, you will just have to write the XML/CMake files that make the reader available in Paraview. In my case, I use the vtkDICOMImageReader, that is a very simple

Re: [Paraview] Set directory name on the reader

2009-02-10 Thread Jérôme
Hi, This is weird. I followed the same post as you, and it works for me, in the stable 3.4 and in the CVS 3.5 (nightly). As the vtkDICOMImageReader does not make use of DICOMDIR, but only dcm type files, are you this is not a problem in your dcm files? I think that they have to contains the inform

Re: [Paraview] DICOM series reader for Paraview

2009-02-10 Thread Jérôme
o mentioned that you use vtkDICOMImageReader as your DICOM reader in > Paraview. It seems that I can only use the reader to read one DICOM image > file. How can I write the XML files for vtkDICOMImageReader to read a series > of DICOM files? Could you please email me your XML files for >

Re: [Paraview] Mesh Subdivision

2009-02-22 Thread Jérôme
Hi, I suggest you to pass your polydata through a vtkCleanPolyData . This should solves problems of "twin" points that break the connectivity information (and thus the topology). Best regard, Jerome 2009/2/21 David Doria > Well actually I think there should be connectivity information. This f

Re: [Paraview] Image filters & extent

2009-03-10 Thread Jérôme
Hi, I noticed such a problem for other filters. In fact, it seems that vtkImageReslice and inherited filters are not ParaView compliant. I was forced to write external executable to process my volumes (making isotropic an anisotropic DICOM volume), then I open it in Paraview. Best regards, Jerom

Re: [Paraview] problems setting vtkDoubleArray with 3 components

2009-03-15 Thread Jérôme
Hi ! Maybe I am an old-fashion programmer, but I don't think you are allowed to initialized an array in this way. The braces should delimit constant values... The best I can remember, the compiler should outputs errors for your line : double Tuple[3] = {xm_array -> GetValue(i), ym_array -> GetValu

Re: [Paraview] open .hdr file in paraview

2009-03-20 Thread Jérôme
Hi, I met the hdr format a while ago. It was with the MRIcro software. The hdr file goes together with an .ima file, that have the same roles than in .mha / .raw file couples. hdr = header = mha or mhd ima = data = raw What I cannot remember is the read mode of a hdr file. Binary or ascii ? If th

Re: [Paraview] Transform surface independently from axes and boxes

2009-03-24 Thread Jérôme
Hi, I don't know if this possible. Maybe with the calculator : what about if you give as point data the original point coordinate, and then apply the transform ? PointData should not be modified. This is a brief idea : I even don't know how to set the axes to plot the point data instead of the geo

Re: [Paraview] paraview as a mesh editor?

2009-03-27 Thread Jérôme
Hi Richard, This point has been discussed in the paraview mailing list: find the message with subject "[Paraview] Mesh edition / modification with paraview". I would like to add that VTK way of processing (pipelining) makes difficult the editing process. However, it would be great to have such to

[Paraview] Making vtkImageMathematics available in ParaView filters

2009-04-02 Thread Jérôme
Dear all, I am unsuccessfully fighting with XML description of the VTK vtkImageMathematics filter. I want it to be available in the ParaView filters. At the end of this mail is the XML I wrote, widely inspired from "Append Geometry". Note that it is part of a larger file making available ImageGau

Re: [Paraview] Making vtkImageMathematics available in ParaView filters

2009-04-02 Thread Jérôme
thing ??? Thanks for all, Jerome 2009/4/2 Utkarsh Ayachit > I justed loaded your XML as a plugin in CVS ParaView is seems to being > enabled fine. I was able to apply the filter to Mandlebrot source. > What version of ParaView are you using? > > Utkarsh > > 2009/4/2 Jérôme : &

Re: [Paraview] Making vtkImageMathematics available in ParaView filters

2009-04-02 Thread Jérôme
tkImageStencil, what works fine. My problem here is to make vtkImageMathematic available without building any plugins: c++-allergics have rights to use image addition and substraction inside ParaView !! one XML to load, that's all ! I hope -for these allergics- that there is a solution... Best r

Re: [Paraview] Making vtkImageMathematics available in ParaView filters

2009-04-03 Thread Jérôme
> > The key here is the "port_index" attribute. > > Utkarsh > > On Fri, Apr 3, 2009 at 2:53 AM, Jérôme wrote: > > Ok ! > > No, it doesn't work, but I made my mind: > > > > * vtkImageMathematics has two input ports, the second one being o

Re: [Paraview] Point Cloud dimension

2009-04-08 Thread Jérôme
Hi, Well... since vertices are 0-dimension objects (lines are 1- , triangle are 2-,...) I would answered that point clouds are 0-dimensionned. But if your points are connected by lines, it is 1-dimensionned, if lines represents polygonal cells (like a triangulation), it is 2-dimensionned. You can

[Paraview] Bug in Slice representation or in my XML ?

2009-04-18 Thread Jérôme
Dear list, Please find attached an XML that will expose vtkImageGaussianSource and vtkImageMagnitude to ParaView First of all, vtkImageGaussianSource behaves like it does not produce any data : - Add a Gaussian Source to the pipeline, - Apply - Then go to the information panel of the objec

Re: [Paraview] Bug in Slice representation or in my XML ?

2009-04-20 Thread Jérôme
ny thanks for your time! Jerome 2009/4/20 Jean M. Favre > Jérôme wrote: > > Dear list, > > Please find attached an XML that will expose vtkImageGaussianSource and > > vtkImageMagnitude to ParaView > > First of all, vtkImageGaussianSource behaves like it does not produc

Re: [Paraview] Feature Request: vtkImageResample

2009-04-20 Thread Jérôme
uot; >> default_values="0 0 0" > >> >> >> >> >> I have place the code here: >> >> http://www.vision.ee.ethz.ch/~blloyd/vtkImageResample2/<http://www.vision.ee.ethz.ch/%7Eblloyd/vtkImageResample2/> >> >> >&

[Paraview] About on-line available binaries for next release

2009-04-22 Thread Jérôme
Hi all, I gave up to find a solution for Windows plug-in deployment. I don't have access to a VS2005 licence here, so I build ParaView together with my plugins and share all this at the same time. My hopes was that I have to only share the DLL of my plugin, and users install Official Release Binar

Re: [Paraview] About on-line available binaries for next release

2009-04-22 Thread Jérôme
t; source code for those plugins to do that. I am not sure that this will > be available by 3.6 but definitely by 3.8. > > -berk > > On Wed, Apr 22, 2009 at 5:54 AM, Jérôme wrote: > > Hi all, > > > > I gave up to find a solution for Windows plug-in deployment. I d

[Paraview] Line Source and 3D widgets

2009-04-22 Thread Jérôme
Dear all, I want to mimic the Line Source of Paraview. So I ran into the XML in order to understand how the 3D widget is created, the one that makes available a picker through the 'P' key. Unfortunately, I didn't understand... 1- In sources.xml, I found a "LineSource" proxy description in the sou

Re: [Paraview] Line Source and 3D widgets

2009-04-22 Thread Jérôme
; > > > On 4/22/09 8:58 AM, "Jérôme" wrote: > > Dear all, > > I want to mimic the Line Source of Paraview. So I ran into the XML in order > to understand how the 3D widget is created, the one that makes available a > picker through the 'P' key. Unfort

Re: [Paraview] Feature Request: vtkImageResample

2009-04-28 Thread Jérôme
Hi! Did someone try the attached file -in a former message of this thread- as a ParaView plugin, and notice the problem I mentioned? It seems that Bryn does... Anybody else? I feel so lonely... Thanks! Jerome 2009/4/21 Jérôme > Hi, > > This is an up of this old thread. I have prob

Re: [Paraview] paraview rendering bug

2009-07-01 Thread Jérôme
No problem for me : Fedora11, x64, ATI. Jerome 2009/7/1, David Doria : > On Wed, Jul 1, 2009 at 4:34 AM, Paul Edwards > wrote: > >> To reproduce: >> >>- Sphere source, click apply >>- Colour sphere by normals (point normals, not cell normals) >>- Text source, click apply >>- Move

Re: [Paraview] Problem with Calculator filter in servermanager module

2009-07-13 Thread Jérôme
Hi, When I use this filter with vtk (this is vtkArrayCalculator) in c++, I have to call a function AddVectorArrayName or AddScalarArrayName in order to 'tell' the calculator that he has to use the array name as a variable in the function string. Maybe this is the point ? 'Hope that helps Jerome 2

Re: [Paraview] VTK under ParaView

2009-08-10 Thread Jérôme
Hi, ParaView comes with its own VTK sources. You can find in the source tree : ./Paraview3/VTK The VTK binaries will be put in the ParaView binary tree : ./ParaViewBin/bin Obviously, the paths depend on your calling way, and on your CMake settings Hope that helps Jerome 2009/8/10 Tomislav Mari

Re: [Paraview] Tube filter not working

2009-09-06 Thread Jérôme
Hi, I think that tube filter makes use of the "normal" for generating each plane of the parallels along the tube. In your file, you already have a "NORMALS" PointData. Maybe the tube filter is disturbed by these data. If you set this field to be a "VECTORS" and not "NORMALS", tube filter should h

Re: [Paraview] How to render a vtk object on Paraview GUI

2009-09-11 Thread Jérôme
Hi, find attached an xml that exposes the vtkPlatonicSolidSource in the paraview sources menu. Load it from the tools->"Manage plugins" menu. At least it will allow you to create a platonic solid in paraview GUI. But I don't understand why you want to ask for it in C++. Maybe you want a plugin (au

Re: [Paraview] How to render a vtk object on Paraview GUI

2009-09-11 Thread Jérôme
Oops, shame on me ! I didn't recognize python code... I only use standalone paraview, I am not aware on parallel computing and MPI stuff. But I am sure you can! I know that you can add sources and filters from python script, you got it, thanks to servermanager. You will need the XML I gave, and reg

[Paraview] Abort filter execution

2009-09-23 Thread Jérôme
Hi, The progress bar shows an "Abort" icon at its left. this icon is enabled during AVI export of an animation. I wonder how I can enable during a filter execution (ie. aborting a RequestData function). - I added an observer in my vtk filter that listen to vtkCommand::AbortCheckEvent. - The associ

Re: [Paraview] Abort filter execution

2009-09-23 Thread Jérôme
Thanks! Now people, vote for it! ;) Best regards, Jérôme 2009/9/23 Utkarsh Ayachit > Aborting filter executions is not currently supported in ParaView. We have > been thinking of providing this support for quite sometime however there are > many issues related with aborting executi

Re: [Paraview] Abort filter execution

2009-09-23 Thread Jérôme
Thanks! Now people, vote for it! ;) Best regards, Jérôme @Utkarsh: sorry for the duplicated mail... 2009/9/23 Utkarsh Ayachit > Aborting filter executions is not currently supported in ParaView. We have > been thinking of providing this support for quite sometime however there are

Re: [Paraview] Writing then reading ascii file: warning

2009-09-23 Thread Jérôme
Hi, I also had such a problem: 1- depending on your regional settings, it is possible that your written decimal separator is not a '.' [point] but a ',' [comma] (such as the french fashion ;) ). Then the reader may be not able to read it. 2- if some point data are 'NaN', or 'inf', then the reader c

Re: [Paraview] Error reading *.pvtr

2009-09-24 Thread Jérôme
Hi, you have a typo error line 16: instead of Best regards, Jerome 2009/9/24 Joseph G. > By reading the attached files I'm experiencing the attached error message. > > I hope someone can point out the mistake(s) in the files, because I tried > nearly everything and stayed pretty exactly wit

Re: [Paraview] Different Coordinate systems!

2009-09-25 Thread Jérôme
Hi, Concerning coordinate systems, the visualization pipeline is what is of interest for you. You won't find useful stuff in ParaView sources (well, except for some helper classes or wrap-around VTK) but instead you should take a look at VTK sources. There, you will find a vtkCamera class and vtkT

[Paraview] vtkSMProxy: GetSubProxy is protected, but I need it outside the class

2009-10-18 Thread Jérôme
Hi, I wrote a plugin that enable a toggle between different BlendMode of the FixedPointVolumeRayCastMapper that is used by ParaView for volume rendering. It catches a key event on a render window ('B' pressed) and toggle BlendMode: Composite -> MaximumIntensity -> MinimumIntensity -> Composite->..

Re: [Paraview] vtkSMProxy: GetSubProxy is protected, but I need it outside the class

2009-10-19 Thread Jérôme
; the sub-proxy. > > Isn't there another way of doing this? Maybe expose the property you > are setting? Something like VolumeMapperBlendMode? > > -berk > > On Mon, Oct 19, 2009 at 2:50 AM, Jérôme wrote: > > Hi, > > > > I wrote a plugin that enable a toggle be

[Paraview] Exposing BlendMode through UniformGridRepresentation (was: vtkSMProxy: GetSubProxy is protected, but I need it outside the class)

2009-10-20 Thread Jérôme
hanges you described. > Would you mind adding a document element to the property XML though? > > -berk > > On Mon, Oct 19, 2009 at 10:50 AM, Jérôme wrote: > > Thanks for your precisions. > > > > Well you are right! ParaView's proxy mechanism is robust and givin

[Paraview] "Change input" action crashes my ParaView

2009-10-20 Thread Jérôme
Hi, I have Paraview3 from CVS. When I want to change the inputs of a filter that has multiple inputs, I get this message: QAbstractItemModel::endRemoveRows: Invalid index ( 1 , 0 ) in model pqPipelineModel(0x8fa51c8) And then ParaView seg-faults. Could someone confirm that this is a bug by f

Re: [Paraview] Point source

2009-10-21 Thread Jérôme
Hi David, - I cannot reproduce your "visibility" problem. Once I click Apply after setting the paramter, my point cloud is displayed in the render window... - As PointSource proxy is linked to vtkPointSource, the VTK doc tells that the points are randomly distributed inside the specified sphere.

Re: [Paraview] Point source

2009-10-21 Thread Jérôme
ay. This has to be confirmed by reading the sources... HTH! Jérôme 2009/10/21 David Doria > On Wed, Oct 21, 2009 at 10:53 AM, Jérôme wrote: > > Hi David, > > > > - I cannot reproduce your "visibility" problem. Once I click Apply after > > setting the paramt

Re: [Paraview] network created with box glyphs and tubes

2009-10-23 Thread Jérôme
Hi, if your links are independent polydatas, you can simply apply a transform filter with a 90deg-rotation to the ouput of your tube filters. HTH, Jerome 2009/10/23 Sreejith Pulloor > Paraview, > > I am trying to create a network with some cubic pores connected by square > links. For the pores

Re: [Paraview] Is it possible to add a new proxy group?

2009-10-23 Thread Jérôme
Hi, You can go here: http://paraview.org/Wiki/Plugin_HowTo#Adding_Categories_to_the_Filters_Menu It seems to deal with your problem! Best regards, Jerome 2009/10/23 Fred Fred > Simple. > I just would like to see in the filter menu a new category, below > "Alphabetical" named "MyFilters" for

[Paraview] Dockable RenderView

2009-10-23 Thread Jérôme
Hi, just curiosity: Is there a reason why the render windows are not dockable, such as the pipeline browser panel or object property (or every config panels, in fact!) ? Thanks! Jerome ___ Powered by www.kitware.com Visit other Kitware open-source proje

Re: [Paraview] Trouble making simple VTK filter plugin

2009-10-25 Thread Jérôme
Hi David, I have to expose a lot of native VTK filters that are not in ParaView. I never had to use a CMakeLists and a _GUI XML. In my mind, your input properties should be totally described in your ICP. xml file. For example on how to write proxy property elements, you should take a look at Paravi

Re: [Paraview] Trouble making simple VTK filter plugin

2009-10-25 Thread Jérôme
t; wiki-way. In your case, you certainly will have to write a subclass of vtkAlgorithm that outputs a matrix of transformation. Sorry for not being of more helps... Jerome 2009/10/25 David Doria > On Sun, Oct 25, 2009 at 8:59 AM, Jérôme wrote: > > Hi David, > > I have to expos

Re: [Paraview] Trouble making simple VTK filter plugin

2009-10-26 Thread Jérôme
the transformation computation. Jerome 2009/10/25 David Doria > On Sun, Oct 25, 2009 at 3:31 PM, Jérôme wrote: > > Hi, > > > > I took a look at your xml, and I didn't find any problems... So I verify > in > > the VTK doc if you didn't misused the vtkIt

Re: [Paraview] Auto-load plugin failed

2009-10-26 Thread Jérôme
a more precise question : - How to set the version of a plugin that is only an XML description of VTK filters? -ie I don't have a CMakeLists for this...- Thanks again Yumin! Jerome > > On Fri, Oct 23, 2009 at 4:34 AM, Jérôme wrote: > > Hi, > > > > ParaView-C

Re: [Paraview] Auto-load plugin failed

2009-10-27 Thread Jérôme
ards, Jerome 2009/10/26 Yumin Yuan > Hi Jerome, > > You can try to compile your xml into a plugin, which will also solve > your the Version problem > > Check "Enabling a filter in VTK" section on the wiki: > http://paraview.org/Wiki/Plugin_HowTo > > Yumi

Re: [Paraview] Auto-load plugin failed

2009-10-27 Thread Jérôme
bug (if it is confirmed). Best regards, Jerome 2009/10/27 Yumin Yuan > Hi Jerome, > > On Tue, Oct 27, 2009 at 3:45 AM, Jérôme wrote: > > Hi Yumin, > > > > Compiling my XML to expose VTK native filters produces a so/dll library > that > > can be autoloade

[Paraview] Image filters & extent

2009-10-29 Thread Jérôme
## I have very big difficulties to understand the 'extent' concept in VTK. Is there a detailed chapter on that in VTK books? Or do I have to parse the code, step-by-step? Thanks for your help. Best regards, Jerome 2009/3/10 Jérôme > Hi, > > I noticed

Re: [Paraview] [vtkusers] vtkDelaunay3D

2009-10-29 Thread Jérôme
Hi Alessandro, please, reply to the list so that anyone having the answer could... well, answers. As you said, this is a warning, not an error. Do you get the expected output? I get this warning when I don't give good settings to the Delaunay filter. Jerome 2009/10/29 Alessandro Artusi > Dear

Re: [Paraview] paraview freezes the laptop with Intel graphics card

2009-10-30 Thread Jérôme
Hi, I am running Fedora 11 as well, but with ATI card. Are you experiencing this problem with *every* vti/vtp files? or only with a few? In the latter case, the best you can do is to post the concerned files if they are not too heavy, or to give an url where we can find it. Best regards, Jerome

Re: [Paraview] Auto-load plugin failed

2009-10-30 Thread Jérôme
Hi Yumin, I submitted a bug reporting this issue. I hope I did it well. http://public.kitware.com/Bug/view.php?id=9803 Best regards, Jerome 2009/10/27 Yumin Yuan > Hi Jerome, > > On Tue, Oct 27, 2009 at 3:45 AM, Jérôme wrote: > > Hi Yumin, > > > > Compiling

Re: [Paraview] paraview freezes the laptop with Intel graphics card

2009-10-30 Thread Jérôme
;) Jerome 2009/10/30 siqi chen > Hi, Jerome, > > This is the weird part. It doesn't crash at specific files. It seems like a > random event. > > Thanks > Siqi > > On Fri, Oct 30, 2009 at 11:21 AM, Jérôme wrote: > >> Hi, >> >> I am

Re: [Paraview] paraview freezes the laptop with Intel graphics card

2009-10-30 Thread Jérôme
So it must be > that the computer crashes before any error is written to the file. > > What should I do now? > > Thanks > Siqi > > > On Fri, Oct 30, 2009 at 12:12 PM, Jérôme wrote: > >> W... If it is possible for you to trace a debug built, it could give &

Re: [Paraview] paraview freezes the laptop with Intel graphics card

2009-10-30 Thread Jérôme
Regarding your debug info: if nothing is written in the output file, I *really* expect ParaView for not being the cause of the freeze... 2009/10/30 Jérôme > Hi, > If this is a complete freeze, I think that this is not linked to ParaView. > I had this problem on my laptop when runnin

[Paraview] MHD reader not available

2009-11-27 Thread Jérôme
Hi, The "Open file" dialog does not propose "Meta Image File" since a recent checkout (2 days ago) of the CVS head. I investigated this problem: - File ParaView3/Servers/ServerManager/Resources/readers.xml: The description of the vtkMetaImageReader is name="Meta Image Reader". I found weird to see

Re: [Paraview] MHD reader not available

2009-11-27 Thread Jérôme
rds, Jerome 2009/11/27 Jérôme > Hi, > > The "Open file" dialog does not propose "Meta Image File" since a recent > checkout (2 days ago) of the CVS head. I investigated this problem: > - File ParaView3/Servers/ServerManager/Resources/readers.xml: The > desc

Re: [Paraview] Developing plugins procedural question

2009-11-28 Thread Jérôme
Hi, My own experience is the following: I usually make a project with this directory structure: ./ ./Algorithms ./Plugins ./(other stuffs) a global CMakeLists defines different variables: - ALGORITHM_PATH - PLUGIN_PATH A user-defined variable - BUILD_PARAVIEW_PLUGIN If the latter is on, then I

Re: [Paraview] Building plugin with sources in different directory

2009-11-29 Thread Jérôme
Yes, I think this is the cause. Your MyFilter/CMakeLists should define the project and different variables such as the include folders. You asked me out-of-list for my usual configurations: You may want to take a look at http://github.com/jeromevelut/Chiron This is a work-in-progress Medical Imagin

Re: [Paraview] problem with latest CVS

2009-12-03 Thread Jérôme
Utkarsh, I have similar problem: the generated vtkSMXML_ header files cannot be found. Attached is my CMakeLists defining the plugins. Some variables are declared in other places. If you need them, tell me. Jerome 2009/12/2 Utkarsh Ayachit > Paul, > > I've been changing the way plugins are co

Re: [Paraview] problem with latest CVS

2009-12-03 Thread Jérôme
ary ../bin/libChironToolbar.a [100%] Built target ChironToolbar Jerome 2009/12/3 Jérôme > Utkarsh, > > I have similar problem: the generated vtkSMXML_ header files cannot be > found. Attached is my CMakeLists defining the plugins. Some variables are > declared in other places. If you need

Re: [Paraview] problem with latest CVS

2009-12-03 Thread Jérôme
MXML_*.h the compiler is complaining about exist? > * What does ICSImageReader_Plugin.cxx look like? > > Thanks, > > Utkarsh > > On Thu, Dec 3, 2009 at 5:20 AM, Jérôme wrote: > > Utkarsh, > > > > I have similar problem: the generated vtkSMXML_ header files c

Re: [Paraview] problem with latest CVS

2009-12-03 Thread Jérôme
27;t help. > > Utkarsh > > On Thu, Dec 3, 2009 at 11:32 AM, Jérôme wrote: > > Hi, > > Thanks for all! Unfortunately, I am currently re-compiling ParaView from > > scratch... I will give you a feed-back as soon as my tiny comp' has > > finished. > > >

[Paraview] Multiple input port filters: cannot set the second input

2009-12-09 Thread Jérôme
Hi, I checkout the CVS today and since then, my custom filters taking 2 input ports refuse to be set on the second input. I can reproduce it with the "Stream tracer (custom source)". Does anyone not this? Best regards, Jerome ___ Powered by www.kitware.

Re: [Paraview] Multiple input port filters: cannot set the second input

2009-12-09 Thread Jérôme
Sven, sorry for the typo : I meant "note this?". I also noted the builtin server named "b" at startup. Jerome 2009/12/9 Sven Buijssen > Hi Jérôme, > > (off the list for the moment to clarify what you meant) > > > I checkout the CVS today and since then

Re: [Paraview] Multiple input port filters: cannot set the second input

2009-12-10 Thread Jérôme
Thank you for your celerity, Utkarsh! Works fine again. Jerome Le 9 décembre 2009 20:24, Utkarsh Ayachit a écrit : > > I can reproduce the behaviour Jérôme described with some of my nightly > builds. > > Load the state attached, select RandomVectors and apply > > StreamT

Re: [Paraview] Filter input types

2009-12-11 Thread Jérôme
Hi Fred, Quoting from the vtkPolyDataAlgorithm doc: "This class also provides a FillInputPortInfo method that by default says that all inputs will be PolyData. If that isn't the case then please override this method in your subclass." You will find a lot of VTK classes that override the FillInput

Re: [Paraview] showing all points of a structured dataset

2010-01-15 Thread Jérôme
Hi, the same happens if you want to visualize an vtkImageData as "points" or "surface". Only the outer topological entities are displayed, because of the mapper internal functionning. See thread "unstructured grid + tetrahedrons" in the vtk-users mailing list. In a nutshell, the outer geometrical

[Paraview] Peavip enables VTK filters and sources in ParaView

2010-01-26 Thread Jérôme
Dear all, I launched a few months ago an initiative on github. This is called Peavip and aims at exposing VTK filters to the ParaView GUI. The structure is as follow: - each filter/source has its own XML description (ServerManagerConfiguration) It allows for fast loading of particular filter, wi

Re: [Paraview] How to color by Cell Data

2010-02-28 Thread Jérôme
Hi, I noted this problem a few days ago. A *really* simple example: - Add a SphereSource - Connect to a "Generate Ids" filter - Update: The information panel shows a 'Ids' array for points and for cells, but the "Color by" doesn't give the choice of cell array. Jerome 2010/2/28 Utkarsh Ayachit

Re: [Paraview] How to color by Cell Data

2010-02-28 Thread Jérôme
Hi, I confirm the problem: even with your script, CELL_DATA are not enabled. They don't appear in the "Color by" combo box, but the cell Ids are present in the Information panel. It works as expected when I try with POINT_DATA. I just had a doubt: Qt has been updated to 4.6 recently on my compute

Re: [Paraview] How to color by Cell Data

2010-02-28 Thread Jérôme
gt; http://www.bluequartz.net/cgi-bin/gitweb/gitweb.cgi?p=PVMXADataModel.git;a=blob;f=Source/Server/CrystalInterfaceColoringFilter/vtkCrystalInterfaceColoringFilter.cpp;hb=de5d94a3a128a08a534230deca9057e4e57d0358 > > > > > > > > ____

Re: [Paraview] How to color by Cell Data

2010-03-03 Thread Jérôme
e's commit Fri Feb 26 17:57:21 2010 +) >>>>>> >>>>>> I see for all builds both point "Ids" and cell "Ids" in the Color By >>>>>> menu. >>>>>> >>>>>> I also checked the tarballs of

Re: [Paraview] How to color by Cell Data

2010-03-03 Thread Jérôme
how > >> somewhere so I could debug it :). I am going to test on Os X 10.5 to > >> see if we have any better luck. > >> > >> Utkarsh > >> > >> On Wed, Mar 3, 2010 at 9:23 AM, Eric E. Monson > >> wrote: > >> > >>> &

Re: [Paraview] How to color by Cell Data

2010-03-03 Thread Jérôme
. >>> >>> So not really sure what is up. If someone wants to remotely work on my >>> machine email me off list and I'll get you setup. >>> >>> Mike Jackson. >>> >>> On 3/3/2010 12:06 PM, Eric E. Monson wrote: >>> >>>

Re: [Paraview] How to color by Cell Data

2010-03-03 Thread Jérôme
visible. As the sphere source integrates a normal computation, I suspect a sort of "MaxNumberOf..." blocking the number of arrays to 2. Anyway, Mike found the workaround. Thanks again! HTH Jerome 2010/3/3 Jérôme > Fine! I renamed my ~/.config/ParaView/ParaView3.7.0.ini to > P

Re: [Paraview] How to color by Cell Data

2010-03-03 Thread Jérôme
t;> > >>> So not really sure what is up. If someone wants to remotely work on my > >>> machine email me off list and I'll get you setup. > >>> > >>> Mike Jackson. > >>> > >>> On 3/3/2010 12:06 PM, Eric E. Mons

Re: [Paraview] [vtkusers] GPU based volume rendering in ParaView

2010-03-06 Thread Jérôme
Hi, I ran into the "empty not supported extensions list", with linux/ATI/Mesa. By reading, I found that the problem is not due to extensions, but due to: if(strstr(gl_vendor,"ATI")!=0) { this->LoadExtensionsSucceeded=0; return; } and if(strstr(gl_version,"Mesa")!=0) { th

Re: [Paraview] [vtkusers] GPU based volume rendering in ParaView

2010-03-06 Thread Jérôme
and Windows. Mac > have issues too. > > Regards, > > Wagner > > 2010/3/6 Jérôme : > > Hi, > > I ran into the "empty not supported extensions list", with > linux/ATI/Mesa. > > By reading, I found that the problem is not due to e

Re: [Paraview] Call plugin filter from custom toolbar

2010-03-07 Thread Jérôme
Hi, here is a code-snippet I used to add a custom source to the pipeline browser: #" // The objectBuilder make the view factory available pqObjectBuilder* builder = pqApplicationCore::instance()->getObjectBuilder(); // The server manager model

  1   2   >