From madaramh at gmail.com Wed Feb 1 01:52:35 2017 From: madaramh at gmail.com (madz) Date: Tue, 31 Jan 2017 23:52:35 -0700 (MST) Subject: [vtkusers] Using vtkCutter Message-ID: <1485931955883-5742005.post@n5.nabble.com> Is there a way to cut a polydata with a curved surface? Instead of a plane I need to input a surface that looks like the image displayed below to the vtkCutter. Any help would be appreciated. Thank you. -- View this message in context: http://vtk.1045678.n5.nabble.com/Using-vtkCutter-tp5742005.html Sent from the VTK - Users mailing list archive at Nabble.com. From elvis.stansvik at orexplore.com Wed Feb 1 02:39:04 2017 From: elvis.stansvik at orexplore.com (Elvis Stansvik) Date: Wed, 1 Feb 2017 08:39:04 +0100 Subject: [vtkusers] Bounds computation of vtkImageData In-Reply-To: References: <594662632.12191844.1485860474438.JavaMail.zimbra@enst.fr> <766899374.12204896.1485861286413.JavaMail.zimbra@enst.fr> <675258709.12405844.1485869924383.JavaMail.zimbra@enst.fr> Message-ID: Den 31 jan. 2017 3:13 em skrev "David Gobbi" : > > If you use vtkCellPicker, then positions beyond the bounds will not be picked. If you use vtkPropPicker, the pick will be based on what is drawn on the screen, and by default the vtkImageActor and vtkImageSliceMapper only draw the image out to its bounds (but this can be changed by setting the "Border" property of the mapper, which causes the border region to be drawn). I got curious here. What is the story for vtkGPUVolumeRayCastMapper? Will it also draw the volume only out to its bounds (center of peripheral voxels)? I couldn't find a similar border property on it. Elvis > > - David > > On Tue, Jan 31, 2017 at 6:38 AM, Timothee Evain < tevain at telecom-paristech.fr> wrote: >> >> Oh right, thanks for remembering me that! >> Does that mean that, if image is displayed, a pick on border of data could return an out-of-bound position value ? >> >> Tim >> >> ----- Mail original ----- >> De: "David Gobbi" >> ?: "Timothee Evain" >> Cc: "VTK Users" >> Envoy?: Mardi 31 Janvier 2017 14:16:57 >> Objet: Re: [vtkusers] Bounds computation of vtkImageData >> >> Hi Tim, >> >> The bounds go from the center of the first voxel to the center of the last >> voxel. So the code in vtkImageData.cxx is correct. >> >> - David >> >> On Tue, Jan 31, 2017 at 4:14 AM, Timothee Evain < tevain at telecom-paristech.fr >> > wrote: >> >> > Hello everyone, >> > >> > It may be more a dev issue, but I think there is a small mistake in the >> > ComputeBounds() method of vtkImageData >> > When computing upper bounds, code read (line 781 of vtkImageData.cxx): >> > >> > this->Bounds[1] = origin[0] + (extent[1-swapXBounds] * spacing[0]); >> > this->Bounds[3] = origin[1] + (extent[3-swapYBounds] * spacing[1]); >> > this->Bounds[5] = origin[2] + (extent[5-swapZBounds] * spacing[2]); >> > >> > Since the upper extent is meant to be the index of the last inside point, >> > this leads to upper bounds excluding the upper fringe of data in each >> > direction. >> > So I guess this part should read something like: >> > >> > this->Bounds[1] = origin[0] + ( (extent[1-swapXBounds] + 1) * spacing[0]); >> > this->Bounds[3] = origin[1] + ( (extent[3-swapYBounds] + 1) * spacing[1]); >> > this->Bounds[5] = origin[2] + ( (extent[5-swapZBounds] + 1) * spacing[2]); >> > >> > Am I mistaken ? >> > >> > Tim >> > > > > > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers > -------------- next part -------------- An HTML attachment was scrubbed... URL: From sankhesh.jhaveri at kitware.com Wed Feb 1 09:34:09 2017 From: sankhesh.jhaveri at kitware.com (Sankhesh Jhaveri) Date: Wed, 01 Feb 2017 14:34:09 +0000 Subject: [vtkusers] VTK without the V(isualization) In-Reply-To: References: Message-ID: Hi Brian, VTK would work fine with an offscreen render window which inherently does not get any user interaction. What is your use case for using widgets? Using the offscreen approach you would have to maintain app-side widgets and then directly feed the relevant values to the VTK objects. For example, If you?d like to use the box widget to crop a volume, you can have an app-side widget that computes the bounds for the crop and directly use those bounds for cropping the volume in VTK. Hope that helps. Thanks, Sankhesh ? On Tue, Jan 31, 2017 at 11:44 PM Brian Davis wrote: > > Investigating > > > ?GetPlanes() : vtkBoxRepresentation > > , vtkBoxWidget > > , vtkClipConvexPolyData > > , vtkFrustumSource > > > a little further reveals > > virtual vtkPlaneCollection > * > vtkClipConvexPolyData::GetPlanes ( ) > > is not the same as > > void vtkBoxRepresentation::GetPlanes ( vtkPlanes > * *planes*) > > and > > void vtkBoxWidget::GetPlanes ( vtkPlanes > * *planes*) > > and hey... why would it be for consistency sake? > > or for that matter: > > virtual vtkPlanes > * > vtkFrustumSource::GetPlanes ( ) > > Not that I need a Frustrum. > > So I look into vtkClipConvexPolyData and vtkPlaneCollecion to see if I can > get vtkPlanes* and of course I can't. I get the feeling that vtk is a bit > fractured. > > Can someone explain to me why what is seemingly similar things in vtk have > such different interfaces that don't seem to play nice with (itself) it's > own api? > > > > > > > > > > > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: > http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers > -- Sankhesh Jhaveri *Sr. Research & Development Engineer* | Kitware | (518) 881-4417 ? -------------- next part -------------- An HTML attachment was scrubbed... URL: From sankhesh.jhaveri at kitware.com Wed Feb 1 09:39:15 2017 From: sankhesh.jhaveri at kitware.com (Sankhesh Jhaveri) Date: Wed, 01 Feb 2017 14:39:15 +0000 Subject: [vtkusers] Using vtkCutter In-Reply-To: <1485931955883-5742005.post@n5.nabble.com> References: <1485931955883-5742005.post@n5.nabble.com> Message-ID: One solution would be to create an implicit function from your curved surface and use vtkCutter's SetCutFunction() API to cut the geometry. You can use vtkImplicitDataset to generate the implicit function. Hope that helps. Sankhesh ? On Wed, Feb 1, 2017 at 1:52 AM madz wrote: > Is there a way to cut a polydata with a curved surface? Instead of a plane > I > need to input a surface that looks like the image displayed below to the > vtkCutter. > > > > Any help would be appreciated. > Thank you. > > > > -- > View this message in context: > http://vtk.1045678.n5.nabble.com/Using-vtkCutter-tp5742005.html > Sent from the VTK - Users mailing list archive at Nabble.com. > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: > http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers > -- Sankhesh Jhaveri *Sr. Research & Development Engineer* | Kitware | (518) 881-4417 ? -------------- next part -------------- An HTML attachment was scrubbed... URL: From enzo.matsumiya at gmail.com Wed Feb 1 13:43:09 2017 From: enzo.matsumiya at gmail.com (Enzo Matsumiya) Date: Wed, 1 Feb 2017 16:43:09 -0200 Subject: [vtkusers] Using MacBook trackpad freezes application Message-ID: Hi, I'm experiencing exactly this bug, though not only when scrolling, dragging also freezes: http://www.paraview.org/Bug/view.php?id=15822 - macOS 10.11 or 10.12 - QVTKWidget, vktResliceImageViewer with a DICOM data set - Either VTK 7.0 or 7.1 I normally use the MacBook connected to an external monitor, keyboard and mouse (non-Apple). I just recently stumbled on this issue when I needed to work with it on my lap. When using an external mouse, everything works fine. When using the trackpad, it *looks* like it worked (windowing is changed, reslice occurs, etc), but it stats getting so slow that the application freezes. The external trackpad has the same behaviour (not sure this is obvious). If it's not very clear, please download the videos attached to the bug report mentioned. I hope there is some solution for this. Thank you very much! -- Enzo Ferlin Matsumiya enzo.matsumiya AT gmail DOT com -------------- next part -------------- An HTML attachment was scrubbed... URL: From jspencer at connectedsp.com Wed Feb 1 13:55:32 2017 From: jspencer at connectedsp.com (John Spencer) Date: Wed, 1 Feb 2017 18:55:32 +0000 Subject: [vtkusers] JOB OPENING - SR SW Eng, GUI with VTK - perm in MA Message-ID: Our medical client in MA has a perm opening for a Sr Software Engineer with strong experience with VTK. In addition, my client is looking for strong C++ / Object Oriented design skills for GUI design and development. All candidates must be a US Citizen or Perm US Resident All candidates must be able to interview and work on-site, at their own expense. I would welcome the chance to provide additional details. Regards, John Spencer Connected Systems Partners Office: (978) 455-5550 x208 Cell: (978) 621-9743 jspencer at connectedsp.com www.connectedsp.com GET CONNECTED! All information in this email, unless indicated otherwise in the body of the email, is considered confidential and intended for the view and use of the recipient(s) only. -------------- next part -------------- An HTML attachment was scrubbed... URL: From nicoddemus at gmail.com Wed Feb 1 14:09:49 2017 From: nicoddemus at gmail.com (Bruno Oliveira) Date: Wed, 01 Feb 2017 19:09:49 +0000 Subject: [vtkusers] vtkImagePlaneWidget and vtkLookupTable being used partially? In-Reply-To: References: Message-ID: Hi everyone, Found the solution, posting here in case it helps others. After some more digging a found that the problem was elsewhere in my application code: *ambient light was set to zero*. That explains why the texture on the vtkImagePlaneWidget was always black and changing colors in the lookup table had no effect. The solution is to disable lighting handling in the widget: plane_widget.GetTexturePlaneProperty().LightingOff() Cheers, Bruno. ? On Mon, Jan 30, 2017 at 4:44 PM Bruno Oliveira wrote: > Hi everyone, > > I?ve looked at other emails from the mailing list but have not found > anything which explains the problem I?m having. > > I have a vtkImageData object with scalars set as a vtkUnsignedCharArray > ranging from 0 to 1. This volume represents rock porosity, with 0 meaning > solid rock and 1 meaning a pore. > > I?m using 3 vtkImagePlaneWidget instances, each along one axis, to show 3 > plane cuts of the rock. > > I?m trying to use a vtkLookupTable to show solid rock as black, and pore > as white: > > lookup_table = vtk.vtkLookupTable() > lookup_table.SetNumberOfTableValues(2) > lookup_table.SetTableValue(0, (0., 0., 0., 1.0)) > lookup_table.SetTableValue(1, (1., 1., 1., 1.0)) > > Unfortunately the planes appear as completely black. Changing the color > values to other colors (say, first entry red and second entry blue) has no > effect on the image. If I change the first table entry?s alpha value to > zero though, I can then see the pores of the image as black, which shows > that the data is correct and that the lookup table is being used. It seems > that it is not using the RGB part of the lookup table somehow. > > Here?s the relevant part of the code: > > self._plane_widgets = [] > > lookup_table = vtk.vtkLookupTable() > lookup_table.SetNumberOfTableValues(2) > lookup_table.SetTableValue(0, (0., 0., 0., 1.0)) > lookup_table.SetTableValue(1, (1., 0., 1., 1.0)) > lookup_table.SetTableRange(0., 1.) > for plane_name in ['XY', 'XZ', 'YZ']: > orientation = vtk_reslice_details.GetVtkPlaneIndexValue(plane_name) > slice_data = mpr_representation.slices_data[orientation] > > plane_widget = vtk.vtkImagePlaneWidget() > plane_widget.SetInteractor(vizu.GetInteractor()) > > plane_widget.GetPlaneProperty().SetColor(slice_data.norm_color) > plane_widget.TextureInterpolateOff() > plane_widget.TextureVisibilityOn() > plane_widget.SetInputData(vtk_image) > plane_widget.SetPlaneOrientation(orientation) > plane_widget.SetSliceIndex(slice_data.slice_index) > plane_widget.UserControlledLookupTableOn() > plane_widget.SetLookupTable(lookup_table) > > plane_widget.SetMiddleButtonAction(vtk.vtkImagePlaneWidget.VTK_CURSOR_ACTION) > plane_widget.SetRightButtonAction(vtk.vtkImagePlaneWidget.VTK_CURSOR_ACTION) > plane_widget.On() > plane_widget.InteractionOn() > plane_widget.DisplayTextOn() > > self._plane_widgets.append(plane_widget) > > Any helps or tips are greatly appreciated. > > Cheers, > Bruno. > ? > -------------- next part -------------- An HTML attachment was scrubbed... URL: From luis.vieira at vektore.com Wed Feb 1 16:47:03 2017 From: luis.vieira at vektore.com (Luis Vieira) Date: Wed, 1 Feb 2017 16:47:03 -0500 Subject: [vtkusers] vtkBezierSurface vs VTK 7.0 Message-ID: <1ccaa01d27cd4$ba1e8900$2e5b9b00$@vektore.com> Hello vtkusers, I just had downloaded a version of vtkBezierSurface (https://github.com/daviddoria/BezierSurface) daviddoria/ BezierSurface. It worked smoothly with VTK 6.1. However, I am struggling to build the example with VTK 7.0. The build is crashing in those macros: vtkCxxRevisionMacro(vtkBezierSurfaceSource, "$Revision: 1.53 $"); Error 5 error C2059: syntax error : 'string' vtkBezierSurfaceSource.cxx 53 1 BezierSource Error 17 error C2059: syntax error : 'string' C:\VektoreSoftware_FileStructure\VektoreSoftware\Implementation\Support\VTK\ BezierSurface-master\vtkBezierSurfaceWidget.cxx 45 1 BezierSourceWidget vtkTypeRevisionMacro(vtkBezierSurfaceWidget, vtk3DWidget); Error 7 error C2259: 'vtk3DWidget' : cannot instantiate abstract class vtkBezierSurfaceWidget.h 51 1 BezierSourceWidget vtkTypeRevisionMacro(vtkBezierSurfaceSource, vtkPolyDataAlgorithm); Error 10 error C4430: missing type specifier - int assumed. Note: C++ does not support default-int vtkBezierSurfaceSource.h 47 1 BezierSourceWidget Thank you very much for any help, Luis Vieira, Consultant, Software Engineer Vektore Exploration Consulting Corporation ca.linkedin.com/in/joaoluisvieira luis.vieira at vektore.com www.vektore.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From kmilner at usc.edu Wed Feb 1 19:19:03 2017 From: kmilner at usc.edu (Kevin Milner) Date: Wed, 1 Feb 2017 16:19:03 -0800 Subject: [vtkusers] Issues with picking in VTK Java on Mac OS X Message-ID: <94b76fe5-cd64-f581-20c5-8d83e6bc93b7@usc.edu> Hello. I develop a VTK Java application for visualizing georeferenced earthquake data, SCEC-VDO (http://scecvdo.usc.edu/). One of the important features of this software is the ability to click on elements of the 3D view to perform actions or view information. This works perfectly on Windows and Linux, but does not work on Macs. I believe that this is due to an internal bug in the Mac version of VTK. We use the vtkJoglPanelComponent to embed the 3D view into our Java application. Here is the code that I use to pick items (where renderWindow is a vtkJoglPanelComponent): renderWindow.getComponent().addMouseListener(new MouseAdapter() { public void mousePressed(MouseEvent e) { int[] clickPos = renderWindow.getRenderWindowInteractor().GetEventPosition(); int x = clickPos[0]; int y = clickPos[1]; cellPicker.Pick(x, y, 0, renderWindow.getRenderer()); if (cellPicker.GetActor() != null) { // do stuff ... } } }); The first bug is that the y value of getRenderWindowInteractor().GetEventPosition() is just flat out wrong on the Mac (correct on Windows and Linux). For example, if I click near the top of my window with height 700, if will give me a y value that is greater than 1300! It should actually be very small, as y should be zero at the top of the window and 700 at the bottom of the window. I can get around this, and make it match the position on Linux/Windows with the following fix using the mouseEvent (e) and the height of the 3D view component: int height = renderWindow.getComponent().getHeight(); int calcY = (height - e.getY()) - 1; int x = e.getX(); int y = calcY; Now when I click on a location in the 3D viewer, the x/y coordinates match the results on Linux/Windows. But picking actors still doesn't work. Instead, VTK thinks that I have clicked somewhere roughly between where I actually clicked and the bottom left corner. So if I click on the top right corner of the viewer, it thinks that I clicked in the middle. If I click on the top left, if thinks that I clicked middle left. If I click on the middle of the viewer, it thinks that I clicked 1/4 up and right of the lower left corner. I have posted a video which demonstrates this bug: http://sendvid.com/yqz1qww2 In this video, whatever actor is clicked turns red. This works as expected on Windows/Linux, both with and without the x/y fix mentioned above. Without the previous fix on a Mac, the behavior is similar but centered around the top left corner and sometimes doesn't detect clicks at all (due to y values which make no sense). Any ideas what could be going on? I have experienced this behavior on all 4 Mac's on which I have tried the software. Thanks, Kevin Milner From sebastien.jourdain at kitware.com Wed Feb 1 19:58:27 2017 From: sebastien.jourdain at kitware.com (Sebastien Jourdain) Date: Wed, 1 Feb 2017 17:58:27 -0700 Subject: [vtkusers] Issues with picking in VTK Java on Mac OS X In-Reply-To: <94b76fe5-cd64-f581-20c5-8d83e6bc93b7@usc.edu> References: <94b76fe5-cd64-f581-20c5-8d83e6bc93b7@usc.edu> Message-ID: Hi Kevin, The issue seems to be related to the retina display and maybe macOS sierra. Which version of VTK are you using? I know that I fixed some picking issue on mac with retina display before Sierra. The change I'm talking about is: commit b6df993770cfcd9a69a48a2730415a992d698c5b > Author: Sebastien Jourdain > Date: Fri Jul 8 09:45:58 2016 -0400 > Fix VTK/Java JOGL > > - Update JOGL version to 2.32 > - Update documentation on how to download the JOGL jars with Maven > - Add support for Retina display > Ideally, you should make sure you have this commit in your VTK and that is working on system older than Sierra. Then if Sierra is the issue, I think more advanced debugging may be require. Although, VTK compiled on an older OS should work just fine on Sierra. Let me know if you find out more about it. Seb On Wed, Feb 1, 2017 at 5:19 PM, Kevin Milner wrote: > Hello. I develop a VTK Java application for visualizing georeferenced > earthquake data, SCEC-VDO (http://scecvdo.usc.edu/). One of the important > features of this software is the ability to click on elements of the 3D > view to perform actions or view information. This works perfectly on > Windows and Linux, but does not work on Macs. I believe that this is due to > an internal bug in the Mac version of VTK. We use the vtkJoglPanelComponent > to embed the 3D view into our Java application. > > Here is the code that I use to pick items (where renderWindow is a > vtkJoglPanelComponent): > > renderWindow.getComponent().addMouseListener(new MouseAdapter() { > public void mousePressed(MouseEvent e) { > int[] clickPos = renderWindow.getRenderWindowIn > teractor().GetEventPosition(); > > int x = clickPos[0]; > int y = clickPos[1]; > > cellPicker.Pick(x, y, 0, renderWindow.getRenderer()); > if (cellPicker.GetActor() != null) { > // do stuff > ... > } > } > }); > > The first bug is that the y value of getRenderWindowInteractor().GetEventPosition() > is just flat out wrong on the Mac (correct on Windows and Linux). For > example, if I click near the top of my window with height 700, if will give > me a y value that is greater than 1300! It should actually be very small, > as y should be zero at the top of the window and 700 at the bottom of the > window. I can get around this, and make it match the position on > Linux/Windows with the following fix using the mouseEvent (e) and the > height of the 3D view component: > > int height = renderWindow.getComponent().getHeight(); > int calcY = (height - e.getY()) - 1; > int x = e.getX(); > int y = calcY; > > Now when I click on a location in the 3D viewer, the x/y coordinates match > the results on Linux/Windows. But picking actors still doesn't work. > Instead, VTK thinks that I have clicked somewhere roughly between where I > actually clicked and the bottom left corner. So if I click on the top right > corner of the viewer, it thinks that I clicked in the middle. If I click on > the top left, if thinks that I clicked middle left. If I click on the > middle of the viewer, it thinks that I clicked 1/4 up and right of the > lower left corner. I have posted a video which demonstrates this bug: > > http://sendvid.com/yqz1qww2 > > In this video, whatever actor is clicked turns red. This works as expected > on Windows/Linux, both with and without the x/y fix mentioned above. > Without the previous fix on a Mac, the behavior is similar but centered > around the top left corner and sometimes doesn't detect clicks at all (due > to y values which make no sense). > > Any ideas what could be going on? I have experienced this behavior on all > 4 Mac's on which I have tried the software. > > Thanks, > Kevin Milner > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at http://www.kitware.com/opensou > rce/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: > http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers > -------------- next part -------------- An HTML attachment was scrubbed... URL: From bebe0705 at colorado.edu Wed Feb 1 23:59:54 2017 From: bebe0705 at colorado.edu (BBerco) Date: Wed, 1 Feb 2017 21:59:54 -0700 (MST) Subject: [vtkusers] vtkExtractSelectedPolyDataIds and inverse selection: bug? Message-ID: <1486011594800-5742021.post@n5.nabble.com> Dear all, I am trying to obtain a selected subset A from a polydata C as well as the unselected subset B (so that A U B = C) from a rubber band selection, in the form of two polydatas. If I'm able to obtain A using vtkExtractSelectedPolyDataIds, I am unable to invert the selection to get B. The attached self-sufficient code demonstrates the issue. Although I am adding the property INVERSE = 1 to the selection node, the output of vtkExtractSelectedPolyDataIds has a number of cells that remains unchanged. Any thoughts? Thanks, Ben CellPicking.cxx output.txt -- View this message in context: http://vtk.1045678.n5.nabble.com/vtkExtractSelectedPolyDataIds-and-inverse-selection-bug-tp5742021.html Sent from the VTK - Users mailing list archive at Nabble.com. From vtk12af6bc42 at kant.sophonet.de Thu Feb 2 07:10:10 2017 From: vtk12af6bc42 at kant.sophonet.de (Sophonet) Date: Thu, 02 Feb 2017 13:10:10 +0100 Subject: [vtkusers] Changing level/window in LUT for ImageSlice: Unwanted clipping effects Message-ID: <8129c9910d1cf13f74fd1b7c33554eec@srv19.sysproserver.de> Dear list, for displaying images, I am using vtkImageResliceMapper. For changing the colormap, I set a dedicated color map to the imageSlice's property (which is a vtkLookupTable) and tell to use its scalar range: colorMap_->SetNumberOfTableValues(256); colorMap_->SetRange(0, 1); imageProperty_->SetLookupTable(colorMap_); imageProperty_->UseLookupTableScalarRangeOn(); Now, when changing level/window interactively with the mouse, I am setting the range in the colorMap via double minmax[2]; // set values of minmax correctly colorMap_->SetRange(minmax); The changes are displayed correctly - however, areas in which original scalars of the image are clipped, the resulting color is displayed as transparent. However, I would like to display the maximum / minimum value in the color table. I have tried using colorMap_->SetAboveRangeColor() and colorMap_->SetAboveRangeColorOn() (likewise for ...BelowRange...), with no apparent effect. Any advice? I am using VTK 7.1.0. Thanks, Sophonet From david.gobbi at gmail.com Thu Feb 2 09:20:39 2017 From: david.gobbi at gmail.com (David Gobbi) Date: Thu, 2 Feb 2017 07:20:39 -0700 Subject: [vtkusers] Changing level/window in LUT for ImageSlice: Unwanted clipping effects In-Reply-To: <8129c9910d1cf13f74fd1b7c33554eec@srv19.sysproserver.de> References: <8129c9910d1cf13f74fd1b7c33554eec@srv19.sysproserver.de> Message-ID: Hi Sophonet, I have confirmed that what you report is true: the vtkImageResliceMapper (and vtkImageSliceMapper) seem to ignore the AboveRangeColor and the BelowRangeColor. This is also true for the current VTK master branch. My current theory is that the mapper clamps the scalars to the range before they go through the lookup table. Hopefully I'll have a fix for this soon. As a workaround (a inefficient workaround), you can use vtkImageMapToColors to apply the lookup table to the image before it goes to the mapper. - David On Thu, Feb 2, 2017 at 5:10 AM, Sophonet wrote: > Dear list, > > for displaying images, I am using vtkImageResliceMapper. For changing the > colormap, I set a dedicated color map to the imageSlice's property (which > is a vtkLookupTable) and tell to use its scalar range: > > colorMap_->SetNumberOfTableValues(256); > colorMap_->SetRange(0, 1); > > imageProperty_->SetLookupTable(colorMap_); > imageProperty_->UseLookupTableScalarRangeOn(); > > > Now, when changing level/window interactively with the mouse, I am setting > the range in the colorMap via > > double minmax[2]; > // set values of minmax correctly > colorMap_->SetRange(minmax); > > The changes are displayed correctly - however, areas in which original > scalars of the image are clipped, the resulting color is displayed as > transparent. However, I would like to display the maximum / minimum value > in the color table. > > I have tried using colorMap_->SetAboveRangeColor() and > colorMap_->SetAboveRangeColorOn() (likewise for ...BelowRange...), with > no apparent effect. > > Any advice? > > I am using VTK 7.1.0. > > Thanks, > > Sophonet > -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.gobbi at gmail.com Thu Feb 2 10:41:34 2017 From: david.gobbi at gmail.com (David Gobbi) Date: Thu, 2 Feb 2017 08:41:34 -0700 Subject: [vtkusers] Changing level/window in LUT for ImageSlice: Unwanted clipping effects In-Reply-To: References: <8129c9910d1cf13f74fd1b7c33554eec@srv19.sysproserver.de> Message-ID: I've discovered more about this issue. The Above/Below colors will work if you call SetNumberOfColors after turning them on: table->SetBelowRangeColor(1,0,0,1); table->SetAboveRangeColor(0,1,0,1); table->UseAboveRangeColorOn(); table->UseBelowRangeColorOn(); table->SetNumberOfColors(256); I'm still investigating to see why this happens. - David On Thu, Feb 2, 2017 at 7:20 AM, David Gobbi wrote: > > > Hi Sophonet, > > I have confirmed that what you report is true: the vtkImageResliceMapper > (and vtkImageSliceMapper) seem to ignore the AboveRangeColor and the > BelowRangeColor. This is also true for the current VTK master branch. My > current theory is that the mapper clamps the scalars to the range before > they go through the lookup table. Hopefully I'll have a fix for this soon. > > As a workaround (a inefficient workaround), you can use > vtkImageMapToColors to apply the lookup table to the image before it goes > to the mapper. > > - David > > > On Thu, Feb 2, 2017 at 5:10 AM, Sophonet > wrote: > >> Dear list, >> >> for displaying images, I am using vtkImageResliceMapper. For changing the >> colormap, I set a dedicated color map to the imageSlice's property (which >> is a vtkLookupTable) and tell to use its scalar range: >> >> colorMap_->SetNumberOfTableValues(256); >> colorMap_->SetRange(0, 1); >> >> imageProperty_->SetLookupTable(colorMap_); >> imageProperty_->UseLookupTableScalarRangeOn(); >> >> >> Now, when changing level/window interactively with the mouse, I am >> setting the range in the colorMap via >> >> double minmax[2]; >> // set values of minmax correctly >> colorMap_->SetRange(minmax); >> >> The changes are displayed correctly - however, areas in which original >> scalars of the image are clipped, the resulting color is displayed as >> transparent. However, I would like to display the maximum / minimum value >> in the color table. >> >> I have tried using colorMap_->SetAboveRangeColor() and >> colorMap_->SetAboveRangeColorOn() (likewise for ...BelowRange...), with >> no apparent effect. >> >> Any advice? >> >> I am using VTK 7.1.0. >> >> Thanks, >> >> Sophonet >> > -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.gobbi at gmail.com Thu Feb 2 12:08:01 2017 From: david.gobbi at gmail.com (David Gobbi) Date: Thu, 2 Feb 2017 10:08:01 -0700 Subject: [vtkusers] Changing level/window in LUT for ImageSlice: Unwanted clipping effects In-Reply-To: References: <8129c9910d1cf13f74fd1b7c33554eec@srv19.sysproserver.de> Message-ID: Okay, here is a very simple work-around for this issue: Just call Build() on the table after you have set all the other table parameters. Please let me know if this fixes the issue. I've submitted a fix for mapper so that it will call Build() automatically. I'm not sure why it didn't do this before. - David On Thu, Feb 2, 2017 at 8:41 AM, David Gobbi wrote: > I've discovered more about this issue. The Above/Below colors will work > if you call SetNumberOfColors after turning them on: > > table->SetBelowRangeColor(1,0,0,1); > table->SetAboveRangeColor(0,1,0,1); > table->UseAboveRangeColorOn(); > table->UseBelowRangeColorOn(); > table->SetNumberOfColors(256); > > I'm still investigating to see why this happens. > > - David > > > On Thu, Feb 2, 2017 at 7:20 AM, David Gobbi wrote: > >> >> >> Hi Sophonet, >> >> I have confirmed that what you report is true: the vtkImageResliceMapper >> (and vtkImageSliceMapper) seem to ignore the AboveRangeColor and the >> BelowRangeColor. This is also true for the current VTK master branch. My >> current theory is that the mapper clamps the scalars to the range before >> they go through the lookup table. Hopefully I'll have a fix for this soon. >> >> As a workaround (a inefficient workaround), you can use >> vtkImageMapToColors to apply the lookup table to the image before it goes >> to the mapper. >> >> - David >> >> >> On Thu, Feb 2, 2017 at 5:10 AM, Sophonet >> wrote: >> >>> Dear list, >>> >>> for displaying images, I am using vtkImageResliceMapper. For changing >>> the colormap, I set a dedicated color map to the imageSlice's property >>> (which is a vtkLookupTable) and tell to use its scalar range: >>> >>> colorMap_->SetNumberOfTableValues(256); >>> colorMap_->SetRange(0, 1); >>> >>> imageProperty_->SetLookupTable(colorMap_); >>> imageProperty_->UseLookupTableScalarRangeOn(); >>> >>> >>> Now, when changing level/window interactively with the mouse, I am >>> setting the range in the colorMap via >>> >>> double minmax[2]; >>> // set values of minmax correctly >>> colorMap_->SetRange(minmax); >>> >>> The changes are displayed correctly - however, areas in which original >>> scalars of the image are clipped, the resulting color is displayed as >>> transparent. However, I would like to display the maximum / minimum value >>> in the color table. >>> >>> I have tried using colorMap_->SetAboveRangeColor() and >>> colorMap_->SetAboveRangeColorOn() (likewise for ...BelowRange...), with >>> no apparent effect. >>> >>> Any advice? >>> >>> I am using VTK 7.1.0. >>> >>> Thanks, >>> >>> Sophonet >>> >> > -------------- next part -------------- An HTML attachment was scrubbed... URL: From vtk12af6bc42 at kant.sophonet.de Thu Feb 2 12:42:00 2017 From: vtk12af6bc42 at kant.sophonet.de (Sophonet) Date: Thu, 02 Feb 2017 18:42:00 +0100 Subject: [vtkusers] Changing level/window in LUT for ImageSlice: Unwanted clipping effects In-Reply-To: References: <8129c9910d1cf13f74fd1b7c33554eec@srv19.sysproserver.de> Message-ID: <29e718e2f0ffb3507e074a36110542ab@srv19.sysproserver.de> Well, on my system your proposed change did not work, I still see transparent color when LUT clipping occurs, exactly as before. I have even copied your lines of your previous posting plus the Build() call below the SetRange() callback, in which I am doing level/windowing. Not sure why though - I might check again using the HEAD (I am on 7.1.0 release) - Sophonet Am 2017-02-02 18:08, schrieb David Gobbi: > Okay, here is a very simple work-around for this issue: Just call > Build() on the table after you have set all the other table > parameters.? Please let me know if this fixes the issue. > > I've submitted a fix for mapper so that it will call Build() > automatically.? I'm not sure why it didn't do this before. > > ?- David > > On Thu, Feb 2, 2017 at 8:41 AM, David Gobbi > wrote: > >> I've discovered more about this issue.? The Above/Below colors will >> work if you call SetNumberOfColors after turning them on: >> >> table->SetBelowRangeColor(1,0,0,1); >> table->SetAboveRangeColor(0,1,0,1); >> table->UseAboveRangeColorOn(); >> table->UseBelowRangeColorOn(); >> table->SetNumberOfColors(256); >> >> I'm still investigating to see why this happens. >> >> ?- David >> >> On Thu, Feb 2, 2017 at 7:20 AM, David Gobbi >> wrote: >> >> Hi Sophonet, >> >> I have confirmed that what you report is true: the >> vtkImageResliceMapper (and vtkImageSliceMapper) seem to ignore the >> AboveRangeColor and the BelowRangeColor.? This is also true for the >> current VTK master branch.? My current theory is that the mapper >> clamps the scalars to the range before they go through the lookup >> table.? Hopefully I'll have a fix for this soon. >> >> As a workaround (a inefficient workaround), you can use >> vtkImageMapToColors to apply the lookup table to the image before it >> goes to the mapper. >> >> ?- David >> ??? >> >> On Thu, Feb 2, 2017 at 5:10 AM, Sophonet >> wrote: >> Dear list, >> >> for displaying images, I am using vtkImageResliceMapper. For >> changing the colormap, I set a dedicated color map to the >> imageSlice's property (which is a vtkLookupTable) and tell to use >> its scalar range: >> >> colorMap_->SetNumberOfTableValues(256); >> colorMap_->SetRange(0, 1); >> >> imageProperty_->SetLookupTable(colorMap_); >> imageProperty_->UseLookupTableScalarRangeOn(); >> >> Now, when changing level/window interactively with the mouse, I am >> setting the range in the colorMap via >> >> double minmax[2]; >> // set values of minmax correctly >> colorMap_->SetRange(minmax); >> >> The changes are displayed correctly - however, areas in which >> original scalars of the image are clipped, the resulting color is >> displayed as transparent. However, I would like to display the >> maximum / minimum value in the color table. >> >> I have tried using colorMap_->SetAboveRangeColor() and >> colorMap_->SetAboveRangeColorOn() (likewise for ...BelowRange...), >> with no apparent effect. >> >> Any advice? >> >> I am using VTK 7.1.0. >> >> Thanks, >> >> ? ? ?Sophonet From david.gobbi at gmail.com Thu Feb 2 12:51:20 2017 From: david.gobbi at gmail.com (David Gobbi) Date: Thu, 2 Feb 2017 10:51:20 -0700 Subject: [vtkusers] Changing level/window in LUT for ImageSlice: Unwanted clipping effects In-Reply-To: <29e718e2f0ffb3507e074a36110542ab@srv19.sysproserver.de> References: <8129c9910d1cf13f74fd1b7c33554eec@srv19.sysproserver.de> <29e718e2f0ffb3507e074a36110542ab@srv19.sysproserver.de> Message-ID: Hi Sophonet, Can you send the exact code that you use to set up the lookup table, including the call to Build(), so that I can check locally? - David On Thu, Feb 2, 2017 at 10:42 AM, Sophonet wrote: > Well, on my system your proposed change did not work, I still see > transparent color when LUT clipping occurs, exactly as before. I have even > copied your lines of your previous posting plus the Build() call below the > SetRange() callback, in which I am doing level/windowing. Not sure why > though - I might check again using the HEAD (I am on 7.1.0 release) > > - Sophonet > > > Am 2017-02-02 18:08, schrieb David Gobbi: > >> Okay, here is a very simple work-around for this issue: Just call >> Build() on the table after you have set all the other table >> parameters. Please let me know if this fixes the issue. >> >> I've submitted a fix for mapper so that it will call Build() >> automatically. I'm not sure why it didn't do this before. >> >> - David >> >> On Thu, Feb 2, 2017 at 8:41 AM, David Gobbi >> wrote: >> >> I've discovered more about this issue. The Above/Below colors will >>> work if you call SetNumberOfColors after turning them on: >>> >>> table->SetBelowRangeColor(1,0,0,1); >>> table->SetAboveRangeColor(0,1,0,1); >>> table->UseAboveRangeColorOn(); >>> table->UseBelowRangeColorOn(); >>> table->SetNumberOfColors(256); >>> >>> I'm still investigating to see why this happens. >>> >>> - David >>> >>> On Thu, Feb 2, 2017 at 7:20 AM, David Gobbi >>> wrote: >>> >>> Hi Sophonet, >>> >>> I have confirmed that what you report is true: the >>> vtkImageResliceMapper (and vtkImageSliceMapper) seem to ignore the >>> AboveRangeColor and the BelowRangeColor. This is also true for the >>> current VTK master branch. My current theory is that the mapper >>> clamps the scalars to the range before they go through the lookup >>> table. Hopefully I'll have a fix for this soon. >>> >>> As a workaround (a inefficient workaround), you can use >>> vtkImageMapToColors to apply the lookup table to the image before it >>> goes to the mapper. >>> >>> - David >>> >>> >>> On Thu, Feb 2, 2017 at 5:10 AM, Sophonet >>> wrote: >>> Dear list, >>> >>> for displaying images, I am using vtkImageResliceMapper. For >>> changing the colormap, I set a dedicated color map to the >>> imageSlice's property (which is a vtkLookupTable) and tell to use >>> its scalar range: >>> >>> colorMap_->SetNumberOfTableValues(256); >>> colorMap_->SetRange(0, 1); >>> >>> imageProperty_->SetLookupTable(colorMap_); >>> imageProperty_->UseLookupTableScalarRangeOn(); >>> >>> Now, when changing level/window interactively with the mouse, I am >>> setting the range in the colorMap via >>> >>> double minmax[2]; >>> // set values of minmax correctly >>> colorMap_->SetRange(minmax); >>> >>> The changes are displayed correctly - however, areas in which >>> original scalars of the image are clipped, the resulting color is >>> displayed as transparent. However, I would like to display the >>> maximum / minimum value in the color table. >>> >>> I have tried using colorMap_->SetAboveRangeColor() and >>> colorMap_->SetAboveRangeColorOn() (likewise for ...BelowRange...), >>> with no apparent effect. >>> >>> Any advice? >>> >>> I am using VTK 7.1.0. >>> >>> Thanks, >>> >>> Sophonet >>> >> _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at http://www.kitware.com/opensou > rce/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: > http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers > -------------- next part -------------- An HTML attachment was scrubbed... URL: From vtk12af6bc42 at kant.sophonet.de Thu Feb 2 13:51:10 2017 From: vtk12af6bc42 at kant.sophonet.de (Sophonet) Date: Thu, 02 Feb 2017 19:51:10 +0100 Subject: [vtkusers] Changing level/window in LUT for ImageSlice: Unwanted clipping effects Message-ID: <5d536c0cc950a421f3f08be1379c6d2b@srv19.sysproserver.de> Hi David, here it is (needed to copy a few lines since the functionality is part of a class). Note that it contains your work-around twice, once, when setting an external colormap, and the second time when changing window/level. Oh, after pasting, it came into my mind that using an external color table might be the reason? In this case, I recall, Build() is not really needed anyway... Hope this helps. Thanks for looking into this so quickly, Sophonet // Initialization vtkSmartPointer colorMap_ = vtkSmartPointer::New(); vtkSmartPointer imageProperty_ = vtkSmartPointer::New(); colorMap_->SetNumberOfTableValues(256); colorMap_->SetRange(0, 1); imageProperty_->SetLookupTable(colorMap_); imageProperty_->UseLookupTableScalarRangeOn(); imageSlice_->SetProperty(imageProperty_); // Setting color map from external RGBA array colorMap_->SetTable(colorArray); // please see below how I have set up the array... double aboveColor[4]; double belowColor[4]; colorMap_->GetTableValue(255, aboveColor); colorMap_->SetAboveRangeColor(aboveColor); colorMap_->UseAboveRangeColorOn(); colorMap_->GetTableValue(0, belowColor); colorMap_->SetBelowRangeColor(belowColor); colorMap_->UseBelowRangeColorOn(); colorMap_->SetNumberOfTableValues(256); colorMap_->Build(); // Callback for level / window double minmax[2]; minmax[0] = windowLevel_[1] - 0.5*windowLevel_[0]; minmax[1] = windowLevel_[1] + 0.5*windowLevel_[0]; colorMap_->SetRange(minmax); double aboveColor[4]; double belowColor[4]; colorMap_->GetTableValue(255, aboveColor); colorMap_->SetAboveRangeColor(aboveColor); colorMap_->UseAboveRangeColorOn(); colorMap_->GetTableValue(0, belowColor); colorMap_->SetBelowRangeColor(belowColor); colorMap_->UseBelowRangeColorOn(); colorMap_->SetNumberOfTableValues(256); colorMap_->Build(); ////////////////////////////////////// const unsigned char grayscale[4*256] = { 0, 0, 0, 255, 1, 1, 1, 255, // you can imagine how things continue. I have other more useful arrays for other color scales as well // ... }; vtkSmartPointer colorArray = vtkSmartPointer::New(); newMap->SetNumberOfValues(256); newMap->SetNumberOfComponents(4); newMap->SetArray(const_cast(grayscale), 4 * 256, 1); Am 2017-02-02 18:51, schrieb David Gobbi: > Hi Sophonet, > > Can you send the exact code that you use to set up the lookup table, > including the call to Build(), so that I can check locally? > > ?- David > > On Thu, Feb 2, 2017 at 10:42 AM, Sophonet > wrote: > >> Well, on my system your proposed change did not work, I still see >> transparent color when LUT clipping occurs, exactly as before. I >> have even copied your lines of your previous posting plus the >> Build() call below the SetRange() callback, in which I am doing >> level/windowing. Not sure why though - I might check again using the >> HEAD (I am on 7.1.0 release) >> >> - Sophonet >> >> Am 2017-02-02 18:08, schrieb David Gobbi: >> Okay, here is a very simple work-around for this issue: Just call >> Build() on the table after you have set all the other table >> parameters.? Please let me know if this fixes the issue. >> >> I've submitted a fix for mapper so that it will call Build() >> automatically.? I'm not sure why it didn't do this before. >> >> ?- David >> >> On Thu, Feb 2, 2017 at 8:41 AM, David Gobbi >> wrote: >> >> I've discovered more about this issue.? The Above/Below colors >> will >> work if you call SetNumberOfColors after turning them on: >> >> table->SetBelowRangeColor(1,0,0,1); >> table->SetAboveRangeColor(0,1,0,1); >> table->UseAboveRangeColorOn(); >> table->UseBelowRangeColorOn(); >> table->SetNumberOfColors(256); >> >> I'm still investigating to see why this happens. >> >> ?- David >> >> On Thu, Feb 2, 2017 at 7:20 AM, David Gobbi >> wrote: >> >> Hi Sophonet, >> >> I have confirmed that what you report is true: the >> vtkImageResliceMapper (and vtkImageSliceMapper) seem to ignore the >> AboveRangeColor and the BelowRangeColor.? This is also true for >> the >> current VTK master branch.? My current theory is that the mapper >> clamps the scalars to the range before they go through the lookup >> table.? Hopefully I'll have a fix for this soon. >> >> As a workaround (a inefficient workaround), you can use >> vtkImageMapToColors to apply the lookup table to the image before >> it >> goes to the mapper. >> >> ?- David >> ??? >> >> On Thu, Feb 2, 2017 at 5:10 AM, Sophonet >> wrote: >> Dear list, >> >> for displaying images, I am using vtkImageResliceMapper. For >> changing the colormap, I set a dedicated color map to the >> imageSlice's property (which is a vtkLookupTable) and tell to use >> its scalar range: >> >> colorMap_->SetNumberOfTableValues(256); >> colorMap_->SetRange(0, 1); >> >> imageProperty_->SetLookupTable(colorMap_); >> imageProperty_->UseLookupTableScalarRangeOn(); >> >> Now, when changing level/window interactively with the mouse, I am >> setting the range in the colorMap via >> >> double minmax[2]; >> // set values of minmax correctly >> colorMap_->SetRange(minmax); >> >> The changes are displayed correctly - however, areas in which >> original scalars of the image are clipped, the resulting color is >> displayed as transparent. However, I would like to display the >> maximum / minimum value in the color table. >> >> I have tried using colorMap_->SetAboveRangeColor() and >> colorMap_->SetAboveRangeColorOn() (likewise for ...BelowRange...), >> with no apparent effect. >> >> Any advice? >> >> I am using VTK 7.1.0. >> >> Thanks, >> >> ? ? ?Sophonet > > _______________________________________________ > Powered by www.kitware.com [1] > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html [2] > > Please keep messages on-topic and check the VTK FAQ at: > http://www.vtk.org/Wiki/VTK_FAQ [3] > > Search the list archives at: http://markmail.org/search/?q=vtkusers > [4] > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers [5] > > > > Links: > ------ > [1] http://www.kitware.com > [2] http://www.kitware.com/opensource/opensource.html > [3] http://www.vtk.org/Wiki/VTK_FAQ > [4] http://markmail.org/search/?q=vtkusers > [5] http://public.kitware.com/mailman/listinfo/vtkusers From david.gobbi at gmail.com Thu Feb 2 14:12:58 2017 From: david.gobbi at gmail.com (David Gobbi) Date: Thu, 2 Feb 2017 12:12:58 -0700 Subject: [vtkusers] Changing level/window in LUT for ImageSlice: Unwanted clipping effects In-Reply-To: <5d536c0cc950a421f3f08be1379c6d2b@srv19.sysproserver.de> References: <5d536c0cc950a421f3f08be1379c6d2b@srv19.sysproserver.de> Message-ID: Hi Sophonet, This code looks very fishy to me: colorMap_->GetTableValue(255, aboveColor); colorMap_->GetTableValue(0, belowColor); You shouldn't call GetTableValue() before you have built the table. If you haven't built the table, how do you know what colors are stored at positions 0 and 255? They could be (0,0,0,0). - David On Thu, Feb 2, 2017 at 11:51 AM, Sophonet wrote: > Hi David, > > here it is (needed to copy a few lines since the functionality is part of > a class). Note that it contains your work-around twice, once, when setting > an external colormap, and the second time when changing window/level. > > Oh, after pasting, it came into my mind that using an external color table > might be the reason? In this case, I recall, Build() is not really needed > anyway... > > Hope this helps. Thanks for looking into this so quickly, > > Sophonet > > > > // Initialization > vtkSmartPointer colorMap_ = vtkSmartPointer >::New(); > vtkSmartPointer imageProperty_ = > vtkSmartPointer::New(); > colorMap_->SetNumberOfTableValues(256); > colorMap_->SetRange(0, 1); > > imageProperty_->SetLookupTable(colorMap_); > imageProperty_->UseLookupTableScalarRangeOn(); > > imageSlice_->SetProperty(imageProperty_); > > > // Setting color map from external RGBA array > colorMap_->SetTable(colorArray); // please see below how I have set up > the array... > double aboveColor[4]; > double belowColor[4]; > colorMap_->GetTableValue(255, aboveColor); > colorMap_->SetAboveRangeColor(aboveColor); > colorMap_->UseAboveRangeColorOn(); > colorMap_->GetTableValue(0, belowColor); > colorMap_->SetBelowRangeColor(belowColor); > colorMap_->UseBelowRangeColorOn(); > colorMap_->SetNumberOfTableValues(256); > colorMap_->Build(); > > // Callback for level / window > double minmax[2]; > minmax[0] = windowLevel_[1] - 0.5*windowLevel_[0]; > minmax[1] = windowLevel_[1] + 0.5*windowLevel_[0]; > colorMap_->SetRange(minmax); > double aboveColor[4]; > double belowColor[4]; > colorMap_->GetTableValue(255, aboveColor); > colorMap_->SetAboveRangeColor(aboveColor); > colorMap_->UseAboveRangeColorOn(); > colorMap_->GetTableValue(0, belowColor); > colorMap_->SetBelowRangeColor(belowColor); > colorMap_->UseBelowRangeColorOn(); > colorMap_->SetNumberOfTableValues(256); > colorMap_->Build(); > > > ////////////////////////////////////// > const unsigned char grayscale[4*256] = { > 0, 0, 0, 255, 1, 1, 1, 255, > // you can imagine how things continue. I have other more useful arrays > for other color scales as well > // ... > }; > > vtkSmartPointer colorArray = > vtkSmartPointer::New(); > newMap->SetNumberOfValues(256); > newMap->SetNumberOfComponents(4); > newMap->SetArray(const_cast(grayscale), 4 * 256, 1); > > > > Am 2017-02-02 18:51, schrieb David Gobbi: > >> Hi Sophonet, >> >> Can you send the exact code that you use to set up the lookup table, >> including the call to Build(), so that I can check locally? >> >> - David >> >> On Thu, Feb 2, 2017 at 10:42 AM, Sophonet >> wrote: >> >> Well, on my system your proposed change did not work, I still see >>> transparent color when LUT clipping occurs, exactly as before. I >>> have even copied your lines of your previous posting plus the >>> Build() call below the SetRange() callback, in which I am doing >>> level/windowing. Not sure why though - I might check again using the >>> HEAD (I am on 7.1.0 release) >>> >>> - Sophonet >>> >>> Am 2017-02-02 18:08, schrieb David Gobbi: >>> Okay, here is a very simple work-around for this issue: Just call >>> Build() on the table after you have set all the other table >>> parameters. Please let me know if this fixes the issue. >>> >>> I've submitted a fix for mapper so that it will call Build() >>> automatically. I'm not sure why it didn't do this before. >>> >>> - David >>> >>> On Thu, Feb 2, 2017 at 8:41 AM, David Gobbi >>> wrote: >>> >>> I've discovered more about this issue. The Above/Below colors >>> will >>> work if you call SetNumberOfColors after turning them on: >>> >>> table->SetBelowRangeColor(1,0,0,1); >>> table->SetAboveRangeColor(0,1,0,1); >>> table->UseAboveRangeColorOn(); >>> table->UseBelowRangeColorOn(); >>> table->SetNumberOfColors(256); >>> >>> I'm still investigating to see why this happens. >>> >>> - David >>> >>> On Thu, Feb 2, 2017 at 7:20 AM, David Gobbi >>> wrote: >>> >>> Hi Sophonet, >>> >>> I have confirmed that what you report is true: the >>> vtkImageResliceMapper (and vtkImageSliceMapper) seem to ignore the >>> AboveRangeColor and the BelowRangeColor. This is also true for >>> the >>> current VTK master branch. My current theory is that the mapper >>> clamps the scalars to the range before they go through the lookup >>> table. Hopefully I'll have a fix for this soon. >>> >>> As a workaround (a inefficient workaround), you can use >>> vtkImageMapToColors to apply the lookup table to the image before >>> it >>> goes to the mapper. >>> >>> - David >>> >>> >>> On Thu, Feb 2, 2017 at 5:10 AM, Sophonet >>> wrote: >>> Dear list, >>> >>> for displaying images, I am using vtkImageResliceMapper. For >>> changing the colormap, I set a dedicated color map to the >>> imageSlice's property (which is a vtkLookupTable) and tell to use >>> its scalar range: >>> >>> colorMap_->SetNumberOfTableValues(256); >>> colorMap_->SetRange(0, 1); >>> >>> imageProperty_->SetLookupTable(colorMap_); >>> imageProperty_->UseLookupTableScalarRangeOn(); >>> >>> Now, when changing level/window interactively with the mouse, I am >>> setting the range in the colorMap via >>> >>> double minmax[2]; >>> // set values of minmax correctly >>> colorMap_->SetRange(minmax); >>> >>> The changes are displayed correctly - however, areas in which >>> original scalars of the image are clipped, the resulting color is >>> displayed as transparent. However, I would like to display the >>> maximum / minimum value in the color table. >>> >>> I have tried using colorMap_->SetAboveRangeColor() and >>> colorMap_->SetAboveRangeColorOn() (likewise for ...BelowRange...), >>> with no apparent effect. >>> >>> Any advice? >>> >>> I am using VTK 7.1.0. >>> >>> Thanks, >>> >>> Sophonet >>> >> >> _______________________________________________ >> Powered by www.kitware.com [1] >> >> Visit other Kitware open-source projects at >> http://www.kitware.com/opensource/opensource.html [2] >> >> Please keep messages on-topic and check the VTK FAQ at: >> http://www.vtk.org/Wiki/VTK_FAQ [3] >> >> Search the list archives at: http://markmail.org/search/?q=vtkusers >> [4] >> >> Follow this link to subscribe/unsubscribe: >> http://public.kitware.com/mailman/listinfo/vtkusers [5] >> >> >> >> Links: >> ------ >> [1] http://www.kitware.com >> [2] http://www.kitware.com/opensource/opensource.html >> [3] http://www.vtk.org/Wiki/VTK_FAQ >> [4] http://markmail.org/search/?q=vtkusers >> [5] http://public.kitware.com/mailman/listinfo/vtkusers >> > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at http://www.kitware.com/opensou > rce/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: > http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers > -------------- next part -------------- An HTML attachment was scrubbed... URL: From vtk12af6bc42 at kant.sophonet.de Thu Feb 2 14:39:40 2017 From: vtk12af6bc42 at kant.sophonet.de (Sophonet) Date: Thu, 02 Feb 2017 20:39:40 +0100 Subject: [vtkusers] Changing level/window in LUT for ImageSlice: Unwanted clipping effects In-Reply-To: References: <5d536c0cc950a421f3f08be1379c6d2b@srv19.sysproserver.de> Message-ID: <76aac3591158b57dc89c77465586f6ce@srv19.sysproserver.de> Hi David, just for testing, I have picked hardcoded opaque colors (black/white): double aboveColor[4] = { 0, 0, 0, 1 }; double belowColor[4] = { 1, 1, 1, 1 }; colorMap_->SetAboveRangeColor(aboveColor); colorMap_->UseAboveRangeColorOn(); colorMap_->SetBelowRangeColor(belowColor); colorMap_->UseBelowRangeColorOn(); colorMap_->Build(); I have placed this code after initialization of the table and after every SetRange() call, just to be sure. Still the same problem. Sophonet Am 2017-02-02 20:12, schrieb David Gobbi: > Hi Sophonet, > > This code looks very fishy to me: > > colorMap_->GetTableValue(255, aboveColor); > > colorMap_->GetTableValue(0, belowColor); > > You shouldn't call GetTableValue() before you have built the table.? > If you haven't built the table, how do you know what colors are stored > at positions 0 and 255?? They could be (0,0,0,0). > > ?- David > > On Thu, Feb 2, 2017 at 11:51 AM, Sophonet > wrote: > >> Hi David, >> >> here it is (needed to copy a few lines since the functionality is >> part of a class). Note that it contains your work-around twice, >> once, when setting an external colormap, and the second time when >> changing window/level. >> >> Oh, after pasting, it came into my mind that using an external >> color table might be the reason? In this case, I recall, Build() is >> not really needed anyway... >> >> Hope this helps. Thanks for looking into this so quickly, >> >> ? ? ?Sophonet >> >> // Initialization >> vtkSmartPointer colorMap_ = >> vtkSmartPointer::New(); >> vtkSmartPointer imageProperty_ = >> vtkSmartPointer::New(); >> colorMap_->SetNumberOfTableValues(256); >> colorMap_->SetRange(0, 1); >> >> imageProperty_->SetLookupTable(colorMap_); >> imageProperty_->UseLookupTableScalarRangeOn(); >> >> imageSlice_->SetProperty(imageProperty_); >> >> // Setting color map from external RGBA array >> colorMap_->SetTable(colorArray); // please see below how I have set >> up the array... >> double aboveColor[4]; >> double belowColor[4]; >> colorMap_->GetTableValue(255, aboveColor); >> colorMap_->SetAboveRangeColor(aboveColor); >> colorMap_->UseAboveRangeColorOn(); >> colorMap_->GetTableValue(0, belowColor); >> colorMap_->SetBelowRangeColor(belowColor); >> colorMap_->UseBelowRangeColorOn(); >> colorMap_->SetNumberOfTableValues(256); >> colorMap_->Build(); >> >> // Callback for level / window >> double minmax[2]; >> minmax[0] = windowLevel_[1] - 0.5*windowLevel_[0]; >> minmax[1] = windowLevel_[1] + 0.5*windowLevel_[0]; >> colorMap_->SetRange(minmax); >> double aboveColor[4]; >> double belowColor[4]; >> colorMap_->GetTableValue(255, aboveColor); >> colorMap_->SetAboveRangeColor(aboveColor); >> colorMap_->UseAboveRangeColorOn(); >> colorMap_->GetTableValue(0, belowColor); >> colorMap_->SetBelowRangeColor(belowColor); >> colorMap_->UseBelowRangeColorOn(); >> colorMap_->SetNumberOfTableValues(256); >> colorMap_->Build(); >> >> ////////////////////////////////////// >> const unsigned char grayscale[4*256] = { >> 0, 0, 0, 255, 1, 1, 1, 255, >> // you can imagine how things continue. I have other more useful >> arrays for other color scales as well >> // ... >> }; >> >> vtkSmartPointer colorArray = >> vtkSmartPointer::New(); >> newMap->SetNumberOfValues(256); >> newMap->SetNumberOfComponents(4); >> newMap->SetArray(const_cast(grayscale), 4 * 256, >> 1); >> >> Am 2017-02-02 18:51, schrieb David Gobbi: >> Hi Sophonet, >> >> Can you send the exact code that you use to set up the lookup >> table, >> including the call to Build(), so that I can check locally? >> >> ?- David >> >> On Thu, Feb 2, 2017 at 10:42 AM, Sophonet >> wrote: >> >> Well, on my system your proposed change did not work, I still see >> transparent color when LUT clipping occurs, exactly as before. I >> have even copied your lines of your previous posting plus the >> Build() call below the SetRange() callback, in which I am doing >> level/windowing. Not sure why though - I might check again using >> the >> HEAD (I am on 7.1.0 release) >> >> - Sophonet >> >> Am 2017-02-02 18:08, schrieb David Gobbi: >> Okay, here is a very simple work-around for this issue: Just call >> Build() on the table after you have set all the other table >> parameters.? Please let me know if this fixes the issue. >> >> I've submitted a fix for mapper so that it will call Build() >> automatically.? I'm not sure why it didn't do this before. >> >> ?- David >> >> On Thu, Feb 2, 2017 at 8:41 AM, David Gobbi >> wrote: >> >> I've discovered more about this issue.? The Above/Below colors >> will >> work if you call SetNumberOfColors after turning them on: >> >> table->SetBelowRangeColor(1,0,0,1); >> table->SetAboveRangeColor(0,1,0,1); >> table->UseAboveRangeColorOn(); >> table->UseBelowRangeColorOn(); >> table->SetNumberOfColors(256); >> >> I'm still investigating to see why this happens. >> >> ?- David >> >> On Thu, Feb 2, 2017 at 7:20 AM, David Gobbi >> wrote: >> >> Hi Sophonet, >> >> I have confirmed that what you report is true: the >> vtkImageResliceMapper (and vtkImageSliceMapper) seem to ignore the >> AboveRangeColor and the BelowRangeColor.? This is also true for >> the >> current VTK master branch.? My current theory is that the mapper >> clamps the scalars to the range before they go through the lookup >> table.? Hopefully I'll have a fix for this soon. >> >> As a workaround (a inefficient workaround), you can use >> vtkImageMapToColors to apply the lookup table to the image before >> it >> goes to the mapper. >> >> ?- David >> ??? >> >> On Thu, Feb 2, 2017 at 5:10 AM, Sophonet >> wrote: >> Dear list, >> >> for displaying images, I am using vtkImageResliceMapper. For >> changing the colormap, I set a dedicated color map to the >> imageSlice's property (which is a vtkLookupTable) and tell to use >> its scalar range: >> >> colorMap_->SetNumberOfTableValues(256); >> colorMap_->SetRange(0, 1); >> >> imageProperty_->SetLookupTable(colorMap_); >> imageProperty_->UseLookupTableScalarRangeOn(); >> >> Now, when changing level/window interactively with the mouse, I am >> setting the range in the colorMap via >> >> double minmax[2]; >> // set values of minmax correctly >> colorMap_->SetRange(minmax); >> >> The changes are displayed correctly - however, areas in which >> original scalars of the image are clipped, the resulting color is >> displayed as transparent. However, I would like to display the >> maximum / minimum value in the color table. >> >> I have tried using colorMap_->SetAboveRangeColor() and >> colorMap_->SetAboveRangeColorOn() (likewise for ...BelowRange...), >> with no apparent effect. >> >> Any advice? >> >> I am using VTK 7.1.0. >> >> Thanks, >> >> ? ? ?Sophonet >> >> ?_______________________________________________ >> ?Powered by www.kitware.com [1] [1] >> >> ?Visit other Kitware open-source projects at >> http://www.kitware.com/opensource/opensource.html [2] [2] >> >> ?Please keep messages on-topic and check the VTK FAQ at: >> http://www.vtk.org/Wiki/VTK_FAQ [3] [3] >> >> ?Search the list archives at: >> http://markmail.org/search/?q=vtkusers [4] >> [4] >> >> ?Follow this link to subscribe/unsubscribe: >> ?http://public.kitware.com/mailman/listinfo/vtkusers [5] [5] >> >> Links: >> ------ >> [1] http://www.kitware.com [1] >> [2] http://www.kitware.com/opensource/opensource.html [2] >> [3] http://www.vtk.org/Wiki/VTK_FAQ [3] >> [4] http://markmail.org/search/?q=vtkusers [4] >> [5] http://public.kitware.com/mailman/listinfo/vtkusers [5] > _______________________________________________ > Powered by www.kitware.com [1] > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html [2] > > Please keep messages on-topic and check the VTK FAQ at: > http://www.vtk.org/Wiki/VTK_FAQ [3] > > Search the list archives at: http://markmail.org/search/?q=vtkusers > [4] > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers [5] > > > > Links: > ------ > [1] http://www.kitware.com > [2] http://www.kitware.com/opensource/opensource.html > [3] http://www.vtk.org/Wiki/VTK_FAQ > [4] http://markmail.org/search/?q=vtkusers > [5] http://public.kitware.com/mailman/listinfo/vtkusers From vtk12af6bc42 at kant.sophonet.de Thu Feb 2 17:56:41 2017 From: vtk12af6bc42 at kant.sophonet.de (Sophonet) Date: Thu, 02 Feb 2017 23:56:41 +0100 Subject: [vtkusers] Changing level/window in LUT for ImageSlice: Unwanted clipping effects In-Reply-To: References: <5d536c0cc950a421f3f08be1379c6d2b@srv19.sysproserver.de> Message-ID: <3d6ae745032dc55f285ecdc126d147fa@srv19.sysproserver.de> David, do you have a test program / test code that works on your end (preferrably with an external array similar to my setup)? I could try here and further trace down the problem I have. Python code would be fine as well. Thanks, Sophonet Am 2017-02-02 20:12, schrieb David Gobbi: > Hi Sophonet, > > This code looks very fishy to me: > > colorMap_->GetTableValue(255, aboveColor); > > colorMap_->GetTableValue(0, belowColor); > > You shouldn't call GetTableValue() before you have built the table.? > If you haven't built the table, how do you know what colors are stored > at positions 0 and 255?? They could be (0,0,0,0). > > ?- David > > On Thu, Feb 2, 2017 at 11:51 AM, Sophonet > wrote: > >> Hi David, >> >> here it is (needed to copy a few lines since the functionality is >> part of a class). Note that it contains your work-around twice, >> once, when setting an external colormap, and the second time when >> changing window/level. >> >> Oh, after pasting, it came into my mind that using an external >> color table might be the reason? In this case, I recall, Build() is >> not really needed anyway... >> >> Hope this helps. Thanks for looking into this so quickly, >> >> ? ? ?Sophonet >> >> // Initialization >> vtkSmartPointer colorMap_ = >> vtkSmartPointer::New(); >> vtkSmartPointer imageProperty_ = >> vtkSmartPointer::New(); >> colorMap_->SetNumberOfTableValues(256); >> colorMap_->SetRange(0, 1); >> >> imageProperty_->SetLookupTable(colorMap_); >> imageProperty_->UseLookupTableScalarRangeOn(); >> >> imageSlice_->SetProperty(imageProperty_); >> >> // Setting color map from external RGBA array >> colorMap_->SetTable(colorArray); // please see below how I have set >> up the array... >> double aboveColor[4]; >> double belowColor[4]; >> colorMap_->GetTableValue(255, aboveColor); >> colorMap_->SetAboveRangeColor(aboveColor); >> colorMap_->UseAboveRangeColorOn(); >> colorMap_->GetTableValue(0, belowColor); >> colorMap_->SetBelowRangeColor(belowColor); >> colorMap_->UseBelowRangeColorOn(); >> colorMap_->SetNumberOfTableValues(256); >> colorMap_->Build(); >> >> // Callback for level / window >> double minmax[2]; >> minmax[0] = windowLevel_[1] - 0.5*windowLevel_[0]; >> minmax[1] = windowLevel_[1] + 0.5*windowLevel_[0]; >> colorMap_->SetRange(minmax); >> double aboveColor[4]; >> double belowColor[4]; >> colorMap_->GetTableValue(255, aboveColor); >> colorMap_->SetAboveRangeColor(aboveColor); >> colorMap_->UseAboveRangeColorOn(); >> colorMap_->GetTableValue(0, belowColor); >> colorMap_->SetBelowRangeColor(belowColor); >> colorMap_->UseBelowRangeColorOn(); >> colorMap_->SetNumberOfTableValues(256); >> colorMap_->Build(); >> >> ////////////////////////////////////// >> const unsigned char grayscale[4*256] = { >> 0, 0, 0, 255, 1, 1, 1, 255, >> // you can imagine how things continue. I have other more useful >> arrays for other color scales as well >> // ... >> }; >> >> vtkSmartPointer colorArray = >> vtkSmartPointer::New(); >> newMap->SetNumberOfValues(256); >> newMap->SetNumberOfComponents(4); >> newMap->SetArray(const_cast(grayscale), 4 * 256, >> 1); >> >> Am 2017-02-02 18:51, schrieb David Gobbi: >> Hi Sophonet, >> >> Can you send the exact code that you use to set up the lookup >> table, >> including the call to Build(), so that I can check locally? >> >> ?- David >> >> On Thu, Feb 2, 2017 at 10:42 AM, Sophonet >> wrote: >> >> Well, on my system your proposed change did not work, I still see >> transparent color when LUT clipping occurs, exactly as before. I >> have even copied your lines of your previous posting plus the >> Build() call below the SetRange() callback, in which I am doing >> level/windowing. Not sure why though - I might check again using >> the >> HEAD (I am on 7.1.0 release) >> >> - Sophonet >> >> Am 2017-02-02 18:08, schrieb David Gobbi: >> Okay, here is a very simple work-around for this issue: Just call >> Build() on the table after you have set all the other table >> parameters.? Please let me know if this fixes the issue. >> >> I've submitted a fix for mapper so that it will call Build() >> automatically.? I'm not sure why it didn't do this before. >> >> ?- David >> >> On Thu, Feb 2, 2017 at 8:41 AM, David Gobbi >> wrote: >> >> I've discovered more about this issue.? The Above/Below colors >> will >> work if you call SetNumberOfColors after turning them on: >> >> table->SetBelowRangeColor(1,0,0,1); >> table->SetAboveRangeColor(0,1,0,1); >> table->UseAboveRangeColorOn(); >> table->UseBelowRangeColorOn(); >> table->SetNumberOfColors(256); >> >> I'm still investigating to see why this happens. >> >> ?- David >> >> On Thu, Feb 2, 2017 at 7:20 AM, David Gobbi >> wrote: >> >> Hi Sophonet, >> >> I have confirmed that what you report is true: the >> vtkImageResliceMapper (and vtkImageSliceMapper) seem to ignore the >> AboveRangeColor and the BelowRangeColor.? This is also true for >> the >> current VTK master branch.? My current theory is that the mapper >> clamps the scalars to the range before they go through the lookup >> table.? Hopefully I'll have a fix for this soon. >> >> As a workaround (a inefficient workaround), you can use >> vtkImageMapToColors to apply the lookup table to the image before >> it >> goes to the mapper. >> >> ?- David >> ??? >> >> On Thu, Feb 2, 2017 at 5:10 AM, Sophonet >> wrote: >> Dear list, >> >> for displaying images, I am using vtkImageResliceMapper. For >> changing the colormap, I set a dedicated color map to the >> imageSlice's property (which is a vtkLookupTable) and tell to use >> its scalar range: >> >> colorMap_->SetNumberOfTableValues(256); >> colorMap_->SetRange(0, 1); >> >> imageProperty_->SetLookupTable(colorMap_); >> imageProperty_->UseLookupTableScalarRangeOn(); >> >> Now, when changing level/window interactively with the mouse, I am >> setting the range in the colorMap via >> >> double minmax[2]; >> // set values of minmax correctly >> colorMap_->SetRange(minmax); >> >> The changes are displayed correctly - however, areas in which >> original scalars of the image are clipped, the resulting color is >> displayed as transparent. However, I would like to display the >> maximum / minimum value in the color table. >> >> I have tried using colorMap_->SetAboveRangeColor() and >> colorMap_->SetAboveRangeColorOn() (likewise for ...BelowRange...), >> with no apparent effect. >> >> Any advice? >> >> I am using VTK 7.1.0. >> >> Thanks, >> >> ? ? ?Sophonet >> >> ?_______________________________________________ >> ?Powered by www.kitware.com [1] [1] >> >> ?Visit other Kitware open-source projects at >> http://www.kitware.com/opensource/opensource.html [2] [2] >> >> ?Please keep messages on-topic and check the VTK FAQ at: >> http://www.vtk.org/Wiki/VTK_FAQ [3] [3] >> >> ?Search the list archives at: >> http://markmail.org/search/?q=vtkusers [4] >> [4] >> >> ?Follow this link to subscribe/unsubscribe: >> ?http://public.kitware.com/mailman/listinfo/vtkusers [5] [5] >> >> Links: >> ------ >> [1] http://www.kitware.com [1] >> [2] http://www.kitware.com/opensource/opensource.html [2] >> [3] http://www.vtk.org/Wiki/VTK_FAQ [3] >> [4] http://markmail.org/search/?q=vtkusers [4] >> [5] http://public.kitware.com/mailman/listinfo/vtkusers [5] > _______________________________________________ > Powered by www.kitware.com [1] > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html [2] > > Please keep messages on-topic and check the VTK FAQ at: > http://www.vtk.org/Wiki/VTK_FAQ [3] > > Search the list archives at: http://markmail.org/search/?q=vtkusers > [4] > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers [5] > > > > Links: > ------ > [1] http://www.kitware.com > [2] http://www.kitware.com/opensource/opensource.html > [3] http://www.vtk.org/Wiki/VTK_FAQ > [4] http://markmail.org/search/?q=vtkusers > [5] http://public.kitware.com/mailman/listinfo/vtkusers From david.gobbi at gmail.com Thu Feb 2 19:24:04 2017 From: david.gobbi at gmail.com (David Gobbi) Date: Thu, 2 Feb 2017 17:24:04 -0700 Subject: [vtkusers] Changing level/window in LUT for ImageSlice: Unwanted clipping effects In-Reply-To: <3d6ae745032dc55f285ecdc126d147fa@srv19.sysproserver.de> References: <5d536c0cc950a421f3f08be1379c6d2b@srv19.sysproserver.de> <3d6ae745032dc55f285ecdc126d147fa@srv19.sysproserver.de> Message-ID: Hi Sophonet, I've created a bug report that includes a test program: https://gitlab.kitware.com/vtk/vtk/issues/16966 The program shows the difference between calling SetTableValue() for each color (which seems to work fine), versus calling SetTable() with a vtkUnsignedCharArray (which results in the undesired transparency). - David On Thu, Feb 2, 2017 at 3:56 PM, Sophonet wrote: > David, do you have a test program / test code that works on your end > (preferrably with an external array similar to my setup)? I could try here > and further trace down the problem I have. Python code would be fine as > well. > > Thanks, > > Sophonet > > > > Am 2017-02-02 20:12, schrieb David Gobbi: > >> Hi Sophonet, >> >> This code looks very fishy to me: >> >> colorMap_->GetTableValue(255, aboveColor); >> >> colorMap_->GetTableValue(0, belowColor); >> >> You shouldn't call GetTableValue() before you have built the table. >> If you haven't built the table, how do you know what colors are stored >> at positions 0 and 255? They could be (0,0,0,0). >> >> - David >> >> On Thu, Feb 2, 2017 at 11:51 AM, Sophonet >> wrote: >> >> Hi David, >>> >>> here it is (needed to copy a few lines since the functionality is >>> part of a class). Note that it contains your work-around twice, >>> once, when setting an external colormap, and the second time when >>> changing window/level. >>> >>> Oh, after pasting, it came into my mind that using an external >>> color table might be the reason? In this case, I recall, Build() is >>> not really needed anyway... >>> >>> Hope this helps. Thanks for looking into this so quickly, >>> >>> Sophonet >>> >>> // Initialization >>> vtkSmartPointer colorMap_ = >>> vtkSmartPointer::New(); >>> vtkSmartPointer imageProperty_ = >>> vtkSmartPointer::New(); >>> colorMap_->SetNumberOfTableValues(256); >>> colorMap_->SetRange(0, 1); >>> >>> imageProperty_->SetLookupTable(colorMap_); >>> imageProperty_->UseLookupTableScalarRangeOn(); >>> >>> imageSlice_->SetProperty(imageProperty_); >>> >>> // Setting color map from external RGBA array >>> colorMap_->SetTable(colorArray); // please see below how I have set >>> up the array... >>> double aboveColor[4]; >>> double belowColor[4]; >>> colorMap_->GetTableValue(255, aboveColor); >>> colorMap_->SetAboveRangeColor(aboveColor); >>> colorMap_->UseAboveRangeColorOn(); >>> colorMap_->GetTableValue(0, belowColor); >>> colorMap_->SetBelowRangeColor(belowColor); >>> colorMap_->UseBelowRangeColorOn(); >>> colorMap_->SetNumberOfTableValues(256); >>> colorMap_->Build(); >>> >>> // Callback for level / window >>> double minmax[2]; >>> minmax[0] = windowLevel_[1] - 0.5*windowLevel_[0]; >>> minmax[1] = windowLevel_[1] + 0.5*windowLevel_[0]; >>> colorMap_->SetRange(minmax); >>> double aboveColor[4]; >>> double belowColor[4]; >>> colorMap_->GetTableValue(255, aboveColor); >>> colorMap_->SetAboveRangeColor(aboveColor); >>> colorMap_->UseAboveRangeColorOn(); >>> colorMap_->GetTableValue(0, belowColor); >>> colorMap_->SetBelowRangeColor(belowColor); >>> colorMap_->UseBelowRangeColorOn(); >>> colorMap_->SetNumberOfTableValues(256); >>> colorMap_->Build(); >>> >>> ////////////////////////////////////// >>> const unsigned char grayscale[4*256] = { >>> 0, 0, 0, 255, 1, 1, 1, 255, >>> // you can imagine how things continue. I have other more useful >>> arrays for other color scales as well >>> // ... >>> }; >>> >>> vtkSmartPointer colorArray = >>> vtkSmartPointer::New(); >>> newMap->SetNumberOfValues(256); >>> newMap->SetNumberOfComponents(4); >>> newMap->SetArray(const_cast(grayscale), 4 * 256, >>> 1); >>> >>> Am 2017-02-02 18:51, schrieb David Gobbi: >>> Hi Sophonet, >>> >>> Can you send the exact code that you use to set up the lookup >>> table, >>> including the call to Build(), so that I can check locally? >>> >>> - David >>> >>> On Thu, Feb 2, 2017 at 10:42 AM, Sophonet >>> wrote: >>> >>> Well, on my system your proposed change did not work, I still see >>> transparent color when LUT clipping occurs, exactly as before. I >>> have even copied your lines of your previous posting plus the >>> Build() call below the SetRange() callback, in which I am doing >>> level/windowing. Not sure why though - I might check again using >>> the >>> HEAD (I am on 7.1.0 release) >>> >>> - Sophonet >>> >>> Am 2017-02-02 18:08, schrieb David Gobbi: >>> Okay, here is a very simple work-around for this issue: Just call >>> Build() on the table after you have set all the other table >>> parameters. Please let me know if this fixes the issue. >>> >>> I've submitted a fix for mapper so that it will call Build() >>> automatically. I'm not sure why it didn't do this before. >>> >>> - David >>> >>> On Thu, Feb 2, 2017 at 8:41 AM, David Gobbi >>> wrote: >>> >>> I've discovered more about this issue. The Above/Below colors >>> will >>> work if you call SetNumberOfColors after turning them on: >>> >>> table->SetBelowRangeColor(1,0,0,1); >>> table->SetAboveRangeColor(0,1,0,1); >>> table->UseAboveRangeColorOn(); >>> table->UseBelowRangeColorOn(); >>> table->SetNumberOfColors(256); >>> >>> I'm still investigating to see why this happens. >>> >>> - David >>> >>> On Thu, Feb 2, 2017 at 7:20 AM, David Gobbi >>> wrote: >>> >>> Hi Sophonet, >>> >>> I have confirmed that what you report is true: the >>> vtkImageResliceMapper (and vtkImageSliceMapper) seem to ignore the >>> AboveRangeColor and the BelowRangeColor. This is also true for >>> the >>> current VTK master branch. My current theory is that the mapper >>> clamps the scalars to the range before they go through the lookup >>> table. Hopefully I'll have a fix for this soon. >>> >>> As a workaround (a inefficient workaround), you can use >>> vtkImageMapToColors to apply the lookup table to the image before >>> it >>> goes to the mapper. >>> >>> - David >>> >>> >>> On Thu, Feb 2, 2017 at 5:10 AM, Sophonet >>> wrote: >>> Dear list, >>> >>> for displaying images, I am using vtkImageResliceMapper. For >>> changing the colormap, I set a dedicated color map to the >>> imageSlice's property (which is a vtkLookupTable) and tell to use >>> its scalar range: >>> >>> colorMap_->SetNumberOfTableValues(256); >>> colorMap_->SetRange(0, 1); >>> >>> imageProperty_->SetLookupTable(colorMap_); >>> imageProperty_->UseLookupTableScalarRangeOn(); >>> >>> Now, when changing level/window interactively with the mouse, I am >>> setting the range in the colorMap via >>> >>> double minmax[2]; >>> // set values of minmax correctly >>> colorMap_->SetRange(minmax); >>> >>> The changes are displayed correctly - however, areas in which >>> original scalars of the image are clipped, the resulting color is >>> displayed as transparent. However, I would like to display the >>> maximum / minimum value in the color table. >>> >>> I have tried using colorMap_->SetAboveRangeColor() and >>> colorMap_->SetAboveRangeColorOn() (likewise for ...BelowRange...), >>> with no apparent effect. >>> >>> Any advice? >>> >>> I am using VTK 7.1.0. >>> >>> Thanks, >>> >>> Sophonet >>> >> -------------- next part -------------- An HTML attachment was scrubbed... URL: From ninarock at list.ru Fri Feb 3 06:35:28 2017 From: ninarock at list.ru (Butterfly) Date: Fri, 3 Feb 2017 04:35:28 -0700 (MST) Subject: [vtkusers] Unicode support for Axis Titles and Labels in vtkCubeAxesActor2D Message-ID: <1486121728253-5742039.post@n5.nabble.com> Hello everybody, I successfully visualize unicode text using other vtk actors, but can not do the same with vtkCubeAxesActor2D. I see the symbols, but they are not correct. Is this not implemented yet? vtkSmartPointer axes = vtkSmartPointer::New(); axes->GetAxisTitleTextProperty()->SetFontFamily(VTK_FONT_FILE); axes->GetAxisTitleTextProperty()->SetFontFile(unicodeFontFilePath); axes->GetAxisLabelTextProperty()->SetFontFamily(VTK_FONT_FILE); axes->GetAxisLabelTextProperty()->SetFontFile(unicodeFontFilePath); axes->SetXLabel(unicodeString); Many thanks in advance! -- View this message in context: http://vtk.1045678.n5.nabble.com/Unicode-support-for-Axis-Titles-and-Labels-in-vtkCubeAxesActor2D-tp5742039.html Sent from the VTK - Users mailing list archive at Nabble.com. From tevain at telecom-paristech.fr Fri Feb 3 07:58:17 2017 From: tevain at telecom-paristech.fr (Timothee Evain) Date: Fri, 3 Feb 2017 13:58:17 +0100 (CET) Subject: [vtkusers] Widget interaction in multiple viewports In-Reply-To: <1530326673.14904090.1486125725095.JavaMail.zimbra@enst.fr> Message-ID: <547318548.14914572.1486126697588.JavaMail.zimbra@enst.fr> Hello everybody, I want to use widgets in a multiple viewport/renderer configuration. Alas, when widgets are set up in any other renderer than the first in term of world coordinates, it is not possible to interact with them anymore. I can't find the reason of this behavior, and need some insight on what's going on since I'm clueless for the moment. Here a minimal working example with 2 renderers and 2 button widgets, only one working (I use VTK 6.3.0): vtkSmartPointer Ren1 = vtkSmartPointer::New(); vtkSmartPointer Ren2 = vtkSmartPointer::New(); vtkSmartPointer renwin = vtkSmartPointer::New(); vtkSmartPointer interact = vtkSmartPointer::New(); vtkSmartPointer Butrep1 = vtkSmartPointer::New(); vtkSmartPointer Butwid1 = vtkSmartPointer::New(); vtkSmartPointer Butrep2 = vtkSmartPointer::New(); vtkSmartPointer Butwid2 = vtkSmartPointer::New(); //Generate image texture vtkSmartPointer TextureOff = vtkSmartPointer::New(); vtkSmartPointer TextureOn = vtkSmartPointer::New(); int extent[6] = { 0, 50, 0, 50, 0, 0 }; TextureOff->SetExtent(extent); TextureOff->AllocateScalars(VTK_UNSIGNED_CHAR, 3); TextureOn->SetExtent(extent); TextureOn->AllocateScalars(VTK_UNSIGNED_CHAR, 3); for (int i = 0; i <= extent[1]; i++) { for (int j = 0; j <= extent[3]; j++) { TextureOff->SetScalarComponentFromFloat(i, j, 0, 0, 255); TextureOff->SetScalarComponentFromFloat(i, j, 0, 1, 255); TextureOff->SetScalarComponentFromFloat(i, j, 0, 2, 255); if (i <= 10 || i >= 40 || j <= 10 || j >= 40) { TextureOn->SetScalarComponentFromFloat(i, j, 0, 0, 255); TextureOn->SetScalarComponentFromFloat(i, j, 0, 1, 255); TextureOn->SetScalarComponentFromFloat(i, j, 0, 2, 255); } else { TextureOn->SetScalarComponentFromFloat(i, j, 0, 0, 50); TextureOn->SetScalarComponentFromFloat(i, j, 0, 1, 255); TextureOn->SetScalarComponentFromFloat(i, j, 0, 2, 50); } } } Butrep1->SetNumberOfStates(2); Butrep1->SetDragable(false); Butrep1->SetButtonTexture(0, TextureOff); Butrep1->SetButtonTexture(1, TextureOn); double bounds[6] = { 50, 70, 50, 70, 0, 0 }; Butrep1->PlaceWidget(bounds); Butwid1->SetCurrentRenderer(Ren1); Butwid1->SetInteractor(interact); Butwid1->SetRepresentation(Butrep1); Butwid1->EnabledOn(); Butrep2->SetNumberOfStates(2); Butrep2->SetDragable(false); Butrep2->SetButtonTexture(0, TextureOff); Butrep2->SetButtonTexture(1, TextureOn); double bounds2[6] = { 50, 70, 50, 70, 0, 0 }; Butrep2->PlaceWidget(bounds2); Butwid2->SetCurrentRenderer(Ren2); Butwid2->SetInteractor(interact); Butwid2->SetRepresentation(Butrep2); Butwid2->EnabledOn(); Ren1->SetRenderWindow(renwin); Ren1->SetBackground(0.7, 0.7, 0.7); Ren1->SetViewport(0, 0, 0.5, 1); Ren2->SetRenderWindow(renwin); Ren2->SetBackground(0.6, 0.6, 0.6); Ren2->SetViewport(0.5, 0, 1, 1); interact->SetRenderWindow(renwin); renwin->SetInteractor(interact); renwin->AddRenderer(Ren1); renwin->AddRenderer(Ren2); renwin->SetSize(800, 600); renwin->Render(); interact->Start(); From geeta_kapse at yahoo.com Fri Feb 3 09:11:33 2017 From: geeta_kapse at yahoo.com (Geeta) Date: Fri, 3 Feb 2017 07:11:33 -0700 (MST) Subject: [vtkusers] Hide backface Silhouettes returned by vtkPolyDataSilhouette Message-ID: <1486131093934-5742041.post@n5.nabble.com> Hi I have used "vtkPolyDataSilhouette" for Polydata and this returns the Silhouettes of whole polydata . I want to show only for the front side and hide / remove Silhouettes of the backfaces. Can anyone help? Even if the poly data is Transparent I want to show the Silhouettes which are shown when poly data is opaque. no Silhouettes from back faces. -- View this message in context: http://vtk.1045678.n5.nabble.com/Hide-backface-Silhouettes-returned-by-vtkPolyDataSilhouette-tp5742041.html Sent from the VTK - Users mailing list archive at Nabble.com. From luis.costa at vektore.com Fri Feb 3 11:21:42 2017 From: luis.costa at vektore.com (Luis Costa) Date: Fri, 3 Feb 2017 14:21:42 -0200 Subject: [vtkusers] Exception at centralWidget (Qt Project with VTK) Message-ID: <000001d27e39$9d8e4cb0$d8aae610$@vektore.com> Hello everyone, I have a problem with a Qt project on VS 2013. I am using Qt with VTK and if I declare an extra variable, of any kind, (for example, if I declare the double* orientation) in my header file, it throws me this exception. I started a new project but the error persists. Any help you can get me to solve this problem? This is my header file: //#pragma once #ifndef _ONS_TOOLS_MESH_H_ #define _ONS_TOOLS_MESH_H_ #include #include "ui_ONS_Tools_Mesh.h" #include "vtkPlaneSource.h" #include "vtkActor.h" #include "vtkAxes.h" #include "vtkAxesActor.h" #include "vtkTransform.h" #include "vtkSmartPointer.h" // Required for smart pointer internal ivars. //#define VTK_CREATE(type, name) \ //vtkSmartPointer name = vtkSmartPointer::New() class ONS_Tools_Mesh : public QMainWindow { Q_OBJECT public: ONS_Tools_Mesh(QWidget *parent = Q_NULLPTR); private: Ui::ONS_Tools_MeshClass *ui; double* origin; //double* orientation; vtkSmartPointer planeSourceOne; vtkSmartPointer planeSourceTwo; vtkSmartPointer planeActorOne; vtkSmartPointer planeActorTwo; //vtkSmartPointer axesActor; private slots: virtual void slotScale(double value); virtual void slotIntervals(int value); virtual void slotPositionX(double value); virtual void slotPositionY(double value); virtual void slotPositionZ(double value); virtual void slotInc(double value); virtual void slotOrientationXY(); virtual void slotOrientationYZ(); virtual void slotOrientationZX(); virtual void slotResetOrientation(); virtual void slotRender(int state); virtual void slotResetOrigin(); }; #endif Luis Costa, Consultant, Programmer Vektore Exploration Consulting Corporation http://lnked.in/luisantoniocosta luis.costa at vektore.com www.vektore.com --- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: Capture2.JPG Type: image/jpeg Size: 95525 bytes Desc: not available URL: From david.lonie at kitware.com Fri Feb 3 11:37:57 2017 From: david.lonie at kitware.com (David Lonie) Date: Fri, 3 Feb 2017 11:37:57 -0500 Subject: [vtkusers] Unicode support for Axis Titles and Labels in vtkCubeAxesActor2D In-Reply-To: <1486121728253-5742039.post@n5.nabble.com> References: <1486121728253-5742039.post@n5.nabble.com> Message-ID: Unfortunately vtkCubeAxesActor2D still uses vtkVectorText internally by default, which ignores the font family entirely. So custom font files will not be used with it. There is an experimental feature to use a vtkTextActor3D (which supports custom fonts) in place of vtkVectorText that may work for you, but I'm not sure if it's in a usable state at this point. You can try it by getting the 3 vtkAxisActor2D instances out of the cube axes and calling UseTextActor3DOn for them: cubeAxes2D->GetXAxisActor2D()->SetUseTextActor3D(1); cubeAxes2D->GetYAxisActor2D()->SetUseTextActor3D(1); cubeAxes2D->GetZAxisActor2D()->SetUseTextActor3D(1); It looks like the Use2DMode setting on the axis actors would use a vtkTextActor, which supports custom fonts as well. Hopefully one of these will work for you. HTH, Dave On Fri, Feb 3, 2017 at 6:35 AM, Butterfly via vtkusers wrote: > Hello everybody, > > I successfully visualize unicode text using other vtk actors, but can not do > the same with vtkCubeAxesActor2D. I see the symbols, but they are not > correct. Is this not implemented yet? > > vtkSmartPointer axes = > vtkSmartPointer::New(); > > axes->GetAxisTitleTextProperty()->SetFontFamily(VTK_FONT_FILE); > axes->GetAxisTitleTextProperty()->SetFontFile(unicodeFontFilePath); > > axes->GetAxisLabelTextProperty()->SetFontFamily(VTK_FONT_FILE); > axes->GetAxisLabelTextProperty()->SetFontFile(unicodeFontFilePath); > > axes->SetXLabel(unicodeString); > > Many thanks in advance! > > > > -- > View this message in context: http://vtk.1045678.n5.nabble.com/Unicode-support-for-Axis-Titles-and-Labels-in-vtkCubeAxesActor2D-tp5742039.html > Sent from the VTK - Users mailing list archive at Nabble.com. > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers From cory.quammen at kitware.com Fri Feb 3 11:46:31 2017 From: cory.quammen at kitware.com (Cory Quammen) Date: Fri, 3 Feb 2017 11:46:31 -0500 Subject: [vtkusers] Exception at centralWidget (Qt Project with VTK) In-Reply-To: <000001d27e39$9d8e4cb0$d8aae610$@vektore.com> References: <000001d27e39$9d8e4cb0$d8aae610$@vektore.com> Message-ID: I'm not sure this is a VTK-related problem, but the nature of the exception should make it not too hard to track down. Your ONS_Tools_Mesh object is NULL. Are you saying it is not NULL when you do not define any additional member variables? Where is the ONS_Tools_Mesh object being allocated? - Cory On Fri, Feb 3, 2017 at 11:21 AM, Luis Costa wrote: > Hello everyone, > > > > I have a problem with a Qt project on VS 2013. I am using Qt with VTK and > if I declare an extra variable, of any kind, (for example, if I declare the > double* orientation) in my header file, it throws me this exception. I > started a new project but the error persists. Any help you can get me to > solve this problem? > > > > This is my header file: > > > > //#pragma once > > > > #ifndef _ONS_TOOLS_MESH_H_ > > #define _ONS_TOOLS_MESH_H_ > > > > #include > > #include "ui_ONS_Tools_Mesh.h" > > > > #include "vtkPlaneSource.h" > > #include "vtkActor.h" > > #include "vtkAxes.h" > > #include "vtkAxesActor.h" > > #include "vtkTransform.h" > > #include "vtkSmartPointer.h" // Required for smart pointer internal > ivars. > > > > //#define VTK_CREATE(type, name) \ > > //vtkSmartPointer name = vtkSmartPointer::New() > > > > class ONS_Tools_Mesh : public QMainWindow > > { > > Q_OBJECT > > > > public: > > > > ONS_Tools_Mesh(QWidget *parent = Q_NULLPTR); > > > > private: > > > > Ui::ONS_Tools_MeshClass *ui; > > > > double* origin; > > //double* orientation; > > > > vtkSmartPointer planeSourceOne; > > vtkSmartPointer planeSourceTwo; > > vtkSmartPointer planeActorOne; > > vtkSmartPointer planeActorTwo; > > //vtkSmartPointer axesActor; > > > > private slots: > > > > virtual void slotScale(double value); > > virtual void slotIntervals(int value); > > virtual void slotPositionX(double value); > > virtual void slotPositionY(double value); > > virtual void slotPositionZ(double value); > > virtual void slotInc(double value); > > virtual void slotOrientationXY(); > > virtual void slotOrientationYZ(); > > virtual void slotOrientationZX(); > > virtual void slotResetOrientation(); > > virtual void slotRender(int state); > > virtual void slotResetOrigin(); > > }; > > > > #endif > > > > *Luis Costa*, > > Consultant, Programmer > > Vektore Exploration Consulting Corporation > > http://lnked.in/luisantoniocosta > > luis.costa at vektore.com > > www.vektore.com > > > > > ------------------------------ > [image: Avast logo] > > > This email has been checked for viruses by Avast antivirus software. > www.avast.com > > > > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at http://www.kitware.com/ > opensource/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: > http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers > > -- Cory Quammen Staff R&D Engineer Kitware, Inc. -------------- next part -------------- An HTML attachment was scrubbed... URL: From luis.costa at vektore.com Fri Feb 3 12:02:01 2017 From: luis.costa at vektore.com (Luis Costa) Date: Fri, 3 Feb 2017 15:02:01 -0200 Subject: [vtkusers] RES: Exception at centralWidget (Qt Project with VTK) In-Reply-To: References: <000001d27e39$9d8e4cb0$d8aae610$@vektore.com> Message-ID: <000d01d27e3f$4015b6d0$c0412470$@vektore.com> The ONS_Tools_Mesh object is being allocated in a constructor in a cpp file. The problem is so bizarre that I can declare any extra functions on the private slots, but I cannot declare any public or private variables that this exception is throw. Right now what I am doing is declaring them as globals before the constructor on the cpp file, but that is not the most elegant way? De: Cory Quammen [mailto:cory.quammen at kitware.com] Enviada em: Friday, February 3, 2017 2:47 PM Para: Luis Costa Cc: vtkusers at vtk.org Assunto: Re: [vtkusers] Exception at centralWidget (Qt Project with VTK) I'm not sure this is a VTK-related problem, but the nature of the exception should make it not too hard to track down. Your ONS_Tools_Mesh object is NULL. Are you saying it is not NULL when you do not define any additional member variables? Where is the ONS_Tools_Mesh object being allocated? - Cory On Fri, Feb 3, 2017 at 11:21 AM, Luis Costa > wrote: Hello everyone, I have a problem with a Qt project on VS 2013. I am using Qt with VTK and if I declare an extra variable, of any kind, (for example, if I declare the double* orientation) in my header file, it throws me this exception. I started a new project but the error persists. Any help you can get me to solve this problem? This is my header file: //#pragma once #ifndef _ONS_TOOLS_MESH_H_ #define _ONS_TOOLS_MESH_H_ #include #include "ui_ONS_Tools_Mesh.h" #include "vtkPlaneSource.h" #include "vtkActor.h" #include "vtkAxes.h" #include "vtkAxesActor.h" #include "vtkTransform.h" #include "vtkSmartPointer.h" // Required for smart pointer internal ivars. //#define VTK_CREATE(type, name) \ //vtkSmartPointer name = vtkSmartPointer::New() class ONS_Tools_Mesh : public QMainWindow { Q_OBJECT public: ONS_Tools_Mesh(QWidget *parent = Q_NULLPTR); private: Ui::ONS_Tools_MeshClass *ui; double* origin; //double* orientation; vtkSmartPointer planeSourceOne; vtkSmartPointer planeSourceTwo; vtkSmartPointer planeActorOne; vtkSmartPointer planeActorTwo; //vtkSmartPointer axesActor; private slots: virtual void slotScale(double value); virtual void slotIntervals(int value); virtual void slotPositionX(double value); virtual void slotPositionY(double value); virtual void slotPositionZ(double value); virtual void slotInc(double value); virtual void slotOrientationXY(); virtual void slotOrientationYZ(); virtual void slotOrientationZX(); virtual void slotResetOrientation(); virtual void slotRender(int state); virtual void slotResetOrigin(); }; #endif Luis Costa, Consultant, Programmer Vektore Exploration Consulting Corporation http://lnked.in/luisantoniocosta luis.costa at vektore.com www.vektore.com _____ This email has been checked for viruses by Avast antivirus software. www.avast.com _______________________________________________ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages on-topic and check the VTK FAQ at: http://www.vtk.org/Wiki/VTK_FAQ Search the list archives at: http://markmail.org/search/?q=vtkusers Follow this link to subscribe/unsubscribe: http://public.kitware.com/mailman/listinfo/vtkusers -- Cory Quammen Staff R&D Engineer Kitware, Inc. --- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: ~WRD000.jpg Type: image/jpeg Size: 823 bytes Desc: not available URL: From luis.vieira at vektore.com Fri Feb 3 12:09:50 2017 From: luis.vieira at vektore.com (Luis Vieira) Date: Fri, 3 Feb 2017 12:09:50 -0500 Subject: [vtkusers] vtk3DWidget vs VTK 7.0/VTK 7.1 Message-ID: <9fac01d27e40$55114e90$ff33ebb0$@vektore.com> Hello vtkusers, There are anybody that gotten to build vtk3DWidget against VTK 7.0 using CMAKE? Which module I could set on CMAKE to get this component (vtk3DWidget) library? Thank you very much for any help, Luis Vieira, Consultant, Software Engineer Vektore Exploration Consulting Corporation ca.linkedin.com/in/joaoluisvieira luis.vieira at vektore.com www.vektore.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From cory.quammen at kitware.com Fri Feb 3 13:24:31 2017 From: cory.quammen at kitware.com (Cory Quammen) Date: Fri, 3 Feb 2017 13:24:31 -0500 Subject: [vtkusers] Exception at centralWidget (Qt Project with VTK) In-Reply-To: <000d01d27e3f$4015b6d0$c0412470$@vektore.com> References: <000001d27e39$9d8e4cb0$d8aae610$@vektore.com> <000d01d27e3f$4015b6d0$c0412470$@vektore.com> Message-ID: It sounds like maybe compilation units dependent on your header file are not being recompiled, or something like that. Cory On Fri, Feb 3, 2017 at 12:02 PM, Luis Costa wrote: > The ONS_Tools_Mesh object is being allocated in a constructor in a cpp > file. The problem is so bizarre that I can declare any extra functions on > the private slots, but I cannot declare any public or private variables > that this exception is throw. Right now what I am doing is declaring them > as globals before the constructor on the cpp file, but that is not the most > elegant way? > > > > *De:* Cory Quammen [mailto:cory.quammen at kitware.com] > *Enviada em:* Friday, February 3, 2017 2:47 PM > *Para:* Luis Costa > *Cc:* vtkusers at vtk.org > *Assunto:* Re: [vtkusers] Exception at centralWidget (Qt Project with VTK) > > > > I'm not sure this is a VTK-related problem, but the nature of the > exception should make it not too hard to track down. > > > > Your ONS_Tools_Mesh object is NULL. Are you saying it is not NULL when you > do not define any additional member variables? > > > > Where is the ONS_Tools_Mesh object being allocated? > > > > - Cory > > > > On Fri, Feb 3, 2017 at 11:21 AM, Luis Costa > wrote: > > Hello everyone, > > > > I have a problem with a Qt project on VS 2013. I am using Qt with VTK and > if I declare an extra variable, of any kind, (for example, if I declare the > double* orientation) in my header file, it throws me this exception. I > started a new project but the error persists. Any help you can get me to > solve this problem? > > > > This is my header file: > > > > //#pragma once > > > > #ifndef _ONS_TOOLS_MESH_H_ > > #define _ONS_TOOLS_MESH_H_ > > > > #include > > #include "ui_ONS_Tools_Mesh.h" > > > > #include "vtkPlaneSource.h" > > #include "vtkActor.h" > > #include "vtkAxes.h" > > #include "vtkAxesActor.h" > > #include "vtkTransform.h" > > #include "vtkSmartPointer.h" // Required for smart pointer internal > ivars. > > > > //#define VTK_CREATE(type, name) \ > > //vtkSmartPointer name = vtkSmartPointer::New() > > > > class ONS_Tools_Mesh : public QMainWindow > > { > > Q_OBJECT > > > > public: > > > > ONS_Tools_Mesh(QWidget *parent = Q_NULLPTR); > > > > private: > > > > Ui::ONS_Tools_MeshClass *ui; > > > > double* origin; > > //double* orientation; > > > > vtkSmartPointer planeSourceOne; > > vtkSmartPointer planeSourceTwo; > > vtkSmartPointer planeActorOne; > > vtkSmartPointer planeActorTwo; > > //vtkSmartPointer axesActor; > > > > private slots: > > > > virtual void slotScale(double value); > > virtual void slotIntervals(int value); > > virtual void slotPositionX(double value); > > virtual void slotPositionY(double value); > > virtual void slotPositionZ(double value); > > virtual void slotInc(double value); > > virtual void slotOrientationXY(); > > virtual void slotOrientationYZ(); > > virtual void slotOrientationZX(); > > virtual void slotResetOrientation(); > > virtual void slotRender(int state); > > virtual void slotResetOrigin(); > > }; > > > > #endif > > > > *Luis Costa*, > > Consultant, Programmer > > Vektore Exploration Consulting Corporation > > http://lnked.in/luisantoniocosta > > luis.costa at vektore.com > > www.vektore.com > > > > > ------------------------------ > > [image: Imagem removida pelo remetente. Avast logo] > > > This email has been checked for viruses by Avast antivirus software. > www.avast.com > > > > > > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at http://www.kitware.com/ > opensource/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: > http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers > > > > > > -- > > Cory Quammen > Staff R&D Engineer > Kitware, Inc. > > > ------------------------------ > [image: Avast logo] > > > This email has been checked for viruses by Avast antivirus software. > www.avast.com > > > -- Cory Quammen Staff R&D Engineer Kitware, Inc. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: ~WRD000.jpg Type: image/jpeg Size: 823 bytes Desc: not available URL: From luis.costa at vektore.com Fri Feb 3 13:32:00 2017 From: luis.costa at vektore.com (Luis Costa) Date: Fri, 3 Feb 2017 16:32:00 -0200 Subject: [vtkusers] RES: Exception at centralWidget (Qt Project with VTK) In-Reply-To: References: <000001d27e39$9d8e4cb0$d8aae610$@vektore.com> <000d01d27e3f$4015b6d0$c0412470$@vektore.com> Message-ID: <001f01d27e4b$d1476610$73d63230$@vektore.com> You are right Cory, I have a strong guess that the problem is in the header file, but everything seems to work and cleaning and rebuilding do not seem to make any difference? De: Cory Quammen [mailto:cory.quammen at kitware.com] Enviada em: Friday, February 3, 2017 4:25 PM Para: Luis Costa Cc: vtkusers at vtk.org Assunto: Re: [vtkusers] Exception at centralWidget (Qt Project with VTK) It sounds like maybe compilation units dependent on your header file are not being recompiled, or something like that. Cory On Fri, Feb 3, 2017 at 12:02 PM, Luis Costa > wrote: The ONS_Tools_Mesh object is being allocated in a constructor in a cpp file. The problem is so bizarre that I can declare any extra functions on the private slots, but I cannot declare any public or private variables that this exception is throw. Right now what I am doing is declaring them as globals before the constructor on the cpp file, but that is not the most elegant way? De: Cory Quammen [mailto:cory.quammen at kitware.com ] Enviada em: Friday, February 3, 2017 2:47 PM Para: Luis Costa > Cc: vtkusers at vtk.org Assunto: Re: [vtkusers] Exception at centralWidget (Qt Project with VTK) I'm not sure this is a VTK-related problem, but the nature of the exception should make it not too hard to track down. Your ONS_Tools_Mesh object is NULL. Are you saying it is not NULL when you do not define any additional member variables? Where is the ONS_Tools_Mesh object being allocated? - Cory On Fri, Feb 3, 2017 at 11:21 AM, Luis Costa > wrote: Hello everyone, I have a problem with a Qt project on VS 2013. I am using Qt with VTK and if I declare an extra variable, of any kind, (for example, if I declare the double* orientation) in my header file, it throws me this exception. I started a new project but the error persists. Any help you can get me to solve this problem? This is my header file: //#pragma once #ifndef _ONS_TOOLS_MESH_H_ #define _ONS_TOOLS_MESH_H_ #include #include "ui_ONS_Tools_Mesh.h" #include "vtkPlaneSource.h" #include "vtkActor.h" #include "vtkAxes.h" #include "vtkAxesActor.h" #include "vtkTransform.h" #include "vtkSmartPointer.h" // Required for smart pointer internal ivars. //#define VTK_CREATE(type, name) \ //vtkSmartPointer name = vtkSmartPointer::New() class ONS_Tools_Mesh : public QMainWindow { Q_OBJECT public: ONS_Tools_Mesh(QWidget *parent = Q_NULLPTR); private: Ui::ONS_Tools_MeshClass *ui; double* origin; //double* orientation; vtkSmartPointer planeSourceOne; vtkSmartPointer planeSourceTwo; vtkSmartPointer planeActorOne; vtkSmartPointer planeActorTwo; //vtkSmartPointer axesActor; private slots: virtual void slotScale(double value); virtual void slotIntervals(int value); virtual void slotPositionX(double value); virtual void slotPositionY(double value); virtual void slotPositionZ(double value); virtual void slotInc(double value); virtual void slotOrientationXY(); virtual void slotOrientationYZ(); virtual void slotOrientationZX(); virtual void slotResetOrientation(); virtual void slotRender(int state); virtual void slotResetOrigin(); }; #endif Luis Costa, Consultant, Programmer Vektore Exploration Consulting Corporation http://lnked.in/luisantoniocosta luis.costa at vektore.com www.vektore.com _____ This email has been checked for viruses by Avast antivirus software. www.avast.com _______________________________________________ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages on-topic and check the VTK FAQ at: http://www.vtk.org/Wiki/VTK_FAQ Search the list archives at: http://markmail.org/search/?q=vtkusers Follow this link to subscribe/unsubscribe: http://public.kitware.com/mailman/listinfo/vtkusers -- Cory Quammen Staff R&D Engineer Kitware, Inc. _____ This email has been checked for viruses by Avast antivirus software. www.avast.com -- Cory Quammen Staff R&D Engineer Kitware, Inc. --- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: ~WRD000.jpg Type: image/jpeg Size: 823 bytes Desc: not available URL: From david.gobbi at gmail.com Fri Feb 3 16:27:17 2017 From: david.gobbi at gmail.com (David Gobbi) Date: Fri, 3 Feb 2017 14:27:17 -0700 Subject: [vtkusers] Using MacBook trackpad freezes application In-Reply-To: References: Message-ID: Hi Enzo, Can you also report what version of Qt you are using? Be sure to include the patch number, e.g. Qt 4.8.5. - David On Wed, Feb 1, 2017 at 11:43 AM, Enzo Matsumiya wrote: > Hi, > > I'm experiencing exactly this bug, though not only when scrolling, > dragging also freezes: > > http://www.paraview.org/Bug/view.php?id=15822 > > - macOS 10.11 or 10.12 > - QVTKWidget, vktResliceImageViewer with a DICOM data set > - Either VTK 7.0 or 7.1 > > I normally use the MacBook connected to an external monitor, keyboard and > mouse (non-Apple). I just recently stumbled on this issue when I needed to > work with it on my lap. > > When using an external mouse, everything works fine. > When using the trackpad, it *looks* like it worked (windowing is changed, > reslice occurs, etc), but it stats getting so slow that the application > freezes. The external trackpad has the same behaviour (not sure this is > obvious). If it's not very clear, please download the videos attached to > the bug report mentioned. > > > I hope there is some solution for this. > > > Thank you very much! > > -- > > Enzo Ferlin Matsumiya > enzo.matsumiya AT gmail DOT com > -------------- next part -------------- An HTML attachment was scrubbed... URL: From kmilner at usc.edu Fri Feb 3 18:02:36 2017 From: kmilner at usc.edu (Kevin Milner) Date: Fri, 3 Feb 2017 15:02:36 -0800 Subject: [vtkusers] Issues with picking in VTK Java on Mac OS X In-Reply-To: References: <94b76fe5-cd64-f581-20c5-8d83e6bc93b7@usc.edu> <5d4ae6e5-a2ad-8d8b-588a-95e8ae0c7236@usc.edu> Message-ID: <6c6ec915-7314-c7cf-6307-e796c51432d2@usc.edu> OK I have finally successfully rebuilt VTK with Java support from git/master (details in below thread that I left off of the list), but unfortunately both Picking issues still exist: * vtkJoglPanelComponent.getRenderWindowInteractor().GetEventPosition() still returns bogus y values (e.g. >1300 for a window of height 700) * once the above is addressed via previously described workaround, VTK still thinks that I clicked halfway between where I actually clicked and the lower left corner of the window (as demonstrated in this video: http://sendvid.com/yqz1qww2) So unfortunately Sebastien's commit didn't solve my issues. I'm testing on a MacBook Pro (Retina, 13-inch, Early 2013) with OSX Yosemite 10.10.5, but have experienced the same behavior on other Macs. Any other ideas? Any information that I can provide that would be helpful? Thanks, Kevin On 02/03/2017 12:41 PM, Sebastien Jourdain wrote: > can you try on git/master? I remember something about the wrapper that > was buggy at some point. > > On Fri, Feb 3, 2017 at 1:18 PM, Kevin Milner > wrote: > > I'm running into some compilation issues trying to build the > latest version, both on the Mac and on Linux. Have you encountered > this? > > VTK-7.1.0/build/java/vtk/sample/rendering/JoglConeRendering.java:77: > error: cannot find symbol > scalarBar.GetScalarBarActor().SetTitle("Example"); > ^ > symbol: method GetScalarBarActor() > location: variable scalarBar of type vtkScalarBarWidget > > I'm using the latest JOGL jars, 2.3, specifying paths to > jogl-all.jar and gluegen-rt.jar. > > Thanks, > Kevin > > > On 02/02/2017 09:35 AM, Sebastien Jourdain wrote: >> We have, and our dashboard were producing them for a while, but >> when we switch to buildbot all that went away. >> >> In fact, I would even love to publish them to maven but never get >> funding support for it. And very few people at Kitware know how >> to deal with Java. >> >> On Thu, Feb 2, 2017 at 10:30 AM, Kevin Milner > > wrote: >> >> Hmm, OK, I didn't actually build the libraries (one of my >> colleagues did), I just looked in my VTK lib folder on the >> Mac and there were files named, for example, >> "libvtkalglib-7.0.1.dylib", so that's where I got 7.0.1 from. >> But they were built right around July 2016 so I imagine that >> they don't include the fix! I'll report back tomorrow once I >> figure out how to build it on a Mac. I'm not sure which OS >> the Mac I'm using for testing is but I imagine that it's not >> Sierra as it's a couple years old and likely has not been >> kept up to date. I'm a Linux user and not up to date on >> anything Mac related. Will report back tomorrow. >> >> Have you guys ever considered releasing binaries of VTK-Java? >> Would be really helpful! >> >> Thanks, >> Kevin >> >> >> On 2/2/2017 9:23 AM, Sebastien Jourdain wrote: >>> It seems like 7.1.0 does have my change but not 7.0.0. Which >>> make me think it might be a Sierra issue if you are using >>> 7.1 not 7.0.1 since the latter does not exist. >>> >>> Which OS are you on? (When you will get back to it ;-) >>> >>> On Thu, Feb 2, 2017 at 10:13 AM, Kevin Milner >>> > wrote: >>> >>> Thanks Sebastien! >>> >>> I'm not near a Mac today but will try rebuilding >>> tomorrow to see if your fix does the trick. I'm >>> currently on 7.0.1, is your patch included in the 7.1 >>> release or should I check out the latest dev version? >>> I'll report back to the list when I find out if it works. >>> >>> Thanks a lot, >>> Kevin >>> >>> >>> On 2/1/2017 4:58 PM, Sebastien Jourdain wrote: >>>> Hi Kevin, >>>> >>>> The issue seems to be related to the retina display and >>>> maybe macOS sierra. >>>> >>>> Which version of VTK are you using? I know that I fixed >>>> some picking issue on mac with retina display before >>>> Sierra. >>>> >>>> The change I'm talking about is: >>>> >>>> commit b6df993770cfcd9a69a48a2730415a992d698c5b >>>> Author: Sebastien Jourdain >>>> >>> > >>>> Date: Fri Jul 8 09:45:58 2016 -0400 >>>> Fix VTK/Java JOGL >>>> >>>> - Update JOGL version to 2.32 >>>> - Update documentation on how to download the >>>> JOGL jars with Maven >>>> - Add support for Retina display >>>> >>>> >>>> Ideally, you should make sure you have this commit in >>>> your VTK and that is working on system older than >>>> Sierra. Then if Sierra is the issue, I think more >>>> advanced debugging may be require. Although, VTK >>>> compiled on an older OS should work just fine on Sierra. >>>> >>>> Let me know if you find out more about it. >>>> >>>> Seb >>>> >>>> >>>> On Wed, Feb 1, 2017 at 5:19 PM, Kevin Milner >>>> > wrote: >>>> >>>> Hello. I develop a VTK Java application for >>>> visualizing georeferenced earthquake data, SCEC-VDO >>>> (http://scecvdo.usc.edu/). One of the important >>>> features of this software is the ability to click >>>> on elements of the 3D view to perform actions or >>>> view information. This works perfectly on Windows >>>> and Linux, but does not work on Macs. I believe >>>> that this is due to an internal bug in the Mac >>>> version of VTK. We use the vtkJoglPanelComponent to >>>> embed the 3D view into our Java application. >>>> >>>> Here is the code that I use to pick items (where >>>> renderWindow is a vtkJoglPanelComponent): >>>> >>>> renderWindow.getComponent().addMouseListener(new >>>> MouseAdapter() { >>>> public void mousePressed(MouseEvent e) { >>>> int[] clickPos = >>>> renderWindow.getRenderWindowInteractor().GetEventPosition(); >>>> >>>> int x = clickPos[0]; >>>> int y = clickPos[1]; >>>> >>>> cellPicker.Pick(x, y, 0, renderWindow.getRenderer()); >>>> if (cellPicker.GetActor() != null) { >>>> // do stuff >>>> ... >>>> } >>>> } >>>> }); >>>> >>>> The first bug is that the y value of >>>> getRenderWindowInteractor().GetEventPosition() is >>>> just flat out wrong on the Mac (correct on Windows >>>> and Linux). For example, if I click near the top of >>>> my window with height 700, if will give me a y >>>> value that is greater than 1300! It should actually >>>> be very small, as y should be zero at the top of >>>> the window and 700 at the bottom of the window. I >>>> can get around this, and make it match the position >>>> on Linux/Windows with the following fix using the >>>> mouseEvent (e) and the height of the 3D view component: >>>> >>>> int height = renderWindow.getComponent().getHeight(); >>>> int calcY = (height - e.getY()) - 1; >>>> int x = e.getX(); >>>> int y = calcY; >>>> >>>> Now when I click on a location in the 3D viewer, >>>> the x/y coordinates match the results on >>>> Linux/Windows. But picking actors still doesn't >>>> work. Instead, VTK thinks that I have clicked >>>> somewhere roughly between where I actually clicked >>>> and the bottom left corner. So if I click on the >>>> top right corner of the viewer, it thinks that I >>>> clicked in the middle. If I click on the top left, >>>> if thinks that I clicked middle left. If I click on >>>> the middle of the viewer, it thinks that I clicked >>>> 1/4 up and right of the lower left corner. I have >>>> posted a video which demonstrates this bug: >>>> >>>> http://sendvid.com/yqz1qww2 >>>> >>>> >>>> In this video, whatever actor is clicked turns red. >>>> This works as expected on Windows/Linux, both with >>>> and without the x/y fix mentioned above. Without >>>> the previous fix on a Mac, the behavior is similar >>>> but centered around the top left corner and >>>> sometimes doesn't detect clicks at all (due to y >>>> values which make no sense). >>>> >>>> Any ideas what could be going on? I have >>>> experienced this behavior on all 4 Mac's on which I >>>> have tried the software. >>>> >>>> Thanks, >>>> Kevin Milner >>>> _______________________________________________ >>>> Powered by www.kitware.com >>>> >>>> >>>> Visit other Kitware open-source projects at >>>> http://www.kitware.com/opensource/opensource.html >>>> >>>> >>>> Please keep messages on-topic and check the VTK FAQ >>>> at: http://www.vtk.org/Wiki/VTK_FAQ >>>> >>>> >>>> Search the list archives at: >>>> http://markmail.org/search/?q=vtkusers >>>> >>>> >>>> Follow this link to subscribe/unsubscribe: >>>> http://public.kitware.com/mailman/listinfo/vtkusers >>>> >>>> >>>> >>> >>> >> >> > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From sebastien.jourdain at kitware.com Fri Feb 3 18:07:11 2017 From: sebastien.jourdain at kitware.com (Sebastien Jourdain) Date: Fri, 3 Feb 2017 16:07:11 -0700 Subject: [vtkusers] Issues with picking in VTK Java on Mac OS X In-Reply-To: <6c6ec915-7314-c7cf-6307-e796c51432d2@usc.edu> References: <94b76fe5-cd64-f581-20c5-8d83e6bc93b7@usc.edu> <5d4ae6e5-a2ad-8d8b-588a-95e8ae0c7236@usc.edu> <6c6ec915-7314-c7cf-6307-e796c51432d2@usc.edu> Message-ID: Does the sample application that get build in vtk.jar with the box widget works? Meaning you can grab the control balls to resize the box? The main is vtk.sample.rendering.JoglConeRendering On Fri, Feb 3, 2017 at 4:02 PM, Kevin Milner wrote: > OK I have finally successfully rebuilt VTK with Java support from > git/master (details in below thread that I left off of the list), but > unfortunately both Picking issues still exist: > > * vtkJoglPanelComponent.getRenderWindowInteractor().GetEventPosition() > still returns bogus y values (e.g. >1300 for a window of height 700) > * once the above is addressed via previously described workaround, VTK > still thinks that I clicked halfway between where I actually clicked and > the lower left corner of the window (as demonstrated in this video: > http://sendvid.com/yqz1qww2) > > So unfortunately Sebastien's commit didn't solve my issues. > > I'm testing on a MacBook Pro (Retina, 13-inch, Early 2013) with OSX > Yosemite 10.10.5, but have experienced the same behavior on other Macs. > > Any other ideas? Any information that I can provide that would be helpful? > > Thanks, > Kevin > > > On 02/03/2017 12:41 PM, Sebastien Jourdain wrote: > > can you try on git/master? I remember something about the wrapper that was > buggy at some point. > > On Fri, Feb 3, 2017 at 1:18 PM, Kevin Milner wrote: > >> I'm running into some compilation issues trying to build the latest >> version, both on the Mac and on Linux. Have you encountered this? >> >> VTK-7.1.0/build/java/vtk/sample/rendering/JoglConeRendering.java:77: >> error: cannot find symbol >> scalarBar.GetScalarBarActor().SetTitle("Example"); >> ^ >> symbol: method GetScalarBarActor() >> location: variable scalarBar of type vtkScalarBarWidget >> >> I'm using the latest JOGL jars, 2.3, specifying paths to jogl-all.jar and >> gluegen-rt.jar. >> >> Thanks, >> Kevin >> >> >> On 02/02/2017 09:35 AM, Sebastien Jourdain wrote: >> >> We have, and our dashboard were producing them for a while, but when we >> switch to buildbot all that went away. >> >> In fact, I would even love to publish them to maven but never get funding >> support for it. And very few people at Kitware know how to deal with Java. >> >> On Thu, Feb 2, 2017 at 10:30 AM, Kevin Milner wrote: >> >>> Hmm, OK, I didn't actually build the libraries (one of my colleagues >>> did), I just looked in my VTK lib folder on the Mac and there were files >>> named, for example, "libvtkalglib-7.0.1.dylib", so that's where I got 7.0.1 >>> from. But they were built right around July 2016 so I imagine that they >>> don't include the fix! I'll report back tomorrow once I figure out how to >>> build it on a Mac. I'm not sure which OS the Mac I'm using for testing is >>> but I imagine that it's not Sierra as it's a couple years old and likely >>> has not been kept up to date. I'm a Linux user and not up to date on >>> anything Mac related. Will report back tomorrow. >>> >>> Have you guys ever considered releasing binaries of VTK-Java? Would be >>> really helpful! >>> >>> Thanks, >>> Kevin >>> >>> >>> On 2/2/2017 9:23 AM, Sebastien Jourdain wrote: >>> >>> It seems like 7.1.0 does have my change but not 7.0.0. Which make me >>> think it might be a Sierra issue if you are using 7.1 not 7.0.1 since the >>> latter does not exist. >>> >>> Which OS are you on? (When you will get back to it ;-) >>> >>> On Thu, Feb 2, 2017 at 10:13 AM, Kevin Milner wrote: >>> >>>> Thanks Sebastien! >>>> >>>> I'm not near a Mac today but will try rebuilding tomorrow to see if >>>> your fix does the trick. I'm currently on 7.0.1, is your patch included in >>>> the 7.1 release or should I check out the latest dev version? I'll report >>>> back to the list when I find out if it works. >>>> >>>> Thanks a lot, >>>> Kevin >>>> >>>> >>>> On 2/1/2017 4:58 PM, Sebastien Jourdain wrote: >>>> >>>> Hi Kevin, >>>> >>>> The issue seems to be related to the retina display and maybe macOS >>>> sierra. >>>> >>>> Which version of VTK are you using? I know that I fixed some picking >>>> issue on mac with retina display before Sierra. >>>> >>>> The change I'm talking about is: >>>> >>>> commit b6df993770cfcd9a69a48a2730415a992d698c5b >>>>> Author: Sebastien Jourdain >>>>> Date: Fri Jul 8 09:45:58 2016 -0400 >>>>> Fix VTK/Java JOGL >>>>> >>>>> - Update JOGL version to 2.32 >>>>> - Update documentation on how to download the JOGL jars with Maven >>>>> - Add support for Retina display >>>>> >>>> >>>> Ideally, you should make sure you have this commit in your VTK and that >>>> is working on system older than Sierra. Then if Sierra is the issue, I >>>> think more advanced debugging may be require. Although, VTK compiled on an >>>> older OS should work just fine on Sierra. >>>> >>>> Let me know if you find out more about it. >>>> >>>> Seb >>>> >>>> >>>> On Wed, Feb 1, 2017 at 5:19 PM, Kevin Milner wrote: >>>> >>>>> Hello. I develop a VTK Java application for visualizing georeferenced >>>>> earthquake data, SCEC-VDO (http://scecvdo.usc.edu/). One of the >>>>> important features of this software is the ability to click on elements of >>>>> the 3D view to perform actions or view information. This works perfectly on >>>>> Windows and Linux, but does not work on Macs. I believe that this is due to >>>>> an internal bug in the Mac version of VTK. We use the vtkJoglPanelComponent >>>>> to embed the 3D view into our Java application. >>>>> >>>>> Here is the code that I use to pick items (where renderWindow is a >>>>> vtkJoglPanelComponent): >>>>> >>>>> renderWindow.getComponent().addMouseListener(new >>>>> MouseAdapter() { >>>>> public void mousePressed(MouseEvent e) { >>>>> int[] clickPos = renderWindow.getRenderWindowIn >>>>> teractor().GetEventPosition(); >>>>> >>>>> int x = clickPos[0]; >>>>> int y = clickPos[1]; >>>>> >>>>> cellPicker.Pick(x, y, 0, renderWindow.getRenderer()); >>>>> if (cellPicker.GetActor() != null) { >>>>> // do stuff >>>>> ... >>>>> } >>>>> } >>>>> }); >>>>> >>>>> The first bug is that the y value of getRenderWindowInteractor().GetEventPosition() >>>>> is just flat out wrong on the Mac (correct on Windows and Linux). For >>>>> example, if I click near the top of my window with height 700, if will give >>>>> me a y value that is greater than 1300! It should actually be very small, >>>>> as y should be zero at the top of the window and 700 at the bottom of the >>>>> window. I can get around this, and make it match the position on >>>>> Linux/Windows with the following fix using the mouseEvent (e) and the >>>>> height of the 3D view component: >>>>> >>>>> int height = renderWindow.getComponent().getHeight(); >>>>> int calcY = (height - e.getY()) - 1; >>>>> int x = e.getX(); >>>>> int y = calcY; >>>>> >>>>> Now when I click on a location in the 3D viewer, the x/y coordinates >>>>> match the results on Linux/Windows. But picking actors still doesn't work. >>>>> Instead, VTK thinks that I have clicked somewhere roughly between where I >>>>> actually clicked and the bottom left corner. So if I click on the top right >>>>> corner of the viewer, it thinks that I clicked in the middle. If I click on >>>>> the top left, if thinks that I clicked middle left. If I click on the >>>>> middle of the viewer, it thinks that I clicked 1/4 up and right of the >>>>> lower left corner. I have posted a video which demonstrates this bug: >>>>> >>>>> http://sendvid.com/yqz1qww2 >>>>> >>>>> >>>>> In this video, whatever actor is clicked turns red. This works as >>>>> expected on Windows/Linux, both with and without the x/y fix mentioned >>>>> above. Without the previous fix on a Mac, the behavior is similar but >>>>> centered around the top left corner and sometimes doesn't detect clicks at >>>>> all (due to y values which make no sense). >>>>> >>>>> Any ideas what could be going on? I have experienced this behavior on >>>>> all 4 Mac's on which I have tried the software. >>>>> >>>>> Thanks, >>>>> Kevin Milner >>>>> _______________________________________________ >>>>> Powered by www.kitware.com >>>>> >>>>> >>>>> Visit other Kitware open-source projects at >>>>> http://www.kitware.com/opensource/opensource.html >>>>> >>>>> >>>>> Please keep messages on-topic and check the VTK FAQ at: >>>>> http://www.vtk.org/Wiki/VTK_FAQ >>>>> >>>>> >>>>> Search the list archives at: http://markmail.org/search/?q=vtkusers >>>>> >>>>> >>>>> Follow this link to subscribe/unsubscribe: >>>>> http://public.kitware.com/mailman/listinfo/vtkusers >>>>> >>>>> >>>> >>>> >>>> >>> >>> >> >> > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From kmilner at usc.edu Fri Feb 3 18:23:58 2017 From: kmilner at usc.edu (Kevin Milner) Date: Fri, 3 Feb 2017 15:23:58 -0800 Subject: [vtkusers] Issues with picking in VTK Java on Mac OS X In-Reply-To: References: <94b76fe5-cd64-f581-20c5-8d83e6bc93b7@usc.edu> <5d4ae6e5-a2ad-8d8b-588a-95e8ae0c7236@usc.edu> <6c6ec915-7314-c7cf-6307-e796c51432d2@usc.edu> Message-ID: <384bc7b7-5fea-c4c0-38d0-229299070b76@usc.edu> The JoglConeRendering sample program works perfectly for me on Linux, on the Mac the window opens but is blank. After a few seconds it exits with this output: We are using com.jogamp.opengl.awt.GLCanvas for the rendering. Assertion failed: ("pre: is_bound" && this->IsBound()), function SendParameters, file /Users/sanskriti/git/vtk/Rendering/OpenGL2/vtkTextureObject.cxx, line 617. Abort trap: 6 On 02/03/2017 03:07 PM, Sebastien Jourdain wrote: > Does the sample application that get build in vtk.jar with the box > widget works? > Meaning you can grab the control balls to resize the box? > > The main is vtk.sample.rendering.JoglConeRendering > > On Fri, Feb 3, 2017 at 4:02 PM, Kevin Milner > wrote: > > OK I have finally successfully rebuilt VTK with Java support from > git/master (details in below thread that I left off of the list), > but unfortunately both Picking issues still exist: > > * > vtkJoglPanelComponent.getRenderWindowInteractor().GetEventPosition() > still returns bogus y values (e.g. >1300 for a window of height 700) > * once the above is addressed via previously described workaround, > VTK still thinks that I clicked halfway between where I actually > clicked and the lower left corner of the window (as demonstrated > in this video: http://sendvid.com/yqz1qww2 > ) > > So unfortunately Sebastien's commit didn't solve my issues. > > I'm testing on a MacBook Pro (Retina, 13-inch, Early 2013) with > OSX Yosemite 10.10.5, but have experienced the same behavior on > other Macs. > > Any other ideas? Any information that I can provide that would be > helpful? > > Thanks, > Kevin > > > On 02/03/2017 12:41 PM, Sebastien Jourdain wrote: >> can you try on git/master? I remember something about the wrapper >> that was buggy at some point. >> >> On Fri, Feb 3, 2017 at 1:18 PM, Kevin Milner > > wrote: >> >> I'm running into some compilation issues trying to build the >> latest version, both on the Mac and on Linux. Have you >> encountered this? >> >> VTK-7.1.0/build/java/vtk/sample/rendering/JoglConeRendering.java:77: >> error: cannot find symbol >> scalarBar.GetScalarBarActor().SetTitle("Example"); >> ^ >> symbol: method GetScalarBarActor() >> location: variable scalarBar of type vtkScalarBarWidget >> >> I'm using the latest JOGL jars, 2.3, specifying paths to >> jogl-all.jar and gluegen-rt.jar. >> >> Thanks, >> Kevin >> >> >> On 02/02/2017 09:35 AM, Sebastien Jourdain wrote: >>> We have, and our dashboard were producing them for a while, >>> but when we switch to buildbot all that went away. >>> >>> In fact, I would even love to publish them to maven but >>> never get funding support for it. And very few people at >>> Kitware know how to deal with Java. >>> >>> On Thu, Feb 2, 2017 at 10:30 AM, Kevin Milner >>> > wrote: >>> >>> Hmm, OK, I didn't actually build the libraries (one of >>> my colleagues did), I just looked in my VTK lib folder >>> on the Mac and there were files named, for example, >>> "libvtkalglib-7.0.1.dylib", so that's where I got 7.0.1 >>> from. But they were built right around July 2016 so I >>> imagine that they don't include the fix! I'll report >>> back tomorrow once I figure out how to build it on a >>> Mac. I'm not sure which OS the Mac I'm using for testing >>> is but I imagine that it's not Sierra as it's a couple >>> years old and likely has not been kept up to date. I'm a >>> Linux user and not up to date on anything Mac related. >>> Will report back tomorrow. >>> >>> Have you guys ever considered releasing binaries of >>> VTK-Java? Would be really helpful! >>> >>> Thanks, >>> Kevin >>> >>> >>> On 2/2/2017 9:23 AM, Sebastien Jourdain wrote: >>>> It seems like 7.1.0 does have my change but not 7.0.0. >>>> Which make me think it might be a Sierra issue if you >>>> are using 7.1 not 7.0.1 since the latter does not exist. >>>> >>>> Which OS are you on? (When you will get back to it ;-) >>>> >>>> On Thu, Feb 2, 2017 at 10:13 AM, Kevin Milner >>>> > wrote: >>>> >>>> Thanks Sebastien! >>>> >>>> I'm not near a Mac today but will try rebuilding >>>> tomorrow to see if your fix does the trick. I'm >>>> currently on 7.0.1, is your patch included in the >>>> 7.1 release or should I check out the latest dev >>>> version? I'll report back to the list when I find >>>> out if it works. >>>> >>>> Thanks a lot, >>>> Kevin >>>> >>>> >>>> On 2/1/2017 4:58 PM, Sebastien Jourdain wrote: >>>>> Hi Kevin, >>>>> >>>>> The issue seems to be related to the retina >>>>> display and maybe macOS sierra. >>>>> >>>>> Which version of VTK are you using? I know that I >>>>> fixed some picking issue on mac with retina >>>>> display before Sierra. >>>>> >>>>> The change I'm talking about is: >>>>> >>>>> commit b6df993770cfcd9a69a48a2730415a992d698c5b >>>>> Author: Sebastien Jourdain >>>>> >>>> > >>>>> Date: Fri Jul 8 09:45:58 2016 -0400 >>>>> Fix VTK/Java JOGL >>>>> >>>>> - Update JOGL version to 2.32 >>>>> - Update documentation on how to download >>>>> the JOGL jars with Maven >>>>> - Add support for Retina display >>>>> >>>>> >>>>> Ideally, you should make sure you have this commit >>>>> in your VTK and that is working on system older >>>>> than Sierra. Then if Sierra is the issue, I think >>>>> more advanced debugging may be require. Although, >>>>> VTK compiled on an older OS should work just fine >>>>> on Sierra. >>>>> >>>>> Let me know if you find out more about it. >>>>> >>>>> Seb >>>>> >>>>> >>>>> On Wed, Feb 1, 2017 at 5:19 PM, Kevin Milner >>>>> > wrote: >>>>> >>>>> Hello. I develop a VTK Java application for >>>>> visualizing georeferenced earthquake data, >>>>> SCEC-VDO (http://scecvdo.usc.edu/). One of the >>>>> important features of this software is the >>>>> ability to click on elements of the 3D view to >>>>> perform actions or view information. This >>>>> works perfectly on Windows and Linux, but does >>>>> not work on Macs. I believe that this is due >>>>> to an internal bug in the Mac version of VTK. >>>>> We use the vtkJoglPanelComponent to embed the >>>>> 3D view into our Java application. >>>>> >>>>> Here is the code that I use to pick items >>>>> (where renderWindow is a vtkJoglPanelComponent): >>>>> >>>>> renderWindow.getComponent().addMouseListener(new >>>>> MouseAdapter() { >>>>> public void mousePressed(MouseEvent e) { >>>>> int[] clickPos = >>>>> renderWindow.getRenderWindowInteractor().GetEventPosition(); >>>>> >>>>> int x = clickPos[0]; >>>>> int y = clickPos[1]; >>>>> >>>>> cellPicker.Pick(x, y, 0, >>>>> renderWindow.getRenderer()); >>>>> if (cellPicker.GetActor() != null) { >>>>> // do stuff >>>>> ... >>>>> } >>>>> } >>>>> }); >>>>> >>>>> The first bug is that the y value of >>>>> getRenderWindowInteractor().GetEventPosition() >>>>> is just flat out wrong on the Mac (correct on >>>>> Windows and Linux). For example, if I click >>>>> near the top of my window with height 700, if >>>>> will give me a y value that is greater than >>>>> 1300! It should actually be very small, as y >>>>> should be zero at the top of the window and >>>>> 700 at the bottom of the window. I can get >>>>> around this, and make it match the position on >>>>> Linux/Windows with the following fix using the >>>>> mouseEvent (e) and the height of the 3D view >>>>> component: >>>>> >>>>> int height = >>>>> renderWindow.getComponent().getHeight(); >>>>> int calcY = (height - e.getY()) - 1; >>>>> int x = e.getX(); >>>>> int y = calcY; >>>>> >>>>> Now when I click on a location in the 3D >>>>> viewer, the x/y coordinates match the results >>>>> on Linux/Windows. But picking actors still >>>>> doesn't work. Instead, VTK thinks that I have >>>>> clicked somewhere roughly between where I >>>>> actually clicked and the bottom left corner. >>>>> So if I click on the top right corner of the >>>>> viewer, it thinks that I clicked in the >>>>> middle. If I click on the top left, if thinks >>>>> that I clicked middle left. If I click on the >>>>> middle of the viewer, it thinks that I clicked >>>>> 1/4 up and right of the lower left corner. I >>>>> have posted a video which demonstrates this bug: >>>>> >>>>> http://sendvid.com/yqz1qww2 >>>>> >>>>> >>>>> In this video, whatever actor is clicked turns >>>>> red. This works as expected on Windows/Linux, >>>>> both with and without the x/y fix mentioned >>>>> above. Without the previous fix on a Mac, the >>>>> behavior is similar but centered around the >>>>> top left corner and sometimes doesn't detect >>>>> clicks at all (due to y values which make no >>>>> sense). >>>>> >>>>> Any ideas what could be going on? I have >>>>> experienced this behavior on all 4 Mac's on >>>>> which I have tried the software. >>>>> >>>>> Thanks, >>>>> Kevin Milner >>>>> _______________________________________________ >>>>> Powered by www.kitware.com >>>>> >>>>> >>>>> Visit other Kitware open-source projects at >>>>> http://www.kitware.com/opensource/opensource.html >>>>> >>>>> >>>>> Please keep messages on-topic and check the >>>>> VTK FAQ at: http://www.vtk.org/Wiki/VTK_FAQ >>>>> >>>>> >>>>> Search the list archives at: >>>>> http://markmail.org/search/?q=vtkusers >>>>> >>>>> >>>>> Follow this link to subscribe/unsubscribe: >>>>> http://public.kitware.com/mailman/listinfo/vtkusers >>>>> >>>>> >>>>> >>>> >>>> >>> >>> >> >> > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From sebastien.jourdain at kitware.com Fri Feb 3 18:50:37 2017 From: sebastien.jourdain at kitware.com (Sebastien Jourdain) Date: Fri, 3 Feb 2017 16:50:37 -0700 Subject: [vtkusers] Issues with picking in VTK Java on Mac OS X In-Reply-To: <384bc7b7-5fea-c4c0-38d0-229299070b76@usc.edu> References: <94b76fe5-cd64-f581-20c5-8d83e6bc93b7@usc.edu> <5d4ae6e5-a2ad-8d8b-588a-95e8ae0c7236@usc.edu> <6c6ec915-7314-c7cf-6307-e796c51432d2@usc.edu> <384bc7b7-5fea-c4c0-38d0-229299070b76@usc.edu> Message-ID: Hum, interesting. I have no idea of what is going on... ;-( Sorry On Fri, Feb 3, 2017 at 4:23 PM, Kevin Milner wrote: > The JoglConeRendering sample program works perfectly for me on Linux, on > the Mac the window opens but is blank. After a few seconds it exits with > this output: > > We are using com.jogamp.opengl.awt.GLCanvas for the rendering. > Assertion failed: ("pre: is_bound" && this->IsBound()), function > SendParameters, file /Users/sanskriti/git/vtk/Rendering/OpenGL2/vtkTextureObject.cxx, > line 617. > Abort trap: 6 > > > On 02/03/2017 03:07 PM, Sebastien Jourdain wrote: > > Does the sample application that get build in vtk.jar with the box widget > works? > Meaning you can grab the control balls to resize the box? > > The main is vtk.sample.rendering.JoglConeRendering > > On Fri, Feb 3, 2017 at 4:02 PM, Kevin Milner wrote: > >> OK I have finally successfully rebuilt VTK with Java support from >> git/master (details in below thread that I left off of the list), but >> unfortunately both Picking issues still exist: >> >> * vtkJoglPanelComponent.getRenderWindowInteractor().GetEventPosition() >> still returns bogus y values (e.g. >1300 for a window of height 700) >> * once the above is addressed via previously described workaround, VTK >> still thinks that I clicked halfway between where I actually clicked and >> the lower left corner of the window (as demonstrated in this video: >> http://sendvid.com/yqz1qww2 >> >> ) >> >> So unfortunately Sebastien's commit didn't solve my issues. >> >> I'm testing on a MacBook Pro (Retina, 13-inch, Early 2013) with OSX >> Yosemite 10.10.5, but have experienced the same behavior on other Macs. >> >> Any other ideas? Any information that I can provide that would be helpful? >> >> Thanks, >> Kevin >> >> >> On 02/03/2017 12:41 PM, Sebastien Jourdain wrote: >> >> can you try on git/master? I remember something about the wrapper that >> was buggy at some point. >> >> On Fri, Feb 3, 2017 at 1:18 PM, Kevin Milner wrote: >> >>> I'm running into some compilation issues trying to build the latest >>> version, both on the Mac and on Linux. Have you encountered this? >>> >>> VTK-7.1.0/build/java/vtk/sample/rendering/JoglConeRendering.java:77: >>> error: cannot find symbol >>> scalarBar.GetScalarBarActor().SetTitle("Example"); >>> ^ >>> symbol: method GetScalarBarActor() >>> location: variable scalarBar of type vtkScalarBarWidget >>> >>> I'm using the latest JOGL jars, 2.3, specifying paths to jogl-all.jar >>> and gluegen-rt.jar. >>> >>> Thanks, >>> Kevin >>> >>> >>> On 02/02/2017 09:35 AM, Sebastien Jourdain wrote: >>> >>> We have, and our dashboard were producing them for a while, but when we >>> switch to buildbot all that went away. >>> >>> In fact, I would even love to publish them to maven but never get >>> funding support for it. And very few people at Kitware know how to deal >>> with Java. >>> >>> On Thu, Feb 2, 2017 at 10:30 AM, Kevin Milner wrote: >>> >>>> Hmm, OK, I didn't actually build the libraries (one of my colleagues >>>> did), I just looked in my VTK lib folder on the Mac and there were files >>>> named, for example, "libvtkalglib-7.0.1.dylib", so that's where I got 7.0.1 >>>> from. But they were built right around July 2016 so I imagine that they >>>> don't include the fix! I'll report back tomorrow once I figure out how to >>>> build it on a Mac. I'm not sure which OS the Mac I'm using for testing is >>>> but I imagine that it's not Sierra as it's a couple years old and likely >>>> has not been kept up to date. I'm a Linux user and not up to date on >>>> anything Mac related. Will report back tomorrow. >>>> >>>> Have you guys ever considered releasing binaries of VTK-Java? Would be >>>> really helpful! >>>> >>>> Thanks, >>>> Kevin >>>> >>>> >>>> On 2/2/2017 9:23 AM, Sebastien Jourdain wrote: >>>> >>>> It seems like 7.1.0 does have my change but not 7.0.0. Which make me >>>> think it might be a Sierra issue if you are using 7.1 not 7.0.1 since the >>>> latter does not exist. >>>> >>>> Which OS are you on? (When you will get back to it ;-) >>>> >>>> On Thu, Feb 2, 2017 at 10:13 AM, Kevin Milner wrote: >>>> >>>>> Thanks Sebastien! >>>>> >>>>> I'm not near a Mac today but will try rebuilding tomorrow to see if >>>>> your fix does the trick. I'm currently on 7.0.1, is your patch included in >>>>> the 7.1 release or should I check out the latest dev version? I'll report >>>>> back to the list when I find out if it works. >>>>> >>>>> Thanks a lot, >>>>> Kevin >>>>> >>>>> >>>>> On 2/1/2017 4:58 PM, Sebastien Jourdain wrote: >>>>> >>>>> Hi Kevin, >>>>> >>>>> The issue seems to be related to the retina display and maybe macOS >>>>> sierra. >>>>> >>>>> Which version of VTK are you using? I know that I fixed some picking >>>>> issue on mac with retina display before Sierra. >>>>> >>>>> The change I'm talking about is: >>>>> >>>>> commit b6df993770cfcd9a69a48a2730415a992d698c5b >>>>>> Author: Sebastien Jourdain >>>>>> Date: Fri Jul 8 09:45:58 2016 -0400 >>>>>> Fix VTK/Java JOGL >>>>>> >>>>>> - Update JOGL version to 2.32 >>>>>> - Update documentation on how to download the JOGL jars with Maven >>>>>> - Add support for Retina display >>>>>> >>>>> >>>>> Ideally, you should make sure you have this commit in your VTK and >>>>> that is working on system older than Sierra. Then if Sierra is the issue, I >>>>> think more advanced debugging may be require. Although, VTK compiled on an >>>>> older OS should work just fine on Sierra. >>>>> >>>>> Let me know if you find out more about it. >>>>> >>>>> Seb >>>>> >>>>> >>>>> On Wed, Feb 1, 2017 at 5:19 PM, Kevin Milner wrote: >>>>> >>>>>> Hello. I develop a VTK Java application for visualizing georeferenced >>>>>> earthquake data, SCEC-VDO (http://scecvdo.usc.edu/). One of the >>>>>> important features of this software is the ability to click on elements of >>>>>> the 3D view to perform actions or view information. This works perfectly on >>>>>> Windows and Linux, but does not work on Macs. I believe that this is due to >>>>>> an internal bug in the Mac version of VTK. We use the vtkJoglPanelComponent >>>>>> to embed the 3D view into our Java application. >>>>>> >>>>>> Here is the code that I use to pick items (where renderWindow is a >>>>>> vtkJoglPanelComponent): >>>>>> >>>>>> renderWindow.getComponent().addMouseListener(new >>>>>> MouseAdapter() { >>>>>> public void mousePressed(MouseEvent e) { >>>>>> int[] clickPos = renderWindow.getRenderWindowIn >>>>>> teractor().GetEventPosition(); >>>>>> >>>>>> int x = clickPos[0]; >>>>>> int y = clickPos[1]; >>>>>> >>>>>> cellPicker.Pick(x, y, 0, renderWindow.getRenderer()); >>>>>> if (cellPicker.GetActor() != null) { >>>>>> // do stuff >>>>>> ... >>>>>> } >>>>>> } >>>>>> }); >>>>>> >>>>>> The first bug is that the y value of getRenderWindowInteractor().GetEventPosition() >>>>>> is just flat out wrong on the Mac (correct on Windows and Linux). For >>>>>> example, if I click near the top of my window with height 700, if will give >>>>>> me a y value that is greater than 1300! It should actually be very small, >>>>>> as y should be zero at the top of the window and 700 at the bottom of the >>>>>> window. I can get around this, and make it match the position on >>>>>> Linux/Windows with the following fix using the mouseEvent (e) and the >>>>>> height of the 3D view component: >>>>>> >>>>>> int height = renderWindow.getComponent().getHeight(); >>>>>> int calcY = (height - e.getY()) - 1; >>>>>> int x = e.getX(); >>>>>> int y = calcY; >>>>>> >>>>>> Now when I click on a location in the 3D viewer, the x/y coordinates >>>>>> match the results on Linux/Windows. But picking actors still doesn't work. >>>>>> Instead, VTK thinks that I have clicked somewhere roughly between where I >>>>>> actually clicked and the bottom left corner. So if I click on the top right >>>>>> corner of the viewer, it thinks that I clicked in the middle. If I click on >>>>>> the top left, if thinks that I clicked middle left. If I click on the >>>>>> middle of the viewer, it thinks that I clicked 1/4 up and right of the >>>>>> lower left corner. I have posted a video which demonstrates this bug: >>>>>> >>>>>> http://sendvid.com/yqz1qww2 >>>>>> >>>>>> >>>>>> In this video, whatever actor is clicked turns red. This works as >>>>>> expected on Windows/Linux, both with and without the x/y fix mentioned >>>>>> above. Without the previous fix on a Mac, the behavior is similar but >>>>>> centered around the top left corner and sometimes doesn't detect clicks at >>>>>> all (due to y values which make no sense). >>>>>> >>>>>> Any ideas what could be going on? I have experienced this behavior on >>>>>> all 4 Mac's on which I have tried the software. >>>>>> >>>>>> Thanks, >>>>>> Kevin Milner >>>>>> _______________________________________________ >>>>>> Powered by www.kitware.com >>>>>> >>>>>> >>>>>> Visit other Kitware open-source projects at >>>>>> http://www.kitware.com/opensource/opensource.html >>>>>> >>>>>> >>>>>> Please keep messages on-topic and check the VTK FAQ at: >>>>>> http://www.vtk.org/Wiki/VTK_FAQ >>>>>> >>>>>> >>>>>> Search the list archives at: http://markmail.org/search/?q=vtkusers >>>>>> >>>>>> >>>>>> Follow this link to subscribe/unsubscribe: >>>>>> http://public.kitware.com/mailman/listinfo/vtkusers >>>>>> >>>>>> >>>>> >>>>> >>>>> >>>> >>>> >>> >>> >> >> > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From kmilner at usc.edu Fri Feb 3 19:15:01 2017 From: kmilner at usc.edu (Kevin Milner) Date: Fri, 3 Feb 2017 16:15:01 -0800 Subject: [vtkusers] Issues with picking in VTK Java on Mac OS X In-Reply-To: References: <94b76fe5-cd64-f581-20c5-8d83e6bc93b7@usc.edu> <5d4ae6e5-a2ad-8d8b-588a-95e8ae0c7236@usc.edu> <6c6ec915-7314-c7cf-6307-e796c51432d2@usc.edu> <384bc7b7-5fea-c4c0-38d0-229299070b76@usc.edu> Message-ID: <1385874d-ebce-75b9-feb6-2a5bcceccf1a@usc.edu> Does that demo work for you on a Mac? I just tried it with the previous 7.0 release and had the same results. My Java version is 1.8.0_91, 64 bit. If it does work for you, would you mind posting your lib folder somewhere so I can see if it's a compilation/configuration issue on my end? Thanks, Kevin On 02/03/2017 03:50 PM, Sebastien Jourdain wrote: > Hum, interesting. > > I have no idea of what is going on... ;-( > > Sorry > > On Fri, Feb 3, 2017 at 4:23 PM, Kevin Milner > wrote: > > The JoglConeRendering sample program works perfectly for me on > Linux, on the Mac the window opens but is blank. After a few > seconds it exits with this output: > > We are using com.jogamp.opengl.awt.GLCanvas for the rendering. > Assertion failed: ("pre: is_bound" && this->IsBound()), function > SendParameters, file > /Users/sanskriti/git/vtk/Rendering/OpenGL2/vtkTextureObject.cxx, > line 617. > Abort trap: 6 > > > On 02/03/2017 03:07 PM, Sebastien Jourdain wrote: >> Does the sample application that get build in vtk.jar with the >> box widget works? >> Meaning you can grab the control balls to resize the box? >> >> The main is vtk.sample.rendering.JoglConeRendering >> >> On Fri, Feb 3, 2017 at 4:02 PM, Kevin Milner > > wrote: >> >> OK I have finally successfully rebuilt VTK with Java support >> from git/master (details in below thread that I left off of >> the list), but unfortunately both Picking issues still exist: >> >> * >> vtkJoglPanelComponent.getRenderWindowInteractor().GetEventPosition() >> still returns bogus y values (e.g. >1300 for a window of >> height 700) >> * once the above is addressed via previously described >> workaround, VTK still thinks that I clicked halfway between >> where I actually clicked and the lower left corner of the >> window (as demonstrated in this video: >> http://sendvid.com/yqz1qww2 >> ) >> >> So unfortunately Sebastien's commit didn't solve my issues. >> >> I'm testing on a MacBook Pro (Retina, 13-inch, Early 2013) >> with OSX Yosemite 10.10.5, but have experienced the same >> behavior on other Macs. >> >> Any other ideas? Any information that I can provide that >> would be helpful? >> >> Thanks, >> Kevin >> >> >> On 02/03/2017 12:41 PM, Sebastien Jourdain wrote: >>> can you try on git/master? I remember something about the >>> wrapper that was buggy at some point. >>> >>> On Fri, Feb 3, 2017 at 1:18 PM, Kevin Milner >>> > wrote: >>> >>> I'm running into some compilation issues trying to build >>> the latest version, both on the Mac and on Linux. Have >>> you encountered this? >>> >>> VTK-7.1.0/build/java/vtk/sample/rendering/JoglConeRendering.java:77: >>> error: cannot find symbol >>> scalarBar.GetScalarBarActor().SetTitle("Example"); >>> ^ >>> symbol: method GetScalarBarActor() >>> location: variable scalarBar of type vtkScalarBarWidget >>> >>> I'm using the latest JOGL jars, 2.3, specifying paths to >>> jogl-all.jar and gluegen-rt.jar. >>> >>> Thanks, >>> Kevin >>> >>> >>> On 02/02/2017 09:35 AM, Sebastien Jourdain wrote: >>>> We have, and our dashboard were producing them for a >>>> while, but when we switch to buildbot all that went away. >>>> >>>> In fact, I would even love to publish them to maven but >>>> never get funding support for it. And very few people >>>> at Kitware know how to deal with Java. >>>> >>>> On Thu, Feb 2, 2017 at 10:30 AM, Kevin Milner >>>> > wrote: >>>> >>>> Hmm, OK, I didn't actually build the libraries (one >>>> of my colleagues did), I just looked in my VTK lib >>>> folder on the Mac and there were files named, for >>>> example, "libvtkalglib-7.0.1.dylib", so that's >>>> where I got 7.0.1 from. But they were built right >>>> around July 2016 so I imagine that they don't >>>> include the fix! I'll report back tomorrow once I >>>> figure out how to build it on a Mac. I'm not sure >>>> which OS the Mac I'm using for testing is but I >>>> imagine that it's not Sierra as it's a couple years >>>> old and likely has not been kept up to date. I'm a >>>> Linux user and not up to date on anything Mac >>>> related. Will report back tomorrow. >>>> >>>> Have you guys ever considered releasing binaries of >>>> VTK-Java? Would be really helpful! >>>> >>>> Thanks, >>>> Kevin >>>> >>>> >>>> On 2/2/2017 9:23 AM, Sebastien Jourdain wrote: >>>>> It seems like 7.1.0 does have my change but not >>>>> 7.0.0. Which make me think it might be a Sierra >>>>> issue if you are using 7.1 not 7.0.1 since the >>>>> latter does not exist. >>>>> >>>>> Which OS are you on? (When you will get back to it ;-) >>>>> >>>>> On Thu, Feb 2, 2017 at 10:13 AM, Kevin Milner >>>>> > wrote: >>>>> >>>>> Thanks Sebastien! >>>>> >>>>> I'm not near a Mac today but will try >>>>> rebuilding tomorrow to see if your fix does >>>>> the trick. I'm currently on 7.0.1, is your >>>>> patch included in the 7.1 release or should I >>>>> check out the latest dev version? I'll report >>>>> back to the list when I find out if it works. >>>>> >>>>> Thanks a lot, >>>>> Kevin >>>>> >>>>> >>>>> On 2/1/2017 4:58 PM, Sebastien Jourdain wrote: >>>>>> Hi Kevin, >>>>>> >>>>>> The issue seems to be related to the retina >>>>>> display and maybe macOS sierra. >>>>>> >>>>>> Which version of VTK are you using? I know >>>>>> that I fixed some picking issue on mac with >>>>>> retina display before Sierra. >>>>>> >>>>>> The change I'm talking about is: >>>>>> >>>>>> commit >>>>>> b6df993770cfcd9a69a48a2730415a992d698c5b >>>>>> Author: Sebastien Jourdain >>>>>> >>>>> > >>>>>> Date: Fri Jul 8 09:45:58 2016 -0400 >>>>>> Fix VTK/Java JOGL >>>>>> >>>>>> - Update JOGL version to 2.32 >>>>>> - Update documentation on how to >>>>>> download the JOGL jars with Maven >>>>>> - Add support for Retina display >>>>>> >>>>>> >>>>>> Ideally, you should make sure you have this >>>>>> commit in your VTK and that is working on >>>>>> system older than Sierra. Then if Sierra is >>>>>> the issue, I think more advanced debugging >>>>>> may be require. Although, VTK compiled on an >>>>>> older OS should work just fine on Sierra. >>>>>> >>>>>> Let me know if you find out more about it. >>>>>> >>>>>> Seb >>>>>> >>>>>> >>>>>> On Wed, Feb 1, 2017 at 5:19 PM, Kevin Milner >>>>>> > wrote: >>>>>> >>>>>> Hello. I develop a VTK Java application >>>>>> for visualizing georeferenced earthquake >>>>>> data, SCEC-VDO (http://scecvdo.usc.edu/). >>>>>> One of the important features of this >>>>>> software is the ability to click on >>>>>> elements of the 3D view to perform >>>>>> actions or view information. This works >>>>>> perfectly on Windows and Linux, but does >>>>>> not work on Macs. I believe that this is >>>>>> due to an internal bug in the Mac version >>>>>> of VTK. We use the vtkJoglPanelComponent >>>>>> to embed the 3D view into our Java >>>>>> application. >>>>>> >>>>>> Here is the code that I use to pick items >>>>>> (where renderWindow is a >>>>>> vtkJoglPanelComponent): >>>>>> >>>>>> renderWindow.getComponent().addMouseListener(new >>>>>> MouseAdapter() { >>>>>> public void mousePressed(MouseEvent e) { >>>>>> int[] clickPos = >>>>>> renderWindow.getRenderWindowInteractor().GetEventPosition(); >>>>>> >>>>>> int x = clickPos[0]; >>>>>> int y = clickPos[1]; >>>>>> >>>>>> cellPicker.Pick(x, y, 0, >>>>>> renderWindow.getRenderer()); >>>>>> if (cellPicker.GetActor() != null) { >>>>>> // do stuff >>>>>> ... >>>>>> } >>>>>> } >>>>>> }); >>>>>> >>>>>> The first bug is that the y value of >>>>>> getRenderWindowInteractor().GetEventPosition() >>>>>> is just flat out wrong on the Mac >>>>>> (correct on Windows and Linux). For >>>>>> example, if I click near the top of my >>>>>> window with height 700, if will give me a >>>>>> y value that is greater than 1300! It >>>>>> should actually be very small, as y >>>>>> should be zero at the top of the window >>>>>> and 700 at the bottom of the window. I >>>>>> can get around this, and make it match >>>>>> the position on Linux/Windows with the >>>>>> following fix using the mouseEvent (e) >>>>>> and the height of the 3D view component: >>>>>> >>>>>> int height = >>>>>> renderWindow.getComponent().getHeight(); >>>>>> int calcY = (height - e.getY()) - 1; >>>>>> int x = e.getX(); >>>>>> int y = calcY; >>>>>> >>>>>> Now when I click on a location in the 3D >>>>>> viewer, the x/y coordinates match the >>>>>> results on Linux/Windows. But picking >>>>>> actors still doesn't work. Instead, VTK >>>>>> thinks that I have clicked somewhere >>>>>> roughly between where I actually clicked >>>>>> and the bottom left corner. So if I click >>>>>> on the top right corner of the viewer, it >>>>>> thinks that I clicked in the middle. If I >>>>>> click on the top left, if thinks that I >>>>>> clicked middle left. If I click on the >>>>>> middle of the viewer, it thinks that I >>>>>> clicked 1/4 up and right of the lower >>>>>> left corner. I have posted a video which >>>>>> demonstrates this bug: >>>>>> >>>>>> http://sendvid.com/yqz1qww2 >>>>>> >>>>>> >>>>>> In this video, whatever actor is clicked >>>>>> turns red. This works as expected on >>>>>> Windows/Linux, both with and without the >>>>>> x/y fix mentioned above. Without the >>>>>> previous fix on a Mac, the behavior is >>>>>> similar but centered around the top left >>>>>> corner and sometimes doesn't detect >>>>>> clicks at all (due to y values which make >>>>>> no sense). >>>>>> >>>>>> Any ideas what could be going on? I have >>>>>> experienced this behavior on all 4 Mac's >>>>>> on which I have tried the software. >>>>>> >>>>>> Thanks, >>>>>> Kevin Milner >>>>>> _______________________________________________ >>>>>> Powered by www.kitware.com >>>>>> >>>>>> >>>>>> Visit other Kitware open-source projects >>>>>> at >>>>>> http://www.kitware.com/opensource/opensource.html >>>>>> >>>>>> >>>>>> Please keep messages on-topic and check >>>>>> the VTK FAQ at: >>>>>> http://www.vtk.org/Wiki/VTK_FAQ >>>>>> >>>>>> >>>>>> Search the list archives at: >>>>>> http://markmail.org/search/?q=vtkusers >>>>>> >>>>>> >>>>>> Follow this link to subscribe/unsubscribe: >>>>>> http://public.kitware.com/mailman/listinfo/vtkusers >>>>>> >>>>>> >>>>>> >>>>> >>>>> >>>> >>>> >>> >>> >> >> > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From sean at rogue-research.com Fri Feb 3 19:35:25 2017 From: sean at rogue-research.com (Sean McBride) Date: Fri, 3 Feb 2017 19:35:25 -0500 Subject: [vtkusers] Issues with picking in VTK Java on Mac OS X In-Reply-To: <6c6ec915-7314-c7cf-6307-e796c51432d2@usc.edu> References: <94b76fe5-cd64-f581-20c5-8d83e6bc93b7@usc.edu> <5d4ae6e5-a2ad-8d8b-588a-95e8ae0c7236@usc.edu> <6c6ec915-7314-c7cf-6307-e796c51432d2@usc.edu> Message-ID: <20170204003525.2097551751@mail.rogue-research.com> On Fri, 3 Feb 2017 15:02:36 -0800, Kevin Milner said: >I'm testing on a MacBook Pro (Retina, 13-inch, Early 2013) with OSX >Yosemite 10.10.5, but have experienced the same behavior on other Macs. Have you tried both Retina and non-Retina Macs? Does it occur on both? Cheers, -- ____________________________________________________________ Sean McBride, B. Eng sean at rogue-research.com Rogue Research www.rogue-research.com Mac Software Developer Montr?al, Qu?bec, Canada From enzo.matsumiya at gmail.com Fri Feb 3 20:41:14 2017 From: enzo.matsumiya at gmail.com (Enzo Matsumiya) Date: Fri, 3 Feb 2017 23:41:14 -0200 Subject: [vtkusers] Using MacBook trackpad freezes application In-Reply-To: References: Message-ID: Hi David, I tested both with Qt 5.7.0 and 5.7.1. Sorry I forgot to mention this. Thanks. On Feb 3, 2017 19:27, "David Gobbi" wrote: > Hi Enzo, > > Can you also report what version of Qt you are using? Be sure to include > the patch number, e.g. Qt 4.8.5. > > - David > > On Wed, Feb 1, 2017 at 11:43 AM, Enzo Matsumiya > wrote: > >> Hi, >> >> I'm experiencing exactly this bug, though not only when scrolling, >> dragging also freezes: >> >> http://www.paraview.org/Bug/view.php?id=15822 >> >> - macOS 10.11 or 10.12 >> - QVTKWidget, vktResliceImageViewer with a DICOM data set >> - Either VTK 7.0 or 7.1 >> >> I normally use the MacBook connected to an external monitor, keyboard and >> mouse (non-Apple). I just recently stumbled on this issue when I needed to >> work with it on my lap. >> >> When using an external mouse, everything works fine. >> When using the trackpad, it *looks* like it worked (windowing is changed, >> reslice occurs, etc), but it stats getting so slow that the application >> freezes. The external trackpad has the same behaviour (not sure this is >> obvious). If it's not very clear, please download the videos attached to >> the bug report mentioned. >> >> >> I hope there is some solution for this. >> >> >> Thank you very much! >> >> -- >> >> Enzo Ferlin Matsumiya >> enzo.matsumiya AT gmail DOT com >> > -------------- next part -------------- An HTML attachment was scrubbed... URL: From sebastien.jourdain at kitware.com Fri Feb 3 20:45:13 2017 From: sebastien.jourdain at kitware.com (Sebastien Jourdain) Date: Fri, 3 Feb 2017 18:45:13 -0700 Subject: [vtkusers] Issues with picking in VTK Java on Mac OS X In-Reply-To: <1385874d-ebce-75b9-feb6-2a5bcceccf1a@usc.edu> References: <94b76fe5-cd64-f581-20c5-8d83e6bc93b7@usc.edu> <5d4ae6e5-a2ad-8d8b-588a-95e8ae0c7236@usc.edu> <6c6ec915-7314-c7cf-6307-e796c51432d2@usc.edu> <384bc7b7-5fea-c4c0-38d0-229299070b76@usc.edu> <1385874d-ebce-75b9-feb6-2a5bcceccf1a@usc.edu> Message-ID: I have to try again and build it to see if that work for me. On Fri, Feb 3, 2017 at 5:15 PM, Kevin Milner wrote: > Does that demo work for you on a Mac? I just tried it with the previous > 7.0 release and had the same results. My Java version is 1.8.0_91, 64 bit. > If it does work for you, would you mind posting your lib folder somewhere > so I can see if it's a compilation/configuration issue on my end? > > > Thanks, > Kevin > > On 02/03/2017 03:50 PM, Sebastien Jourdain wrote: > > Hum, interesting. > > I have no idea of what is going on... ;-( > > Sorry > > On Fri, Feb 3, 2017 at 4:23 PM, Kevin Milner wrote: > >> The JoglConeRendering sample program works perfectly for me on Linux, on >> the Mac the window opens but is blank. After a few seconds it exits with >> this output: >> >> We are using com.jogamp.opengl.awt.GLCanvas for the rendering. >> Assertion failed: ("pre: is_bound" && this->IsBound()), function >> SendParameters, file /Users/sanskriti/git/vtk/Rende >> ring/OpenGL2/vtkTextureObject.cxx, line 617. >> Abort trap: 6 >> >> >> On 02/03/2017 03:07 PM, Sebastien Jourdain wrote: >> >> Does the sample application that get build in vtk.jar with the box widget >> works? >> Meaning you can grab the control balls to resize the box? >> >> The main is vtk.sample.rendering.JoglConeRendering >> >> On Fri, Feb 3, 2017 at 4:02 PM, Kevin Milner wrote: >> >>> OK I have finally successfully rebuilt VTK with Java support from >>> git/master (details in below thread that I left off of the list), but >>> unfortunately both Picking issues still exist: >>> >>> * vtkJoglPanelComponent.getRenderWindowInteractor().GetEventPosition() >>> still returns bogus y values (e.g. >1300 for a window of height 700) >>> * once the above is addressed via previously described workaround, VTK >>> still thinks that I clicked halfway between where I actually clicked and >>> the lower left corner of the window (as demonstrated in this video: >>> http://sendvid.com/yqz1qww2 >>> >>> ) >>> >>> So unfortunately Sebastien's commit didn't solve my issues. >>> >>> I'm testing on a MacBook Pro (Retina, 13-inch, Early 2013) with OSX >>> Yosemite 10.10.5, but have experienced the same behavior on other Macs. >>> >>> Any other ideas? Any information that I can provide that would be >>> helpful? >>> >>> Thanks, >>> Kevin >>> >>> >>> On 02/03/2017 12:41 PM, Sebastien Jourdain wrote: >>> >>> can you try on git/master? I remember something about the wrapper that >>> was buggy at some point. >>> >>> On Fri, Feb 3, 2017 at 1:18 PM, Kevin Milner wrote: >>> >>>> I'm running into some compilation issues trying to build the latest >>>> version, both on the Mac and on Linux. Have you encountered this? >>>> >>>> VTK-7.1.0/build/java/vtk/sample/rendering/JoglConeRendering.java:77: >>>> error: cannot find symbol >>>> scalarBar.GetScalarBarActor().SetTitle("Example"); >>>> ^ >>>> symbol: method GetScalarBarActor() >>>> location: variable scalarBar of type vtkScalarBarWidget >>>> >>>> I'm using the latest JOGL jars, 2.3, specifying paths to jogl-all.jar >>>> and gluegen-rt.jar. >>>> >>>> Thanks, >>>> Kevin >>>> >>>> >>>> On 02/02/2017 09:35 AM, Sebastien Jourdain wrote: >>>> >>>> We have, and our dashboard were producing them for a while, but when we >>>> switch to buildbot all that went away. >>>> >>>> In fact, I would even love to publish them to maven but never get >>>> funding support for it. And very few people at Kitware know how to deal >>>> with Java. >>>> >>>> On Thu, Feb 2, 2017 at 10:30 AM, Kevin Milner wrote: >>>> >>>>> Hmm, OK, I didn't actually build the libraries (one of my colleagues >>>>> did), I just looked in my VTK lib folder on the Mac and there were files >>>>> named, for example, "libvtkalglib-7.0.1.dylib", so that's where I got 7.0.1 >>>>> from. But they were built right around July 2016 so I imagine that they >>>>> don't include the fix! I'll report back tomorrow once I figure out how to >>>>> build it on a Mac. I'm not sure which OS the Mac I'm using for testing is >>>>> but I imagine that it's not Sierra as it's a couple years old and likely >>>>> has not been kept up to date. I'm a Linux user and not up to date on >>>>> anything Mac related. Will report back tomorrow. >>>>> >>>>> Have you guys ever considered releasing binaries of VTK-Java? Would be >>>>> really helpful! >>>>> >>>>> Thanks, >>>>> Kevin >>>>> >>>>> >>>>> On 2/2/2017 9:23 AM, Sebastien Jourdain wrote: >>>>> >>>>> It seems like 7.1.0 does have my change but not 7.0.0. Which make me >>>>> think it might be a Sierra issue if you are using 7.1 not 7.0.1 since the >>>>> latter does not exist. >>>>> >>>>> Which OS are you on? (When you will get back to it ;-) >>>>> >>>>> On Thu, Feb 2, 2017 at 10:13 AM, Kevin Milner wrote: >>>>> >>>>>> Thanks Sebastien! >>>>>> >>>>>> I'm not near a Mac today but will try rebuilding tomorrow to see if >>>>>> your fix does the trick. I'm currently on 7.0.1, is your patch included in >>>>>> the 7.1 release or should I check out the latest dev version? I'll report >>>>>> back to the list when I find out if it works. >>>>>> >>>>>> Thanks a lot, >>>>>> Kevin >>>>>> >>>>>> >>>>>> On 2/1/2017 4:58 PM, Sebastien Jourdain wrote: >>>>>> >>>>>> Hi Kevin, >>>>>> >>>>>> The issue seems to be related to the retina display and maybe macOS >>>>>> sierra. >>>>>> >>>>>> Which version of VTK are you using? I know that I fixed some picking >>>>>> issue on mac with retina display before Sierra. >>>>>> >>>>>> The change I'm talking about is: >>>>>> >>>>>> commit b6df993770cfcd9a69a48a2730415a992d698c5b >>>>>>> Author: Sebastien Jourdain >>>>>>> Date: Fri Jul 8 09:45:58 2016 -0400 >>>>>>> Fix VTK/Java JOGL >>>>>>> >>>>>>> - Update JOGL version to 2.32 >>>>>>> - Update documentation on how to download the JOGL jars with >>>>>>> Maven >>>>>>> - Add support for Retina display >>>>>>> >>>>>> >>>>>> Ideally, you should make sure you have this commit in your VTK and >>>>>> that is working on system older than Sierra. Then if Sierra is the issue, I >>>>>> think more advanced debugging may be require. Although, VTK compiled on an >>>>>> older OS should work just fine on Sierra. >>>>>> >>>>>> Let me know if you find out more about it. >>>>>> >>>>>> Seb >>>>>> >>>>>> >>>>>> On Wed, Feb 1, 2017 at 5:19 PM, Kevin Milner wrote: >>>>>> >>>>>>> Hello. I develop a VTK Java application for visualizing >>>>>>> georeferenced earthquake data, SCEC-VDO (http://scecvdo.usc.edu/). >>>>>>> One of the important features of this software is the ability to click on >>>>>>> elements of the 3D view to perform actions or view information. This works >>>>>>> perfectly on Windows and Linux, but does not work on Macs. I believe that >>>>>>> this is due to an internal bug in the Mac version of VTK. We use the >>>>>>> vtkJoglPanelComponent to embed the 3D view into our Java application. >>>>>>> >>>>>>> Here is the code that I use to pick items (where renderWindow is a >>>>>>> vtkJoglPanelComponent): >>>>>>> >>>>>>> renderWindow.getComponent().addMouseListener(new >>>>>>> MouseAdapter() { >>>>>>> public void mousePressed(MouseEvent e) { >>>>>>> int[] clickPos = renderWindow.getRenderWindowIn >>>>>>> teractor().GetEventPosition(); >>>>>>> >>>>>>> int x = clickPos[0]; >>>>>>> int y = clickPos[1]; >>>>>>> >>>>>>> cellPicker.Pick(x, y, 0, renderWindow.getRenderer()); >>>>>>> if (cellPicker.GetActor() != null) { >>>>>>> // do stuff >>>>>>> ... >>>>>>> } >>>>>>> } >>>>>>> }); >>>>>>> >>>>>>> The first bug is that the y value of getRenderWindowInteractor().GetEventPosition() >>>>>>> is just flat out wrong on the Mac (correct on Windows and Linux). For >>>>>>> example, if I click near the top of my window with height 700, if will give >>>>>>> me a y value that is greater than 1300! It should actually be very small, >>>>>>> as y should be zero at the top of the window and 700 at the bottom of the >>>>>>> window. I can get around this, and make it match the position on >>>>>>> Linux/Windows with the following fix using the mouseEvent (e) and the >>>>>>> height of the 3D view component: >>>>>>> >>>>>>> int height = renderWindow.getComponent().ge >>>>>>> tHeight(); >>>>>>> int calcY = (height - e.getY()) - 1; >>>>>>> int x = e.getX(); >>>>>>> int y = calcY; >>>>>>> >>>>>>> Now when I click on a location in the 3D viewer, the x/y coordinates >>>>>>> match the results on Linux/Windows. But picking actors still doesn't work. >>>>>>> Instead, VTK thinks that I have clicked somewhere roughly between where I >>>>>>> actually clicked and the bottom left corner. So if I click on the top right >>>>>>> corner of the viewer, it thinks that I clicked in the middle. If I click on >>>>>>> the top left, if thinks that I clicked middle left. If I click on the >>>>>>> middle of the viewer, it thinks that I clicked 1/4 up and right of the >>>>>>> lower left corner. I have posted a video which demonstrates this bug: >>>>>>> >>>>>>> http://sendvid.com/yqz1qww2 >>>>>>> >>>>>>> >>>>>>> In this video, whatever actor is clicked turns red. This works as >>>>>>> expected on Windows/Linux, both with and without the x/y fix mentioned >>>>>>> above. Without the previous fix on a Mac, the behavior is similar but >>>>>>> centered around the top left corner and sometimes doesn't detect clicks at >>>>>>> all (due to y values which make no sense). >>>>>>> >>>>>>> Any ideas what could be going on? I have experienced this behavior >>>>>>> on all 4 Mac's on which I have tried the software. >>>>>>> >>>>>>> Thanks, >>>>>>> Kevin Milner >>>>>>> _______________________________________________ >>>>>>> Powered by www.kitware.com >>>>>>> >>>>>>> >>>>>>> Visit other Kitware open-source projects at >>>>>>> http://www.kitware.com/opensource/opensource.html >>>>>>> >>>>>>> >>>>>>> Please keep messages on-topic and check the VTK FAQ at: >>>>>>> http://www.vtk.org/Wiki/VTK_FAQ >>>>>>> >>>>>>> >>>>>>> Search the list archives at: http://markmail.org/search/?q=vtkusers >>>>>>> >>>>>>> >>>>>>> Follow this link to subscribe/unsubscribe: >>>>>>> http://public.kitware.com/mailman/listinfo/vtkusers >>>>>>> >>>>>>> >>>>>> >>>>>> >>>>>> >>>>> >>>>> >>>> >>>> >>> >>> >> >> > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From joaolsvieira at gmail.com Sat Feb 4 11:31:50 2017 From: joaolsvieira at gmail.com (=?UTF-8?Q?Jo=C3=A3o_Luis?=) Date: Sat, 4 Feb 2017 11:31:50 -0500 Subject: [vtkusers] vtkBezierSurface vs VTK 7.0 Message-ID: Hello vtkusers, I just had downloaded a version of vtkBezierSurface (https://github.com/daviddoria/BezierSurface) daviddoria/ BezierSurface. It worked smoothly with VTK 6.1. However, I am struggling to build the example with VTK 7.0. The build is crashing in those macros: vtkCxxRevisionMacro(vtkBezierSurfaceSource, "$Revision: 1.53 $"); Error 5 error C2059: syntax error : 'string' vtkBezierSurfaceSource.cxx 53 1 BezierSource Error 17 error C2059: syntax error : 'string' C:\VektoreSoftware_FileStructure\VektoreSoftware\Implementation\Support\VTK\ BezierSurface-master\vtkBezierSurfaceWidget.cxx 45 1 BezierSourceWidget vtkTypeRevisionMacro(vtkBezierSurfaceWidget, vtk3DWidget); Error 7 error C2259: 'vtk3DWidget' : cannot instantiate abstract class vtkBezierSurfaceWidget.h 51 1 BezierSourceWidget vtkTypeRevisionMacro(vtkBezierSurfaceSource, vtkPolyDataAlgorithm); Error 10 error C4430: missing type specifier - int assumed. Note: C++ does not support default-int vtkBezierSurfaceSource.h 47 1 BezierSourceWidget Thank you very much for any help, Joao -------------- next part -------------- An HTML attachment was scrubbed... URL: From joaolsvieira at gmail.com Sat Feb 4 11:34:25 2017 From: joaolsvieira at gmail.com (=?UTF-8?Q?Jo=C3=A3o_Luis?=) Date: Sat, 4 Feb 2017 11:34:25 -0500 Subject: [vtkusers] vtk3DWidget vs VTK 7.0/VTK 7.1 Message-ID: Hello vtkusers, There are anybody that gotten to build vtk3DWidget against VTK 7.0 using CMAKE? Which module I could set on CMAKE to get this component (vtk3DWidget) library? Thank you very much for any help, Joao -------------- next part -------------- An HTML attachment was scrubbed... URL: From ninarock at list.ru Sat Feb 4 16:42:39 2017 From: ninarock at list.ru (Butterfly) Date: Sat, 4 Feb 2017 14:42:39 -0700 (MST) Subject: [vtkusers] Unicode support for Axis Titles and Labels in vtkCubeAxesActor2D In-Reply-To: References: <1486121728253-5742039.post@n5.nabble.com> Message-ID: <1486244559353-5742063.post@n5.nabble.com> Many thanks for such a prompt reply! As far as I understand, both options that you mentioned are available only for vtkCubeAxesActor, not for vtkCubeAxesActor2D. I tried it with vtkCubeAxesActor, the experimental feature with vtkTextActor3D does not show the Unicode (VTK 7.0). The second one (Use2DMode) shows it, but the titles are placed buggy: sometimes parallel to the axes, sometimes perpendicular. With Use2DMode=0 the titles are placed always parallel to the axes and this is how it seems to be right. If the experimental feature with vtkTextActor3D is fixed some time soon, I will be happy. It is not that critical at the moment, can wait some time. -- View this message in context: http://vtk.1045678.n5.nabble.com/Unicode-support-for-Axis-Titles-and-Labels-in-vtkCubeAxesActor2D-tp5742039p5742063.html Sent from the VTK - Users mailing list archive at Nabble.com. From lasso at queensu.ca Sat Feb 4 19:00:23 2017 From: lasso at queensu.ca (Andras Lasso) Date: Sun, 5 Feb 2017 00:00:23 +0000 Subject: [vtkusers] vtkBezierSurface vs VTK 7.0 In-Reply-To: References: Message-ID: There were a few trivial incompatibilities. See what you need to change in this pull request: https://github.com/daviddoria/BezierSurface/pull/3/files Andras From: vtkusers [mailto:vtkusers-bounces at vtk.org] On Behalf Of Jo?o Luis Sent: February 4, 2017 11:32 To: vtkusers at vtk.org Subject: [vtkusers] vtkBezierSurface vs VTK 7.0 Hello vtkusers, I just had downloaded a version of vtkBezierSurface (https://github.com/daviddoria/BezierSurface) daviddoria/ BezierSurface. It worked smoothly with VTK 6.1. However, I am struggling to build the example with VTK 7.0. The build is crashing in those macros: vtkCxxRevisionMacro(vtkBezierSurfaceSource, "$Revision: 1.53 $"); Error 5 error C2059: syntax error : 'string' vtkBezierSurfaceSource.cxx 53 1 BezierSource Error 17 error C2059: syntax error : 'string' C:\VektoreSoftware_FileStructure\VektoreSoftware\Implementation\Support\VTK\ BezierSurface-master\vtkBezierSurfaceWidget.cxx 45 1 BezierSourceWidget vtkTypeRevisionMacro(vtkBezierSurfaceWidget, vtk3DWidget); Error 7 error C2259: 'vtk3DWidget' : cannot instantiate abstract class vtkBezierSurfaceWidget.h 51 1 BezierSourceWidget vtkTypeRevisionMacro(vtkBezierSurfaceSource, vtkPolyDataAlgorithm); Error 10 error C4430: missing type specifier - int assumed. Note: C++ does not support default-int vtkBezierSurfaceSource.h 47 1 BezierSourceWidget Thank you very much for any help, Joao -------------- next part -------------- An HTML attachment was scrubbed... URL: From e_mal at inbox.ru Sun Feb 5 12:02:58 2017 From: e_mal at inbox.ru (=?UTF-8?B?0JXQstCz0LXQvdC40Y8g0JzQsNC70LjQutC+0LLQsA==?=) Date: Sun, 05 Feb 2017 20:02:58 +0300 Subject: [vtkusers] =?utf-8?q?Python_wrapping_and_furter_use_of_a_custom_c?= =?utf-8?q?lass_derived_from_vtkImplicitFunction?= Message-ID: <1486314178.630443783@f81.i.mail.ru> Hi, I am trying to wrap a custom class derived from vtkImplicitFunction in python. Wrapping was done with a similar to http://public.kitware.com/pipermail/vtkusers/2016-August/096019.html CMakeLists.txt .All methods are accessed and work fine within python. But when I try to pass this class variable to vtkSampleFunction as ImplicitFunction, I receive an error: >m=myClassPython.myClass() >s=vtk.vtkSampleFunction() >s.SetImplicitFunction(m) TypeError:SetImplicitFunction argument 1: methond requires a VTK Object. I'm launching this code with vtkpython.exe. .h file of wrapped class looks like: class myClass : public vtkImplicitFunction { public: static myClass *New(); vtkTypeMacro(myClass, vtkImplicitFunction); void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE; vtkMTimeType GetMTime() VTK_OVERRIDE; // Description // Evaluate function double EvaluateFunction(double x[3]) VTK_OVERRIDE; double EvaluateFunction(double x, double y, double z) { return this->vtkImplicitFunction::EvaluateFunction(x, y, z); } ..... myClass(); ~myClass() VTK_OVERRIDE; private: myClass(const myClass&) VTK_DELETE_FUNCTION; void operator=(const myClass&)VTK_DELETE_FUNCTION; }; I don't have much experience in vtk to python wrapping and I guess there is something very simple, but I don't have any idea what it can be. Any help would be appreciated. Thank you in advance, Best regards, Evgeniya -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.gobbi at gmail.com Sun Feb 5 13:10:21 2017 From: david.gobbi at gmail.com (David Gobbi) Date: Sun, 5 Feb 2017 11:10:21 -0700 Subject: [vtkusers] Python wrapping and furter use of a custom class derived from vtkImplicitFunction In-Reply-To: <1486314178.630443783@f81.i.mail.ru> References: <1486314178.630443783@f81.i.mail.ru> Message-ID: Hi Evgeniya, Try renaming your class to vtkMyClass to see if that works. - David On Sun, Feb 5, 2017 at 10:02 AM, ??????? ???????? via vtkusers < vtkusers at vtk.org> wrote: > * Hi, > * > > > > *I am trying to wrap a custom class derived from vtkImplicitFunction in python. Wrapping was done with a similar to http://public.kitware.com/pipermail/vtkusers/2016-August/096019.html CMakeLists.txt .All methods are accessed and work fine within python. But when I try to pass this class variable to vtkSampleFunction as ImplicitFunction, I receive an error:>m=myClassPython.myClass()>s=vtk.vtkSampleFunction()>s.SetImplicitFunction(m)* > > TypeError:SetImplicitFunction argument 1: methond requires a VTK Object. > > I'm launching this code with vtkpython.exe. > > .h file of wrapped class looks like: > > class myClass : public vtkImplicitFunction { > public: > static myClass *New(); > vtkTypeMacro(myClass, vtkImplicitFunction); > void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE; > vtkMTimeType GetMTime() VTK_OVERRIDE; > > // Description > // Evaluate function > double EvaluateFunction(double x[3]) VTK_OVERRIDE; > double EvaluateFunction(double x, double y, double z) { > return this->vtkImplicitFunction::EvaluateFunction(x, y, z); > } > ..... > myClass(); > ~myClass() VTK_OVERRIDE; > > private: > myClass(const myClass&) VTK_DELETE_FUNCTION; > void operator=(const myClass&)VTK_DELETE_FUNCTION; > }; > > *I don't have much experience in vtk to python wrapping and I guess there is something very simple, but I don't have any idea what it can be. Any help would be appreciated. > *Thank you in advance, > Best regards, > Evgeniya > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From e_mal at inbox.ru Sun Feb 5 14:38:42 2017 From: e_mal at inbox.ru (=?UTF-8?B?0JXQstCz0LXQvdC40Y8g0JzQsNC70LjQutC+0LLQsA==?=) Date: Sun, 05 Feb 2017 22:38:42 +0300 Subject: [vtkusers] =?utf-8?q?Python_wrapping_and_furter_use_of_a_custom_c?= =?utf-8?q?lass_derived_from_vtkImplicitFunction?= In-Reply-To: References: <1486314178.630443783@f81.i.mail.ru> Message-ID: <1486323522.332097427@f427.i.mail.ru> Thank you very much. It worked. Best regards, Evgeniya >???????????, 5 ??????? 2017, 21:10 +03:00 ?? David Gobbi : > >Hi?Evgeniya, > >Try renaming your class to vtkMyClass to see if that works. > >?- David > >On Sun, Feb 5, 2017 at 10:02 AM, ??????? ???????? via vtkusers < vtkusers at vtk.org > wrote: >> Hi, >>I am trying to wrap a custom class derived from vtkImplicitFunction in python. Wrapping was done with a similar to http://public.kitware.com/pipermail/vtkusers/2016-August/096019.html CMakeLists.txt .All methods are accessed and work fine within python. But when I try to pass this class variable to vtkSampleFunction as ImplicitFunction, I receive an error: >> >>>m=myClassPython.myClass() >>>s=vtk.vtkSampleFunction() >>>s.SetImplicitFunction(m) TypeError:SetImplicitFunction argument 1: methond requires a VTK Object. >> >>I'm launching this code with vtkpython.exe. >> >>.h file of wrapped class looks like: >> >>class myClass : public vtkImplicitFunction { >>public: >>static myClass *New(); >>vtkTypeMacro(myClass, vtkImplicitFunction); >>void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE; >>vtkMTimeType GetMTime() VTK_OVERRIDE; >>// Description >>// Evaluate function >>double EvaluateFunction(double x[3]) VTK_OVERRIDE; >>double EvaluateFunction(double x, double y, double z) { >>return this->vtkImplicitFunction::EvaluateFunction(x, y, z); >>} >>..... >>myClass(); >>~myClass() VTK_OVERRIDE; >>private: >>myClass(const myClass&) VTK_DELETE_FUNCTION; >>void operator=(const myClass&)VTK_DELETE_FUNCTION; >>}; >>I don't have much experience in vtk to python wrapping and I guess there is something very simple, but I don't have any idea what it can be. Any help would be appreciated. >>Thank you in advance, >>Best regards, >>Evgeniya -------------- next part -------------- An HTML attachment was scrubbed... URL: From bebe0705 at colorado.edu Sun Feb 5 19:19:56 2017 From: bebe0705 at colorado.edu (BBerco) Date: Sun, 5 Feb 2017 17:19:56 -0700 (MST) Subject: [vtkusers] Bug? vtkNormalFilter changes # of points in polydata Message-ID: <1486340396495-5742068.post@n5.nabble.com> Dear all, I have noticed a strange behavior of vtkNormalFilter. When called, this filter appears to change the number of vtkPolyData -> GetNumberOfPoints(), as illustrated below: * // returns 4586 * std::cout << read_polydata_without_id -> GetNumberOfPoints() << std::endl; // The polydata is fed to an IDFilter. vtkSmartPointer id_filter = vtkSmartPointer::New(); id_filter -> SetIdsArrayName("ids"); id_filter -> SetInputData(read_polydata_without_id); id_filter -> PointIdsOn(); id_filter -> CellIdsOn(); id_filter -> Update(); * // returns 4586 * std::cout << id_filter -> GetOutput() -> GetNumberOfPoints() << std::endl; // The normals are added to the polydata vtkSmartPointer normal_filter = vtkPolyDataNormals::New(); normal_filter -> ComputePointNormalsOff(); normal_filter -> ComputeCellNormalsOn(); normal_filter -> SetInputConnection(id_filter -> GetOutputPort()); normal_filter -> Update (); * // returns 4716 * std::cout << normal_filter -> GetOutput() -> GetNumberOfPoints() << std::endl; I have noticed this issue with several polydatas created from an input obj file such as this one (http://echo.jpl.nasa.gov/asteroids/shapes/kw4a.obj). Polydata generated from VTK seem unchanged. In any case, I find strange that this property gets modified. Am I missing something? Why would adding the normals to the polydata change the number of points it contains? Best, Ben -- View this message in context: http://vtk.1045678.n5.nabble.com/Bug-vtkNormalFilter-changes-of-points-in-polydata-tp5742068.html Sent from the VTK - Users mailing list archive at Nabble.com. From cory.quammen at kitware.com Sun Feb 5 22:14:30 2017 From: cory.quammen at kitware.com (Cory Quammen) Date: Sun, 5 Feb 2017 22:14:30 -0500 Subject: [vtkusers] Bug? vtkNormalFilter changes # of points in polydata In-Reply-To: <1486340396495-5742068.post@n5.nabble.com> References: <1486340396495-5742068.post@n5.nabble.com> Message-ID: This is likely due to the Splitting option being on by default and the polydata having "sharp" edges that the filter assumes you want to appear sharp. Consider an example of a cube - if you average the normals from all coincident faces at the vertices of the cube, which this filter does, then the cube will appear very odd. Instead, the vtkPolyDataNormals filter splits the edges of the cube. Splitting means that duplicate points are added to the original cube to accommodate different normals at the same point, something that is needed to preserve the appearance of sharp edges in a mesh. You have the original points with normals assigned for one face of the cube, then the added split points have normals assigned for the other adjacent faces of the cube. Splitting is done where the angle between adjacent normals is greater than some threshold. In this filter, that threshold is called the "FeatureAngle". I suspect your polydata has some sharp angles and points are being added for splitting. The example OBJ file you linked to has reasonably sharp edges. HTH, Cory On Sun, Feb 5, 2017 at 7:19 PM, BBerco wrote: > Dear all, > I have noticed a strange behavior of vtkNormalFilter. > > When called, this filter appears to change the number of vtkPolyData -> > GetNumberOfPoints(), as illustrated below: > * > // returns 4586 > * std::cout << read_polydata_without_id -> GetNumberOfPoints() << > std::endl; > > // The polydata is fed to an IDFilter. > vtkSmartPointer id_filter = > vtkSmartPointer::New(); > id_filter -> SetIdsArrayName("ids"); > id_filter -> SetInputData(read_polydata_without_id); > id_filter -> PointIdsOn(); > id_filter -> CellIdsOn(); > > id_filter -> Update(); > * // returns 4586 > * std::cout << id_filter -> GetOutput() -> GetNumberOfPoints() << > std::endl; > > // The normals are added to the polydata > vtkSmartPointer normal_filter = > vtkPolyDataNormals::New(); > normal_filter -> ComputePointNormalsOff(); > normal_filter -> ComputeCellNormalsOn(); > normal_filter -> SetInputConnection(id_filter -> GetOutputPort()); > normal_filter -> Update (); > > * // returns 4716 > * std::cout << normal_filter -> GetOutput() -> GetNumberOfPoints() << > std::endl; > > > I have noticed this issue with several polydatas created from an input obj > file such as this one (http://echo.jpl.nasa.gov/asteroids/shapes/kw4a.obj). > Polydata generated from VTK seem unchanged. > > In any case, I find strange that this property gets modified. Am I missing > something? Why would adding the normals to the polydata change the number of > points it contains? > > Best, > Ben > > > > -- > View this message in context: http://vtk.1045678.n5.nabble.com/Bug-vtkNormalFilter-changes-of-points-in-polydata-tp5742068.html > Sent from the VTK - Users mailing list archive at Nabble.com. > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers -- Cory Quammen Staff R&D Engineer Kitware, Inc. From bebe0705 at colorado.edu Mon Feb 6 08:33:09 2017 From: bebe0705 at colorado.edu (BBerco) Date: Mon, 6 Feb 2017 06:33:09 -0700 (MST) Subject: [vtkusers] Bug? vtkNormalFilter changes # of points in polydata In-Reply-To: References: <1486340396495-5742068.post@n5.nabble.com> Message-ID: <1486387989887-5742070.post@n5.nabble.com> Cory, thank you for the detailed explanation. Here's some context information on how this came up: I ran into this problem while trying to reconstruct the connectivity table between the edges (each edge being identified by a sorted pair of vertex indices) and the polydata facets they belong to. More specifically, I need two of those: the "forward connectivity table" linking facets to the 3 edges they own, and the "backward connectivity table" linking edges to the facets they belong too. I was constructing those two by looping over the polydata cells, casting those cells to vtkTriangle so as to use vtkSmartPointer edge = trig -> GetEdge(i); vtkSmartPointer pointIdList = edge -> GetPointIds(); on the triangles. This reconstruction process fails for the backward connectivity table because of the spurious points/edges introduced by the splitting algorithm (they appear to be owned by a single facet). Do you know a more elegant procedure to get access to all the "real" edges (in the form of the indices of the vertices forming each edge) present in the polydata before the splitting? Best, Ben -- View this message in context: http://vtk.1045678.n5.nabble.com/Bug-vtkNormalFilter-changes-of-points-in-polydata-tp5742068p5742070.html Sent from the VTK - Users mailing list archive at Nabble.com. From jeff.baumes at kitware.com Mon Feb 6 08:50:50 2017 From: jeff.baumes at kitware.com (Jeff Baumes) Date: Mon, 06 Feb 2017 13:50:50 +0000 Subject: [vtkusers] vtkExtractSelectedPolyDataIds and inverse selection: bug? In-Reply-To: <1486011594800-5742021.post@n5.nabble.com> References: <1486011594800-5742021.post@n5.nabble.com> Message-ID: In years since vtkExtractSelectedPolyDataIds was made, vtkSelection was updated and generalized, including the addition of the inverse flag. It looks like supporting that flag was not back-ported to this filter. There is now the more general vtkExtractSelectedIds, and the even more general vtkExtractSelection, which should work on arbitrary selection types and should support inverse. I've added https://gitlab.kitware.com/vtk/vtk/issues/16976 to capture your issue. Jeff On Thu, Feb 2, 2017 at 12:00 AM BBerco wrote: > Dear all, > I am trying to obtain a selected subset A from a polydata C as well as the > unselected subset B (so that A U B = C) from a rubber band selection, in > the > form of two polydatas. > > If I'm able to obtain A using vtkExtractSelectedPolyDataIds, I am unable to > invert the selection to get B. > The attached self-sufficient code demonstrates the issue. Although I am > adding the property INVERSE = 1 to the selection node, the output of > vtkExtractSelectedPolyDataIds has a number of cells that remains unchanged. > > Any thoughts? > > Thanks, > Ben > > CellPicking.cxx > > output.txt > > > > -- > View this message in context: > http://vtk.1045678.n5.nabble.com/vtkExtractSelectedPolyDataIds-and-inverse-selection-bug-tp5742021.html > Sent from the VTK - Users mailing list archive at Nabble.com. > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: > http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers > -------------- next part -------------- An HTML attachment was scrubbed... URL: From WernerHeukelbach at gmx.de Mon Feb 6 09:00:19 2017 From: WernerHeukelbach at gmx.de (WernerHeukelbach at gmx.de) Date: Mon, 6 Feb 2017 15:00:19 +0100 Subject: [vtkusers] CMake Problem Message-ID: An HTML attachment was scrubbed... URL: From cory.quammen at kitware.com Mon Feb 6 09:40:03 2017 From: cory.quammen at kitware.com (Cory Quammen) Date: Mon, 6 Feb 2017 09:40:03 -0500 Subject: [vtkusers] Bug? vtkNormalFilter changes # of points in polydata In-Reply-To: <1486387989887-5742070.post@n5.nabble.com> References: <1486340396495-5742068.post@n5.nabble.com> <1486387989887-5742070.post@n5.nabble.com> Message-ID: > More specifically, I need two of those: the "forward connectivity table" > linking facets to the 3 edges they own, and the "backward connectivity > table" linking edges to the facets they belong too. I was constructing those > two by looping over the polydata cells, casting those cells to vtkTriangle > so as to use > > vtkSmartPointer edge = trig -> GetEdge(i); > vtkSmartPointer pointIdList = edge -> GetPointIds(); > > on the triangles. This reconstruction process fails for the backward > connectivity table because of the spurious points/edges introduced by the > splitting algorithm (they appear to be owned by a single facet). Well, they are spurious in the sense that they are getting in the way of what you are trying to do, but they do serve a purpose. > Do you know a more elegant procedure to get access to all the "real" edges > (in the form of the indices of the vertices forming each edge) present in > the polydata before the splitting? The easiest solution is to turn off splitting. The second easiest solution is to do your processing on the data input to the vtkPolyDataNormals filter and apply the vtkPolyDataNormals only as a last step prior to display. Are either of these options? Thanks, Cory > Best, > Ben > > > > > -- > View this message in context: http://vtk.1045678.n5.nabble.com/Bug-vtkNormalFilter-changes-of-points-in-polydata-tp5742068p5742070.html > Sent from the VTK - Users mailing list archive at Nabble.com. > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers -- Cory Quammen Staff R&D Engineer Kitware, Inc. From david.gobbi at gmail.com Mon Feb 6 10:45:51 2017 From: david.gobbi at gmail.com (David Gobbi) Date: Mon, 6 Feb 2017 08:45:51 -0700 Subject: [vtkusers] CMake Problem In-Reply-To: References: Message-ID: Hi Erik, A failure like this one usually means there are missing dependencies. Try "apt-get build-essentials" to make sure all the usually header files are installed. Other packages might also be needed, it's been a while since I've done a fresh linux install so I can't remember what all the dependencies are. - David On Mon, Feb 6, 2017 at 7:00 AM, wrote: > > Hallo all, > > I want to make the VTK libraries in linux, using CMake, and I use the > archive > VTK-7.1.0.tar.gz. I want the libraries cross-compiled at the end. > > I use UBUNTU 16.04. > > In CMake, I tested with the "use default native compilers" option to > begin with > and to check it out. > > I get error messages, see PS. > > When taking version 7.0.0 or 6.3.0, error messages will also occur, but > different ones. > > Performing an analogous procedure in Windows, no problems occur, and > Visual Studio builds with > 0 errors at the end. > > Any suggestions? > Thanks, > ERik > > un Build Command:"/usr/bin/make" "cmTC_eb000/fast" > /usr/bin/make -f CMakeFiles/cmTC_eb000.dir/build.make > CMakeFiles/cmTC_eb000.dir/build > make[1]: Verzeichnis ?/home/ema/MyProjects/VTK-bin/CMakeFiles/CMakeTmp? > wird betreten > Building C object CMakeFiles/cmTC_eb000.dir/CheckFunctionExists.c.o > /usr/bin/cc -w -w -Wall -Winline -W -Wformat-security -Wpointer-arith > -Wdisabled-optimization -Wno-unknown-pragmas -Wdeclaration-after-statement > -fstrict-aliasing -DCHECK_FUNCTION_EXISTS=jbg_newlen -o > CMakeFiles/cmTC_eb000.dir/CheckFunctionExists.c.o -c > /usr/share/cmake-3.5/Modules/CheckFunctionExists.c > Linking C executable cmTC_eb000 > /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_eb000.dir/link.txt > --verbose=1 > /usr/bin/cc -w -w -Wall -Winline -W -Wformat-security -Wpointer-arith > -Wdisabled-optimization -Wno-unknown-pragmas -Wdeclaration-after-statement > -fstrict-aliasing -DCHECK_FUNCTION_EXISTS=jbg_newlen > CMakeFiles/cmTC_eb000.dir/CheckFunctionExists.c.o -o cmTC_eb000 > -rdynamic > CMakeFiles/cmTC_eb000.dir/CheckFunctionExists.c.o: In Funktion `main': > CheckFunctionExists.c:(.text+0x15): Nicht definierter Verweis auf > `jbg_newlen' > collect2: error: ld returned 1 exit status > CMakeFiles/cmTC_eb000.dir/build.make:97: die Regel f?r Ziel ?cmTC_eb000? > scheiterte > make[1]: *** [cmTC_eb000] Fehler 1 > make[1]: Verzeichnis ?/home/ema/MyProjects/VTK-bin/CMakeFiles/CMakeTmp? > wird verlassen > Makefile:126: die Regel f?r Ziel ?cmTC_eb000/fast? scheiterte > make: *** [cmTC_eb000/fast] Fehler 2 > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From mdrahos at aurisrobotics.com Mon Feb 6 17:15:55 2017 From: mdrahos at aurisrobotics.com (Miroslav Drahos) Date: Mon, 6 Feb 2017 22:15:55 +0000 Subject: [vtkusers] depth peeling with QVTKWidget2? Message-ID: Hi vtk users, I am trying to get depth peeling in my visualization pipeline. My hardware supports it, the test http://www.vtk.org/Wiki/VTK/Examples/Cxx/Visualization/CorrectlyRenderTranslucentGeometry runs fine, with depth peeling on, when using native vtkRenderWindow. The problem is, that I am using QVTKWidget2 in my real Qt application. I cannot get depth peeling working with QVTKWidget2; and the QVTKWidget2::SetRenderWindow takes only vtkGenericOpenGLRenderWindow, which I interpret is a hint that it does not support depth peeling (which is provided by vtkXOpenGLRenderWindow; the type I construct on my Linux box when I create vtkRenderWindow object). Is there a way to get depth peeling with QVTKWidget2? Thank you for any advice/authoritative answer on this. Cheers, Miro -------------- next part -------------- An HTML attachment was scrubbed... URL: From bebe0705 at colorado.edu Mon Feb 6 17:47:41 2017 From: bebe0705 at colorado.edu (BBerco) Date: Mon, 6 Feb 2017 15:47:41 -0700 (MST) Subject: [vtkusers] Bug? vtkNormalFilter changes # of points in polydata In-Reply-To: References: <1486340396495-5742068.post@n5.nabble.com> <1486387989887-5742070.post@n5.nabble.com> Message-ID: <1486421261697-5742083.post@n5.nabble.com> Turning off the splitting did the trick. Thanks! -- View this message in context: http://vtk.1045678.n5.nabble.com/Bug-vtkNormalFilter-changes-of-points-in-polydata-tp5742068p5742083.html Sent from the VTK - Users mailing list archive at Nabble.com. From kmilner at usc.edu Mon Feb 6 17:10:03 2017 From: kmilner at usc.edu (Kevin Milner) Date: Mon, 6 Feb 2017 14:10:03 -0800 Subject: [vtkusers] Issues with picking in VTK Java on Mac OS X In-Reply-To: <20170204003525.2097551751@mail.rogue-research.com> References: <94b76fe5-cd64-f581-20c5-8d83e6bc93b7@usc.edu> <5d4ae6e5-a2ad-8d8b-588a-95e8ae0c7236@usc.edu> <6c6ec915-7314-c7cf-6307-e796c51432d2@usc.edu> <20170204003525.2097551751@mail.rogue-research.com> Message-ID: I got my hands on an older MacBook Pro (non-retina, 13-inch, early 2011) running OSX 10.9.5 Mavericks. I ran my code with the same VTK libraries compiled from git/master and Java version (1.8u121). On this older MacBook, picking works as expected. Both bugs in my original e-mail are not present on this older, non-Retina Mac. Any ideas on how to get this working on new Macs? Or where in the code I can start digging? I haven't dug into the VTK source yet and my C is rusty but I'm willing to give it a go. In summary: Old, non retina mac: * vtkJoglPanelComponent.getRenderWindowInteractor().GetEventPosition() is correct * picking with vtkCellPicker.Pick(x, y, 0, vtkJoglPanelComponent.getRenderer()) works Newer, retina macs: * vtkJoglPanelComponent.getRenderWindowInteractor().GetEventPosition() gives incorrect y value, though I can determine correct y value from window height and Java MouseEvent * picking with vtkCellPicker.Pick(x, y, 0, vtkJoglPanelComponent.getRenderer()) doesn't work, thinks that you clicked somewhere else Thanks much, Kevin On 02/03/2017 04:35 PM, Sean McBride wrote: > On Fri, 3 Feb 2017 15:02:36 -0800, Kevin Milner said: > >> I'm testing on a MacBook Pro (Retina, 13-inch, Early 2013) with OSX >> Yosemite 10.10.5, but have experienced the same behavior on other Macs. > Have you tried both Retina and non-Retina Macs? Does it occur on both? > > Cheers, > From sebastien.jourdain at kitware.com Mon Feb 6 18:46:58 2017 From: sebastien.jourdain at kitware.com (Sebastien Jourdain) Date: Mon, 6 Feb 2017 16:46:58 -0700 Subject: [vtkusers] Issues with picking in VTK Java on Mac OS X In-Reply-To: References: <94b76fe5-cd64-f581-20c5-8d83e6bc93b7@usc.edu> <5d4ae6e5-a2ad-8d8b-588a-95e8ae0c7236@usc.edu> <6c6ec915-7314-c7cf-6307-e796c51432d2@usc.edu> <20170204003525.2097551751@mail.rogue-research.com> Message-ID: You can look at my commit (b6df993770cfcd9a69a48a2730415a992d698c5b), since it was handling some retina stuff with Java. That could help you to figure out which API from Java I used to fixe that issue at some point. I still have to trigger a build on my mac to see what happen. Seb On Mon, Feb 6, 2017 at 3:10 PM, Kevin Milner wrote: > I got my hands on an older MacBook Pro (non-retina, 13-inch, early 2011) > running OSX 10.9.5 Mavericks. I ran my code with the same VTK libraries > compiled from git/master and Java version (1.8u121). On this older MacBook, > picking works as expected. Both bugs in my original e-mail are not present > on this older, non-Retina Mac. > > Any ideas on how to get this working on new Macs? Or where in the code I > can start digging? I haven't dug into the VTK source yet and my C is rusty > but I'm willing to give it a go. > > In summary: > Old, non retina mac: > * vtkJoglPanelComponent.getRenderWindowInteractor().GetEventPosition() > is correct > * picking with vtkCellPicker.Pick(x, y, 0, > vtkJoglPanelComponent.getRenderer()) works > Newer, retina macs: > * vtkJoglPanelComponent.getRenderWindowInteractor().GetEventPosition() > gives incorrect y value, though I can determine correct y value from window > height and Java MouseEvent > * picking with vtkCellPicker.Pick(x, y, 0, > vtkJoglPanelComponent.getRenderer()) doesn't work, thinks that you > clicked somewhere else > > Thanks much, > Kevin > > > On 02/03/2017 04:35 PM, Sean McBride wrote: > >> On Fri, 3 Feb 2017 15:02:36 -0800, Kevin Milner said: >> >> I'm testing on a MacBook Pro (Retina, 13-inch, Early 2013) with OSX >>> Yosemite 10.10.5, but have experienced the same behavior on other Macs. >>> >> Have you tried both Retina and non-Retina Macs? Does it occur on both? >> >> Cheers, >> >> > -------------- next part -------------- An HTML attachment was scrubbed... URL: From sjbnust at 163.com Tue Feb 7 02:50:26 2017 From: sjbnust at 163.com (Shi) Date: Tue, 7 Feb 2017 15:50:26 +0800 (CST) Subject: [vtkusers] vtk convert Text to ImageData, and build VTK with FreeType Message-ID: <55456d57.5a44.15a178d629c.Coremail.sjbnust@163.com> Hi everyone, In my VTK project, I want to convert Text to ImageData, I found the example in the Wiki, ImageText, but before using the class vtkFreeTypeUtilities, rebuilding the VTK with VTK_USE_SYSTEM_FREETYPE=ON is nessecery. I tried to build VTK with VTK with VTK_USE_SYSTEM_FREETYPE=ON, after configure, the CMake shows a warning that the following 4 variables should be defined, FREETYPE_INCLUDE_DIR_freetype2, FREETYPE_INCLUDE_DIR_ft2build, FREETYPE_LIBRARY_DEBUG, FREETYPE_LIBRARY_RELEASE, because in the VTK sources files, the ThirdParty tree contains the freetype library, I defined the the path of freetype in the ThirdParty tree as the first two variables. As for the last two variables, I could not find the lib file in the VTK source file, So I used the source from official site of freetype to build a freetype.lib, which is defined as the last two variables. With these procedures, passed the configure and generate, but failed in compiling the freetype module. Does any one know how to build VTK with Freetype? please help. -------------- next part -------------- An HTML attachment was scrubbed... URL: From dan.lipsa at kitware.com Tue Feb 7 09:17:04 2017 From: dan.lipsa at kitware.com (Dan Lipsa) Date: Tue, 7 Feb 2017 09:17:04 -0500 Subject: [vtkusers] vtk convert Text to ImageData, and build VTK with FreeType In-Reply-To: <55456d57.5a44.15a178d629c.Coremail.sjbnust@163.com> References: <55456d57.5a44.15a178d629c.Coremail.sjbnust@163.com> Message-ID: Try to delete you CMakeCache.txt and set VTK_USE_SYSTEM_FREETYPE=OFF. That should use the FreeType library from ThirdParty. Dan On Tue, Feb 7, 2017 at 2:50 AM, Shi wrote: > Hi everyone, > In my VTK project, I want to convert Text to ImageData, I found the > example in the Wiki, ImageText > , > but before using the class vtkFreeTypeUtilities, rebuilding the VTK with > VTK_USE_SYSTEM_FREETYPE=ON is nessecery. > I tried to build VTK with VTK with VTK_USE_SYSTEM_FREETYPE=ON, after > configure, the CMake shows a warning that the following 4 variables should > be defined, > FREETYPE_INCLUDE_DIR_freetype2, FREETYPE_INCLUDE_DIR_ft2build, > FREETYPE_LIBRARY_DEBUG, FREETYPE_LIBRARY_RELEASE, > because in the VTK sources files, the ThirdParty tree contains the > freetype library, I defined the the path of freetype in the ThirdParty tree > as the first two variables. As for the last two variables, I could not > find the lib file in the VTK source file, So I used the source from > official site of freetype to build a freetype.lib, which is defined as the > last two variables. > With these procedures, passed the configure and generate, but failed in > compiling the freetype module. > Does any one know how to build VTK with Freetype? please help. > > > > > > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at http://www.kitware.com/ > opensource/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: > http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From sean at rogue-research.com Tue Feb 7 09:02:28 2017 From: sean at rogue-research.com (Sean McBride) Date: Tue, 7 Feb 2017 09:02:28 -0500 Subject: [vtkusers] Issues with picking in VTK Java on Mac OS X In-Reply-To: References: <94b76fe5-cd64-f581-20c5-8d83e6bc93b7@usc.edu> <5d4ae6e5-a2ad-8d8b-588a-95e8ae0c7236@usc.edu> <6c6ec915-7314-c7cf-6307-e796c51432d2@usc.edu> <20170204003525.2097551751@mail.rogue-research.com> Message-ID: <20170207140228.911087348@mail.rogue-research.com> On Mon, 6 Feb 2017 14:10:03 -0800, Kevin Milner said: >Any ideas on how to get this working on new Macs? So you have 2 differences now: different OS version, different screens (Retina vs not). You should try to eliminate one. You can force a non-Retina to act like a retina with Quartz Debug: and/or upgrade that Mac from 10.9 (which BTW doesn't get security updates anymore) to something newer. Cheers, -- ____________________________________________________________ Sean McBride, B. Eng sean at rogue-research.com Rogue Research www.rogue-research.com Mac Software Developer Montr?al, Qu?bec, Canada From david.lonie at kitware.com Tue Feb 7 10:34:55 2017 From: david.lonie at kitware.com (David Lonie) Date: Tue, 7 Feb 2017 10:34:55 -0500 Subject: [vtkusers] depth peeling with QVTKWidget2? In-Reply-To: References: Message-ID: I know that there have been some issues getting VTK to work with the new widgets in Qt5. These should be fixed in an upcoming release. On Mon, Feb 6, 2017 at 5:15 PM, Miroslav Drahos wrote: > Hi vtk users, > > I am trying to get depth peeling in my visualization pipeline. My hardware > supports it, the test > > http://www.vtk.org/Wiki/VTK/Examples/Cxx/Visualization/CorrectlyRenderTranslucentGeometry > > runs fine, with depth peeling on, when using native vtkRenderWindow. > > > The problem is, that I am using QVTKWidget2 in my real Qt application. I > cannot get depth peeling working with QVTKWidget2; and the > QVTKWidget2::SetRenderWindow takes only vtkGenericOpenGLRenderWindow, which > I interpret is a hint that it does not support depth peeling (which is > provided by vtkXOpenGLRenderWindow; the type I construct on my Linux box > when I create vtkRenderWindow object). Is there a way to get depth peeling > with QVTKWidget2? > > > Thank you for any advice/authoritative answer on this. > > Cheers, > > Miro > > > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: > http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers > From david.lonie at kitware.com Tue Feb 7 10:36:30 2017 From: david.lonie at kitware.com (David Lonie) Date: Tue, 7 Feb 2017 10:36:30 -0500 Subject: [vtkusers] vtk convert Text to ImageData, and build VTK with FreeType In-Reply-To: References: <55456d57.5a44.15a178d629c.Coremail.sjbnust@163.com> Message-ID: Also as an FYI, you may find it easier to use the newer vtkTextRenderer interface instead of vtkFreeTypeUtilities/vtkFreeTypeTools. On Tue, Feb 7, 2017 at 9:17 AM, Dan Lipsa wrote: > Try to delete you CMakeCache.txt and set VTK_USE_SYSTEM_FREETYPE=OFF. That > should use the FreeType library from ThirdParty. > > Dan > > > On Tue, Feb 7, 2017 at 2:50 AM, Shi wrote: >> >> Hi everyone, >> In my VTK project, I want to convert Text to ImageData, I found the >> example in the Wiki, ImageText, >> but before using the class vtkFreeTypeUtilities, rebuilding the VTK with >> VTK_USE_SYSTEM_FREETYPE=ON is nessecery. >> I tried to build VTK with VTK with VTK_USE_SYSTEM_FREETYPE=ON, after >> configure, the CMake shows a warning that the following 4 variables should >> be defined, >> FREETYPE_INCLUDE_DIR_freetype2, FREETYPE_INCLUDE_DIR_ft2build, >> FREETYPE_LIBRARY_DEBUG, FREETYPE_LIBRARY_RELEASE, >> because in the VTK sources files, the ThirdParty tree contains the >> freetype library, I defined the the path of freetype in the ThirdParty tree >> as the first two variables. As for the last two variables, I could not find >> the lib file in the VTK source file, So I used the source from official site >> of freetype to build a freetype.lib, which is defined as the last two >> variables. >> With these procedures, passed the configure and generate, but failed in >> compiling the freetype module. >> Does any one know how to build VTK with Freetype? please help. >> >> >> >> >> >> >> _______________________________________________ >> Powered by www.kitware.com >> >> Visit other Kitware open-source projects at >> http://www.kitware.com/opensource/opensource.html >> >> Please keep messages on-topic and check the VTK FAQ at: >> http://www.vtk.org/Wiki/VTK_FAQ >> >> Search the list archives at: http://markmail.org/search/?q=vtkusers >> >> Follow this link to subscribe/unsubscribe: >> http://public.kitware.com/mailman/listinfo/vtkusers >> > > > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: > http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers > From andy.bauer at kitware.com Tue Feb 7 15:22:20 2017 From: andy.bauer at kitware.com (Andy Bauer) Date: Tue, 7 Feb 2017 15:22:20 -0500 Subject: [vtkusers] vtkContourFilter cleanup Message-ID: Hi, I'm in the process of cleaning up vtkContourFilter to make it more consistent. The basic issue is that vtkContourFilter offloads the actual computation to other filters (e.g. vtkGridSynchronizedTemplates3D, vtkRectilinearSynchronizedTemplates, etc.) in order to maintain high efficiency for each dataset type. With each implementation though it seems like small idiosyncrasies/inconsistencies have crept in. A probably not inclusive list includes: 1. The unstructured (and probably polydata) version doesn't compute a gradient. 2. If ComputeGradient is enabled the structured grid version replaces an existing input "vector" attribute point data array with the Gradient array, but other implementations don't. 3. The order of the output arrays can be different based on grid type for the ComputeScalars option (i.e. the unstructured grid version keeps the same order of input arrays and adds the requested Normal and Gradients array after them while the image data version moves the Scalars array). 4. There seems to be inconsistent attributing (e.g. Normals and Vectors) for the output arrays. Not all of these should be considered bugs (certainly not #3) but can cause mistakes later on because of the differences. So the changes that I would like to make include: - Make sure the output array order is the same as the input array order and then append the Gradients and/or Normals arrays, in that order, if they were requested and available. - If ComputeScalars or ComputeNormals is enabled to label those output arrays as the scalars and normals attributes, respectively. For the Gradients output I would not specify them with the vectors attribute. These are my opinions though and should certainly be discussed and agreed upon before making changes. The reason I bring this up though is that making this consistent will break backward compatibility for the behavior. Thoughts? Thanks, Andy -------------- next part -------------- An HTML attachment was scrubbed... URL: From bill.lorensen at gmail.com Tue Feb 7 15:28:39 2017 From: bill.lorensen at gmail.com (Bill Lorensen) Date: Tue, 7 Feb 2017 15:28:39 -0500 Subject: [vtkusers] vtkContourFilter cleanup In-Reply-To: References: Message-ID: This is probably one of the most used filters in VTK and has been there a very long time. I prefer we maintain backward compatibility to avoid surprises in customers' code. Bill On Tue, Feb 7, 2017 at 3:22 PM, Andy Bauer wrote: > Hi, > > I'm in the process of cleaning up vtkContourFilter to make it more > consistent. The basic issue is that vtkContourFilter offloads the actual > computation to other filters (e.g. vtkGridSynchronizedTemplates3D, > vtkRectilinearSynchronizedTemplates, etc.) in order to maintain high > efficiency for each dataset type. With each implementation though it seems > like small idiosyncrasies/inconsistencies have crept in. A probably not > inclusive list includes: > > The unstructured (and probably polydata) version doesn't compute a gradient. > If ComputeGradient is enabled the structured grid version replaces an > existing input "vector" attribute point data array with the Gradient array, > but other implementations don't. > The order of the output arrays can be different based on grid type for the > ComputeScalars option (i.e. the unstructured grid version keeps the same > order of input arrays and adds the requested Normal and Gradients array > after them while the image data version moves the Scalars array). > There seems to be inconsistent attributing (e.g. Normals and Vectors) for > the output arrays. > > Not all of these should be considered bugs (certainly not #3) but can cause > mistakes later on because of the differences. So the changes that I would > like to make include: > > Make sure the output array order is the same as the input array order and > then append the Gradients and/or Normals arrays, in that order, if they were > requested and available. > If ComputeScalars or ComputeNormals is enabled to label those output arrays > as the scalars and normals attributes, respectively. For the Gradients > output I would not specify them with the vectors attribute. These are my > opinions though and should certainly be discussed and agreed upon before > making changes. > > The reason I bring this up though is that making this consistent will break > backward compatibility for the behavior. > > Thoughts? > > Thanks, > > Andy > > > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: > http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers > -- Unpaid intern in BillsBasement at noware dot com From elvis.stansvik at orexplore.com Wed Feb 8 01:52:39 2017 From: elvis.stansvik at orexplore.com (Elvis Stansvik) Date: Wed, 8 Feb 2017 07:52:39 +0100 Subject: [vtkusers] Ticks and custom labels at _only_ 0 and 1 on a vtkAxis Message-ID: Hi all, I have a somewhat strange requirement: I have a vtkChartXY, and along one of its axes I need to enable ticks at *only* positions 0 and 1. The tick at 0 should be labeled "0", while the tick at 1 should be labeled "Al" (Aluminum). I've been looking at the API of vtkChartXY and vtkAxis, but haven't found anything promising. Is it impossible? Thanks in advance, Elvis -------------- next part -------------- An HTML attachment was scrubbed... URL: From elvis.stansvik at orexplore.com Wed Feb 8 01:54:28 2017 From: elvis.stansvik at orexplore.com (Elvis Stansvik) Date: Wed, 8 Feb 2017 07:54:28 +0100 Subject: [vtkusers] Ticks and custom labels at _only_ 0 and 1 on a vtkAxis In-Reply-To: References: Message-ID: 2017-02-08 7:52 GMT+01:00 Elvis Stansvik : > Hi all, > > I have a somewhat strange requirement: I have a vtkChartXY, and along one > of its axes I need to enable ticks at *only* positions 0 and 1. The tick at > 0 should be labeled "0", while the tick at 1 should be labeled "Al" > (Aluminum). > > I've been looking at the API of vtkChartXY and vtkAxis, but haven't found > anything promising. Is it impossible? > Forgive me, I realize now that I probably want ticks all along the axis. But labels only at 0 and 1. So perhaps it's easier to accomplish this? Elvis > > Thanks in advance, > Elvis > -------------- next part -------------- An HTML attachment was scrubbed... URL: From elvis.stansvik at orexplore.com Wed Feb 8 01:55:52 2017 From: elvis.stansvik at orexplore.com (Elvis Stansvik) Date: Wed, 8 Feb 2017 07:55:52 +0100 Subject: [vtkusers] Ticks and custom labels at _only_ 0 and 1 on a vtkAxis In-Reply-To: References: Message-ID: 2017-02-08 7:54 GMT+01:00 Elvis Stansvik : > 2017-02-08 7:52 GMT+01:00 Elvis Stansvik : > >> Hi all, >> >> I have a somewhat strange requirement: I have a vtkChartXY, and along one >> of its axes I need to enable ticks at *only* positions 0 and 1. The tick at >> 0 should be labeled "0", while the tick at 1 should be labeled "Al" >> (Aluminum). >> >> I've been looking at the API of vtkChartXY and vtkAxis, but haven't found >> anything promising. Is it impossible? >> > > Forgive me, I realize now that I probably want ticks all along the axis. > But labels only at 0 and 1. So perhaps it's easier to accomplish this? > And forgive me again, I now found vtkAxis::SetCustomTickPositions which looks exactly like what I need. Sorry for the noise. Elvis > Elvis > > >> >> Thanks in advance, >> Elvis >> > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From elvis.stansvik at orexplore.com Wed Feb 8 04:20:48 2017 From: elvis.stansvik at orexplore.com (Elvis Stansvik) Date: Wed, 8 Feb 2017 10:20:48 +0100 Subject: [vtkusers] Get origin of vtkAxis in screen coordinates? Message-ID: Hi all, I've been banging my head on this problem for a while: I need to get the origin of a vtkAxis in X/Y screen coordinates, in order to position another widget to line up with the axis. I found this snippet in vtkChartXY's own internal UpdateLayout function: // Get the screen coordinates for the origin, and move the axes there. vtkVector2f origin(0.0); vtkTransform2D* transform = this->ChartPrivate->PlotCorners[0]->GetTransform(); transform->TransformPoints(origin.GetData(), origin.GetData(), 1); But I don't have access to those transforms, and can't see a way to get at them :/ What would be the best way to get the screen coordinates of a vtkAxis origin? Or actually, what I really want is the bottom left corner of the plot area, which in my case corresponds to the axis origin. Thanks in advance, Elvis -------------- next part -------------- An HTML attachment was scrubbed... URL: From yihui.cao at qq.com Wed Feb 8 04:14:04 2017 From: yihui.cao at qq.com (=?ISO-8859-1?B?WWlodWkgQ2Fv?=) Date: Wed, 8 Feb 2017 17:14:04 +0800 Subject: [vtkusers] vtkImageResliceViewer problem Message-ID: Hi all, Hi. I've been experimenting with the FourPaneViewer that comes as an example. I found a problem that when I used vtkImageResliceViewer. the PROBLEM is: whenever I move parallel the cursor in Viewer A, the pixel in this viewer A is shaking. But when I rotate the cursor, it doesn't shake. How can I eliminate the pictures shaking. Any hint will be more than helpful. Best wishes, Yihui Cao -------------- next part -------------- An HTML attachment was scrubbed... URL: From tevain at telecom-paristech.fr Wed Feb 8 08:48:51 2017 From: tevain at telecom-paristech.fr (Timothee Evain) Date: Wed, 8 Feb 2017 14:48:51 +0100 (CET) Subject: [vtkusers] Widget interaction in multiple viewports In-Reply-To: <1522818623.17701265.1486558295135.JavaMail.zimbra@enst.fr> Message-ID: <583384230.17810523.1486561731660.JavaMail.zimbra@enst.fr> Hi folks, Some follow-up about using (2D) widgets in multiple viewports configuration, that may interest VTK-devs: I found an old post in the mailing list relating a similar issue( http://public.kitware.com/pipermail/vtkusers/2010-August/062118.html ), that gave me enough hints to unravel what was happening. The issue arises because widget representations are unaware of the viewport configuration during event handling, whereas their positions are set relative to their renderers through the PlaceWidget method. This leads the widget event to falsely detect events over the first viewport only, and miss them over the others. For example, in a four-tiles viewport configuration, setting a widget in the top right viewport at (10,10), will lead to event handling at (10,10) in the full window (bottom left viewport). My workaround was to write a modified representation class, based on what I needed (2D textured button in this case), to handle events relatively to the viewport. I think that this problem may call for a more global fix about widgets since I know this impact at least one other widget (the 2D slider). HTH, Tim From elvis.stansvik at orexplore.com Wed Feb 8 09:43:30 2017 From: elvis.stansvik at orexplore.com (Elvis Stansvik) Date: Wed, 8 Feb 2017 15:43:30 +0100 Subject: [vtkusers] Set font of labels in vtkCompositeControlPointsItem? Message-ID: How can I set the font of the label shown when a point is selected in a vtkCompositeControlPointsItem? Is it not possible? Thanks in advance, Elvis -------------- next part -------------- An HTML attachment was scrubbed... URL: From tjlp at netease.com Wed Feb 8 10:38:52 2017 From: tjlp at netease.com (Liu_tj) Date: Wed, 8 Feb 2017 23:38:52 +0800 (CST) Subject: [vtkusers] Does vtkCaptionActor2D support chinese characters? In-Reply-To: References: <24d10773.a.1571a0b195d.Coremail.tjlp@netease.com> Message-ID: <6150a1bd.d.15a1e609b88.Coremail.tjlp@netease.com> Hi, Serge, As we switch to C# GUI with Managed C++, I follow your solution and try to display chinese characters. It doesn't work. Below is my C++ code: void MDKCaptionWidget::SetCaption(String^ aCaption) { vtkCaptionActor2D* captionActor = _captionRep->GetCaptionActor2D(); captionActor->GetCaptionTextProperty()->SetFontFamily(VTK_FONT_FILE); captionActor->GetCaptionTextProperty()->SetFontFile("C:\\Windows\\winsxs\\amd64_microsoft-windows-font-truetype-simsun_31bf3856ad364e35_6.1.7600.16385_none_56fe10b1895fd80b\\simsun.ttc"); captionActor->SetCaption(vtkUnicodeString::from_utf16((const vtkTypeUInt16 *)marshal_as(aCaption).c_str()).utf8_str()); //captionActor->SetCaption("\xE4\xB8\xAD\xE6\x96\x87"); } simsun.ttc is the chinese truetype font file installed on my computer. The chinese string I pass is "??", whose utf-8 code is "\xE4\xB8\xAD\xE6\x96\x87". But if I use vtkUnicodeString::from_utf16() to decode, I get "\x00\xB8\xAD\xE6\x96\x87". Even I directly write as follow: captionActor->SetCaption("\xE4\xB8\xAD\xE6\x96\x87"); The chinese words are not displayed. Thanks Liu Peng ?2016-09-12?"Serge Lalonde" ??? -----????----- ???:"Serge Lalonde" ????:2016?09?12? ??? ???:"vtkusers" ??:Re: [vtkusers] Does vtkCaptionActor2D support chinese characters? I had summarized the steps in the VTK Users mailing list back in Jan 2015. Search for "VTK 6.1 no longer supports ASCII characters > 128? (5.10.1 was ok)" in the archives. On 9/12/2016 9:20 AM, David Lonie wrote: On Sun, Sep 11, 2016 at 12:18 PM, Liu_tj wrote: I want to give Chinese text annotation on 3D model.Does vtkCaptionActor2D support chinese characters? If no, what class should I use? vtkCaptionActor2D will work. You'll need to provide a unicode font file (the embedded fonts in VTK only support ASCII) via the caption actor's GetCaptionTextProperty: captionActor->GetCaptionTextProperty()->SetFontFamily(VTK_FONT_FILE); captionActor->GetCaptionTextProperty()->SetFontFile("/path/to/some/unicode/font/file"); and then encode the caption text as UTF-8. Hope this helps, Dave _______________________________________________ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages on-topic and check the VTK FAQ at: http://www.vtk.org/Wiki/VTK_FAQ Search the list archives at: http://markmail.org/search/?q=vtkusers Follow this link to subscribe/unsubscribe: http://public.kitware.com/mailman/listinfo/vtkusers -- www.infolytica.com 300 Leo Pariseau, Suite 2222, Montreal, QC, Canada, H2X 4B3 (514) 849-8752 x236, Fax: (514) 849-4239 -------------- next part -------------- An HTML attachment was scrubbed... URL: From updega2 at berkeley.edu Wed Feb 8 11:59:18 2017 From: updega2 at berkeley.edu (updega2) Date: Wed, 8 Feb 2017 09:59:18 -0700 (MST) Subject: [vtkusers] vtkClipPolyData with a bounded plane Message-ID: <1486573158169-5742103.post@n5.nabble.com> Hi all, I was wondering if it is possible to define a bounded plane and use vtkClipPolyData to cut an object partially with this bounded plane? Thanks! Adam -- View this message in context: http://vtk.1045678.n5.nabble.com/vtkClipPolyData-with-a-bounded-plane-tp5742103.html Sent from the VTK - Users mailing list archive at Nabble.com. From sean at rogue-research.com Wed Feb 8 14:15:38 2017 From: sean at rogue-research.com (Sean McBride) Date: Wed, 8 Feb 2017 14:15:38 -0500 Subject: [vtkusers] Using MacBook trackpad freezes application In-Reply-To: References: Message-ID: <20170208191538.1755231222@mail.rogue-research.com> On Fri, 3 Feb 2017 23:41:14 -0200, Enzo Matsumiya said: >Hi David, > >I tested both with Qt 5.7.0 and 5.7.1. Sorry I forgot to mention this. It would be useful to eliminate Paraview to know if it's a Paraview bug or VTK bug. Does it repro in one of the VTK example apps? Cheers, -- ____________________________________________________________ Sean McBride, B. Eng sean at rogue-research.com Rogue Research www.rogue-research.com Mac Software Developer Montr?al, Qu?bec, Canada From isaac.casm at gmail.com Wed Feb 8 14:42:53 2017 From: isaac.casm at gmail.com (Isaac Castro Mateos) Date: Wed, 8 Feb 2017 19:42:53 +0000 Subject: [vtkusers] Error opening vtp file Message-ID: Hi, I am trying to read a vtp file with the following code: vtkSmartPointer< vtkXMLPolyDataReader > readerXML = vtkSmartPointer< vtkXMLPolyDataReader >::New(); readerXML->SetFileName(paths.c_str()); readerXML->Update(); mesh = readerXML->GetOutput(); However, it is given me the following error: ERROR: In /staff/icm16/My_repository/Thirdparties/VTK-6.3.0/IO/XML/vtkXMLReader.cxx, line 234 vtkXMLPolyDataReader (0x68f310): Error opening file /staff/icm16/TestSamples/SegmentationVertebrae/SegmentationsNew/V1/meshWithSimilarityReg2.vtp ERROR: In /staff/icm16/My_repository/Thirdparties/VTK-6.3.0/Common/ExecutionModel/vtkExecutive.cxx, line 784 vtkCompositeDataPipeline (0x68fe90): Algorithm vtkXMLPolyDataReader(0x68f310) returned failure for request: vtkInformation (0x691600) Debug: Off Modified Time: 76 Reference Count: 1 Registered Events: (none) Request: REQUEST_INFORMATION ALGORITHM_AFTER_FORWARD: 1 FORWARD_DIRECTION: 0 There is no problem at all when opening the file with paraview. I am using an Ubuntu machine with VTK-6.3.0. Any idea what the problem could be? Thanks a lot. Isaac. -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.gobbi at gmail.com Wed Feb 8 17:52:08 2017 From: david.gobbi at gmail.com (David Gobbi) Date: Wed, 8 Feb 2017 15:52:08 -0700 Subject: [vtkusers] vtkClipPolyData with a bounded plane In-Reply-To: <1486573158169-5742103.post@n5.nabble.com> References: <1486573158169-5742103.post@n5.nabble.com> Message-ID: Hi Adam, You'll have to describe what you're trying to do in more detail, but I strongly suspect that the answer is "no". The implicit functions used by vtkClipPolyData are f(x,y,z) where f() is differentiable by x, y, and z at any point at which you want to evaluate it. We assume that f(x,y,z) is negative for some regions of space and positive for the complementary regions. The cut occurs approximately at the implicit surface defined by f(x,y,z) == 0, hence the cut divides the positive regions from the negative regions. It's possible to define an implicit function that is a box, if you give up differentiability at the corners and edges, but it is impossible to define an implicit function for a bound plane. You can only define an implicit function for a surface that is unbound (like a plane, infinite tube, etc) or closed (like a sphere, torus, etc). - David On Wed, Feb 8, 2017 at 9:59 AM, updega2 wrote: > Hi all, > > I was wondering if it is possible to define a bounded plane and use > vtkClipPolyData to cut an object partially with this bounded plane? > > Thanks! > > Adam > -------------- next part -------------- An HTML attachment was scrubbed... URL: From yihui.cao at qq.com Wed Feb 8 20:18:53 2017 From: yihui.cao at qq.com (=?ISO-8859-1?B?WWlodWkgQ2Fv?=) Date: Thu, 9 Feb 2017 09:18:53 +0800 Subject: [vtkusers] vtkImageResliceViewer: moving cursor image looked like shaking Message-ID: Hi all, Hi. I've been experimenting with the FourPaneViewer example that comes as an problem. I found that when I moved the cursor by vtkImageResliceViewer in Viewer A, the pixels in this viewer A is looked like shaking or be reconstructed. But when I rotate the cursor, there is no problem. How can I eliminate the this problem. Any hint will be more than helpful. Best wishes, Yihui Cao -------------- next part -------------- An HTML attachment was scrubbed... URL: From mjordan at live.at Thu Feb 9 06:37:05 2017 From: mjordan at live.at (M. Jordan) Date: Thu, 9 Feb 2017 11:37:05 +0000 Subject: [vtkusers] vtkTextActor align to center of text Message-ID: Hi, I am creating a 3D text like this: // create text vtkSmartPointer textSource = vtkSmartPointer::New(); textSource->SetText("TEST"); textSource->Update(); // create a mapper for the text vtkSmartPointer txtmapper = vtkSmartPointer::New(); txtmapper->SetInputConnection(transformFilter->GetOutputPort()); // create a subclass of vtkActor: a vtkFollower that remains facing the camera vtkSmartPointer follower = vtkSmartPointer::New(); follower->SetMapper(txtmapper); follower->SetCamera(renderer->GetActiveCamera()); follower->SetPosition(10.0,20.0,30.0); Now the passed follower position is approximately the bottom left corner of my text. How can I achieve a text which is centered about my desired position? For example the text "101" should result in a 3D text with the center being located in the middle of the "0" Thank you very much! -------------- next part -------------- An HTML attachment was scrubbed... URL: From elvis.stansvik at orexplore.com Thu Feb 9 08:45:39 2017 From: elvis.stansvik at orexplore.com (Elvis Stansvik) Date: Thu, 9 Feb 2017 14:45:39 +0100 Subject: [vtkusers] Opacity discrepancy with downscaled volume despite opacity unit distance == spacing Message-ID: Hi all, The following example shows a 30x30x30 volume rendered, and next to it a downscaled version of it (but using an identical opacity/transfer function). Notice how in the result (attached), the downscaled version is less opaque. This is despite me using SetScalarOpacityUnitDistance(image->GetSpacing()[0]) to set the scalar opacity unit distance to the spacing of the respective image. I would thought calling SetScalarOpacityUnitDistance like this would ensure both volumes look the same (apart from resolution). How can I make both volumes look the same opacity-wise when using the same transfer functions? Thanks in advance, Elvis main.cpp: #include #include #include #include #include #include #include #include #include #include #include #include #include // Create a volume from the given image vtkSmartPointer createVolume(vtkSmartPointer image) { auto color = vtkSmartPointer::New(); color->AddRGBPoint(0.0, 1.0, 0.0, 0.0); color->AddRGBPoint(1.0, 1.0, 0.0, 0.0); auto opacity = vtkSmartPointer::New(); opacity->AddPoint(0.0, 0.1); opacity->AddPoint(1.0, 0.1); auto property = vtkSmartPointer::New(); property->SetColor(color); property->SetScalarOpacity(opacity); property->SetInterpolationTypeToLinear(); property->ShadeOff(); property->SetScalarOpacityUnitDistance(image->GetSpacing()[0]); auto mapper = vtkSmartPointer::New(); mapper->SetInputData(image); auto volume = vtkSmartPointer::New(); volume->SetMapper(mapper); volume->SetProperty(property); return volume; } int main(int argc, char *argv[]) { // Create a 30x30x30 volume auto image = vtkSmartPointer::New(); image->SetDimensions(30, 30, 30); image->SetSpacing(0.006, 0.006, 0.006); image->AllocateScalars(VTK_FLOAT, 1); auto imagePtr = static_cast(image->GetScalarPointer()); std::fill_n(imagePtr, 30 * 30 * 30, 1.0); auto volume = createVolume(image); // Create a smaller (10x10x10) version auto resize = vtkSmartPointer::New(); resize->SetInputData(image); resize->SetOutputDimensions(10, 10, 10); resize->Update(); auto smallVolume = createVolume(resize->GetOutput()); smallVolume->SetPosition(0.2, 0, 0); // Render the two volumes auto renderer = vtkSmartPointer::New(); renderer->SetBackground(1.0, 1.0, 1.0); renderer->AddVolume(volume); renderer->AddVolume(smallVolume); renderer->ResetCamera(); auto camera = renderer->GetActiveCamera(); camera->SetParallelProjection(1); auto window = vtkSmartPointer::New(); window->AddRenderer(renderer); window->SetSize(800, 400); auto interactor = vtkSmartPointer::New(); interactor->SetRenderWindow(window); interactor->Start(); return 0; } CMakeLists.txt: cmake_minimum_required(VERSION 3.1) project(TestCase) set(CMAKE_CXX_STANDARD 11) set(CMAKE_CXX_STANDARD_REQUIRED ON) find_package(VTK COMPONENTS vtkCommonCore vtkCommonDataModel vtkCommonExecutionModel vtkInteractionStyle vtkImagingCore vtkRenderingCore vtkRenderingOpenGL2 vtkRenderingVolume vtkRenderingVolumeOpenGL2 ) add_executable(TestCase main.cpp) target_link_libraries(TestCase PUBLIC vtkCommonCore vtkCommonDataModel vtkCommonExecutionModel vtkImagingCore vtkInteractionStyle vtkRenderingCore vtkRenderingOpenGL2 vtkRenderingVolume vtkRenderingVolumeOpenGL2 ) target_include_directories(TestCase PUBLIC ${VTK_INCLUDE_DIRS} ) target_compile_definitions(TestCase PUBLIC ${VTK_DEFINITIONS} ) -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: result.png Type: image/png Size: 8300 bytes Desc: not available URL: From pbernardes at uaum.uminho.pt Thu Feb 9 10:05:18 2017 From: pbernardes at uaum.uminho.pt (Paulo Bernardes) Date: Thu, 9 Feb 2017 08:05:18 -0700 (MST) Subject: [vtkusers] 3D Surface or Volume In-Reply-To: References: Message-ID: <1486652718884-5742113.post@n5.nabble.com> But what if I cannot align the upper and lower surface? For example, I have 2 surfaces of one archaeological deposit ? the upper surface and the lower surface ? which are separated by a specific distance (30 or 40 cm). This distance corresponds to the debris removal during the excavation activity. How can I create an approximate (but still accurate volume) from these two spatially separated surfaces? I?ve tried vtkDelaunay3D which produces a volume that in some (very few) cases is acceptable, however in most cases it exceeds the real volume of the archaeological deposit. How can I remove the exceeding triangles from the volume? I?ve also tried vtkSurfaceReconstructionFilter, but this filter is just usable if I?ve a very dense point cloud (I think). The ideal would be to have some kind of procedure that could interpolate the geometry between the 2 surfaces? :-) I do appreciate any suggestion!!!! Thank you! Very best regards, Paulo -- View this message in context: http://vtk.1045678.n5.nabble.com/3D-Surface-or-Volume-tp5741927p5742113.html Sent from the VTK - Users mailing list archive at Nabble.com. From updega2 at berkeley.edu Thu Feb 9 11:15:35 2017 From: updega2 at berkeley.edu (updega2) Date: Thu, 9 Feb 2017 09:15:35 -0700 (MST) Subject: [vtkusers] vtkClipPolyData with a bounded plane In-Reply-To: References: <1486573158169-5742103.post@n5.nabble.com> Message-ID: <1486656935052-5742116.post@n5.nabble.com> Hi David, Thanks for the reply. I was hoping to be able to create a sort of seam on an object by partially cutting through it with a bound plane if that makes sense. I was afraid that was the case; thank you for clarifying! Adam -- View this message in context: http://vtk.1045678.n5.nabble.com/vtkClipPolyData-with-a-bounded-plane-tp5742103p5742116.html Sent from the VTK - Users mailing list archive at Nabble.com. From pkorir at ebi.ac.uk Thu Feb 9 11:40:55 2017 From: pkorir at ebi.ac.uk (Paul Korir) Date: Thu, 9 Feb 2017 16:40:55 +0000 Subject: [vtkusers] VTK 7.0 vtkXMLPolyDataWriter output version issues Message-ID: <8e92335e-0f95-674b-f9b9-7df1f55effc9@ebi.ac.uk> Hi All, I'm using vtkXMLPolyDataWriter and I'm getting output files with version 0.1 while I get version 1.0 files using Paraview version 5.0.0. How do I get version 1.0 files using VTK? Thanks. -- Paul K. Korir, PhD Scientific Programmer EMBL-EBI 01223494422 From david.lonie at kitware.com Thu Feb 9 12:35:35 2017 From: david.lonie at kitware.com (David Lonie) Date: Thu, 9 Feb 2017 12:35:35 -0500 Subject: [vtkusers] vtkTextActor align to center of text In-Reply-To: References: Message-ID: You'll likely have better luck using vtkTextActor3D or vtkBillboardTextActor3D. These have vtkTextProperties you can modify to set things like justification/alignment. HTH, Dave On Thu, Feb 9, 2017 at 6:37 AM, M. Jordan wrote: > Hi, > > I am creating a 3D text like this: > > // create text > vtkSmartPointer textSource = > vtkSmartPointer::New(); > textSource->SetText("TEST"); > textSource->Update(); > // create a mapper for the text > vtkSmartPointer txtmapper = > vtkSmartPointer::New(); > txtmapper->SetInputConnection(transformFilter->GetOutputPort()); > // create a subclass of vtkActor: a vtkFollower that remains facing the > camera > vtkSmartPointer follower = > vtkSmartPointer::New(); > follower->SetMapper(txtmapper); > follower->SetCamera(renderer->GetActiveCamera()); > follower->SetPosition(10.0,20.0,30.0); > > Now the passed follower position is approximately the bottom left corner of > my text. > > How can I achieve a text which is centered about my desired position? > For example the text "101" should result in a 3D text with the center being > located in the middle of the "0" > > Thank you very much! > > > > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: > http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers > From dan.lipsa at kitware.com Thu Feb 9 12:56:18 2017 From: dan.lipsa at kitware.com (Dan Lipsa) Date: Thu, 9 Feb 2017 12:56:18 -0500 Subject: [vtkusers] VTK 7.0 vtkXMLPolyDataWriter output version issues In-Reply-To: <8e92335e-0f95-674b-f9b9-7df1f55effc9@ebi.ac.uk> References: <8e92335e-0f95-674b-f9b9-7df1f55effc9@ebi.ac.uk> Message-ID: Paul, The version changed when we made the ghost cell updates: https://blog.kitware.com/ghost-and-blanking-visibility-changes/ Ghost cells in 1.0 have a different format than ghost cells in 0.1 If there are no ghost cells we use version 0.1 Is your data in ParaView different than the data in VTK? For the same data, you should get the same version I think. Dan On Thu, Feb 9, 2017 at 11:40 AM, Paul Korir wrote: > Hi All, > > I'm using vtkXMLPolyDataWriter and I'm getting output files with version > 0.1 while I get version 1.0 files using Paraview version 5.0.0. > > How do I get version 1.0 files using VTK? > > Thanks. > > -- > Paul K. Korir, PhD > Scientific Programmer > EMBL-EBI > 01223494422 > > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at http://www.kitware.com/opensou > rce/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: > http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers > -------------- next part -------------- An HTML attachment was scrubbed... URL: From yhe20 at sheffield.ac.uk Thu Feb 9 13:31:05 2017 From: yhe20 at sheffield.ac.uk (Yichen He) Date: Thu, 9 Feb 2017 18:31:05 +0000 Subject: [vtkusers] Error in building VTKpython Message-ID: Hello everyone My VTK version is 7.1.0, python 2.7, cmake 3.7.2 with VS2015 Win64 compiler. VS2015 under win10 64bits OS was used to build the solution. I am trying to build the vtkpython using the source code after I ticked the VTK_WRAP_PYTHON in cmake. Many error appeared in the building process which are mostly saying: 1. LNK2001 unresolved external symbol __imp_PyString_FromString 2. LNK2019 unresolved external symbol __imp_PyNumber_Divide referenced in function "struct _object While other parts were successfully built. May I ask what could be the cause of these errors Thank you. Best regards Yichen He -------------- next part -------------- An HTML attachment was scrubbed... URL: From elvis.stansvik at orexplore.com Fri Feb 10 02:43:20 2017 From: elvis.stansvik at orexplore.com (Elvis Stansvik) Date: Fri, 10 Feb 2017 08:43:20 +0100 Subject: [vtkusers] Error in building VTKpython In-Reply-To: References: Message-ID: Den 9 feb. 2017 7:31 em skrev "Yichen He" : > > Hello everyone > > My VTK version is 7.1.0, python 2.7, cmake 3.7.2 with VS2015 Win64 compiler. VS2015 under win10 64bits OS was used to build the solution. > > I am trying to build the vtkpython using the source code after I ticked the VTK_WRAP_PYTHON in cmake. Many error appeared in the building process which are mostly saying: > > LNK2001 unresolved external symbol __imp_PyString_FromString > LNK2019 unresolved external symbol __imp_PyNumber_Divide referenced in function "struct _object > While other parts were successfully built. May I ask what could be the cause of these errors I'm not sure, but since it's failing to find symbols from the Python library during linking, perhaps you need to pass -DPYTHON_LIBRARY as well. I think you should give it the path to the Python .lib file, but I haven't built VTK on Windows so better double check that. Elvis > > Thank you. > > Best regards > Yichen He > > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers > -------------- next part -------------- An HTML attachment was scrubbed... URL: From mjordan at live.at Fri Feb 10 04:18:13 2017 From: mjordan at live.at (M. Jordan) Date: Fri, 10 Feb 2017 09:18:13 +0000 Subject: [vtkusers] vtkTextActor align to center of text In-Reply-To: References: , Message-ID: Thank you very much! I am using VTK 7.0 and I think vtkBillboardTextActor3D is not available in this version. I tried vtkTextActor3D but I need a text which is always facing the camera. I think it must be possible to calculate a new position point P' (bottom left corner) which leads to a text whose center is at the desired position P. I tried to use follower->getCenter() to get the center of the bounding box of my text. But now I don't know how to shift the position point (bottom left corner) in a manner that the center point = my desired position. ________________________________ Von: David Lonie Gesendet: Donnerstag, 09. Februar 2017 18:35 An: M. Jordan Cc: vtkusers at vtk.org Betreff: Re: [vtkusers] vtkTextActor align to center of text You'll likely have better luck using vtkTextActor3D or vtkBillboardTextActor3D. These have vtkTextProperties you can modify to set things like justification/alignment. HTH, Dave On Thu, Feb 9, 2017 at 6:37 AM, M. Jordan wrote: > Hi, > > I am creating a 3D text like this: > > // create text > vtkSmartPointer textSource = > vtkSmartPointer::New(); > textSource->SetText("TEST"); > textSource->Update(); > // create a mapper for the text > vtkSmartPointer txtmapper = > vtkSmartPointer::New(); > txtmapper->SetInputConnection(transformFilter->GetOutputPort()); > // create a subclass of vtkActor: a vtkFollower that remains facing the > camera > vtkSmartPointer follower = > vtkSmartPointer::New(); > follower->SetMapper(txtmapper); > follower->SetCamera(renderer->GetActiveCamera()); > follower->SetPosition(10.0,20.0,30.0); > > Now the passed follower position is approximately the bottom left corner of > my text. > > How can I achieve a text which is centered about my desired position? > For example the text "101" should result in a 3D text with the center being > located in the middle of the "0" > > Thank you very much! > > > > _______________________________________________ > Powered by www.kitware.com [http://www.kitware.com/img/Areas_Index_Home.jpg] Kitware Inc. - leading edge, high-quality software www.kitware.com Kitware's mission is to create state-of-the-art software products and services in visualization and data processing using advanced quality software methods and ... > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html OPEN SOURCE - Kitware www.kitware.com Kitware develops, maintains and supports a wide array of toolkits and applications that are used by tens of thousands of software developers, researchers and ... > > Please keep messages on-topic and check the VTK FAQ at: > http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers vtkusers Info Page - Kitware public.kitware.com To see the collection of prior postings to the list, visit the vtkusers Archives. Using vtkusers: To post a message to all the list members, send ... > -------------- next part -------------- An HTML attachment was scrubbed... URL: From pkorir at ebi.ac.uk Fri Feb 10 04:39:07 2017 From: pkorir at ebi.ac.uk (Paul Korir) Date: Fri, 10 Feb 2017 09:39:07 +0000 Subject: [vtkusers] VTK 7.0 vtkXMLPolyDataWriter output version issues In-Reply-To: References: <8e92335e-0f95-674b-f9b9-7df1f55effc9@ebi.ac.uk> Message-ID: Hi Dan, (forgot to copy to the list) Thanks for your reply. The main issue I'm facing is with blob headers in binary data from data arrays. There are no blob headers when I use VTK but Paraview produces beautiful blob headers. Is there something I'm doing wrong? Regards, Paul On 09/02/2017 17:56, Dan Lipsa wrote: > Paul, > The version changed when we made the ghost cell updates: > > https://blog.kitware.com/ghost-and-blanking-visibility-changes/ > > Ghost cells in 1.0 have a different format than ghost cells in 0.1 > If there are no ghost cells we use version 0.1 > > Is your data in ParaView different than the data in VTK? > For the same data, you should get the same version I think. > > Dan > > > > On Thu, Feb 9, 2017 at 11:40 AM, Paul Korir > wrote: > > Hi All, > > I'm using vtkXMLPolyDataWriter and I'm getting output files with > version 0.1 while I get version 1.0 files using Paraview version > 5.0.0. > > How do I get version 1.0 files using VTK? > > Thanks. > > -- > Paul K. Korir, PhD > Scientific Programmer > EMBL-EBI > 01223494422 > > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > > Please keep messages on-topic and check the VTK FAQ at: > http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: > http://markmail.org/search/?q=vtkusers > > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers > > > -- Paul K. Korir, PhD Scientific Programmer EMBL-EBI 01223494422 -------------- next part -------------- An HTML attachment was scrubbed... URL: From pkorir at ebi.ac.uk Fri Feb 10 08:00:42 2017 From: pkorir at ebi.ac.uk (Paul Korir) Date: Fri, 10 Feb 2017 13:00:42 +0000 Subject: [vtkusers] VTK 7.0 vtkXMLPolyDataWriter output version issues In-Reply-To: References: <8e92335e-0f95-674b-f9b9-7df1f55effc9@ebi.ac.uk> Message-ID: (Again, forgot to post to the list...) There is some history to this... https://mathema.tician.de/what-they-dont-tell-you-about-vtk-xml-binary-formats/ Paul On 10/02/2017 09:39, Paul Korir wrote: > > Hi Dan, (forgot to copy to the list) > > Thanks for your reply. > > The main issue I'm facing is with blob headers in binary data from > data arrays. There are no blob headers when I use VTK but Paraview > produces beautiful blob headers. Is there something I'm doing wrong? > > Regards, > > Paul > > > On 09/02/2017 17:56, Dan Lipsa wrote: >> Paul, >> The version changed when we made the ghost cell updates: >> >> https://blog.kitware.com/ghost-and-blanking-visibility-changes/ >> >> Ghost cells in 1.0 have a different format than ghost cells in 0.1 >> If there are no ghost cells we use version 0.1 >> >> Is your data in ParaView different than the data in VTK? >> For the same data, you should get the same version I think. >> >> Dan >> >> >> >> On Thu, Feb 9, 2017 at 11:40 AM, Paul Korir > > wrote: >> >> Hi All, >> >> I'm using vtkXMLPolyDataWriter and I'm getting output files with >> version 0.1 while I get version 1.0 files using Paraview version >> 5.0.0. >> >> How do I get version 1.0 files using VTK? >> >> Thanks. >> >> -- >> Paul K. Korir, PhD >> Scientific Programmer >> EMBL-EBI >> 01223494422 >> >> _______________________________________________ >> Powered by www.kitware.com >> >> Visit other Kitware open-source projects at >> http://www.kitware.com/opensource/opensource.html >> >> >> Please keep messages on-topic and check the VTK FAQ at: >> http://www.vtk.org/Wiki/VTK_FAQ >> >> Search the list archives at: >> http://markmail.org/search/?q=vtkusers >> >> >> Follow this link to subscribe/unsubscribe: >> http://public.kitware.com/mailman/listinfo/vtkusers >> >> >> > > -- > Paul K. Korir, PhD > Scientific Programmer > EMBL-EBI > 01223494422 > > > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers -- Paul K. Korir, PhD Scientific Programmer EMBL-EBI 01223494422 -------------- next part -------------- An HTML attachment was scrubbed... URL: From dan.lipsa at kitware.com Fri Feb 10 08:52:32 2017 From: dan.lipsa at kitware.com (Dan Lipsa) Date: Fri, 10 Feb 2017 08:52:32 -0500 Subject: [vtkusers] VTK 7.0 vtkXMLPolyDataWriter output version issues In-Reply-To: References: <8e92335e-0f95-674b-f9b9-7df1f55effc9@ebi.ac.uk> Message-ID: Paul, Looking closer that the blog it seems that a file with ghosts will have version 2.0. The difference between 1.0 and 0.1 is caused by VTK_USE_64BIT_IDS. Can you check that in your VTK's CMakeList.txt. It seems that your VTK uses 32 bits while ParaView would use 64. So that would explain the difference. Do you need/want to use 32 bits for VTK? Can you recompile your VTK with 64 bit ids and retry. Dan On Fri, Feb 10, 2017 at 8:00 AM, Paul Korir wrote: > (Again, forgot to post to the list...) > > There is some history to this... > > https://mathema.tician.de/what-they-dont-tell-you-about- > vtk-xml-binary-formats/ > > Paul > > On 10/02/2017 09:39, Paul Korir wrote: > > Hi Dan, (forgot to copy to the list) > > Thanks for your reply. > > The main issue I'm facing is with blob headers in binary data from data > arrays. There are no blob headers when I use VTK but Paraview produces > beautiful blob headers. Is there something I'm doing wrong? > > Regards, > > Paul > > On 09/02/2017 17:56, Dan Lipsa wrote: > > Paul, > The version changed when we made the ghost cell updates: > > https://blog.kitware.com/ghost-and-blanking-visibility-changes/ > > Ghost cells in 1.0 have a different format than ghost cells in 0.1 > If there are no ghost cells we use version 0.1 > > Is your data in ParaView different than the data in VTK? > For the same data, you should get the same version I think. > > Dan > > > > On Thu, Feb 9, 2017 at 11:40 AM, Paul Korir wrote: > >> Hi All, >> >> I'm using vtkXMLPolyDataWriter and I'm getting output files with version >> 0.1 while I get version 1.0 files using Paraview version 5.0.0. >> >> How do I get version 1.0 files using VTK? >> >> Thanks. >> >> -- >> Paul K. Korir, PhD >> Scientific Programmer >> EMBL-EBI >> 01223494422 >> >> _______________________________________________ >> Powered by www.kitware.com >> >> Visit other Kitware open-source projects at >> http://www.kitware.com/opensource/opensource.html >> >> Please keep messages on-topic and check the VTK FAQ at: >> http://www.vtk.org/Wiki/VTK_FAQ >> >> Search the list archives at: http://markmail.org/search/?q=vtkusers >> >> Follow this link to subscribe/unsubscribe: >> http://public.kitware.com/mailman/listinfo/vtkusers >> > > > -- > Paul K. Korir, PhD > Scientific Programmer > EMBL-EBI > 01223494422 > > > > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe:http://public.kitware.com/mailman/listinfo/vtkusers > > > -- > Paul K. Korir, PhD > Scientific Programmer > EMBL-EBI > 01223494422 > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.lonie at kitware.com Fri Feb 10 09:38:42 2017 From: david.lonie at kitware.com (David Lonie) Date: Fri, 10 Feb 2017 09:38:42 -0500 Subject: [vtkusers] vtkTextActor align to center of text In-Reply-To: References: Message-ID: It sounds like the billboard actor will give you what you want for sure then. Until you have that available, there are a couple other ways to do this: 1) vtkTextMapper with a vtkFollower. vtkTextMapper also has configurable text properties, unlike the vector text. 2) vtkTextActor -- you can set this 2D actor's position coordinate to a 3D world position and it should show up in the right spot. However, it is always rendered on top of all 3D geometry, which may or may not be desirable in your case. I'd really avoid using vtkVectorText if at all possible (ie. unless you *really* need the text to be rendered as polydata instead of a textured quad). I think the vtkTextMapper/vtkFollower approach would make the most sense here. Cheers, Dave On Fri, Feb 10, 2017 at 4:18 AM, M. Jordan wrote: > Thank you very much! > > I am using VTK 7.0 and I think vtkBillboardTextActor3D is not available > in this version. > I tried vtkTextActor3D but I need a text which is always facing the camera. > > I think it must be possible to calculate a new position point P' (bottom > left corner) which leads to a text > whose center is at the desired position P. > > I tried to use follower->getCenter() to get the center of the bounding box > of my text. But now I don't know how to shift > the position point (bottom left corner) in a manner that the center point > = my desired position. > > > > > > ------------------------------ > *Von:* David Lonie > *Gesendet:* Donnerstag, 09. Februar 2017 18:35 > *An:* M. Jordan > *Cc:* vtkusers at vtk.org > *Betreff:* Re: [vtkusers] vtkTextActor align to center of text > > You'll likely have better luck using vtkTextActor3D or > vtkBillboardTextActor3D. These have vtkTextProperties you can modify > to set things like justification/alignment. > > HTH, > Dave > > On Thu, Feb 9, 2017 at 6:37 AM, M. Jordan wrote: > > Hi, > > > > I am creating a 3D text like this: > > > > // create text > > vtkSmartPointer textSource = > > vtkSmartPointer::New(); > > textSource->SetText("TEST"); > > textSource->Update(); > > // create a mapper for the text > > vtkSmartPointer txtmapper = > > vtkSmartPointer::New(); > > txtmapper->SetInputConnection(transformFilter->GetOutputPort()); > > // create a subclass of vtkActor: a vtkFollower that remains facing the > > camera > > vtkSmartPointer follower = > > vtkSmartPointer::New(); > > follower->SetMapper(txtmapper); > > follower->SetCamera(renderer->GetActiveCamera()); > > follower->SetPosition(10.0,20.0,30.0); > > > > Now the passed follower position is approximately the bottom left corner > of > > my text. > > > > How can I achieve a text which is centered about my desired position? > > For example the text "101" should result in a 3D text with the center > being > > located in the middle of the "0" > > > > Thank you very much! > > > > > > > > _______________________________________________ > > Powered by www.kitware.com > > Kitware Inc. - leading edge, high-quality software > > www.kitware.com > Kitware's mission is to create state-of-the-art software products and > services in visualization and data processing using advanced quality > software methods and ... > > > > > Visit other Kitware open-source projects at > > http://www.kitware.com/opensource/opensource.html > OPEN SOURCE - Kitware > www.kitware.com > Kitware develops, maintains and supports a wide array of toolkits and > applications that are used by tens of thousands of software developers, > researchers and ... > > > > > Please keep messages on-topic and check the VTK FAQ at: > > http://www.vtk.org/Wiki/VTK_FAQ > > > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > > > Follow this link to subscribe/unsubscribe: > > http://public.kitware.com/mailman/listinfo/vtkusers > vtkusers Info Page - Kitware > > public.kitware.com > To see the collection of prior postings to the list, visit the vtkusers > Archives. Using vtkusers: To post a message to all the list members, send > ... > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From awm32 at cs.drexel.edu Fri Feb 10 10:35:01 2017 From: awm32 at cs.drexel.edu (awm32@cs) Date: Fri, 10 Feb 2017 10:35:01 -0500 Subject: [vtkusers] How to prevent vtkPlotLine3D / vtkChartXYZ near clipping? Message-ID: VTK version / language ? using VTK 7.1 / C++. I?m plotting a number of 2D lines as 3D lines (giving each 2D line a static[1] Z-coordinate), and part of what I need to do is zoom *way* in, so I can compare the different lines. The problem I?m having, is as I zoom in, the lines closet to the side of the XYZChart (the wireframe cube that the lines get plot in) start disappearing ? even if I rotate the plot such that at a side view, I?m looking at the line at Z == 8, but when I turn the plot to get a ?front? view, that line (and others) will get clipped and I?ll end up looking at, say, the line at Z == 12. What can I do to be able to essentially zoom in on the entire graph, rather than just zoom in on the lines themselves? I tried setting the clipping range on the active camera (tiny number for near, huge number for far), and it didn?t seem to help. Thanks, Andrew [1] I added this ?footnote? because I may have found a slight ?oddity? in how vtkPlotLine3D deals with the case that one dimension is static (e.g., only 5). But I?ll post about that later. From pkorir at ebi.ac.uk Fri Feb 10 11:00:48 2017 From: pkorir at ebi.ac.uk (Paul Korir) Date: Fri, 10 Feb 2017 16:00:48 +0000 Subject: [vtkusers] VTK 7.0 vtkXMLPolyDataWriter output version issues In-Reply-To: References: <8e92335e-0f95-674b-f9b9-7df1f55effc9@ebi.ac.uk> Message-ID: Hi Dan, Thanks for your reply. I'm not referring to VTK Ids. I'm specifically referring to the paragraph that says: "Binary Blob Header: In front of every binary blob, base64 or raw-binary, appended or not, there is an UInt32 length indicator. If you do not have this length indicator, you might get error messages like Cannot read cell offsets from XXXX in piece 0 because the "offsets" array is not long enough. Note that if you are encoding in base64, that length header must be encoded separately, so that the end result looks like XXXXXX==XXXX... (note the two equals signs indicating the early end of the length header block)." How do I get that to appear on the data array? It seems like Paraview does something internally that VTK programmers should be aware of. Regards, Paul On 10/02/2017 13:52, Dan Lipsa wrote: > Paul, > Looking closer that the blog it seems that a file with ghosts will > have version 2.0. The difference between 1.0 and 0.1 is caused > by VTK_USE_64BIT_IDS. Can you check that in your VTK's CMakeList.txt. > It seems that your VTK uses 32 bits while ParaView would use 64. > So that would explain the difference. Do you need/want to use 32 bits > for VTK? Can you recompile your VTK with 64 bit ids and retry. > > Dan -- Paul K. Korir, PhD Scientific Programmer EMBL-EBI 01223494422 From sebastien.jourdain at kitware.com Fri Feb 10 21:05:51 2017 From: sebastien.jourdain at kitware.com (Sebastien Jourdain) Date: Fri, 10 Feb 2017 19:05:51 -0700 Subject: [vtkusers] Issues with picking in VTK Java on Mac OS X In-Reply-To: <20170207140228.911087348@mail.rogue-research.com> References: <94b76fe5-cd64-f581-20c5-8d83e6bc93b7@usc.edu> <5d4ae6e5-a2ad-8d8b-588a-95e8ae0c7236@usc.edu> <6c6ec915-7314-c7cf-6307-e796c51432d2@usc.edu> <20170204003525.2097551751@mail.rogue-research.com> <20170207140228.911087348@mail.rogue-research.com> Message-ID: Hi Kevin, I finally build VTK on my mac (macOS Sierra 10.12.3 - 16D32) I can run vtk.sample.Demo with the usual external window issue except on that time the actual rendering window is half the size of the actual JFrame. For the Jogl I get a segfault right away. $ java -cp vtk-7.1.jar:/Users/seb/.m2/repository/org/jogamp/gluegen/gluegen-rt/2.3.2/gluegen-rt-2.3.2.jar:/Users/seb/.m2/repository/org/jogamp/jogl/jogl-all/2.3.2/jogl-all-2.3.2.jar -Djava.library.path=$PWD/natives-Darwin-x86_64/ vtk.sample.rendering.JoglConeRendering # # A fatal error has been detected by the Java Runtime Environment: # # SIGSEGV (0xb) at pc=0x000000012cdaeb99, pid=51716, tid=7171 # # JRE version: Java(TM) SE Runtime Environment (8.0_25-b17) (build 1.8.0_25-b17) # Java VM: Java HotSpot(TM) 64-Bit Server VM (25.25-b02 mixed mode bsd-amd64 compressed oops) # Problematic frame: # C [libawt_lwawt.dylib+0x44b99] JNI_OnLoad+0x91 # # Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again # # An error report file with more information is saved as: # /Users/seb/Documents/code/VTK/install/hs_err_pid51716.log # # If you would like to submit a bug report, please visit: # http://bugreport.sun.com/bugreport/crash.jsp # The crash happened outside the Java Virtual Machine in native code. # See problematic frame for where to report the bug. # Abort trap: 6 I don't know if the issue come from jogl or VTK with macOS Sierra. Anyway, wanted to let you know, Seb On Tue, Feb 7, 2017 at 7:02 AM, Sean McBride wrote: > On Mon, 6 Feb 2017 14:10:03 -0800, Kevin Milner said: > > >Any ideas on how to get this working on new Macs? > > So you have 2 differences now: different OS version, different screens > (Retina vs not). You should try to eliminate one. You can force a > non-Retina to act like a retina with Quartz Debug: > > GraphicsAnimation/Conceptual/HighResolutionOSX/Testing/Testing.html> > > and/or upgrade that Mac from 10.9 (which BTW doesn't get security updates > anymore) to something newer. > > Cheers, > > -- > ____________________________________________________________ > Sean McBride, B. Eng sean at rogue-research.com > Rogue Research www.rogue-research.com > Mac Software Developer Montr?al, Qu?bec, Canada > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From elvis.stansvik at orexplore.com Sun Feb 12 04:40:56 2017 From: elvis.stansvik at orexplore.com (Elvis Stansvik) Date: Sun, 12 Feb 2017 10:40:56 +0100 Subject: [vtkusers] Opacity discrepancy with downscaled volume despite opacity unit distance == spacing In-Reply-To: References: Message-ID: I've now realized that I've made a blunder. In order to get the two volumes to look the same, I should of course set the ScalarOpacityUnitDistance to the *same* value for both volumes. The attached PNG shows the result when I set the ScalarOpacityUnitDistance to 0.006 (the spacing of the higher-resolution volume) for both volumes (code below). The volumes now look very similar opacity-wise, but they are still not quite equal. The (0-255) HSV values of the left/right volumes are (0, 95, 100) and (0, 93, 100), so the right one (the low res one) is still a little less opaque than the left one. Anyone who can explain where this discrepancy comes from? My question is really: How can two volumes with the exact same shape (a cube) and bounds in VTK world coordinates looks different opacity-wise, when they are rendered with the same opacity transfer function and have the same ScalarOpacityUnitDistance set? Elvis main.cpp: #include #include #include #include #include #include #include #include #include #include #include #include #include #include // Create a volume from the given image vtkSmartPointer createVolume(vtkSmartPointer image) { auto color = vtkSmartPointer::New(); color->AddRGBPoint(0.0, 1.0, 0.0, 0.0); color->AddRGBPoint(1.0, 1.0, 0.0, 0.0); auto opacity = vtkSmartPointer::New(); opacity->AddPoint(0.0, 0.1); opacity->AddPoint(1.0, 0.1); auto property = vtkSmartPointer::New(); property->SetColor(color); property->SetScalarOpacity(opacity); property->SetInterpolationTypeToLinear(); property->ShadeOff(); property->SetScalarOpacityUnitDistance(0.006); auto mapper = vtkSmartPointer::New(); mapper->SetInputData(image); auto volume = vtkSmartPointer::New(); volume->SetMapper(mapper); volume->SetProperty(property); return volume; } int main(int argc, char *argv[]) { // Create a 30x30x30 volume auto image = vtkSmartPointer::New(); image->SetDimensions(30, 30, 30); image->SetSpacing(0.006, 0.006, 0.006); image->AllocateScalars(VTK_FLOAT, 1); auto imagePtr = static_cast(image->GetScalarPointer()); std::fill_n(imagePtr, 30 * 30 * 30, 1.0); auto volume = createVolume(image); // Create a smaller (10x10x10) version auto interpolator = vtkSmartPointer::New(); interpolator->SetInterpolationModeToLinear(); auto resize = vtkSmartPointer::New(); resize->SetInputData(image); resize->SetOutputDimensions(10, 10, 10); resize->SetInterpolator(interpolator); resize->Update(); auto smallVolume = createVolume(resize->GetOutput()); smallVolume->SetPosition(0.2, 0, 0); // Render the two volumes auto renderer = vtkSmartPointer::New(); renderer->SetBackground(1.0, 1.0, 1.0); renderer->AddVolume(volume); renderer->AddVolume(smallVolume); renderer->ResetCamera(); auto camera = renderer->GetActiveCamera(); camera->SetParallelProjection(1); auto window = vtkSmartPointer::New(); window->AddRenderer(renderer); window->SetSize(800, 400); auto interactor = vtkSmartPointer::New(); interactor->SetRenderWindow(window); interactor->Start(); return 0; } CMakeLists.txt: cmake_minimum_required(VERSION 3.1) project(TestCase) set(CMAKE_CXX_STANDARD 11) set(CMAKE_CXX_STANDARD_REQUIRED ON) find_package(VTK COMPONENTS vtkCommonCore vtkCommonDataModel vtkCommonExecutionModel vtkInteractionStyle vtkImagingCore vtkRenderingCore vtkRenderingOpenGL2 vtkRenderingVolume vtkRenderingVolumeOpenGL2 ) add_executable(TestCase main.cpp) target_link_libraries(TestCase PUBLIC vtkCommonCore vtkCommonDataModel vtkCommonExecutionModel vtkImagingCore vtkInteractionStyle vtkRenderingCore vtkRenderingOpenGL2 vtkRenderingVolume vtkRenderingVolumeOpenGL2 ) target_include_directories(TestCase PUBLIC ${VTK_INCLUDE_DIRS} ) target_compile_definitions(TestCase PUBLIC ${VTK_DEFINITIONS} ) 2017-02-09 14:45 GMT+01:00 Elvis Stansvik : > Hi all, > > The following example shows a 30x30x30 volume rendered, and next to it a > downscaled version of it (but using an identical opacity/transfer > function). Notice how in the result (attached), the downscaled version is > less opaque. This is despite me using > > SetScalarOpacityUnitDistance(image->GetSpacing()[0]) > > to set the scalar opacity unit distance to the spacing of the respective > image. I would thought calling SetScalarOpacityUnitDistance like this would > ensure both volumes look the same (apart from resolution). > > How can I make both volumes look the same opacity-wise when using the same > transfer functions? > > Thanks in advance, > Elvis > > main.cpp: > > > #include > > #include > #include > #include > #include > #include > #include > #include > #include > #include > #include > #include > #include > > // Create a volume from the given image > vtkSmartPointer createVolume(vtkSmartPointer > image) { > auto color = vtkSmartPointer::New(); > color->AddRGBPoint(0.0, 1.0, 0.0, 0.0); > color->AddRGBPoint(1.0, 1.0, 0.0, 0.0); > > auto opacity = vtkSmartPointer::New(); > opacity->AddPoint(0.0, 0.1); > opacity->AddPoint(1.0, 0.1); > > auto property = vtkSmartPointer::New(); > property->SetColor(color); > property->SetScalarOpacity(opacity); > property->SetInterpolationTypeToLinear(); > property->ShadeOff(); > property->SetScalarOpacityUnitDistance(image->GetSpacing()[0]); > > auto mapper = vtkSmartPointer::New(); > mapper->SetInputData(image); > > auto volume = vtkSmartPointer::New(); > volume->SetMapper(mapper); > volume->SetProperty(property); > > return volume; > } > > int main(int argc, char *argv[]) { > > // Create a 30x30x30 volume > auto image = vtkSmartPointer::New(); > image->SetDimensions(30, 30, 30); > image->SetSpacing(0.006, 0.006, 0.006); > image->AllocateScalars(VTK_FLOAT, 1); > > auto imagePtr = static_cast(image->GetScalarPointer()); > std::fill_n(imagePtr, 30 * 30 * 30, 1.0); > > auto volume = createVolume(image); > > // Create a smaller (10x10x10) version > auto resize = vtkSmartPointer::New(); > resize->SetInputData(image); > resize->SetOutputDimensions(10, 10, 10); > resize->Update(); > > auto smallVolume = createVolume(resize->GetOutput()); > smallVolume->SetPosition(0.2, 0, 0); > > // Render the two volumes > auto renderer = vtkSmartPointer::New(); > renderer->SetBackground(1.0, 1.0, 1.0); > renderer->AddVolume(volume); > renderer->AddVolume(smallVolume); > renderer->ResetCamera(); > > auto camera = renderer->GetActiveCamera(); > camera->SetParallelProjection(1); > > auto window = vtkSmartPointer::New(); > window->AddRenderer(renderer); > window->SetSize(800, 400); > > auto interactor = vtkSmartPointer::New(); > interactor->SetRenderWindow(window); > interactor->Start(); > > return 0; > } > > > CMakeLists.txt: > > > cmake_minimum_required(VERSION 3.1) > > project(TestCase) > > set(CMAKE_CXX_STANDARD 11) > set(CMAKE_CXX_STANDARD_REQUIRED ON) > > find_package(VTK COMPONENTS > vtkCommonCore > vtkCommonDataModel > vtkCommonExecutionModel > vtkInteractionStyle > vtkImagingCore > vtkRenderingCore > vtkRenderingOpenGL2 > vtkRenderingVolume > vtkRenderingVolumeOpenGL2 > ) > > add_executable(TestCase main.cpp) > > target_link_libraries(TestCase PUBLIC > vtkCommonCore > vtkCommonDataModel > vtkCommonExecutionModel > vtkImagingCore > vtkInteractionStyle > vtkRenderingCore > vtkRenderingOpenGL2 > vtkRenderingVolume > vtkRenderingVolumeOpenGL2 > ) > > target_include_directories(TestCase PUBLIC > ${VTK_INCLUDE_DIRS} > ) > > > target_compile_definitions(TestCase PUBLIC > ${VTK_DEFINITIONS} > ) > -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: new-result.png Type: image/png Size: 9507 bytes Desc: not available URL: From elvis.stansvik at orexplore.com Sun Feb 12 06:30:52 2017 From: elvis.stansvik at orexplore.com (Elvis Stansvik) Date: Sun, 12 Feb 2017 12:30:52 +0100 Subject: [vtkusers] Crash in vtkOpenGLContextDevice2D::ComputeStringBounds when getting bounding rect of vtkAxis Message-ID: Hi all, In the test case below, I'm trying to get the bounding rect of a vtkAxis in a vtkChartXY, but I'm getting a crash in the call to GetBoundingRect with the following backtrace: #0 vtkOpenGLContextDevice2D::ComputeStringBounds (this=this at entry=0x689ea0, string=..., bounds=bounds at entry=0x7fffffffcda0) at /buildbot/vtk7-builder/build/Rendering/ContextOpenGL2/vtkOpenGLContextDevice2D.cxx:1755 #1 0x00007ffff78454f1 in vtkOpenGLContextDevice2D::ComputeStringBounds (this=0x689ea0, string=..., bounds=0x7fffffffcda0) at /buildbot/vtk7-builder/build/Rendering/ContextOpenGL2/vtkOpenGLContextDevice2D.cxx:1626 #2 0x00007ffff6f2722d in vtkContext2D::ComputeStringBounds (this=this at entry=0x67e3f0, string=..., bounds=bounds at entry=0x7fffffffcda0) at /buildbot/vtk7-builder/build/Rendering/Context2D/vtkContext2D.cxx:645 #3 0x00007ffff7ab4b28 in vtkAxis::GetBoundingRect (this=0x671490, painter=0x67e3f0) at /buildbot/vtk7-builder/build/Charts/Core/vtkAxis.cxx:990 #4 0x0000000000402ab1 in main (argc=1, argv=0x7fffffffd038) at /home/estan/testcrash/main.cpp:50 The reason seems to be that the render window (RenderWindow member) of vtkOpenGLContextDevice2D is NULL at that point (!). Am I using the GetBoundingRect API in the wrong way somehow? How can I get the computed bounding rect for a vtkAxis? Thanks in advance, Elvis main.cpp: #include #include #include #include #include #include #include #include #include #include #include int main(int argc, char *argv[]) { vtkNew renderer; vtkNew window; window->AddRenderer(renderer.Get()); vtkNew interactor; interactor->SetRenderWindow(window.Get()); vtkNew chart; vtkNew table; vtkNew xArray; xArray->SetName("X Axis"); table->AddColumn(xArray.Get()); vtkNew yArray; yArray->SetName("Y Axis"); table->AddColumn(yArray.Get()); table->SetNumberOfRows(2); table->SetValue(0, 0, 0); table->SetValue(0, 1, 0); table->SetValue(1, 0, 1); table->SetValue(1, 1, 1); auto linePlot = chart->AddPlot(vtkChart::LINE); linePlot->SetInputData(table.Get(), 0, 1); vtkNew view; view->GetScene()->AddItem(chart.Get()); view->SetRenderWindow(window.Get()); view->SetInteractor(interactor.Get()); window->Render(); // Get bounding rect of the left axis auto leftAxis = chart->GetAxis(vtkAxis::LEFT); leftAxis->Update(); auto rect = leftAxis->GetBoundingRect(view->GetContext()); interactor->Start(); return 0; } CMakeLists.txt: cmake_minimum_required(VERSION 3.1) project(TestCase) set(CMAKE_CXX_STANDARD 11) set(CMAKE_CXX_STANDARD_REQUIRED ON) find_package(VTK COMPONENTS vtkChartsCore vtkCommonCore vtkInteractionStyle vtkRenderingContext2D vtkRenderingContextOpenGL2 vtkRenderingCore vtkRenderingFreeType vtkRenderingOpenGL2 vtkViewsContext2D ) add_executable(TestCase main.cpp) target_link_libraries(TestCase PUBLIC vtkChartsCore vtkCommonCore vtkInteractionStyle vtkRenderingContext2D vtkRenderingContextOpenGL2 vtkRenderingCore vtkRenderingFreeType vtkRenderingOpenGL2 vtkViewsContext2D ) target_include_directories(TestCase PUBLIC ${VTK_INCLUDE_DIRS} ) target_compile_definitions(TestCase PUBLIC ${VTK_DEFINITIONS} ) -------------- next part -------------- An HTML attachment was scrubbed... URL: From elvis.stansvik at orexplore.com Sun Feb 12 06:50:12 2017 From: elvis.stansvik at orexplore.com (Elvis Stansvik) Date: Sun, 12 Feb 2017 12:50:12 +0100 Subject: [vtkusers] Crash in vtkOpenGLContextDevice2D::ComputeStringBounds when getting bounding rect of vtkAxis In-Reply-To: References: Message-ID: 2017-02-12 12:30 GMT+01:00 Elvis Stansvik : > Hi all, > > In the test case below, I'm trying to get the bounding rect of a vtkAxis > in a vtkChartXY, but I'm getting a crash in the call to GetBoundingRect > with the following backtrace: > > #0 vtkOpenGLContextDevice2D::ComputeStringBounds (this=this at entry=0x689ea0, > string=..., bounds=bounds at entry=0x7fffffffcda0) > at /buildbot/vtk7-builder/build/Rendering/ContextOpenGL2/ > vtkOpenGLContextDevice2D.cxx:1755 > #1 0x00007ffff78454f1 in vtkOpenGLContextDevice2D::ComputeStringBounds > (this=0x689ea0, string=..., bounds=0x7fffffffcda0) > at /buildbot/vtk7-builder/build/Rendering/ContextOpenGL2/ > vtkOpenGLContextDevice2D.cxx:1626 > #2 0x00007ffff6f2722d in vtkContext2D::ComputeStringBounds > (this=this at entry=0x67e3f0, string=..., bounds=bounds at entry=0x7fffffffcda0) > at /buildbot/vtk7-builder/build/Rendering/Context2D/vtkContext2D.cxx:645 > #3 0x00007ffff7ab4b28 in vtkAxis::GetBoundingRect (this=0x671490, > painter=0x67e3f0) at /buildbot/vtk7-builder/build/ > Charts/Core/vtkAxis.cxx:990 > #4 0x0000000000402ab1 in main (argc=1, argv=0x7fffffffd038) at > /home/estan/testcrash/main.cpp:50 > > The reason seems to be that the render window (RenderWindow member) of > vtkOpenGLContextDevice2D is NULL at that point (!). > > Am I using the GetBoundingRect API in the wrong way somehow? How can I get > the computed bounding rect for a vtkAxis? > I realize now that RenderWindow of the vtkOpenGLContextDevice2D is only valid during a paint (between Begin() and End()). At other times it is NULL. So is it not safe to call vtkAxis::GetBoundingRect(..) except during rendering..? If so, is there any other way to get the bounding rect of a vtkAxis as a user? Elvis > Thanks in advance, > Elvis > > main.cpp: > > #include > #include > #include > #include > #include > #include > #include > #include > #include > #include > #include > > int main(int argc, char *argv[]) { > vtkNew renderer; > > vtkNew window; > window->AddRenderer(renderer.Get()); > > vtkNew interactor; > interactor->SetRenderWindow(window.Get()); > > vtkNew chart; > > vtkNew table; > vtkNew xArray; > xArray->SetName("X Axis"); > table->AddColumn(xArray.Get()); > vtkNew yArray; > yArray->SetName("Y Axis"); > table->AddColumn(yArray.Get()); > table->SetNumberOfRows(2); > table->SetValue(0, 0, 0); > table->SetValue(0, 1, 0); > table->SetValue(1, 0, 1); > table->SetValue(1, 1, 1); > > auto linePlot = chart->AddPlot(vtkChart::LINE); > linePlot->SetInputData(table.Get(), 0, 1); > > vtkNew view; > view->GetScene()->AddItem(chart.Get()); > view->SetRenderWindow(window.Get()); > view->SetInteractor(interactor.Get()); > > window->Render(); > > // Get bounding rect of the left axis > auto leftAxis = chart->GetAxis(vtkAxis::LEFT); > leftAxis->Update(); > auto rect = leftAxis->GetBoundingRect(view->GetContext()); > > interactor->Start(); > > return 0; > } > > > CMakeLists.txt: > > cmake_minimum_required(VERSION 3.1) > > project(TestCase) > > set(CMAKE_CXX_STANDARD 11) > set(CMAKE_CXX_STANDARD_REQUIRED ON) > > find_package(VTK COMPONENTS > vtkChartsCore > vtkCommonCore > vtkInteractionStyle > vtkRenderingContext2D > vtkRenderingContextOpenGL2 > vtkRenderingCore > vtkRenderingFreeType > vtkRenderingOpenGL2 > vtkViewsContext2D > ) > > add_executable(TestCase main.cpp) > > target_link_libraries(TestCase PUBLIC > vtkChartsCore > vtkCommonCore > vtkInteractionStyle > vtkRenderingContext2D > vtkRenderingContextOpenGL2 > vtkRenderingCore > vtkRenderingFreeType > vtkRenderingOpenGL2 > vtkViewsContext2D > ) > > target_include_directories(TestCase PUBLIC > ${VTK_INCLUDE_DIRS} > ) > > > > > > target_compile_definitions(TestCase PUBLIC > > > > ${VTK_DEFINITIONS} > > > > ) > -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.gobbi at gmail.com Sun Feb 12 11:31:53 2017 From: david.gobbi at gmail.com (David Gobbi) Date: Sun, 12 Feb 2017 09:31:53 -0700 Subject: [vtkusers] Opacity discrepancy with downscaled volume despite opacity unit distance == spacing In-Reply-To: References: Message-ID: Hi Elvis, Here is something you can do as a check: set the sample distance for the ray casting to a very small value, so that it takes around 1000 steps for the ray to traverse the volume from front to back. The thickness of your volume is 29*0.006 = 0.174, so you can try a sample spacing of 1.74e-04: mapper->AutoAdjustSampleDistancesOff(); mapper->SetSampleDistance(1.74e-04); If the two volumes look the same when you use a small sample distance, then the difference you were seeing was probably just due to discretization. - David On Thu, Feb 9, 2017 at 6:45 AM, Elvis Stansvik wrote: > Hi all, > > The following example shows a 30x30x30 volume rendered, and next to it a > downscaled version of it (but using an identical opacity/transfer > function). Notice how in the result (attached), the downscaled version is > less opaque. This is despite me using > > SetScalarOpacityUnitDistance(image->GetSpacing()[0]) > > to set the scalar opacity unit distance to the spacing of the respective > image. I would thought calling SetScalarOpacityUnitDistance like this would > ensure both volumes look the same (apart from resolution). > > How can I make both volumes look the same opacity-wise when using the same > transfer functions? > > Thanks in advance, > Elvis > > main.cpp: > > > #include > > #include > #include > #include > #include > #include > #include > #include > #include > #include > #include > #include > #include > > // Create a volume from the given image > vtkSmartPointer createVolume(vtkSmartPointer > image) { > auto color = vtkSmartPointer::New(); > color->AddRGBPoint(0.0, 1.0, 0.0, 0.0); > color->AddRGBPoint(1.0, 1.0, 0.0, 0.0); > > auto opacity = vtkSmartPointer::New(); > opacity->AddPoint(0.0, 0.1); > opacity->AddPoint(1.0, 0.1); > > auto property = vtkSmartPointer::New(); > property->SetColor(color); > property->SetScalarOpacity(opacity); > property->SetInterpolationTypeToLinear(); > property->ShadeOff(); > property->SetScalarOpacityUnitDistance(image->GetSpacing()[0]); > > auto mapper = vtkSmartPointer::New(); > mapper->SetInputData(image); > > auto volume = vtkSmartPointer::New(); > volume->SetMapper(mapper); > volume->SetProperty(property); > > return volume; > } > > int main(int argc, char *argv[]) { > > // Create a 30x30x30 volume > auto image = vtkSmartPointer::New(); > image->SetDimensions(30, 30, 30); > image->SetSpacing(0.006, 0.006, 0.006); > image->AllocateScalars(VTK_FLOAT, 1); > > auto imagePtr = static_cast(image->GetScalarPointer()); > std::fill_n(imagePtr, 30 * 30 * 30, 1.0); > > auto volume = createVolume(image); > > // Create a smaller (10x10x10) version > auto resize = vtkSmartPointer::New(); > resize->SetInputData(image); > resize->SetOutputDimensions(10, 10, 10); > resize->Update(); > > auto smallVolume = createVolume(resize->GetOutput()); > smallVolume->SetPosition(0.2, 0, 0); > > // Render the two volumes > auto renderer = vtkSmartPointer::New(); > renderer->SetBackground(1.0, 1.0, 1.0); > renderer->AddVolume(volume); > renderer->AddVolume(smallVolume); > renderer->ResetCamera(); > > auto camera = renderer->GetActiveCamera(); > camera->SetParallelProjection(1); > > auto window = vtkSmartPointer::New(); > window->AddRenderer(renderer); > window->SetSize(800, 400); > > auto interactor = vtkSmartPointer::New(); > interactor->SetRenderWindow(window); > interactor->Start(); > > return 0; > } > > > CMakeLists.txt: > > > cmake_minimum_required(VERSION 3.1) > > project(TestCase) > > set(CMAKE_CXX_STANDARD 11) > set(CMAKE_CXX_STANDARD_REQUIRED ON) > > find_package(VTK COMPONENTS > vtkCommonCore > vtkCommonDataModel > vtkCommonExecutionModel > vtkInteractionStyle > vtkImagingCore > vtkRenderingCore > vtkRenderingOpenGL2 > vtkRenderingVolume > vtkRenderingVolumeOpenGL2 > ) > > add_executable(TestCase main.cpp) > > target_link_libraries(TestCase PUBLIC > vtkCommonCore > vtkCommonDataModel > vtkCommonExecutionModel > vtkImagingCore > vtkInteractionStyle > vtkRenderingCore > vtkRenderingOpenGL2 > vtkRenderingVolume > vtkRenderingVolumeOpenGL2 > ) > > target_include_directories(TestCase PUBLIC > ${VTK_INCLUDE_DIRS} > ) > > > target_compile_definitions(TestCase PUBLIC > ${VTK_DEFINITIONS} > ) > -------------- next part -------------- An HTML attachment was scrubbed... URL: From elvis.stansvik at orexplore.com Sun Feb 12 11:51:02 2017 From: elvis.stansvik at orexplore.com (Elvis Stansvik) Date: Sun, 12 Feb 2017 17:51:02 +0100 Subject: [vtkusers] Opacity discrepancy with downscaled volume despite opacity unit distance == spacing In-Reply-To: References: Message-ID: 2017-02-12 17:31 GMT+01:00 David Gobbi : > Hi Elvis, > > Here is something you can do as a check: set the sample distance for the > ray casting to a very small value, so that it takes around 1000 steps for > the ray to traverse the volume from front to back. The thickness of your > volume is 29*0.006 = 0.174, so you can try a sample spacing of 1.74e-04: > > mapper->AutoAdjustSampleDistancesOff(); > mapper->SetSampleDistance(1.74e-04); > > If the two volumes look the same when you use a small sample distance, > then the difference you were seeing was probably just due to discretization. > Ah, good idea. However, if I set the opacity unit distance to such a small value, both volumes appear as completely opaque red. This makes sense to me, since with so many accumulations, the opacity value in my opacity function (0.1) will add up very quickly.. If I, just as a test, try to "compensate" by using 0.001 instead of 0.1 in my opacity function, the volumes appear non-opaque as expected, but again there's a discrepancy between the small-spaced and large-spaced volume (shown in attached screenshot). Elvis > > - David > > > > On Thu, Feb 9, 2017 at 6:45 AM, Elvis Stansvik < > elvis.stansvik at orexplore.com> wrote: > >> Hi all, >> >> The following example shows a 30x30x30 volume rendered, and next to it a >> downscaled version of it (but using an identical opacity/transfer >> function). Notice how in the result (attached), the downscaled version is >> less opaque. This is despite me using >> >> SetScalarOpacityUnitDistance(image->GetSpacing()[0]) >> >> to set the scalar opacity unit distance to the spacing of the respective >> image. I would thought calling SetScalarOpacityUnitDistance like this would >> ensure both volumes look the same (apart from resolution). >> >> How can I make both volumes look the same opacity-wise when using the >> same transfer functions? >> >> Thanks in advance, >> Elvis >> >> main.cpp: >> >> >> #include >> >> #include >> #include >> #include >> #include >> #include >> #include >> #include >> #include >> #include >> #include >> #include >> #include >> >> // Create a volume from the given image >> vtkSmartPointer createVolume(vtkSmartPointer >> image) { >> auto color = vtkSmartPointer::New(); >> color->AddRGBPoint(0.0, 1.0, 0.0, 0.0); >> color->AddRGBPoint(1.0, 1.0, 0.0, 0.0); >> >> auto opacity = vtkSmartPointer::New(); >> opacity->AddPoint(0.0, 0.1); >> opacity->AddPoint(1.0, 0.1); >> >> auto property = vtkSmartPointer::New(); >> property->SetColor(color); >> property->SetScalarOpacity(opacity); >> property->SetInterpolationTypeToLinear(); >> property->ShadeOff(); >> property->SetScalarOpacityUnitDistance(image->GetSpacing()[0]); >> >> auto mapper = vtkSmartPointer::New(); >> mapper->SetInputData(image); >> >> auto volume = vtkSmartPointer::New(); >> volume->SetMapper(mapper); >> volume->SetProperty(property); >> >> return volume; >> } >> >> int main(int argc, char *argv[]) { >> >> // Create a 30x30x30 volume >> auto image = vtkSmartPointer::New(); >> image->SetDimensions(30, 30, 30); >> image->SetSpacing(0.006, 0.006, 0.006); >> image->AllocateScalars(VTK_FLOAT, 1); >> >> auto imagePtr = static_cast(image->GetScalarPointer()); >> std::fill_n(imagePtr, 30 * 30 * 30, 1.0); >> >> auto volume = createVolume(image); >> >> // Create a smaller (10x10x10) version >> auto resize = vtkSmartPointer::New(); >> resize->SetInputData(image); >> resize->SetOutputDimensions(10, 10, 10); >> resize->Update(); >> >> auto smallVolume = createVolume(resize->GetOutput()); >> smallVolume->SetPosition(0.2, 0, 0); >> >> // Render the two volumes >> auto renderer = vtkSmartPointer::New(); >> renderer->SetBackground(1.0, 1.0, 1.0); >> renderer->AddVolume(volume); >> renderer->AddVolume(smallVolume); >> renderer->ResetCamera(); >> >> auto camera = renderer->GetActiveCamera(); >> camera->SetParallelProjection(1); >> >> auto window = vtkSmartPointer::New(); >> window->AddRenderer(renderer); >> window->SetSize(800, 400); >> >> auto interactor = vtkSmartPointer::New(); >> interactor->SetRenderWindow(window); >> interactor->Start(); >> >> return 0; >> } >> >> >> CMakeLists.txt: >> >> >> cmake_minimum_required(VERSION 3.1) >> >> project(TestCase) >> >> set(CMAKE_CXX_STANDARD 11) >> set(CMAKE_CXX_STANDARD_REQUIRED ON) >> >> find_package(VTK COMPONENTS >> vtkCommonCore >> vtkCommonDataModel >> vtkCommonExecutionModel >> vtkInteractionStyle >> vtkImagingCore >> vtkRenderingCore >> vtkRenderingOpenGL2 >> vtkRenderingVolume >> vtkRenderingVolumeOpenGL2 >> ) >> >> add_executable(TestCase main.cpp) >> >> target_link_libraries(TestCase PUBLIC >> vtkCommonCore >> vtkCommonDataModel >> vtkCommonExecutionModel >> vtkImagingCore >> vtkInteractionStyle >> vtkRenderingCore >> vtkRenderingOpenGL2 >> vtkRenderingVolume >> vtkRenderingVolumeOpenGL2 >> ) >> >> target_include_directories(TestCase PUBLIC >> ${VTK_INCLUDE_DIRS} >> ) >> >> >> target_compile_definitions(TestCase PUBLIC >> ${VTK_DEFINITIONS} >> ) >> > > -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: new-result2.png Type: image/png Size: 8011 bytes Desc: not available URL: From elvis.stansvik at orexplore.com Sun Feb 12 11:54:25 2017 From: elvis.stansvik at orexplore.com (Elvis Stansvik) Date: Sun, 12 Feb 2017 17:54:25 +0100 Subject: [vtkusers] Opacity discrepancy with downscaled volume despite opacity unit distance == spacing In-Reply-To: References: Message-ID: 2017-02-12 17:51 GMT+01:00 Elvis Stansvik : > 2017-02-12 17:31 GMT+01:00 David Gobbi : > >> Hi Elvis, >> >> Here is something you can do as a check: set the sample distance for the >> ray casting to a very small value, so that it takes around 1000 steps for >> the ray to traverse the volume from front to back. The thickness of your >> volume is 29*0.006 = 0.174, so you can try a sample spacing of 1.74e-04: >> >> mapper->AutoAdjustSampleDistancesOff(); >> mapper->SetSampleDistance(1.74e-04); >> >> If the two volumes look the same when you use a small sample distance, >> then the difference you were seeing was probably just due to discretization. >> > > Ah, good idea. However, if I set the opacity unit distance to such a small > value, both volumes appear as completely opaque red. This makes sense to > me, since with so many accumulations, the opacity value in my opacity > function (0.1) will add up very quickly.. > Bah sorry, I read you completely wrong. You were talking about the sample distance, not the opacity unit distance. Will check again.. Elvis > > If I, just as a test, try to "compensate" by using 0.001 instead of 0.1 in > my opacity function, the volumes appear non-opaque as expected, but again > there's a discrepancy between the small-spaced and large-spaced volume > (shown in attached screenshot). > > Elvis > > >> >> - David >> >> >> >> On Thu, Feb 9, 2017 at 6:45 AM, Elvis Stansvik < >> elvis.stansvik at orexplore.com> wrote: >> >>> Hi all, >>> >>> The following example shows a 30x30x30 volume rendered, and next to it a >>> downscaled version of it (but using an identical opacity/transfer >>> function). Notice how in the result (attached), the downscaled version is >>> less opaque. This is despite me using >>> >>> SetScalarOpacityUnitDistance(image->GetSpacing()[0]) >>> >>> to set the scalar opacity unit distance to the spacing of the respective >>> image. I would thought calling SetScalarOpacityUnitDistance like this would >>> ensure both volumes look the same (apart from resolution). >>> >>> How can I make both volumes look the same opacity-wise when using the >>> same transfer functions? >>> >>> Thanks in advance, >>> Elvis >>> >>> main.cpp: >>> >>> >>> #include >>> >>> #include >>> #include >>> #include >>> #include >>> #include >>> #include >>> #include >>> #include >>> #include >>> #include >>> #include >>> #include >>> >>> // Create a volume from the given image >>> vtkSmartPointer createVolume(vtkSmartPointer >>> image) { >>> auto color = vtkSmartPointer::New(); >>> color->AddRGBPoint(0.0, 1.0, 0.0, 0.0); >>> color->AddRGBPoint(1.0, 1.0, 0.0, 0.0); >>> >>> auto opacity = vtkSmartPointer::New(); >>> opacity->AddPoint(0.0, 0.1); >>> opacity->AddPoint(1.0, 0.1); >>> >>> auto property = vtkSmartPointer::New(); >>> property->SetColor(color); >>> property->SetScalarOpacity(opacity); >>> property->SetInterpolationTypeToLinear(); >>> property->ShadeOff(); >>> property->SetScalarOpacityUnitDistance(image->GetSpacing()[0]); >>> >>> auto mapper = vtkSmartPointer::New(); >>> mapper->SetInputData(image); >>> >>> auto volume = vtkSmartPointer::New(); >>> volume->SetMapper(mapper); >>> volume->SetProperty(property); >>> >>> return volume; >>> } >>> >>> int main(int argc, char *argv[]) { >>> >>> // Create a 30x30x30 volume >>> auto image = vtkSmartPointer::New(); >>> image->SetDimensions(30, 30, 30); >>> image->SetSpacing(0.006, 0.006, 0.006); >>> image->AllocateScalars(VTK_FLOAT, 1); >>> >>> auto imagePtr = static_cast(image->GetScalarPointer()); >>> std::fill_n(imagePtr, 30 * 30 * 30, 1.0); >>> >>> auto volume = createVolume(image); >>> >>> // Create a smaller (10x10x10) version >>> auto resize = vtkSmartPointer::New(); >>> resize->SetInputData(image); >>> resize->SetOutputDimensions(10, 10, 10); >>> resize->Update(); >>> >>> auto smallVolume = createVolume(resize->GetOutput()); >>> smallVolume->SetPosition(0.2, 0, 0); >>> >>> // Render the two volumes >>> auto renderer = vtkSmartPointer::New(); >>> renderer->SetBackground(1.0, 1.0, 1.0); >>> renderer->AddVolume(volume); >>> renderer->AddVolume(smallVolume); >>> renderer->ResetCamera(); >>> >>> auto camera = renderer->GetActiveCamera(); >>> camera->SetParallelProjection(1); >>> >>> auto window = vtkSmartPointer::New(); >>> window->AddRenderer(renderer); >>> window->SetSize(800, 400); >>> >>> auto interactor = vtkSmartPointer::New(); >>> interactor->SetRenderWindow(window); >>> interactor->Start(); >>> >>> return 0; >>> } >>> >>> >>> CMakeLists.txt: >>> >>> >>> cmake_minimum_required(VERSION 3.1) >>> >>> project(TestCase) >>> >>> set(CMAKE_CXX_STANDARD 11) >>> set(CMAKE_CXX_STANDARD_REQUIRED ON) >>> >>> find_package(VTK COMPONENTS >>> vtkCommonCore >>> vtkCommonDataModel >>> vtkCommonExecutionModel >>> vtkInteractionStyle >>> vtkImagingCore >>> vtkRenderingCore >>> vtkRenderingOpenGL2 >>> vtkRenderingVolume >>> vtkRenderingVolumeOpenGL2 >>> ) >>> >>> add_executable(TestCase main.cpp) >>> >>> target_link_libraries(TestCase PUBLIC >>> vtkCommonCore >>> vtkCommonDataModel >>> vtkCommonExecutionModel >>> vtkImagingCore >>> vtkInteractionStyle >>> vtkRenderingCore >>> vtkRenderingOpenGL2 >>> vtkRenderingVolume >>> vtkRenderingVolumeOpenGL2 >>> ) >>> >>> target_include_directories(TestCase PUBLIC >>> ${VTK_INCLUDE_DIRS} >>> ) >>> >>> >>> target_compile_definitions(TestCase PUBLIC >>> ${VTK_DEFINITIONS} >>> ) >>> >> >> > -------------- next part -------------- An HTML attachment was scrubbed... URL: From elvis.stansvik at orexplore.com Sun Feb 12 11:56:57 2017 From: elvis.stansvik at orexplore.com (Elvis Stansvik) Date: Sun, 12 Feb 2017 17:56:57 +0100 Subject: [vtkusers] Opacity discrepancy with downscaled volume despite opacity unit distance == spacing In-Reply-To: References: Message-ID: 2017-02-12 17:31 GMT+01:00 David Gobbi : > Hi Elvis, > > Here is something you can do as a check: set the sample distance for the > ray casting to a very small value, so that it takes around 1000 steps for > the ray to traverse the volume from front to back. The thickness of your > volume is 29*0.006 = 0.174, so you can try a sample spacing of 1.74e-04: > > mapper->AutoAdjustSampleDistancesOff(); > mapper->SetSampleDistance(1.74e-04); > > If the two volumes look the same when you use a small sample distance, > then the difference you were seeing was probably just due to discretization. > That indeed did the trick, thanks David! Elvis > > - David > > > > On Thu, Feb 9, 2017 at 6:45 AM, Elvis Stansvik < > elvis.stansvik at orexplore.com> wrote: > >> Hi all, >> >> The following example shows a 30x30x30 volume rendered, and next to it a >> downscaled version of it (but using an identical opacity/transfer >> function). Notice how in the result (attached), the downscaled version is >> less opaque. This is despite me using >> >> SetScalarOpacityUnitDistance(image->GetSpacing()[0]) >> >> to set the scalar opacity unit distance to the spacing of the respective >> image. I would thought calling SetScalarOpacityUnitDistance like this would >> ensure both volumes look the same (apart from resolution). >> >> How can I make both volumes look the same opacity-wise when using the >> same transfer functions? >> >> Thanks in advance, >> Elvis >> >> main.cpp: >> >> >> #include >> >> #include >> #include >> #include >> #include >> #include >> #include >> #include >> #include >> #include >> #include >> #include >> #include >> >> // Create a volume from the given image >> vtkSmartPointer createVolume(vtkSmartPointer >> image) { >> auto color = vtkSmartPointer::New(); >> color->AddRGBPoint(0.0, 1.0, 0.0, 0.0); >> color->AddRGBPoint(1.0, 1.0, 0.0, 0.0); >> >> auto opacity = vtkSmartPointer::New(); >> opacity->AddPoint(0.0, 0.1); >> opacity->AddPoint(1.0, 0.1); >> >> auto property = vtkSmartPointer::New(); >> property->SetColor(color); >> property->SetScalarOpacity(opacity); >> property->SetInterpolationTypeToLinear(); >> property->ShadeOff(); >> property->SetScalarOpacityUnitDistance(image->GetSpacing()[0]); >> >> auto mapper = vtkSmartPointer::New(); >> mapper->SetInputData(image); >> >> auto volume = vtkSmartPointer::New(); >> volume->SetMapper(mapper); >> volume->SetProperty(property); >> >> return volume; >> } >> >> int main(int argc, char *argv[]) { >> >> // Create a 30x30x30 volume >> auto image = vtkSmartPointer::New(); >> image->SetDimensions(30, 30, 30); >> image->SetSpacing(0.006, 0.006, 0.006); >> image->AllocateScalars(VTK_FLOAT, 1); >> >> auto imagePtr = static_cast(image->GetScalarPointer()); >> std::fill_n(imagePtr, 30 * 30 * 30, 1.0); >> >> auto volume = createVolume(image); >> >> // Create a smaller (10x10x10) version >> auto resize = vtkSmartPointer::New(); >> resize->SetInputData(image); >> resize->SetOutputDimensions(10, 10, 10); >> resize->Update(); >> >> auto smallVolume = createVolume(resize->GetOutput()); >> smallVolume->SetPosition(0.2, 0, 0); >> >> // Render the two volumes >> auto renderer = vtkSmartPointer::New(); >> renderer->SetBackground(1.0, 1.0, 1.0); >> renderer->AddVolume(volume); >> renderer->AddVolume(smallVolume); >> renderer->ResetCamera(); >> >> auto camera = renderer->GetActiveCamera(); >> camera->SetParallelProjection(1); >> >> auto window = vtkSmartPointer::New(); >> window->AddRenderer(renderer); >> window->SetSize(800, 400); >> >> auto interactor = vtkSmartPointer::New(); >> interactor->SetRenderWindow(window); >> interactor->Start(); >> >> return 0; >> } >> >> >> CMakeLists.txt: >> >> >> cmake_minimum_required(VERSION 3.1) >> >> project(TestCase) >> >> set(CMAKE_CXX_STANDARD 11) >> set(CMAKE_CXX_STANDARD_REQUIRED ON) >> >> find_package(VTK COMPONENTS >> vtkCommonCore >> vtkCommonDataModel >> vtkCommonExecutionModel >> vtkInteractionStyle >> vtkImagingCore >> vtkRenderingCore >> vtkRenderingOpenGL2 >> vtkRenderingVolume >> vtkRenderingVolumeOpenGL2 >> ) >> >> add_executable(TestCase main.cpp) >> >> target_link_libraries(TestCase PUBLIC >> vtkCommonCore >> vtkCommonDataModel >> vtkCommonExecutionModel >> vtkImagingCore >> vtkInteractionStyle >> vtkRenderingCore >> vtkRenderingOpenGL2 >> vtkRenderingVolume >> vtkRenderingVolumeOpenGL2 >> ) >> >> target_include_directories(TestCase PUBLIC >> ${VTK_INCLUDE_DIRS} >> ) >> >> >> target_compile_definitions(TestCase PUBLIC >> ${VTK_DEFINITIONS} >> ) >> > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From elvis.stansvik at orexplore.com Sun Feb 12 12:01:02 2017 From: elvis.stansvik at orexplore.com (Elvis Stansvik) Date: Sun, 12 Feb 2017 18:01:02 +0100 Subject: [vtkusers] Opacity discrepancy with downscaled volume despite opacity unit distance == spacing In-Reply-To: References: Message-ID: 2017-02-12 17:56 GMT+01:00 Elvis Stansvik : > 2017-02-12 17:31 GMT+01:00 David Gobbi : > >> Hi Elvis, >> >> Here is something you can do as a check: set the sample distance for the >> ray casting to a very small value, so that it takes around 1000 steps for >> the ray to traverse the volume from front to back. The thickness of your >> volume is 29*0.006 = 0.174, so you can try a sample spacing of 1.74e-04: >> >> mapper->AutoAdjustSampleDistancesOff(); >> mapper->SetSampleDistance(1.74e-04); >> >> If the two volumes look the same when you use a small sample distance, >> then the difference you were seeing was probably just due to discretization. >> > > That indeed did the trick, thanks David! > And to clarify: The small difference I was seeing when I had the sample distance left to auto-adjusted isn't really a problem for my application. I was just surprised there was still a small difference even when both volumes were rendered with the same opacity unit distance, and I wanted to find the explanation for it. The discretization error coming into play makes sense. Elvis > > Elvis > > >> >> - David >> >> >> >> On Thu, Feb 9, 2017 at 6:45 AM, Elvis Stansvik < >> elvis.stansvik at orexplore.com> wrote: >> >>> Hi all, >>> >>> The following example shows a 30x30x30 volume rendered, and next to it a >>> downscaled version of it (but using an identical opacity/transfer >>> function). Notice how in the result (attached), the downscaled version is >>> less opaque. This is despite me using >>> >>> SetScalarOpacityUnitDistance(image->GetSpacing()[0]) >>> >>> to set the scalar opacity unit distance to the spacing of the respective >>> image. I would thought calling SetScalarOpacityUnitDistance like this would >>> ensure both volumes look the same (apart from resolution). >>> >>> How can I make both volumes look the same opacity-wise when using the >>> same transfer functions? >>> >>> Thanks in advance, >>> Elvis >>> >>> main.cpp: >>> >>> >>> #include >>> >>> #include >>> #include >>> #include >>> #include >>> #include >>> #include >>> #include >>> #include >>> #include >>> #include >>> #include >>> #include >>> >>> // Create a volume from the given image >>> vtkSmartPointer createVolume(vtkSmartPointer >>> image) { >>> auto color = vtkSmartPointer::New(); >>> color->AddRGBPoint(0.0, 1.0, 0.0, 0.0); >>> color->AddRGBPoint(1.0, 1.0, 0.0, 0.0); >>> >>> auto opacity = vtkSmartPointer::New(); >>> opacity->AddPoint(0.0, 0.1); >>> opacity->AddPoint(1.0, 0.1); >>> >>> auto property = vtkSmartPointer::New(); >>> property->SetColor(color); >>> property->SetScalarOpacity(opacity); >>> property->SetInterpolationTypeToLinear(); >>> property->ShadeOff(); >>> property->SetScalarOpacityUnitDistance(image->GetSpacing()[0]); >>> >>> auto mapper = vtkSmartPointer::New(); >>> mapper->SetInputData(image); >>> >>> auto volume = vtkSmartPointer::New(); >>> volume->SetMapper(mapper); >>> volume->SetProperty(property); >>> >>> return volume; >>> } >>> >>> int main(int argc, char *argv[]) { >>> >>> // Create a 30x30x30 volume >>> auto image = vtkSmartPointer::New(); >>> image->SetDimensions(30, 30, 30); >>> image->SetSpacing(0.006, 0.006, 0.006); >>> image->AllocateScalars(VTK_FLOAT, 1); >>> >>> auto imagePtr = static_cast(image->GetScalarPointer()); >>> std::fill_n(imagePtr, 30 * 30 * 30, 1.0); >>> >>> auto volume = createVolume(image); >>> >>> // Create a smaller (10x10x10) version >>> auto resize = vtkSmartPointer::New(); >>> resize->SetInputData(image); >>> resize->SetOutputDimensions(10, 10, 10); >>> resize->Update(); >>> >>> auto smallVolume = createVolume(resize->GetOutput()); >>> smallVolume->SetPosition(0.2, 0, 0); >>> >>> // Render the two volumes >>> auto renderer = vtkSmartPointer::New(); >>> renderer->SetBackground(1.0, 1.0, 1.0); >>> renderer->AddVolume(volume); >>> renderer->AddVolume(smallVolume); >>> renderer->ResetCamera(); >>> >>> auto camera = renderer->GetActiveCamera(); >>> camera->SetParallelProjection(1); >>> >>> auto window = vtkSmartPointer::New(); >>> window->AddRenderer(renderer); >>> window->SetSize(800, 400); >>> >>> auto interactor = vtkSmartPointer::New(); >>> interactor->SetRenderWindow(window); >>> interactor->Start(); >>> >>> return 0; >>> } >>> >>> >>> CMakeLists.txt: >>> >>> >>> cmake_minimum_required(VERSION 3.1) >>> >>> project(TestCase) >>> >>> set(CMAKE_CXX_STANDARD 11) >>> set(CMAKE_CXX_STANDARD_REQUIRED ON) >>> >>> find_package(VTK COMPONENTS >>> vtkCommonCore >>> vtkCommonDataModel >>> vtkCommonExecutionModel >>> vtkInteractionStyle >>> vtkImagingCore >>> vtkRenderingCore >>> vtkRenderingOpenGL2 >>> vtkRenderingVolume >>> vtkRenderingVolumeOpenGL2 >>> ) >>> >>> add_executable(TestCase main.cpp) >>> >>> target_link_libraries(TestCase PUBLIC >>> vtkCommonCore >>> vtkCommonDataModel >>> vtkCommonExecutionModel >>> vtkImagingCore >>> vtkInteractionStyle >>> vtkRenderingCore >>> vtkRenderingOpenGL2 >>> vtkRenderingVolume >>> vtkRenderingVolumeOpenGL2 >>> ) >>> >>> target_include_directories(TestCase PUBLIC >>> ${VTK_INCLUDE_DIRS} >>> ) >>> >>> >>> target_compile_definitions(TestCase PUBLIC >>> ${VTK_DEFINITIONS} >>> ) >>> >> >> > -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.gobbi at gmail.com Sun Feb 12 12:06:27 2017 From: david.gobbi at gmail.com (David Gobbi) Date: Sun, 12 Feb 2017 10:06:27 -0700 Subject: [vtkusers] Opacity discrepancy with downscaled volume despite opacity unit distance == spacing In-Reply-To: References: Message-ID: On Sun, Feb 12, 2017 at 10:01 AM, Elvis Stansvik < elvis.stansvik at orexplore.com> wrote: > 2017-02-12 17:56 GMT+01:00 Elvis Stansvik : > >> 2017-02-12 17:31 GMT+01:00 David Gobbi : >> >>> Hi Elvis, >>> >>> Here is something you can do as a check: set the sample distance for the >>> ray casting to a very small value, so that it takes around 1000 steps for >>> the ray to traverse the volume from front to back. The thickness of your >>> volume is 29*0.006 = 0.174, so you can try a sample spacing of 1.74e-04: >>> >>> mapper->AutoAdjustSampleDistancesOff(); >>> mapper->SetSampleDistance(1.74e-04); >>> >>> If the two volumes look the same when you use a small sample distance, >>> then the difference you were seeing was probably just due to discretization. >>> >> >> That indeed did the trick, thanks David! >> > > And to clarify: The small difference I was seeing when I had the sample > distance left to auto-adjusted isn't really a problem for my application. I > was just surprised there was still a small difference even when both > volumes were rendered with the same opacity unit distance, and I wanted to > find the explanation for it. The discretization error coming into play > makes sense. > So everything should be fine if you leave AutoAdjustSampleDistances "On", for the interactive rendering, but set the SampleDistance to half of your high-res volume spacing for the high quality rendering (e.g. use 0.003 for this data set). - David -------------- next part -------------- An HTML attachment was scrubbed... URL: From elvis.stansvik at orexplore.com Sun Feb 12 12:26:01 2017 From: elvis.stansvik at orexplore.com (Elvis Stansvik) Date: Sun, 12 Feb 2017 18:26:01 +0100 Subject: [vtkusers] Opacity discrepancy with downscaled volume despite opacity unit distance == spacing In-Reply-To: References: Message-ID: 2017-02-12 18:06 GMT+01:00 David Gobbi : > > > On Sun, Feb 12, 2017 at 10:01 AM, Elvis Stansvik < > elvis.stansvik at orexplore.com> wrote: > >> 2017-02-12 17:56 GMT+01:00 Elvis Stansvik : >> >>> 2017-02-12 17:31 GMT+01:00 David Gobbi : >>> >>>> Hi Elvis, >>>> >>>> Here is something you can do as a check: set the sample distance for >>>> the ray casting to a very small value, so that it takes around 1000 steps >>>> for the ray to traverse the volume from front to back. The thickness of >>>> your volume is 29*0.006 = 0.174, so you can try a sample spacing >>>> of 1.74e-04: >>>> >>>> mapper->AutoAdjustSampleDistancesOff(); >>>> mapper->SetSampleDistance(1.74e-04); >>>> >>>> If the two volumes look the same when you use a small sample distance, >>>> then the difference you were seeing was probably just due to discretization. >>>> >>> >>> That indeed did the trick, thanks David! >>> >> >> And to clarify: The small difference I was seeing when I had the sample >> distance left to auto-adjusted isn't really a problem for my application. I >> was just surprised there was still a small difference even when both >> volumes were rendered with the same opacity unit distance, and I wanted to >> find the explanation for it. The discretization error coming into play >> makes sense. >> > > So everything should be fine if you leave AutoAdjustSampleDistances "On", > for the interactive rendering, but set the SampleDistance to half of your > high-res volume spacing for the high quality rendering (e.g. use 0.003 for > this data set). > Ah, I realize I may have misunderstood something about these two properties. I thought that setting a SampleDistance explicitly implied all auto-adjustment is turned off. But re-reading the docs I see that if auto-adjustment is left on, then the distance set with SetSampleDistance will only be used when the renderer has > 1 second to spend? BTW, regarding AutoAdjustSampleDistances, the docs says "[...] the ImageSampleDistance will be varied to achieve the allocated render time of this prop" but doesn't it auto-adjust the SampleDistance as well? (the distance along the ray) Elvis > > - David > -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.gobbi at gmail.com Sun Feb 12 12:42:29 2017 From: david.gobbi at gmail.com (David Gobbi) Date: Sun, 12 Feb 2017 10:42:29 -0700 Subject: [vtkusers] Opacity discrepancy with downscaled volume despite opacity unit distance == spacing In-Reply-To: References: Message-ID: On Sun, Feb 12, 2017 at 10:26 AM, Elvis Stansvik < elvis.stansvik at orexplore.com> wrote: > 2017-02-12 18:06 GMT+01:00 David Gobbi : > >> >> >> On Sun, Feb 12, 2017 at 10:01 AM, Elvis Stansvik < >> elvis.stansvik at orexplore.com> wrote: >> >>> 2017-02-12 17:56 GMT+01:00 Elvis Stansvik >>> : >>> >>>> 2017-02-12 17:31 GMT+01:00 David Gobbi : >>>> >>>>> Hi Elvis, >>>>> >>>>> Here is something you can do as a check: set the sample distance for >>>>> the ray casting to a very small value, so that it takes around 1000 steps >>>>> for the ray to traverse the volume from front to back. The thickness of >>>>> your volume is 29*0.006 = 0.174, so you can try a sample spacing >>>>> of 1.74e-04: >>>>> >>>>> mapper->AutoAdjustSampleDistancesOff(); >>>>> mapper->SetSampleDistance(1.74e-04); >>>>> >>>>> If the two volumes look the same when you use a small sample distance, >>>>> then the difference you were seeing was probably just due to discretization. >>>>> >>>> >>>> That indeed did the trick, thanks David! >>>> >>> >>> And to clarify: The small difference I was seeing when I had the sample >>> distance left to auto-adjusted isn't really a problem for my application. I >>> was just surprised there was still a small difference even when both >>> volumes were rendered with the same opacity unit distance, and I wanted to >>> find the explanation for it. The discretization error coming into play >>> makes sense. >>> >> >> So everything should be fine if you leave AutoAdjustSampleDistances "On", >> for the interactive rendering, but set the SampleDistance to half of your >> high-res volume spacing for the high quality rendering (e.g. use 0.003 for >> this data set). >> > > Ah, I realize I may have misunderstood something about these two > properties. I thought that setting a SampleDistance explicitly implied all > auto-adjustment is turned off. But re-reading the docs I see that if > auto-adjustment is left on, then the distance set with SetSampleDistance > will only be used when the renderer has > 1 second to spend? > > BTW, regarding AutoAdjustSampleDistances, the docs says > > "[...] the ImageSampleDistance will be varied to achieve the allocated > render time of this prop" > > but doesn't it auto-adjust the SampleDistance as well? (the distance along > the ray) > I'll have to leave this question for people who are more familiar with the code. - David -------------- next part -------------- An HTML attachment was scrubbed... URL: From sur.chiranjib at gmail.com Sun Feb 12 13:10:47 2017 From: sur.chiranjib at gmail.com (Chiranjib Sur) Date: Sun, 12 Feb 2017 23:40:47 +0530 Subject: [vtkusers] Error opening vtp file In-Reply-To: References: Message-ID: Please share your sample vtk/vtp file. I am assuming that your variable "mesh" is of type vtkSmartPointer. On Thu, Feb 9, 2017 at 1:12 AM, Isaac Castro Mateos wrote: > Hi, > > I am trying to read a vtp file with the following code: > > vtkSmartPointer< vtkXMLPolyDataReader > readerXML = vtkSmartPointer< > vtkXMLPolyDataReader >::New(); > readerXML->SetFileName(paths.c_str()); > readerXML->Update(); > mesh = readerXML->GetOutput(); > > However, it is given me the following error: > > ERROR: In /staff/icm16/My_repository/Thirdparties/VTK-6.3.0/IO/XML/vtkXMLReader.cxx, > line 234 > vtkXMLPolyDataReader (0x68f310): Error opening file > /staff/icm16/TestSamples/SegmentationVertebrae/SegmentationsNew/V1/ > meshWithSimilarityReg2.vtp > > > ERROR: In /staff/icm16/My_repository/Thirdparties/VTK-6.3.0/Common/ > ExecutionModel/vtkExecutive.cxx, line 784 > vtkCompositeDataPipeline (0x68fe90): Algorithm > vtkXMLPolyDataReader(0x68f310) returned failure for request: vtkInformation > (0x691600) > Debug: Off > Modified Time: 76 > Reference Count: 1 > Registered Events: (none) > Request: REQUEST_INFORMATION > ALGORITHM_AFTER_FORWARD: 1 > FORWARD_DIRECTION: 0 > > > There is no problem at all when opening the file with paraview. I am using > an Ubuntu machine with VTK-6.3.0. > > Any idea what the problem could be? > > Thanks a lot. > Isaac. > > > > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at http://www.kitware.com/ > opensource/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: > http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From nour_sn at hotmail.fr Sun Feb 12 14:52:38 2017 From: nour_sn at hotmail.fr (jaki19) Date: Sun, 12 Feb 2017 12:52:38 -0700 (MST) Subject: [vtkusers] vtk runnable jar file Message-ID: <1486929158774-5742151.post@n5.nabble.com> Hello, I have created a java application using VTK java wrapper and Neatbeans. Now, I want to make a runnable jar file of the application so that I can run it on the different computer on which VTK is not installed. I have created a jar file and have included vtk.jar while creating it. When I am trying to run this jar file on the other computer, it gives java.lang.UnsatisfiedLinkError. What is the correct procedure to create a runnable jar file for VTK application? Thanks -- View this message in context: http://vtk.1045678.n5.nabble.com/vtk-runnable-jar-file-tp5742151.html Sent from the VTK - Users mailing list archive at Nabble.com. From Wiggerl at Linhuber.info Mon Feb 13 02:54:13 2017 From: Wiggerl at Linhuber.info (Willy) Date: Mon, 13 Feb 2017 00:54:13 -0700 (MST) Subject: [vtkusers] vtkGPUVolumeRayCastMapper: Updateing ImageData after first Rendering? Message-ID: <1486972453592-5742153.post@n5.nabble.com> Hi, I use vtkGPUVolumeRayCastMapper to render a vtkImageData. I create the vtkImageData, set all Propertiers (Dimensions,Extent,Spacing...) and after calling AllocateScalars i use memcpy to copy the data into the vtkImageData. If i have all Data at the beginning everything works fine, but unfortunately thats not always the case. Example: If i have a 8-bit image with 2000x2000x800 (about 3GB) and can read only 10 planes per second it would take 80 seconds until the user can see the final image. It would be better if the user could see the renderd Image immediately and one plane after another would appear. Is it possible to tell the vtkGPUVolumeRayCastMapper/Renderer/RenderWindow to update the data on the GPU after the first call of vtkRenderWindow::Render() ? Thanks Ludwig -- View this message in context: http://vtk.1045678.n5.nabble.com/vtkGPUVolumeRayCastMapper-Updateing-ImageData-after-first-Rendering-tp5742153.html Sent from the VTK - Users mailing list archive at Nabble.com. From elvis.stansvik at orexplore.com Mon Feb 13 04:14:57 2017 From: elvis.stansvik at orexplore.com (Elvis Stansvik) Date: Mon, 13 Feb 2017 10:14:57 +0100 Subject: [vtkusers] Opacity discrepancy with downscaled volume despite opacity unit distance == spacing In-Reply-To: References: Message-ID: 2017-02-12 18:06 GMT+01:00 David Gobbi : > > > On Sun, Feb 12, 2017 at 10:01 AM, Elvis Stansvik < > elvis.stansvik at orexplore.com> wrote: > >> 2017-02-12 17:56 GMT+01:00 Elvis Stansvik : >> >>> 2017-02-12 17:31 GMT+01:00 David Gobbi : >>> >>>> Hi Elvis, >>>> >>>> Here is something you can do as a check: set the sample distance for >>>> the ray casting to a very small value, so that it takes around 1000 steps >>>> for the ray to traverse the volume from front to back. The thickness of >>>> your volume is 29*0.006 = 0.174, so you can try a sample spacing >>>> of 1.74e-04: >>>> >>>> mapper->AutoAdjustSampleDistancesOff(); >>>> mapper->SetSampleDistance(1.74e-04); >>>> >>>> If the two volumes look the same when you use a small sample distance, >>>> then the difference you were seeing was probably just due to discretization. >>>> >>> >>> That indeed did the trick, thanks David! >>> >> >> And to clarify: The small difference I was seeing when I had the sample >> distance left to auto-adjusted isn't really a problem for my application. I >> was just surprised there was still a small difference even when both >> volumes were rendered with the same opacity unit distance, and I wanted to >> find the explanation for it. The discretization error coming into play >> makes sense. >> > > So everything should be fine if you leave AutoAdjustSampleDistances "On", > for the interactive rendering, but set the SampleDistance to half of your > high-res volume spacing for the high quality rendering (e.g. use 0.003 for > this data set). > I had a look at the code, and it seems that if AutoAdjustSampleDistances is left On, then any explicitly set SampleDistance is ignored [1]. Maybe the docs for SampleDistance should be updated. They currently say: "Set/Get the distance between samples used for rendering when AutoAdjustSampleDistances is off, or when this mapper has more than 1 second allocated to it for rendering." I interpret that as saying SampleDistance will have an effect for still renderings (> 1 sec), even if AutoAdjustSampleDistances is left On. Or am I misreading the docs and/or code here? Elvis [1] https://gitlab.kitware.com/vtk/vtk/blob/master/Rendering/VolumeOpenGL2/vtkOpenGLGPUVolumeRayCastMapper.cxx#L1667-1725 > - David > -------------- next part -------------- An HTML attachment was scrubbed... URL: From christophe.mouton at edf.fr Mon Feb 13 04:12:42 2017 From: christophe.mouton at edf.fr (MOUTON Christophe) Date: Mon, 13 Feb 2017 09:12:42 +0000 Subject: [vtkusers] Web3D 2017 ACM conference - Papers Deadline Extended to 27 Feb 2017 References: <045f01d2858f$4526e480$cf74ad80$@web3d.org> Message-ID: Dear All, Sorry for multiple postings. The deadline for scientific and technical communications to Web3D 2017 is extended to 27th February 2017. Scientific, medical visualization with VR and/or thanks/on the web are tremendous topics! Submissions of Papers, posters and proposals for workshops and tutorials are very welcomed! Kind regards Christophe CALL FOR PAPERS, POSTERS, TUTORIALS AND WORKSHOPS Papers and Posters Deadline Extended to 27 Feb 2017 Web3D 2017: 22nd International Conference on 3D Web Technology Sponsored by ACM SIGGRAPH in Co-operation with Web3D Consortium Date: 5-7 June 2017 Location: Queensland University of Technology, Brisbane, Australia Website: http://web3d2017.org The 22nd International Conference on 3D Web Technology (Web3D 2017) continues to address an extensive range of research, development, and practice related to Web-based 3D Graphics. 2017 will be a historic year for 3D on the Web. We are seeing the explosion of WebVR and the potential of WebAR just around the corner. With WebGL now widely supported by default in modern browsers, tools such as X3D, X3DOM, Cobweb, three.js, glTF, and A-Frame VR are allowing nearly anyone to create Web3D content. Commercial game engines such as Unity and Unreal are starting to offer ways to export and publish directly to Web3D. The conference will explore topics including: research on simulation and training using Web3D, enabling technology of web-aware, interactive 3D graphics from mobile devices up to high-end immersive environments, and the use of ubiquitous multimedia across a wide range of applications and environments. For example: ? Virtual Reality (VR) ? Mixed Augmented Reality (MAR) ? Cultural and Natural Heritage ? Medical, Telemedicine (eHealth) ? Transportation and Geospatial ? Industry Applications ? Archival Digital Publications ? Human Animation, Motion Capture ? 3D Printing and 3D Scanning ? CAD and Advanced Manufacturing ? Education and E-learning ? Collaboration and Annotation ? Tourism and Accessibility ? Gaming and Entertainment ? Creativity and Digital Art ? Public Sector (Open Government) ? Open Web Platform Integration ? Novel Capabilities For the 2017 conference edition, we welcome works addressing the emerging opportunities and research of portable, integrated information spaces over the web including, but not limited to: ? Emerging WebVR and WebAR capabilities. ? Scalable, interoperable representations and modeling methods for complex geometry, structure, and behaviors. ? 3D similarity search and matching, 3D search interfaces, sketch-based approaches. ? Visualization and exploration of 3D object repositories. ? Scientific and medical visualization, medical simulation and training. ? 3D content creation, analysis tools and pipelines, and 3D classification. ? Annotation, metadata, hyperlinking and Semantic Web for 3D objects and scenes. ? Generative and example-based shape modeling and optimization. ? 3D scanning, 3D reconstruction 3D digitization, and 3D printing. ? Streaming and rendering of large-scale models, animations, and virtual worlds. ? Progressive 3D compression and model optimization. ? Collaborative operation and distributed virtual environments. ? Web-wide human-computer interaction and 3D User Interfaces. ? 3D City Models, Building Information Modeling & Geo-visualization. ? Mixed and Augmented Reality (MAR) including standardization aspects. ? Web3D and associated APIs, toolkits, and frameworks. ? Novel Web3D interaction paradigms for mobile/handheld applications. ? Web based interaction techniques including gesture, pen and voice. ? Agents, animated humanoids, and complex reactive characters. ? Motion capture for composition and streaming of behaviors and expressions. ? Web3D for social networking. ? Script algorithms and programming for lightweight Web3D. ? Network transmission over mobile Internet. ? Server-side 3D engines and cloud-based gaming. ? Architecture support by large Web3D applications for CAD tools and solid modelers. ? Data analysis and intelligent algorithms for big Web3D data. ? Interactive Web 3D applications in all applications and sectors. Papers Submission Instructions: Deadline extended - 27 February 2017 Authors are invited to submit full papers (up to 9 pages, including figures and references) or short papers (up to 4 pages, including figures and references) in PDF format via the Submission Site: http://web3d2017.web3d.org/submissions/papers Papers must be formatted using the document templates for conferences sponsored by ACM SIGGRAPH (see http://www.siggraph.org/learn/instructions-authors). All submissions will be peer-reviewed for quality and contribution by the conference International Program Committee. Poster Submission Instructions: Deadline extended - 27 February 2017 Posters present results of ongoing work in relevant areas of Web3D research and application. The poster format offers the opportunity to interactively present and discuss interesting results to the Web3D community. We particularly encourage contributions that take advantage of the nature of the poster space to present and raise awareness of the work in effective and imaginative ways. Authors submitting posters should provide a poster abstract that gives a concise description of the main idea, its findings, and next steps. The abstract should include supportive data, and a brief discussion of the most relevant related work from the literature and state where the presented work extends. Submissions will be reviewed by the Program Committee for contribution and interest to conference topics. For more information, please see the poster submission instructions at http://web3d2017.web3d.org/submissions/posters Tutorial and Workshop Submission Instructions: Deadline 4 April 2017 Tutorials on specific related topics and panels on challenging areas are encouraged. As in previous years, Web3D 2017 will also feature a number of co-located Workshop sessions. The series of Workshops and Tutorials are intended to provide a forum for researchers and practitioners from both the Web and 3D graphics communities to discuss and exchange positions on current and emergent 3D Web topics. For more details about Workshops: http://web3d2017.web3d.org/submissions/workshops For more details about Tutorials: http://web3d2017.web3d.org/submissions/tutorials H-Anim Competition Deadline: 1 May 2017 This annual competition is dedicated to showing how H-Anim and X3D Graphics standards can be used for creating music videos. This competition is organized by the Korean Standards Association (KSA), Web3D Consortium, and Korean National Radio Research Agency (RRA) with support by the Korea Society for Standards and Standardization (SSS). Each entry is judged on the following: originality, creativity of 3D character animation, creativity of the virtual stage, use of H-Anim ISO/IEC 19774 specification (LOA1, LOA2, LOA3) for character models, and use of the X3D Graphics capabilities. PRIZES: KSA PRIZE (1st place), SSS PRIZE (2nd place), Web3D PRIZE (3rd place) Winners will be announced at 2017 Web3D Conference, Brisbane Australia, 5-7 June 2017. Winners do not need to be in attendance to receive their prize, and will be contacted by Web3D organizers. Prizes will be provided to winners in the form of cash or merchandise valued at approximately $1000 US (tax included). For more details about H-Anim Competition: http://web3d2017.web3d.org/h-anim-competition/ Please send your submission to: competition-submissions at web3.org Important Dates Papers/Posters Submission Deadline: 27 February 2017 (Deadline extended) Papers/Posters Notification: 27 March 2017 Tutorial/Workshop Deadline: 3 March 2017 Tutorial/Workshop Notification: 4 April 2017 Camera-ready Papers/Posters: 4 April 2017 H-Anim Competition Entry: 1 May 2017 Contact Information Program Chairs Vince Marchetti, KShell Analysis & Web3D Consortium, USA Jakub Floty?ski, Pozna? University of Economics and Business, Poland Chris Thorne, Systemic, Australia Tutorials Chairs Sandy Ressler, NIST, USA Erik Champion, Curtin University, Australia Workshop Chairs Tony Huang, University of Tasmania, Australia Sean O?Donoghue, CSIRO & The Garvan Institute, Australia Digital Art Exhibition Chairs June Kim, University of New South Wales, Australia Ina Conradi Chavez, NTU General Chairs Matt Adcock, Commonwealth Scientific and Industrial Research Organisation (CSIRO), Australia Tomasz Bednarz, CSIRO Data61 & Queensland University of Technology, Australia Communications/Outreach Chairs Anita Havele, Web3D Consortium, USA Angela Cheng, Khronos Group, USA Xavier Ho, CSIRO & The University of Sydney, Australia Steering Committee Anita Havele, Executive Director, Web3D Consortium, USA Don Brutzman, Naval Postgraduate School, USA Nicholas F. Polys, Virginia Tech, USA _______________________________________________ Web3d2017-planning mailing list Web3d2017-planning at web3d.org http://web3d.org/mailman/listinfo/web3d2017-planning_web3d.org Ce message et toutes les pi?ces jointes (ci-apr?s le 'Message') sont ?tablis ? l'intention exclusive des destinataires et les informations qui y figurent sont strictement confidentielles. Toute utilisation de ce Message non conforme ? sa destination, toute diffusion ou toute publication totale ou partielle, est interdite sauf autorisation expresse. Si vous n'?tes pas le destinataire de ce Message, il vous est interdit de le copier, de le faire suivre, de le divulguer ou d'en utiliser tout ou partie. Si vous avez re?u ce Message par erreur, merci de le supprimer de votre syst?me, ainsi que toutes ses copies, et de n'en garder aucune trace sur quelque support que ce soit. Nous vous remercions ?galement d'en avertir imm?diatement l'exp?diteur par retour du message. Il est impossible de garantir que les communications par messagerie ?lectronique arrivent en temps utile, sont s?curis?es ou d?nu?es de toute erreur ou virus. ____________________________________________________ This message and any attachments (the 'Message') are intended solely for the addressees. The information contained in this Message is confidential. Any use of information contained in this Message not in accord with its purpose, any dissemination or disclosure, either whole or partial, is prohibited except formal approval. If you are not the addressee, you may not copy, forward, disclose or use any part of it. If you have received this message in error, please delete it and all copies from your system and notify the sender immediately by return message. E-mail communication cannot be guaranteed to be timely secure, error or virus-free. -------------- next part -------------- An HTML attachment was scrubbed... URL: From aashish.chaudhary at kitware.com Mon Feb 13 05:52:26 2017 From: aashish.chaudhary at kitware.com (Aashish Chaudhary) Date: Mon, 13 Feb 2017 10:52:26 +0000 Subject: [vtkusers] vtkGPUVolumeRayCastMapper: Updateing ImageData after first Rendering? In-Reply-To: <1486972453592-5742153.post@n5.nabble.com> References: <1486972453592-5742153.post@n5.nabble.com> Message-ID: Dear Willy, There are couple of things you can do to speed up the rendering on large dataset such as yours. (use vtkSmartVolumeMapper and have it create a low res data for one of them). Recently we have added a volume texture streaming feature that I would think might be a good test in your case. You can see an example of this here: https://github.com/Kitware/VTK/blob/52120b2ae55a73e37fa2e122c20eb2c5605698ea/Rendering/Volume/Testing/Cxx/TestGPURayCastTextureStreaming.cxx I would be curios to know if streaming works in your case as desired. I am not entirely sure about your statement on data at the beginning though. It sounds to me that you have expected to have data in pieces as well and you want to pass each of these pieces to the one at a time? If that's the case things could require little more work. - Aashish On Mon, Feb 13, 2017 at 2:54 AM Willy wrote: > Hi, > > I use vtkGPUVolumeRayCastMapper to render a vtkImageData. I create the > vtkImageData, set all Propertiers (Dimensions,Extent,Spacing...) and after > calling AllocateScalars i use memcpy to copy the data into the > vtkImageData. > If i have all Data at the beginning everything works fine, but > unfortunately > thats not always the case. > > Example: > If i have a 8-bit image with 2000x2000x800 (about 3GB) and can read only 10 > planes per second it would take 80 seconds until the user can see the final > image. It would be better if the user could see the renderd Image > immediately and one plane after another would appear. > > Is it possible to tell the vtkGPUVolumeRayCastMapper/Renderer/RenderWindow > to update the data on the GPU after the first call of > vtkRenderWindow::Render() ? > > Thanks > Ludwig > > > > -- > View this message in context: > http://vtk.1045678.n5.nabble.com/vtkGPUVolumeRayCastMapper-Updateing-ImageData-after-first-Rendering-tp5742153.html > Sent from the VTK - Users mailing list archive at Nabble.com. > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: > http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers > -------------- next part -------------- An HTML attachment was scrubbed... URL: From Wiggerl at Linhuber.info Mon Feb 13 08:42:12 2017 From: Wiggerl at Linhuber.info (Willy) Date: Mon, 13 Feb 2017 06:42:12 -0700 (MST) Subject: [vtkusers] vtkGPUVolumeRayCastMapper: Updateing ImageData after first Rendering? In-Reply-To: References: <1486972453592-5742153.post@n5.nabble.com> Message-ID: <1486993332100-5742159.post@n5.nabble.com> Thanks for your reply, but i think i described my problem not detailed enough. I don't use vtkRenderWindowInteractor. I have a .NET project with .Net PictureBox in it and a C++ Project witch encapsulates all the vtk stuff. To show the rendered vtk image in my picturebox i set my vtkRenderWindow to OffScreenRenderingOn() and use the following method to Convert vtkImageData to a .NET Bitmap: void VolumeRenderer::Render3DImage(int width, int height, Bitmap^% image) { _RenderWindow->SetSize(width, height); _CurrentRenderer->ResetCameraClippingRange(); vtkRenderLargeImage* imageFilter = vtkRenderLargeImage::New(); imageFilter->SetInput(_CurrentRenderer); imageFilter->SetMagnification(1); imageFilter->Update(); ConvertRGBVTKImageToBitmap(imageFilter->GetOutput(), image); imageFilter->Delete(); } Each time the user moves the mouse, changes the color, ... i change the Position/Rotation of the camera or the vtkColorTransferFunction or wathever. And after that i recall Render3DImage to get the new Picture which i show in my PictureBox. After the very first call of Render3DImage the rendered image does not change anymore if i change the data in my vtkImageData (using memcpy). i guess that the very first call of Render3DImage copies my cpu-Memory (where vtkImageData is) to the gpu. If a change the vtkImageData after that it does not affect the gpu-memory. Am i rigth? what can i do? -- View this message in context: http://vtk.1045678.n5.nabble.com/vtkGPUVolumeRayCastMapper-Updateing-ImageData-after-first-Rendering-tp5742153p5742159.html Sent from the VTK - Users mailing list archive at Nabble.com. From sebastien.jourdain at kitware.com Mon Feb 13 10:56:13 2017 From: sebastien.jourdain at kitware.com (Sebastien Jourdain) Date: Mon, 13 Feb 2017 08:56:13 -0700 Subject: [vtkusers] vtk runnable jar file In-Reply-To: <1486929158774-5742151.post@n5.nabble.com> References: <1486929158774-5742151.post@n5.nabble.com> Message-ID: You need to provide the VTK libraries along with your Java application as well as defining the java.library.path property to point to the directory that contain those native files. Hope that helps, Seb On Sun, Feb 12, 2017 at 12:52 PM, jaki19 wrote: > Hello, I have created a java application using VTK java wrapper and > Neatbeans. Now, I want to make a runnable jar file of the application so > that I can run it on the different computer on which VTK is not installed. > I > have created a jar file and have included vtk.jar while creating it. When I > am trying to run this jar file on the other computer, it gives > java.lang.UnsatisfiedLinkError. What is the correct procedure to create a > runnable jar file for VTK application? > > Thanks > > > > > > -- > View this message in context: http://vtk.1045678.n5.nabble. > com/vtk-runnable-jar-file-tp5742151.html > Sent from the VTK - Users mailing list archive at Nabble.com. > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at http://www.kitware.com/ > opensource/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: > http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers > -------------- next part -------------- An HTML attachment was scrubbed... URL: From sankhesh.jhaveri at kitware.com Mon Feb 13 11:16:51 2017 From: sankhesh.jhaveri at kitware.com (Sankhesh Jhaveri) Date: Mon, 13 Feb 2017 16:16:51 +0000 Subject: [vtkusers] vtkGPUVolumeRayCastMapper: Updateing ImageData after first Rendering? In-Reply-To: <1486993332100-5742159.post@n5.nabble.com> References: <1486972453592-5742153.post@n5.nabble.com> <1486993332100-5742159.post@n5.nabble.com> Message-ID: Hi Willy, You need to call Modified() on the vtkImageData, each time you update it, for the volume mapper to reload the volume. Hope that helps. Sankhesh ? On Mon, Feb 13, 2017 at 8:42 AM Willy wrote: > Thanks for your reply, but i think i described my problem not detailed > enough. > > I don't use vtkRenderWindowInteractor. I have a .NET project with .Net > PictureBox in it and a C++ Project witch encapsulates all the vtk stuff. To > show the rendered vtk image in my picturebox i set my vtkRenderWindow to > OffScreenRenderingOn() and use the following method to Convert vtkImageData > to a .NET Bitmap: > > void VolumeRenderer::Render3DImage(int width, int height, Bitmap^% image) > { > _RenderWindow->SetSize(width, height); > _CurrentRenderer->ResetCameraClippingRange(); > vtkRenderLargeImage* imageFilter = vtkRenderLargeImage::New(); > imageFilter->SetInput(_CurrentRenderer); > imageFilter->SetMagnification(1); > imageFilter->Update(); > ConvertRGBVTKImageToBitmap(imageFilter->GetOutput(), image); > imageFilter->Delete(); > } > > Each time the user moves the mouse, changes the color, ... i change the > Position/Rotation of the camera or the vtkColorTransferFunction or > wathever. > And after that i recall Render3DImage to get the new Picture which i show > in > my PictureBox. After the very first call of Render3DImage the rendered > image > does not change anymore if i change the data in my vtkImageData (using > memcpy). i guess that the very first call of Render3DImage copies my > cpu-Memory (where vtkImageData is) to the gpu. If a change the vtkImageData > after that it does not affect the gpu-memory. > Am i rigth? what can i do? > > > > -- > View this message in context: > http://vtk.1045678.n5.nabble.com/vtkGPUVolumeRayCastMapper-Updateing-ImageData-after-first-Rendering-tp5742153p5742159.html > Sent from the VTK - Users mailing list archive at Nabble.com. > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: > http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers > -- Sankhesh Jhaveri *Sr. Research & Development Engineer* | Kitware | (518) 881-4417 ? -------------- next part -------------- An HTML attachment was scrubbed... URL: From mjordan at live.at Mon Feb 13 11:17:54 2017 From: mjordan at live.at (M. Jordan) Date: Mon, 13 Feb 2017 16:17:54 +0000 Subject: [vtkusers] vtkWindowToImageFilter ignores vtkBillboardTextActor3D actors from renderer Message-ID: Hi, I use the following lines of code to save the screen to a .png file. // set up screenshot vtkSmartPointer windowToImageFilter = vtkSmartPointer::New(); windowToImageFilter->SetInput(renderer->GetRenderWindow()); //set the resolution of the output image windowToImageFilter->SetMagnification(Quality); //also record the alpha (transparency) channel windowToImageFilter->SetInputBufferTypeToRGBA(); // read from the back buffer windowToImageFilter->ReadFrontBufferOff(); windowToImageFilter->Update(); // write image vtkSmartPointer writer = vtkSmartPointer::New(); QString full_path = Path + "/Screenshot_" + QTime::currentTime().toString().remove(":") + ".png"; writer->SetFileName(full_path.toStdString().c_str()); writer->SetInputConnection(windowToImageFilter->GetOutputPort()); writer->Write(); Everything works great but the vtkBillboardTextActor3D actors are not part of the resulting image. (Of course I added them to the renderer and I can see the text on the screen!) What could be the problem? Thank you! -------------- next part -------------- An HTML attachment was scrubbed... URL: From mjordan at live.at Mon Feb 13 13:28:24 2017 From: mjordan at live.at (M. Jordan) Date: Mon, 13 Feb 2017 18:28:24 +0000 Subject: [vtkusers] vtkWindowToImageFilter ignores vtkBillboardTextActor3D actors from renderer In-Reply-To: References: Message-ID: When I use "windowToImageFilter->SetMagnification(1)" the text is here! Is there any solution to get images with higher resolution AND text? ________________________________ Von: vtkusers im Auftrag von M. Jordan Gesendet: Montag, 13. Februar 2017 17:17 An: vtkusers at vtk.org Betreff: [vtkusers] vtkWindowToImageFilter ignores vtkBillboardTextActor3D actors from renderer Hi, I use the following lines of code to save the screen to a .png file. // set up screenshot vtkSmartPointer windowToImageFilter = vtkSmartPointer::New(); windowToImageFilter->SetInput(renderer->GetRenderWindow()); //set the resolution of the output image windowToImageFilter->SetMagnification(Quality); //also record the alpha (transparency) channel windowToImageFilter->SetInputBufferTypeToRGBA(); // read from the back buffer windowToImageFilter->ReadFrontBufferOff(); windowToImageFilter->Update(); // write image vtkSmartPointer writer = vtkSmartPointer::New(); QString full_path = Path + "/Screenshot_" + QTime::currentTime().toString().remove(":") + ".png"; writer->SetFileName(full_path.toStdString().c_str()); writer->SetInputConnection(windowToImageFilter->GetOutputPort()); writer->Write(); Everything works great but the vtkBillboardTextActor3D actors are not part of the resulting image. (Of course I added them to the renderer and I can see the text on the screen!) What could be the problem? Thank you! -------------- next part -------------- An HTML attachment was scrubbed... URL: From nour_sn at hotmail.fr Mon Feb 13 16:12:41 2017 From: nour_sn at hotmail.fr (jaki19) Date: Mon, 13 Feb 2017 14:12:41 -0700 (MST) Subject: [vtkusers] vtk runnable jar file In-Reply-To: References: <1486929158774-5742151.post@n5.nabble.com> Message-ID: <1487020361578-5742166.post@n5.nabble.com> I don't know what I missed when I add this instruction (-Djava.library.path="../lib/vtk-libs/") in VM options using Netbeans it works when I run the application in netbeans but when I try to execute the jar file of my application I have again the same error: java.lang.UnsatisfiedLinkError /dist/lib/vtk-libs /dist/myapplication.jar -- View this message in context: http://vtk.1045678.n5.nabble.com/vtk-runnable-jar-file-tp5742151p5742166.html Sent from the VTK - Users mailing list archive at Nabble.com. From dan.lipsa at kitware.com Mon Feb 13 17:23:17 2017 From: dan.lipsa at kitware.com (Dan Lipsa) Date: Mon, 13 Feb 2017 17:23:17 -0500 Subject: [vtkusers] VTK 7.0 vtkXMLPolyDataWriter output version issues In-Reply-To: References: <8e92335e-0f95-674b-f9b9-7df1f55effc9@ebi.ac.uk> Message-ID: Paul, Do you have an example data + script where this is happening? It should not be a difference in how the binary data is encoded between VTK and ParaView. Thanks, Dan On Fri, Feb 10, 2017 at 11:00 AM, Paul Korir wrote: > Hi Dan, > > Thanks for your reply. I'm not referring to VTK Ids. > > I'm specifically referring to the paragraph that says: > > "Binary Blob Header: In front of every binary blob, base64 or raw-binary, > appended or not, there is an UInt32 length indicator. If you do not have > this length indicator, you might get error messages like > > Cannot read cell offsets from XXXX in piece 0 because the "offsets" array > is not long enough. > > Note that if you are encoding in base64, that length header must be > encoded separately, so that the end result looks like XXXXXX==XXXX... (note > the two equals signs indicating the early end of the length header block)." > > How do I get that to appear on the data array? It seems like Paraview does > something internally that VTK programmers should be aware of. > > Regards, > > Paul > > > > On 10/02/2017 13:52, Dan Lipsa wrote: > >> Paul, >> Looking closer that the blog it seems that a file with ghosts will have >> version 2.0. The difference between 1.0 and 0.1 is caused by >> VTK_USE_64BIT_IDS. Can you check that in your VTK's CMakeList.txt. It seems >> that your VTK uses 32 bits while ParaView would use 64. >> So that would explain the difference. Do you need/want to use 32 bits for >> VTK? Can you recompile your VTK with 64 bit ids and retry. >> >> Dan >> > > -- > Paul K. Korir, PhD > Scientific Programmer > EMBL-EBI > 01223494422 > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From elvis.stansvik at orexplore.com Tue Feb 14 01:56:52 2017 From: elvis.stansvik at orexplore.com (Elvis Stansvik) Date: Tue, 14 Feb 2017 07:56:52 +0100 Subject: [vtkusers] Crash in vtkOpenGLContextDevice2D::ComputeStringBounds when getting bounding rect of vtkAxis In-Reply-To: References: Message-ID: I realized that this is maybe a mail more suited for the developer list, so sending it here. Elvis 2017-02-12 12:30 GMT+01:00 Elvis Stansvik : > Hi all, > > In the test case below, I'm trying to get the bounding rect of a vtkAxis in > a vtkChartXY, but I'm getting a crash in the call to GetBoundingRect with > the following backtrace: > > #0 vtkOpenGLContextDevice2D::ComputeStringBounds (this=this at entry=0x689ea0, > string=..., bounds=bounds at entry=0x7fffffffcda0) > at > /buildbot/vtk7-builder/build/Rendering/ContextOpenGL2/vtkOpenGLContextDevice2D.cxx:1755 > #1 0x00007ffff78454f1 in vtkOpenGLContextDevice2D::ComputeStringBounds > (this=0x689ea0, string=..., bounds=0x7fffffffcda0) > at > /buildbot/vtk7-builder/build/Rendering/ContextOpenGL2/vtkOpenGLContextDevice2D.cxx:1626 > #2 0x00007ffff6f2722d in vtkContext2D::ComputeStringBounds > (this=this at entry=0x67e3f0, string=..., bounds=bounds at entry=0x7fffffffcda0) > at /buildbot/vtk7-builder/build/Rendering/Context2D/vtkContext2D.cxx:645 > #3 0x00007ffff7ab4b28 in vtkAxis::GetBoundingRect (this=0x671490, > painter=0x67e3f0) at > /buildbot/vtk7-builder/build/Charts/Core/vtkAxis.cxx:990 > #4 0x0000000000402ab1 in main (argc=1, argv=0x7fffffffd038) at > /home/estan/testcrash/main.cpp:50 > > The reason seems to be that the render window (RenderWindow member) of > vtkOpenGLContextDevice2D is NULL at that point (!). > > Am I using the GetBoundingRect API in the wrong way somehow? How can I get > the computed bounding rect for a vtkAxis? > > Thanks in advance, > Elvis > > main.cpp: > > #include > #include > #include > #include > #include > #include > #include > #include > #include > #include > #include > > int main(int argc, char *argv[]) { > vtkNew renderer; > > vtkNew window; > window->AddRenderer(renderer.Get()); > > vtkNew interactor; > interactor->SetRenderWindow(window.Get()); > > vtkNew chart; > > vtkNew table; > vtkNew xArray; > xArray->SetName("X Axis"); > table->AddColumn(xArray.Get()); > vtkNew yArray; > yArray->SetName("Y Axis"); > table->AddColumn(yArray.Get()); > table->SetNumberOfRows(2); > table->SetValue(0, 0, 0); > table->SetValue(0, 1, 0); > table->SetValue(1, 0, 1); > table->SetValue(1, 1, 1); > > auto linePlot = chart->AddPlot(vtkChart::LINE); > linePlot->SetInputData(table.Get(), 0, 1); > > vtkNew view; > view->GetScene()->AddItem(chart.Get()); > view->SetRenderWindow(window.Get()); > view->SetInteractor(interactor.Get()); > > window->Render(); > > // Get bounding rect of the left axis > auto leftAxis = chart->GetAxis(vtkAxis::LEFT); > leftAxis->Update(); > auto rect = leftAxis->GetBoundingRect(view->GetContext()); > > interactor->Start(); > > return 0; > } > > > CMakeLists.txt: > > cmake_minimum_required(VERSION 3.1) > > project(TestCase) > > set(CMAKE_CXX_STANDARD 11) > set(CMAKE_CXX_STANDARD_REQUIRED ON) > > find_package(VTK COMPONENTS > vtkChartsCore > vtkCommonCore > vtkInteractionStyle > vtkRenderingContext2D > vtkRenderingContextOpenGL2 > vtkRenderingCore > vtkRenderingFreeType > vtkRenderingOpenGL2 > vtkViewsContext2D > ) > > add_executable(TestCase main.cpp) > > target_link_libraries(TestCase PUBLIC > vtkChartsCore > vtkCommonCore > vtkInteractionStyle > vtkRenderingContext2D > vtkRenderingContextOpenGL2 > vtkRenderingCore > vtkRenderingFreeType > vtkRenderingOpenGL2 > vtkViewsContext2D > ) > > target_include_directories(TestCase PUBLIC > ${VTK_INCLUDE_DIRS} > ) > > > target_compile_definitions(TestCase PUBLIC > ${VTK_DEFINITIONS} > ) From Christopher.Eischer at eos.info Tue Feb 14 02:25:34 2017 From: Christopher.Eischer at eos.info (Eischer, Christopher) Date: Tue, 14 Feb 2017 07:25:34 +0000 Subject: [vtkusers] Open big *.VTK files with ParaView Message-ID: Hello together, I'm having poblems to open big vtk files ( about <4GB) with ParaView. With smaller files I have no Problems. For the big files ParaView says that " a reader for D:\... could not be found. Please choose one".. When I choose the vtk type the files gets loaded but nothing is visible. Does somebody know a solution? My System: ParaView 5.2.0 Win 7 Ultimate 64 bit i7-6700 @ 3.4 Ghz with 32 GB Ram Thanks for your help. Greetings Chris -------------- next part -------------- An HTML attachment was scrubbed... URL: From ochampao at hotmail.com Tue Feb 14 07:41:55 2017 From: ochampao at hotmail.com (Panayiotis Georgiou) Date: Tue, 14 Feb 2017 12:41:55 +0000 Subject: [vtkusers] Importing OBJ files with multiple objects Message-ID: Hello everyone. I would like to import a 3D geometry consisting of multiple objects defined in a single .obj file. Is there a way of doing this in VTK? I have looked at the vtkOBJReader, however this class doesn't seem to recognise multiple objects. The complete geometry is loaded as a single polydata object, rather than multiple ones (one per obj object). Thanks. -------------- next part -------------- An HTML attachment was scrubbed... URL: From ken.martin at kitware.com Tue Feb 14 08:10:03 2017 From: ken.martin at kitware.com (Ken Martin) Date: Tue, 14 Feb 2017 08:10:03 -0500 Subject: [vtkusers] Importing OBJ files with multiple objects In-Reply-To: References: Message-ID: vtkOBJImporter, It has a couple bugs I am aware of that I'll be fixing today, but it creates an actor per material and supports material colors etc. Thanks Ken On Tue, Feb 14, 2017 at 7:41 AM, Panayiotis Georgiou wrote: > Hello everyone. > > > I would like to import a 3D geometry consisting of multiple objects > defined in a single .obj file. Is there a way of doing this in VTK? > > > I have looked at the vtkOBJReader, however this class doesn't seem to > recognise multiple objects. The complete geometry is loaded as a single > polydata object, rather than multiple ones (one per obj object). > > > Thanks. > > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at http://www.kitware.com/ > opensource/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: > http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers > > -- Ken Martin PhD Chairman & CFO Kitware Inc. 28 Corporate Drive Clifton Park NY 12065 518 371 3971 This communication, including all attachments, contains confidential and legally privileged information, and it is intended only for the use of the addressee. Access to this email by anyone else is unauthorized. If you are not the intended recipient, any disclosure, copying, distribution or any action taken in reliance on it is prohibited and may be unlawful. If you received this communication in error please notify us immediately and destroy the original message. Thank you. -------------- next part -------------- An HTML attachment was scrubbed... URL: From zmanvortex at gmail.com Tue Feb 14 08:51:20 2017 From: zmanvortex at gmail.com (Donny Zimmerman) Date: Tue, 14 Feb 2017 07:51:20 -0600 Subject: [vtkusers] vtkGPUVolumeRayCastMapper: Updateing ImageData after first Rendering? Message-ID: Hi Willy, Instead of copying to the .NET windows bitmap you can just connect the renderwindow to the picturebox with the following: m_renwin->SetParentId(panelVtk->Handle.ToPointer()); Donny Z. Hi Willy, You need to call Modified() on the vtkImageData, each time you update it, for the volume mapper to reload the volume. Hope that helps. Sankhesh On Mon, Feb 13, 2017 at 8:42 AM Willy wrote: > Thanks for your reply, but i think i described my problem not detailed > enough. > > I don't use vtkRenderWindowInteractor. I have a .NET project with .Net > PictureBox in it and a C++ Project witch encapsulates all the vtk stuff. To > show the rendered vtk image in my picturebox i set my vtkRenderWindow to > OffScreenRenderingOn() and use the following method to Convert vtkImageData > to a .NET Bitmap: > > void VolumeRenderer::Render3DImage(int width, int height, Bitmap^% image) > { > _RenderWindow->SetSize(width, height); > _CurrentRenderer->ResetCameraClippingRange(); > vtkRenderLargeImage* imageFilter = vtkRenderLargeImage::New(); > imageFilter->SetInput(_CurrentRenderer); > imageFilter->SetMagnification(1); > imageFilter->Update(); > ConvertRGBVTKImageToBitmap(imageFilter->GetOutput(), image); > imageFilter->Delete(); > } > > Each time the user moves the mouse, changes the color, ... i change the > Position/Rotation of the camera or the vtkColorTransferFunction or > wathever. > And after that i recall Render3DImage to get the new Picture which i show > in > my PictureBox. After the very first call of Render3DImage the rendered > image > does not change anymore if i change the data in my vtkImageData (using > memcpy). i guess that the very first call of Render3DImage copies my > cpu-Memory (where vtkImageData is) to the gpu. If a change the vtkImageData > after that it does not affect the gpu-memory. > Am i rigth? what can i do? > > > > -- > View this message in context: http://vtk.1045678.n5.nabble. > com/vtkGPUVolumeRayCastMapper-Updateing-ImageData-after-first-Rendering- > tp5742153p5742159.html > Sent from the VTK - Users mailing list archive at Nabble.com. > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at http://www.kitware.com/ > opensource/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: > http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.lonie at kitware.com Tue Feb 14 09:18:28 2017 From: david.lonie at kitware.com (David Lonie) Date: Tue, 14 Feb 2017 09:18:28 -0500 Subject: [vtkusers] vtkWindowToImageFilter ignores vtkBillboardTextActor3D actors from renderer In-Reply-To: References: Message-ID: This sounds like a bug in the actor. It needs to account for the render window scaling while drawing the text. I don't know when we'll be able to take a look at this, but in the meantime can you file an issue on the VTK bug tracker so we don't lose track of it? https://gitlab.kitware.com/vtk/vtk/issues Thanks, Dave On Mon, Feb 13, 2017 at 1:28 PM, M. Jordan wrote: > When I use "windowToImageFilter->SetMagnification(1)" the text is here! > > Is there any solution to get images with higher resolution AND text? > > > > ________________________________ > Von: vtkusers im Auftrag von M. Jordan > > Gesendet: Montag, 13. Februar 2017 17:17 > An: vtkusers at vtk.org > Betreff: [vtkusers] vtkWindowToImageFilter ignores vtkBillboardTextActor3D > actors from renderer > > > Hi, > > I use the following lines of code to save the screen to a .png file. > > // set up screenshot > vtkSmartPointer windowToImageFilter = > vtkSmartPointer::New(); > windowToImageFilter->SetInput(renderer->GetRenderWindow()); > //set the resolution of the output image > windowToImageFilter->SetMagnification(Quality); > //also record the alpha (transparency) channel > windowToImageFilter->SetInputBufferTypeToRGBA(); > // read from the back buffer > windowToImageFilter->ReadFrontBufferOff(); > windowToImageFilter->Update(); > // write image > vtkSmartPointer writer = > vtkSmartPointer::New(); > QString full_path = Path + "/Screenshot_" + > QTime::currentTime().toString().remove(":") + ".png"; > writer->SetFileName(full_path.toStdString().c_str()); > writer->SetInputConnection(windowToImageFilter->GetOutputPort()); > writer->Write(); > > Everything works great but the vtkBillboardTextActor3D actors are not part > of the resulting image. > (Of course I added them to the renderer and I can see the text on the > screen!) > > What could be the problem? > > Thank you! > > > > > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: > http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers > From kalia.megha84 at gmail.com Tue Feb 14 09:24:30 2017 From: kalia.megha84 at gmail.com (Megha Kalia) Date: Tue, 14 Feb 2017 15:24:30 +0100 Subject: [vtkusers] Reading Point Clouds from a .ply file Message-ID: Hello Everyone, Does anyone know how to read points clouds from .ply file in vtk? I am able to read a triangular mesh from vtkPLYReader but not a .ply file with point clouds and corresponding vertex colors. Thanks a ton in advance. :) -------------- next part -------------- An HTML attachment was scrubbed... URL: From cory.quammen at kitware.com Tue Feb 14 09:27:27 2017 From: cory.quammen at kitware.com (Cory Quammen) Date: Tue, 14 Feb 2017 09:27:27 -0500 Subject: [vtkusers] Open big *.VTK files with ParaView In-Reply-To: References: Message-ID: Christopher, I'm moving this to the ParaView mailing list. As I recall, Microsoft's runtime requires the use of special file-handling functions for reading files larger than 4 GB, even when running on a 64-bit version of Windows. I do not believe the VTK legacy library does not use these functions, which is likely why you are seeing this behavior in ParaView. I'm not aware of a simple fix, unfortunately. Would you mind posting an Issue to the ParaView bug tracker? https://gitlab.kitware.com/paraview/paraview/issues Thanks, Cory On Tue, Feb 14, 2017 at 2:25 AM, Eischer, Christopher wrote: > Hello together, > > > > I?m having poblems to open big vtk files ( about <4GB) with ParaView. With > smaller files I have no Problems. > > For the big files ParaView says that ? a reader for D:\... could not be > found. Please choose one?.. When I choose the vtk type the files gets loaded > but nothing is visible. > > > > Does somebody know a solution? > > > > My System: > > ParaView 5.2.0 > > Win 7 Ultimate 64 bit > > i7-6700 @ 3.4 Ghz with 32 GB Ram > > > > Thanks for your help. > > > > Greetings Chris > > > > > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: > http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers > -- Cory Quammen Staff R&D Engineer Kitware, Inc. From jens.g.w.schmidt at gmx.de Tue Feb 14 09:22:27 2017 From: jens.g.w.schmidt at gmx.de (Jens Schmidt) Date: Tue, 14 Feb 2017 15:22:27 +0100 Subject: [vtkusers] Most VTK 7.1 Tests fail on Windows 7 Sp1 64 (with java) Message-ID: <9d178962-7985-ef5f-bca8-3bc68593bdb3@gmx.de> Hi there, as the title says, most of the tests fail for VTK 7.1. Built with TBB and java wrapping. Cheers Jens Built with Windows 7 Sp1 64bit Visual Studio 2013 Log below here: 1>------ Build started: Project: RUN_TESTS, Configuration: Release x64 ------ 1> Test project C:/data/src-build/VTK-7.1.0 1> Start 1: vtkkwiml.test 1> 1/774 Test #1: vtkkwiml.test ................................................................ Passed 0.01 sec 1> Start 2: vtkCommonCore-HeaderTest 1> 2/774 Test #2: vtkCommonCore-HeaderTest ..................................................... Passed 0.84 sec 1> Start 3: vtkCommonMath-HeaderTest 1> 3/774 Test #3: vtkCommonMath-HeaderTest ..................................................... Passed 0.17 sec 1> Start 4: vtkCommonMisc-HeaderTest 1> 4/774 Test #4: vtkCommonMisc-HeaderTest ..................................................... Passed 0.11 sec 1> Start 5: vtkCommonSystem-HeaderTest 1> 5/774 Test #5: vtkCommonSystem-HeaderTest ................................................... Passed 0.12 sec 1> Start 6: vtkCommonTransforms-HeaderTest 1> 6/774 Test #6: vtkCommonTransforms-HeaderTest ............................................... Passed 0.24 sec 1> Start 7: vtkCommonDataModel-HeaderTest 1> 7/774 Test #7: vtkCommonDataModel-HeaderTest ................................................ Passed 2.06 sec 1> Start 8: vtkCommonColor-HeaderTest 1> 8/774 Test #8: vtkCommonColor-HeaderTest .................................................... Passed 0.12 sec 1> Start 9: vtkCommonExecutionModel-HeaderTest 1> 9/774 Test #9: vtkCommonExecutionModel-HeaderTest ........................................... Passed 0.53 sec 1> Start 10: vtkCommonComputationalGeometry-HeaderTest 1> 10/774 Test #10: vtkCommonComputationalGeometry-HeaderTest .................................... Passed 0.27 sec 1> Start 11: vtkFiltersCore-HeaderTest 1> 11/774 Test #11: vtkFiltersCore-HeaderTest .................................................... Passed 0.86 sec 1> Start 12: vtkFiltersGeneral-HeaderTest 1> 12/774 Test #12: vtkFiltersGeneral-HeaderTest ................................................. Passed 0.87 sec 1> Start 13: vtkImagingCore-HeaderTest 1> 13/774 Test #13: vtkImagingCore-HeaderTest .................................................... Passed 0.35 sec 1> Start 14: vtkImagingFourier-HeaderTest 1> 14/774 Test #14: vtkImagingFourier-HeaderTest ................................................. Passed 0.11 sec 1> Start 15: vtkFiltersStatistics-HeaderTest 1> 15/774 Test #15: vtkFiltersStatistics-HeaderTest .............................................. Passed 0.25 sec 1> Start 16: vtkFiltersExtraction-HeaderTest 1> 16/774 Test #16: vtkFiltersExtraction-HeaderTest .............................................. Passed 0.25 sec 1> Start 17: vtkInfovisCore-HeaderTest 1> 17/774 Test #17: vtkInfovisCore-HeaderTest .................................................... Passed 0.37 sec 1> Start 18: vtkFiltersGeometry-HeaderTest 1> 18/774 Test #18: vtkFiltersGeometry-HeaderTest ................................................ Passed 0.33 sec 1> Start 19: vtkFiltersSources-HeaderTest 1> 19/774 Test #19: vtkFiltersSources-HeaderTest ................................................. Passed 0.32 sec 1> Start 20: vtkRenderingCore-HeaderTest 1> 20/774 Test #20: vtkRenderingCore-HeaderTest .................................................. Passed 1.29 sec 1> Start 21: vtkRenderingFreeType-HeaderTest 1> 21/774 Test #21: vtkRenderingFreeType-HeaderTest .............................................. Passed 0.14 sec 1> Start 22: vtkRenderingContext2D-HeaderTest 1> 22/774 Test #22: vtkRenderingContext2D-HeaderTest ............................................. Passed 0.25 sec 1> Start 23: vtkChartsCore-HeaderTest 1> 23/774 Test #23: vtkChartsCore-HeaderTest ..................................................... Passed 0.48 sec 1> Start 24: vtkIOCore-HeaderTest 1> 24/774 Test #24: vtkIOCore-HeaderTest ......................................................... Passed 0.22 sec 1> Start 25: vtkIOLegacy-HeaderTest 1> 25/774 Test #25: vtkIOLegacy-HeaderTest ....................................................... Passed 0.24 sec 1> Start 26: vtkIOXMLParser-HeaderTest 1> 26/774 Test #26: vtkIOXMLParser-HeaderTest .................................................... Passed 0.11 sec 1> Start 27: vtkIOXML-HeaderTest 1> 27/774 Test #27: vtkIOXML-HeaderTest .......................................................... Passed 0.34 sec 1> Start 28: vtkIOInfovis-HeaderTest 1> 28/774 Test #28: vtkIOInfovis-HeaderTest ...................................................... Passed 0.20 sec 1> Start 29: vtkIOImage-HeaderTest 1> 29/774 Test #29: vtkIOImage-HeaderTest ........................................................ Passed 0.35 sec 1> Start 30: vtkRenderingOpenGL2-HeaderTest 1> 30/774 Test #30: vtkRenderingOpenGL2-HeaderTest ............................................... Passed 0.77 sec 1> Start 31: vtkRenderingContextOpenGL2-HeaderTest 1> 31/774 Test #31: vtkRenderingContextOpenGL2-HeaderTest ........................................ Passed 0.13 sec 1> Start 32: vtkTestingRendering-HeaderTest 1> 32/774 Test #32: vtkTestingRendering-HeaderTest ............................................... Passed 0.11 sec 1> Start 33: vtkImagingSources-HeaderTest 1> 33/774 Test #33: vtkImagingSources-HeaderTest ................................................. Passed 0.13 sec 1> Start 34: vtkFiltersHybrid-HeaderTest 1> 34/774 Test #34: vtkFiltersHybrid-HeaderTest .................................................. Passed 0.28 sec 1> Start 35: vtkFiltersModeling-HeaderTest 1> 35/774 Test #35: vtkFiltersModeling-HeaderTest ................................................ Passed 0.24 sec 1> Start 36: vtkImagingColor-HeaderTest 1> 36/774 Test #36: vtkImagingColor-HeaderTest ................................................... Passed 0.12 sec 1> Start 37: vtkImagingGeneral-HeaderTest 1> 37/774 Test #37: vtkImagingGeneral-HeaderTest ................................................. Passed 0.19 sec 1> Start 38: vtkImagingHybrid-HeaderTest 1> 38/774 Test #38: vtkImagingHybrid-HeaderTest .................................................. Passed 0.21 sec 1> Start 39: vtkInteractionStyle-HeaderTest 1> 39/774 Test #39: vtkInteractionStyle-HeaderTest ............................................... Passed 0.21 sec 1> Start 40: vtkRenderingAnnotation-HeaderTest 1> 40/774 Test #40: vtkRenderingAnnotation-HeaderTest ............................................ Passed 0.47 sec 1> Start 41: vtkRenderingVolume-HeaderTest 1> 41/774 Test #41: vtkRenderingVolume-HeaderTest ................................................ Passed 0.82 sec 1> Start 42: vtkInteractionWidgets-HeaderTest 1> 42/774 Test #42: vtkInteractionWidgets-HeaderTest ............................................. Passed 1.41 sec 1> Start 43: vtkViewsCore-HeaderTest 1> 43/774 Test #43: vtkViewsCore-HeaderTest ...................................................... Passed 0.14 sec 1> Start 44: vtkViewsContext2D-HeaderTest 1> 44/774 Test #44: vtkViewsContext2D-HeaderTest ................................................. Passed 0.10 sec 1> Start 45: vtkChartsCoreCxx-TestContextScene 1> 45/774 Test #45: vtkChartsCoreCxx-TestContextScene ............................................***Exception: Other 0.01 sec 1> Start 46: vtkChartsCoreCxx-TestControlPointsItem 1> 46/774 Test #46: vtkChartsCoreCxx-TestControlPointsItem .......................................***Exception: Other 0.01 sec 1> Start 47: vtkChartsCoreCxx-TestControlPointsItemEvents 1> 47/774 Test #47: vtkChartsCoreCxx-TestControlPointsItemEvents .................................***Exception: Other 0.01 sec 1> Start 48: vtkChartsCoreCxx-TestAreaPlot 1> 48/774 Test #48: vtkChartsCoreCxx-TestAreaPlot ................................................***Exception: Other 0.01 sec 1> Start 49: vtkChartsCoreCxx-TestAxes 1> 49/774 Test #49: vtkChartsCoreCxx-TestAxes ....................................................***Exception: Other 0.01 sec 1> Start 50: vtkChartsCoreCxx-TestBagPlot 1> 50/774 Test #50: vtkChartsCoreCxx-TestBagPlot .................................................***Exception: Other 0.01 sec 1> Start 51: vtkChartsCoreCxx-TestBarGraph 1> 51/774 Test #51: vtkChartsCoreCxx-TestBarGraph ................................................***Exception: Other 0.01 sec 1> Start 52: vtkChartsCoreCxx-TestBarGraphHorizontal 1> 52/774 Test #52: vtkChartsCoreCxx-TestBarGraphHorizontal ......................................***Exception: Other 0.01 sec 1> Start 53: vtkChartsCoreCxx-TestBarGraphSelection 1> 53/774 Test #53: vtkChartsCoreCxx-TestBarGraphSelection .......................................***Exception: Other 0.01 sec 1> Start 54: vtkChartsCoreCxx-TestBoxPlot 1> 54/774 Test #54: vtkChartsCoreCxx-TestBoxPlot .................................................***Exception: Other 0.01 sec 1> Start 55: vtkChartsCoreCxx-TestCategoryLegend 1> 55/774 Test #55: vtkChartsCoreCxx-TestCategoryLegend ..........................................***Exception: Other 0.01 sec 1> Start 56: vtkChartsCoreCxx-TestColorTransferFunction 1> 56/774 Test #56: vtkChartsCoreCxx-TestColorTransferFunction ...................................***Exception: Other 0.01 sec 1> Start 57: vtkChartsCoreCxx-TestChartDouble 1> 57/774 Test #57: vtkChartsCoreCxx-TestChartDouble .............................................***Exception: Other 0.01 sec 1> Start 58: vtkChartsCoreCxx-TestChartDoubleColors 1> 58/774 Test #58: vtkChartsCoreCxx-TestChartDoubleColors .......................................***Exception: Other 0.01 sec 1> Start 59: vtkChartsCoreCxx-TestChartMatrix 1> 59/774 Test #59: vtkChartsCoreCxx-TestChartMatrix .............................................***Exception: Other 0.01 sec 1> Start 60: vtkChartsCoreCxx-TestChartTileScaling 1> 60/774 Test #60: vtkChartsCoreCxx-TestChartTileScaling ........................................***Exception: Other 0.01 sec 1> Start 61: vtkChartsCoreCxx-TestChartUnicode 1> 61/774 Test #61: vtkChartsCoreCxx-TestChartUnicode ............................................***Exception: Other 0.01 sec 1> Start 62: vtkChartsCoreCxx-TestChartsOn3D 1> 62/774 Test #62: vtkChartsCoreCxx-TestChartsOn3D ..............................................***Exception: Other 0.01 sec 1> Start 63: vtkChartsCoreCxx-TestChartXYInvertedAxis 1> 63/774 Test #63: vtkChartsCoreCxx-TestChartXYInvertedAxis .....................................***Exception: Other 0.01 sec 1> Start 64: vtkChartsCoreCxx-TestChartXYZ 1> 64/774 Test #64: vtkChartsCoreCxx-TestChartXYZ ................................................***Exception: Other 0.01 sec 1> Start 65: vtkChartsCoreCxx-TestContext 1> 65/774 Test #65: vtkChartsCoreCxx-TestContext .................................................***Exception: Other 0.01 sec 1> Start 66: vtkChartsCoreCxx-TestContextArea 1> 66/774 Test #66: vtkChartsCoreCxx-TestContextArea .............................................***Exception: Other 0.01 sec 1> Start 67: vtkChartsCoreCxx-TestContextAreaFixedAspect 1> 67/774 Test #67: vtkChartsCoreCxx-TestContextAreaFixedAspect ..................................***Exception: Other 0.01 sec 1> Start 68: vtkChartsCoreCxx-TestContextAreaFixedMargins 1> 68/774 Test #68: vtkChartsCoreCxx-TestContextAreaFixedMargins .................................***Exception: Other 0.01 sec 1> Start 69: vtkChartsCoreCxx-TestContextAreaFixedRect 1> 69/774 Test #69: vtkChartsCoreCxx-TestContextAreaFixedRect ....................................***Exception: Other 0.01 sec 1> Start 70: vtkChartsCoreCxx-TestContextImage 1> 70/774 Test #70: vtkChartsCoreCxx-TestContextImage ............................................***Exception: Other 0.01 sec 1> Start 71: vtkChartsCoreCxx-TestContextItemStacking 1> 71/774 Test #71: vtkChartsCoreCxx-TestContextItemStacking .....................................***Exception: Other 0.01 sec 1> Start 72: vtkChartsCoreCxx-TestContextUnicode 1> 72/774 Test #72: vtkChartsCoreCxx-TestContextUnicode ..........................................***Exception: Other 0.01 sec 1> Start 73: vtkChartsCoreCxx-TestControlPointsHandleItem 1> 73/774 Test #73: vtkChartsCoreCxx-TestControlPointsHandleItem .................................***Exception: Other 0.01 sec 1> Start 74: vtkChartsCoreCxx-TestDiagram 1> 74/774 Test #74: vtkChartsCoreCxx-TestDiagram .................................................***Exception: Other 0.01 sec 1> Start 75: vtkChartsCoreCxx-TestFunctionalBagPlot 1> 75/774 Test #75: vtkChartsCoreCxx-TestFunctionalBagPlot .......................................***Exception: Other 0.01 sec 1> Start 76: vtkChartsCoreCxx-TestHistogram2D 1> 76/774 Test #76: vtkChartsCoreCxx-TestHistogram2D .............................................***Exception: Other 0.01 sec 1> Start 77: vtkChartsCoreCxx-TestInteractiveChartXYZ 1> 77/774 Test #77: vtkChartsCoreCxx-TestInteractiveChartXYZ .....................................***Exception: Other 0.01 sec 1> Start 78: vtkChartsCoreCxx-TestLegendHiddenPlots 1> 78/774 Test #78: vtkChartsCoreCxx-TestLegendHiddenPlots .......................................***Exception: Other 0.01 sec 1> Start 79: vtkChartsCoreCxx-TestLinePlot 1> 79/774 Test #79: vtkChartsCoreCxx-TestLinePlot ................................................***Exception: Other 0.01 sec 1> Start 80: vtkChartsCoreCxx-TestLinePlotDouble 1> 80/774 Test #80: vtkChartsCoreCxx-TestLinePlotDouble ..........................................***Exception: Other 0.01 sec 1> Start 81: vtkChartsCoreCxx-TestLinePlotDouble2 1> 81/774 Test #81: vtkChartsCoreCxx-TestLinePlotDouble2 .........................................***Exception: Other 0.01 sec 1> Start 82: vtkChartsCoreCxx-TestLinePlot3D 1> 82/774 Test #82: vtkChartsCoreCxx-TestLinePlot3D ..............................................***Exception: Other 0.01 sec 1> Start 83: vtkChartsCoreCxx-TestLinePlotAxisFonts 1> 83/774 Test #83: vtkChartsCoreCxx-TestLinePlotAxisFonts .......................................***Exception: Other 0.01 sec 1> Start 84: vtkChartsCoreCxx-TestLinePlot2 1> 84/774 Test #84: vtkChartsCoreCxx-TestLinePlot2 ...............................................***Exception: Other 0.01 sec 1> Start 85: vtkChartsCoreCxx-TestLinePlotInteraction 1> 85/774 Test #85: vtkChartsCoreCxx-TestLinePlotInteraction .....................................***Exception: Other 0.01 sec 1> Start 86: vtkChartsCoreCxx-TestLinePlotSelection 1> 86/774 Test #86: vtkChartsCoreCxx-TestLinePlotSelection .......................................***Exception: Other 0.01 sec 1> Start 87: vtkChartsCoreCxx-TestLinePlotSelection2 1> 87/774 Test #87: vtkChartsCoreCxx-TestLinePlotSelection2 ......................................***Exception: Other 0.01 sec 1> Start 88: vtkChartsCoreCxx-TestMultipleChartRenderers 1> 88/774 Test #88: vtkChartsCoreCxx-TestMultipleChartRenderers ..................................***Exception: Other 0.01 sec 1> Start 89: vtkChartsCoreCxx-TestMultipleRenderers 1> 89/774 Test #89: vtkChartsCoreCxx-TestMultipleRenderers .......................................***Exception: Other 0.01 sec 1> Start 90: vtkChartsCoreCxx-TestMultipleScalarsToColors 1> 90/774 Test #90: vtkChartsCoreCxx-TestMultipleScalarsToColors .................................***Exception: Other 0.01 sec 1> Start 91: vtkChartsCoreCxx-TestParallelCoordinates 1> 91/774 Test #91: vtkChartsCoreCxx-TestParallelCoordinates .....................................***Exception: Other 0.01 sec 1> Start 92: vtkChartsCoreCxx-TestParallelCoordinatesDouble 1> 92/774 Test #92: vtkChartsCoreCxx-TestParallelCoordinatesDouble ...............................***Exception: Other 0.01 sec 1> Start 93: vtkChartsCoreCxx-TestPieChart 1> 93/774 Test #93: vtkChartsCoreCxx-TestPieChart ................................................***Exception: Other 0.01 sec 1> Start 94: vtkChartsCoreCxx-TestPlotMatrix 1> 94/774 Test #94: vtkChartsCoreCxx-TestPlotMatrix ..............................................***Exception: Other 0.01 sec 1> Start 95: vtkChartsCoreCxx-TestPropItem 1> 95/774 Test #95: vtkChartsCoreCxx-TestPropItem ................................................***Exception: Other 0.01 sec 1> Start 96: vtkChartsCoreCxx-TestScalarsToColors 1> 96/774 Test #96: vtkChartsCoreCxx-TestScalarsToColors .........................................***Exception: Other 0.01 sec 1> Start 97: vtkChartsCoreCxx-TestScatterPlot 1> 97/774 Test #97: vtkChartsCoreCxx-TestScatterPlot .............................................***Exception: Other 0.01 sec 1> Start 98: vtkChartsCoreCxx-TestScatterPlotMatrix 1> 98/774 Test #98: vtkChartsCoreCxx-TestScatterPlotMatrix .......................................***Exception: Other 0.01 sec 1> Start 99: vtkChartsCoreCxx-TestScatterPlotMatrixVehicles 1> 99/774 Test #99: vtkChartsCoreCxx-TestScatterPlotMatrixVehicles ...............................***Exception: Other 0.01 sec 1> Start 100: vtkChartsCoreCxx-TestScatterPlotMatrixVisible 1> 100/774 Test #100: vtkChartsCoreCxx-TestScatterPlotMatrixVisible ................................***Exception: Other 0.01 sec 1> Start 101: vtkChartsCoreCxx-TestScientificPlot 1> 101/774 Test #101: vtkChartsCoreCxx-TestScientificPlot ..........................................***Exception: Other 0.01 sec 1> Start 102: vtkChartsCoreCxx-TestStackedBarGraph 1> 102/774 Test #102: vtkChartsCoreCxx-TestStackedBarGraph .........................................***Exception: Other 0.01 sec 1> Start 103: vtkChartsCoreCxx-TestStackedPlot 1> 103/774 Test #103: vtkChartsCoreCxx-TestStackedPlot .............................................***Exception: Other 0.01 sec 1> Start 104: vtkChartsCoreCxx-TestSurfacePlot 1> 104/774 Test #104: vtkChartsCoreCxx-TestSurfacePlot .............................................***Exception: Other 0.01 sec 1> Start 105: vtkChartsCoreCxx-TestZoomAxis 1> 105/774 Test #105: vtkChartsCoreCxx-TestZoomAxis ................................................***Exception: Other 0.01 sec 1> Start 106: vtkCommonColorCxx-TestCategoricalColors 1> 106/774 Test #106: vtkCommonColorCxx-TestCategoricalColors ......................................***Exception: Other 0.01 sec 1> Start 107: vtkCommonColorCxx-TestColorSeries 1> 107/774 Test #107: vtkCommonColorCxx-TestColorSeries ............................................***Exception: Other 0.01 sec 1> Start 108: vtkCommonColorCxx-TestColorSeriesLookupTables 1> 108/774 Test #108: vtkCommonColorCxx-TestColorSeriesLookupTables ................................***Exception: Other 0.01 sec 1> Start 109: vtkCommonColorCxx-TestNamedColors 1> 109/774 Test #109: vtkCommonColorCxx-TestNamedColors ............................................***Exception: Other 0.01 sec 1> Start 110: vtkCommonComputationalGeometryCxx-UnitTestParametricSpline 1> 110/774 Test #110: vtkCommonComputationalGeometryCxx-UnitTestParametricSpline ...................***Exception: Other 0.01 sec 1> Start 111: vtkCommonCoreCxx-UnitTestMath 1> 111/774 Test #111: vtkCommonCoreCxx-UnitTestMath ................................................***Exception: Other 0.01 sec 1> Start 112: vtkCommonCoreCxx-TestAngularPeriodicDataArray 1> 112/774 Test #112: vtkCommonCoreCxx-TestAngularPeriodicDataArray ................................***Exception: Other 0.01 sec 1> Start 113: vtkCommonCoreCxx-TestArrayAPI 1> 113/774 Test #113: vtkCommonCoreCxx-TestArrayAPI ................................................***Exception: Other 0.01 sec 1> Start 114: vtkCommonCoreCxx-TestArrayAPIConvenience 1> 114/774 Test #114: vtkCommonCoreCxx-TestArrayAPIConvenience .....................................***Exception: Other 0.01 sec 1> Start 115: vtkCommonCoreCxx-TestArrayAPIDense 1> 115/774 Test #115: vtkCommonCoreCxx-TestArrayAPIDense ...........................................***Exception: Other 0.01 sec 1> Start 116: vtkCommonCoreCxx-TestArrayAPISparse 1> 116/774 Test #116: vtkCommonCoreCxx-TestArrayAPISparse ..........................................***Exception: Other 0.01 sec 1> Start 117: vtkCommonCoreCxx-TestArrayBool 1> 117/774 Test #117: vtkCommonCoreCxx-TestArrayBool ...............................................***Exception: Other 0.01 sec 1> Start 118: vtkCommonCoreCxx-TestArrayDispatchers 1> 118/774 Test #118: vtkCommonCoreCxx-TestArrayDispatchers ........................................***Exception: Other 0.01 sec 1> Start 119: vtkCommonCoreCxx-TestAtomic 1> 119/774 Test #119: vtkCommonCoreCxx-TestAtomic ..................................................***Exception: Other 0.01 sec 1> Start 120: vtkCommonCoreCxx-TestScalarsToColors 1> 120/774 Test #120: vtkCommonCoreCxx-TestScalarsToColors .........................................***Exception: Other 0.01 sec 1> Start 121: vtkCommonCoreCxx-TestArrayExtents 1> 121/774 Test #121: vtkCommonCoreCxx-TestArrayExtents ............................................***Exception: Other 0.01 sec 1> Start 122: vtkCommonCoreCxx-TestArrayInterpolationDense 1> 122/774 Test #122: vtkCommonCoreCxx-TestArrayInterpolationDense .................................***Exception: Other 0.01 sec 1> Start 123: vtkCommonCoreCxx-TestArrayLookup 1> 123/774 Test #123: vtkCommonCoreCxx-TestArrayLookup .............................................***Exception: Other 0.01 sec 1> Start 124: vtkCommonCoreCxx-TestArrayNullValues 1> 124/774 Test #124: vtkCommonCoreCxx-TestArrayNullValues .........................................***Exception: Other 0.01 sec 1> Start 125: vtkCommonCoreCxx-TestArraySize 1> 125/774 Test #125: vtkCommonCoreCxx-TestArraySize ...............................................***Exception: Other 0.01 sec 1> Start 126: vtkCommonCoreCxx-TestArrayUniqueValueDetection 1> 126/774 Test #126: vtkCommonCoreCxx-TestArrayUniqueValueDetection ...............................***Exception: Other 0.01 sec 1> Start 127: vtkCommonCoreCxx-TestArrayUserTypes 1> 127/774 Test #127: vtkCommonCoreCxx-TestArrayUserTypes ..........................................***Exception: Other 0.01 sec 1> Start 128: vtkCommonCoreCxx-TestArrayVariants 1> 128/774 Test #128: vtkCommonCoreCxx-TestArrayVariants ...........................................***Exception: Other 0.01 sec 1> Start 129: vtkCommonCoreCxx-TestCollection 1> 129/774 Test #129: vtkCommonCoreCxx-TestCollection ..............................................***Exception: Other 0.01 sec 1> Start 130: vtkCommonCoreCxx-TestConditionVariable 1> 130/774 Test #130: vtkCommonCoreCxx-TestConditionVariable .......................................***Exception: Other 0.01 sec 1> Start 131: vtkCommonCoreCxx-TestDataArray 1> 131/774 Test #131: vtkCommonCoreCxx-TestDataArray ...............................................***Exception: Other 0.01 sec 1> Start 132: vtkCommonCoreCxx-TestDataArrayComponentNames 1> 132/774 Test #132: vtkCommonCoreCxx-TestDataArrayComponentNames .................................***Exception: Other 0.01 sec 1> Start 133: vtkCommonCoreCxx-TestDataArrayIterators 1> 133/774 Test #133: vtkCommonCoreCxx-TestDataArrayIterators ......................................***Exception: Other 0.01 sec 1> Start 134: vtkCommonCoreCxx-TestGarbageCollector 1> 134/774 Test #134: vtkCommonCoreCxx-TestGarbageCollector ........................................***Exception: Other 0.01 sec 1> Start 135: vtkCommonCoreCxx-TestGenericDataArrayAPI 1> 135/774 Test #135: vtkCommonCoreCxx-TestGenericDataArrayAPI .....................................***Exception: Other 0.01 sec 1> Start 136: vtkCommonCoreCxx-TestInformationKeyLookup 1> 136/774 Test #136: vtkCommonCoreCxx-TestInformationKeyLookup ....................................***Exception: Other 0.01 sec 1> Start 137: vtkCommonCoreCxx-TestLookupTable 1> 137/774 Test #137: vtkCommonCoreCxx-TestLookupTable .............................................***Exception: Other 0.01 sec 1> Start 138: vtkCommonCoreCxx-TestLookupTableThreaded 1> 138/774 Test #138: vtkCommonCoreCxx-TestLookupTableThreaded .....................................***Exception: Other 0.01 sec 1> Start 139: vtkCommonCoreCxx-TestMath 1> 139/774 Test #139: vtkCommonCoreCxx-TestMath ....................................................***Exception: Other 0.01 sec 1> Start 140: vtkCommonCoreCxx-TestMersenneTwister 1> 140/774 Test #140: vtkCommonCoreCxx-TestMersenneTwister .........................................***Exception: Other 0.01 sec 1> Start 141: vtkCommonCoreCxx-TestMinimalStandardRandomSequence 1> 141/774 Test #141: vtkCommonCoreCxx-TestMinimalStandardRandomSequence ...........................***Exception: Other 0.01 sec 1> Start 142: vtkCommonCoreCxx-TestNew 1> 142/774 Test #142: vtkCommonCoreCxx-TestNew .....................................................***Exception: Other 0.01 sec 1> Start 143: vtkCommonCoreCxx-TestObjectFactory 1> 143/774 Test #143: vtkCommonCoreCxx-TestObjectFactory ...........................................***Exception: Other 0.01 sec 1> Start 144: vtkCommonCoreCxx-TestObservers 1> 144/774 Test #144: vtkCommonCoreCxx-TestObservers ...............................................***Exception: Other 0.01 sec 1> Start 145: vtkCommonCoreCxx-TestObserversPerformance 1> 145/774 Test #145: vtkCommonCoreCxx-TestObserversPerformance ....................................***Exception: Other 0.01 sec 1> Start 146: vtkCommonCoreCxx-TestOStreamWrapper 1> 146/774 Test #146: vtkCommonCoreCxx-TestOStreamWrapper ..........................................***Exception: Other 0.01 sec 1> Start 147: vtkCommonCoreCxx-TestSMP 1> 147/774 Test #147: vtkCommonCoreCxx-TestSMP .....................................................***Exception: Other 0.01 sec 1> Start 148: vtkCommonCoreCxx-TestSmartPointer 1> 148/774 Test #148: vtkCommonCoreCxx-TestSmartPointer ............................................***Exception: Other 0.01 sec 1> Start 149: vtkCommonCoreCxx-TestSortDataArray 1> 149/774 Test #149: vtkCommonCoreCxx-TestSortDataArray ...........................................***Exception: Other 0.01 sec 1> Start 150: vtkCommonCoreCxx-TestSparseArrayValidation 1> 150/774 Test #150: vtkCommonCoreCxx-TestSparseArrayValidation ...................................***Exception: Other 0.01 sec 1> Start 151: vtkCommonCoreCxx-TestSystemInformation 1> 151/774 Test #151: vtkCommonCoreCxx-TestSystemInformation .......................................***Exception: Other 0.01 sec 1> Start 152: vtkCommonCoreCxx-TestTemplateMacro 1> 152/774 Test #152: vtkCommonCoreCxx-TestTemplateMacro ...........................................***Exception: Other 0.01 sec 1> Start 153: vtkCommonCoreCxx-TestTimePointUtility 1> 153/774 Test #153: vtkCommonCoreCxx-TestTimePointUtility ........................................***Exception: Other 0.01 sec 1> Start 154: vtkCommonCoreCxx-TestUnicodeStringAPI 1> 154/774 Test #154: vtkCommonCoreCxx-TestUnicodeStringAPI ........................................***Exception: Other 0.01 sec 1> Start 155: vtkCommonCoreCxx-TestUnicodeStringArrayAPI 1> 155/774 Test #155: vtkCommonCoreCxx-TestUnicodeStringArrayAPI ...................................***Exception: Other 0.01 sec 1> Start 156: vtkCommonCoreCxx-TestVariant 1> 156/774 Test #156: vtkCommonCoreCxx-TestVariant .................................................***Exception: Other 0.01 sec 1> Start 157: vtkCommonCoreCxx-TestVariantComparison 1> 157/774 Test #157: vtkCommonCoreCxx-TestVariantComparison .......................................***Exception: Other 0.01 sec 1> Start 158: vtkCommonCoreCxx-TestWeakPointer 1> 158/774 Test #158: vtkCommonCoreCxx-TestWeakPointer .............................................***Exception: Other 0.01 sec 1> Start 159: vtkCommonCoreCxx-TestXMLFileOutputWindow 1> 159/774 Test #159: vtkCommonCoreCxx-TestXMLFileOutputWindow .....................................***Exception: Other 0.01 sec 1> Start 160: vtkCommonCoreCxx-UnitTestInformationKeys 1> 160/774 Test #160: vtkCommonCoreCxx-UnitTestInformationKeys .....................................***Exception: Other 0.01 sec 1> Start 161: vtkCommonCoreCxx-otherArrays 1> 161/774 Test #161: vtkCommonCoreCxx-otherArrays .................................................***Exception: Other 0.01 sec 1> Start 162: vtkCommonCoreCxx-otherByteSwap 1> 162/774 Test #162: vtkCommonCoreCxx-otherByteSwap ...............................................***Exception: Other 0.01 sec 1> Start 163: vtkCommonCoreCxx-otherStringArray 1> 163/774 Test #163: vtkCommonCoreCxx-otherStringArray ............................................***Exception: Other 0.01 sec 1> Start 164: vtkCommonCoreCxx-TestDataArrayAPI_vtkDataArrayTemplate_LEGACY 1> 164/774 Test #164: vtkCommonCoreCxx-TestDataArrayAPI_vtkDataArrayTemplate_LEGACY ................***Exception: Other 0.01 sec 1> Start 165: vtkCommonCoreCxx-TestDataArrayAPI_vtkCharArray 1> 165/774 Test #165: vtkCommonCoreCxx-TestDataArrayAPI_vtkCharArray ...............................***Exception: Other 0.01 sec 1> Start 166: vtkCommonCoreCxx-TestDataArrayAPI_vtkDoubleArray 1> 166/774 Test #166: vtkCommonCoreCxx-TestDataArrayAPI_vtkDoubleArray .............................***Exception: Other 0.01 sec 1> Start 167: vtkCommonCoreCxx-TestDataArrayAPI_vtkFloatArray 1> 167/774 Test #167: vtkCommonCoreCxx-TestDataArrayAPI_vtkFloatArray ..............................***Exception: Other 0.01 sec 1> Start 168: vtkCommonCoreCxx-TestDataArrayAPI_vtkIntArray 1> 168/774 Test #168: vtkCommonCoreCxx-TestDataArrayAPI_vtkIntArray ................................***Exception: Other 0.01 sec 1> Start 169: vtkCommonCoreCxx-TestDataArrayAPI_vtkLongArray 1> 169/774 Test #169: vtkCommonCoreCxx-TestDataArrayAPI_vtkLongArray ...............................***Exception: Other 0.01 sec 1> Start 170: vtkCommonCoreCxx-TestDataArrayAPI_vtkLongLongArray 1> 170/774 Test #170: vtkCommonCoreCxx-TestDataArrayAPI_vtkLongLongArray ...........................***Exception: Other 0.01 sec 1> Start 171: vtkCommonCoreCxx-TestDataArrayAPI_vtkShortArray 1> 171/774 Test #171: vtkCommonCoreCxx-TestDataArrayAPI_vtkShortArray ..............................***Exception: Other 0.01 sec 1> Start 172: vtkCommonCoreCxx-TestDataArrayAPI_vtkSignedCharArray 1> 172/774 Test #172: vtkCommonCoreCxx-TestDataArrayAPI_vtkSignedCharArray .........................***Exception: Other 0.01 sec 1> Start 173: vtkCommonCoreCxx-TestDataArrayAPI_vtkUnsignedCharArray 1> 173/774 Test #173: vtkCommonCoreCxx-TestDataArrayAPI_vtkUnsignedCharArray .......................***Exception: Other 0.01 sec 1> Start 174: vtkCommonCoreCxx-TestDataArrayAPI_vtkUnsignedIntArray 1> 174/774 Test #174: vtkCommonCoreCxx-TestDataArrayAPI_vtkUnsignedIntArray ........................***Exception: Other 0.01 sec 1> Start 175: vtkCommonCoreCxx-TestDataArrayAPI_vtkUnsignedLongArray 1> 175/774 Test #175: vtkCommonCoreCxx-TestDataArrayAPI_vtkUnsignedLongArray .......................***Exception: Other 0.01 sec 1> Start 176: vtkCommonCoreCxx-TestDataArrayAPI_vtkUnsignedLongLongArray 1> 176/774 Test #176: vtkCommonCoreCxx-TestDataArrayAPI_vtkUnsignedLongLongArray ...................***Exception: Other 0.01 sec 1> Start 177: vtkCommonCoreCxx-TestDataArrayAPI_vtkUnsignedShortArray 1> 177/774 Test #177: vtkCommonCoreCxx-TestDataArrayAPI_vtkUnsignedShortArray ......................***Exception: Other 0.01 sec 1> Start 178: vtkCommonCoreCxx-TestDataArrayAPI_vtkIdTypeArray 1> 178/774 Test #178: vtkCommonCoreCxx-TestDataArrayAPI_vtkIdTypeArray .............................***Exception: Other 0.01 sec 1> Start 179: vtkCommonCoreCxx-TestDataArrayAPI_AoS_char 1> 179/774 Test #179: vtkCommonCoreCxx-TestDataArrayAPI_AoS_char ...................................***Exception: Other 0.01 sec 1> Start 180: vtkCommonCoreCxx-TestDataArrayAPI_SoA_char 1> 180/774 Test #180: vtkCommonCoreCxx-TestDataArrayAPI_SoA_char ...................................***Exception: Other 0.01 sec 1> Start 181: vtkCommonCoreCxx-TestDataArrayAPI_AoS_double 1> 181/774 Test #181: vtkCommonCoreCxx-TestDataArrayAPI_AoS_double .................................***Exception: Other 0.01 sec 1> Start 182: vtkCommonCoreCxx-TestDataArrayAPI_SoA_double 1> 182/774 Test #182: vtkCommonCoreCxx-TestDataArrayAPI_SoA_double .................................***Exception: Other 0.01 sec 1> Start 183: vtkCommonCoreCxx-TestDataArrayAPI_AoS_float 1> 183/774 Test #183: vtkCommonCoreCxx-TestDataArrayAPI_AoS_float ..................................***Exception: Other 0.01 sec 1> Start 184: vtkCommonCoreCxx-TestDataArrayAPI_SoA_float 1> 184/774 Test #184: vtkCommonCoreCxx-TestDataArrayAPI_SoA_float ..................................***Exception: Other 0.01 sec 1> Start 185: vtkCommonCoreCxx-TestDataArrayAPI_AoS_int 1> 185/774 Test #185: vtkCommonCoreCxx-TestDataArrayAPI_AoS_int ....................................***Exception: Other 0.01 sec 1> Start 186: vtkCommonCoreCxx-TestDataArrayAPI_SoA_int 1> 186/774 Test #186: vtkCommonCoreCxx-TestDataArrayAPI_SoA_int ....................................***Exception: Other 0.01 sec 1> Start 187: vtkCommonCoreCxx-TestDataArrayAPI_AoS_long 1> 187/774 Test #187: vtkCommonCoreCxx-TestDataArrayAPI_AoS_long ...................................***Exception: Other 0.01 sec 1> Start 188: vtkCommonCoreCxx-TestDataArrayAPI_SoA_long 1> 188/774 Test #188: vtkCommonCoreCxx-TestDataArrayAPI_SoA_long ...................................***Exception: Other 0.01 sec 1> Start 189: vtkCommonCoreCxx-TestDataArrayAPI_AoS_long_long 1> 189/774 Test #189: vtkCommonCoreCxx-TestDataArrayAPI_AoS_long_long ..............................***Exception: Other 0.01 sec 1> Start 190: vtkCommonCoreCxx-TestDataArrayAPI_SoA_long_long 1> 190/774 Test #190: vtkCommonCoreCxx-TestDataArrayAPI_SoA_long_long ..............................***Exception: Other 0.01 sec 1> Start 191: vtkCommonCoreCxx-TestDataArrayAPI_AoS_short 1> 191/774 Test #191: vtkCommonCoreCxx-TestDataArrayAPI_AoS_short ..................................***Exception: Other 0.01 sec 1> Start 192: vtkCommonCoreCxx-TestDataArrayAPI_SoA_short 1> 192/774 Test #192: vtkCommonCoreCxx-TestDataArrayAPI_SoA_short ..................................***Exception: Other 0.01 sec 1> Start 193: vtkCommonCoreCxx-TestDataArrayAPI_AoS_signed_char 1> 193/774 Test #193: vtkCommonCoreCxx-TestDataArrayAPI_AoS_signed_char ............................***Exception: Other 0.01 sec 1> Start 194: vtkCommonCoreCxx-TestDataArrayAPI_SoA_signed_char 1> 194/774 Test #194: vtkCommonCoreCxx-TestDataArrayAPI_SoA_signed_char ............................***Exception: Other 0.01 sec 1> Start 195: vtkCommonCoreCxx-TestDataArrayAPI_AoS_unsigned_char 1> 195/774 Test #195: vtkCommonCoreCxx-TestDataArrayAPI_AoS_unsigned_char ..........................***Exception: Other 0.01 sec 1> Start 196: vtkCommonCoreCxx-TestDataArrayAPI_SoA_unsigned_char 1> 196/774 Test #196: vtkCommonCoreCxx-TestDataArrayAPI_SoA_unsigned_char ..........................***Exception: Other 0.01 sec 1> Start 197: vtkCommonCoreCxx-TestDataArrayAPI_AoS_unsigned_int 1> 197/774 Test #197: vtkCommonCoreCxx-TestDataArrayAPI_AoS_unsigned_int ...........................***Exception: Other 0.01 sec 1> Start 198: vtkCommonCoreCxx-TestDataArrayAPI_SoA_unsigned_int 1> 198/774 Test #198: vtkCommonCoreCxx-TestDataArrayAPI_SoA_unsigned_int ...........................***Exception: Other 0.01 sec 1> Start 199: vtkCommonCoreCxx-TestDataArrayAPI_AoS_unsigned_long 1> 199/774 Test #199: vtkCommonCoreCxx-TestDataArrayAPI_AoS_unsigned_long ..........................***Exception: Other 0.01 sec 1> Start 200: vtkCommonCoreCxx-TestDataArrayAPI_SoA_unsigned_long 1> 200/774 Test #200: vtkCommonCoreCxx-TestDataArrayAPI_SoA_unsigned_long ..........................***Exception: Other 0.01 sec 1> Start 201: vtkCommonCoreCxx-TestDataArrayAPI_AoS_unsigned_long_long 1> 201/774 Test #201: vtkCommonCoreCxx-TestDataArrayAPI_AoS_unsigned_long_long .....................***Exception: Other 0.01 sec 1> Start 202: vtkCommonCoreCxx-TestDataArrayAPI_SoA_unsigned_long_long 1> 202/774 Test #202: vtkCommonCoreCxx-TestDataArrayAPI_SoA_unsigned_long_long .....................***Exception: Other 0.01 sec 1> Start 203: vtkCommonCoreCxx-TestDataArrayAPI_AoS_unsigned_short 1> 203/774 Test #203: vtkCommonCoreCxx-TestDataArrayAPI_AoS_unsigned_short .........................***Exception: Other 0.01 sec 1> Start 204: vtkCommonCoreCxx-TestDataArrayAPI_SoA_unsigned_short 1> 204/774 Test #204: vtkCommonCoreCxx-TestDataArrayAPI_SoA_unsigned_short .........................***Exception: Other 0.01 sec 1> Start 205: vtkCommonCoreCxx-TestDataArrayAPI_AoS_vtkIdType 1> 205/774 Test #205: vtkCommonCoreCxx-TestDataArrayAPI_AoS_vtkIdType ..............................***Exception: Other 0.01 sec 1> Start 206: vtkCommonCoreCxx-TestDataArrayAPI_SoA_vtkIdType 1> 206/774 Test #206: vtkCommonCoreCxx-TestDataArrayAPI_SoA_vtkIdType ..............................***Exception: Other 0.01 sec 1> Start 207: vtkFiltersGeneric-HeaderTest 1> 207/774 Test #207: vtkFiltersGeneric-HeaderTest ................................................. Passed 0.18 sec 1> Start 208: vtkIOGeometry-HeaderTest 1> 208/774 Test #208: vtkIOGeometry-HeaderTest ..................................................... Passed 0.30 sec 1> Start 209: vtkTestingGenericBridge-HeaderTest 1> 209/774 Test #209: vtkTestingGenericBridge-HeaderTest ........................................... Passed 0.19 sec 1> Start 210: vtkCommonDataModelCxx-TestColor 1> 210/774 Test #210: vtkCommonDataModelCxx-TestColor ..............................................***Exception: Other 0.01 sec 1> Start 211: vtkCommonDataModelCxx-TestVector 1> 211/774 Test #211: vtkCommonDataModelCxx-TestVector .............................................***Exception: Other 0.01 sec 1> Start 212: vtkCommonDataModelCxx-TestVectorOperators 1> 212/774 Test #212: vtkCommonDataModelCxx-TestVectorOperators ....................................***Exception: Other 0.01 sec 1> Start 213: vtkCommonDataModelCxx-TestAMRBox 1> 213/774 Test #213: vtkCommonDataModelCxx-TestAMRBox .............................................***Exception: Other 0.01 sec 1> Start 214: vtkCommonDataModelCxx-TestBiQuadraticQuad 1> 214/774 Test #214: vtkCommonDataModelCxx-TestBiQuadraticQuad ....................................***Exception: Other 0.01 sec 1> Start 215: vtkCommonDataModelCxx-TestCompositeDataSets 1> 215/774 Test #215: vtkCommonDataModelCxx-TestCompositeDataSets ..................................***Exception: Other 0.01 sec 1> Start 216: vtkCommonDataModelCxx-TestComputeBoundingSphere 1> 216/774 Test #216: vtkCommonDataModelCxx-TestComputeBoundingSphere ..............................***Exception: Other 0.01 sec 1> Start 217: vtkCommonDataModelCxx-TestDataArrayDispatcher 1> 217/774 Test #217: vtkCommonDataModelCxx-TestDataArrayDispatcher ................................***Exception: Other 0.01 sec 1> Start 218: vtkCommonDataModelCxx-TestDataObject 1> 218/774 Test #218: vtkCommonDataModelCxx-TestDataObject .........................................***Exception: Other 0.01 sec 1> Start 219: vtkCommonDataModelCxx-TestDispatchers 1> 219/774 Test #219: vtkCommonDataModelCxx-TestDispatchers ........................................***Exception: Other 0.01 sec 1> Start 220: vtkCommonDataModelCxx-TestGenericCell 1> 220/774 Test #220: vtkCommonDataModelCxx-TestGenericCell ........................................***Exception: Other 0.01 sec 1> Start 221: vtkCommonDataModelCxx-TestGraph 1> 221/774 Test #221: vtkCommonDataModelCxx-TestGraph ..............................................***Exception: Other 0.01 sec 1> Start 222: vtkCommonDataModelCxx-TestGraph2 1> 222/774 Test #222: vtkCommonDataModelCxx-TestGraph2 .............................................***Exception: Other 0.01 sec 1> Start 223: vtkCommonDataModelCxx-TestGraphAttributes 1> 223/774 Test #223: vtkCommonDataModelCxx-TestGraphAttributes ....................................***Exception: Other 0.01 sec 1> Start 224: vtkCommonDataModelCxx-TestHigherOrderCell 1> 224/774 Test #224: vtkCommonDataModelCxx-TestHigherOrderCell ....................................***Exception: Other 0.01 sec 1> Start 225: vtkCommonDataModelCxx-TestImageDataFindCell 1> 225/774 Test #225: vtkCommonDataModelCxx-TestImageDataFindCell ..................................***Exception: Other 0.01 sec 1> Start 226: vtkCommonDataModelCxx-TestImageDataInterpolation 1> 226/774 Test #226: vtkCommonDataModelCxx-TestImageDataInterpolation .............................***Exception: Other 0.01 sec 1> Start 227: vtkCommonDataModelCxx-TestImageIterator 1> 227/774 Test #227: vtkCommonDataModelCxx-TestImageIterator ......................................***Exception: Other 0.01 sec 1> Start 228: vtkCommonDataModelCxx-TestInterpolationDerivs 1> 228/774 Test #228: vtkCommonDataModelCxx-TestInterpolationDerivs ................................***Exception: Other 0.01 sec 1> Start 229: vtkCommonDataModelCxx-TestInterpolationFunctions 1> 229/774 Test #229: vtkCommonDataModelCxx-TestInterpolationFunctions .............................***Exception: Other 0.01 sec 1> Start 230: vtkCommonDataModelCxx-TestPath 1> 230/774 Test #230: vtkCommonDataModelCxx-TestPath ...............................................***Exception: Other 0.01 sec 1> Start 231: vtkCommonDataModelCxx-TestPentagonalPrism 1> 231/774 Test #231: vtkCommonDataModelCxx-TestPentagonalPrism ....................................***Exception: Other 0.01 sec 1> Start 232: vtkCommonDataModelCxx-TestPixelExtent 1> 232/774 Test #232: vtkCommonDataModelCxx-TestPixelExtent ........................................***Exception: Other 0.01 sec 1> Start 233: vtkCommonDataModelCxx-TestPointLocators 1> 233/774 Test #233: vtkCommonDataModelCxx-TestPointLocators ......................................***Exception: Other 0.01 sec 1> Start 234: vtkCommonDataModelCxx-TestPolyDataRemoveCell 1> 234/774 Test #234: vtkCommonDataModelCxx-TestPolyDataRemoveCell .................................***Exception: Other 0.01 sec 1> Start 235: vtkCommonDataModelCxx-TestPolygon 1> 235/774 Test #235: vtkCommonDataModelCxx-TestPolygon ............................................***Exception: Other 0.01 sec 1> Start 236: vtkCommonDataModelCxx-TestPolyhedron0 1> 236/774 Test #236: vtkCommonDataModelCxx-TestPolyhedron0 ........................................***Exception: Other 0.01 sec 1> Start 237: vtkCommonDataModelCxx-TestPolyhedron1 1> 237/774 Test #237: vtkCommonDataModelCxx-TestPolyhedron1 ........................................***Exception: Other 0.01 sec 1> Start 238: vtkCommonDataModelCxx-TestPolyhedron3 1> 238/774 Test #238: vtkCommonDataModelCxx-TestPolyhedron3 ........................................***Exception: Other 0.01 sec 1> Start 239: vtkCommonDataModelCxx-TestPolyhedronConvexity 1> 239/774 Test #239: vtkCommonDataModelCxx-TestPolyhedronConvexity ................................***Exception: Other 0.01 sec 1> Start 240: vtkCommonDataModelCxx-TestQuadraticPolygon 1> 240/774 Test #240: vtkCommonDataModelCxx-TestQuadraticPolygon ...................................***Exception: Other 0.01 sec 1> Start 241: vtkCommonDataModelCxx-TestRect 1> 241/774 Test #241: vtkCommonDataModelCxx-TestRect ...............................................***Exception: Other 0.01 sec 1> Start 242: vtkCommonDataModelCxx-TestSelectionSubtract 1> 242/774 Test #242: vtkCommonDataModelCxx-TestSelectionSubtract ..................................***Exception: Other 0.01 sec 1> Start 243: vtkCommonDataModelCxx-TestSortFieldData 1> 243/774 Test #243: vtkCommonDataModelCxx-TestSortFieldData ......................................***Exception: Other 0.01 sec 1> Start 244: vtkCommonDataModelCxx-TestTable 1> 244/774 Test #244: vtkCommonDataModelCxx-TestTable ..............................................***Exception: Other 0.01 sec 1> Start 245: vtkCommonDataModelCxx-TestTreeBFSIterator 1> 245/774 Test #245: vtkCommonDataModelCxx-TestTreeBFSIterator ....................................***Exception: Other 0.01 sec 1> Start 246: vtkCommonDataModelCxx-TestTreeDFSIterator 1> 246/774 Test #246: vtkCommonDataModelCxx-TestTreeDFSIterator ....................................***Exception: Other 0.01 sec 1> Start 247: vtkCommonDataModelCxx-TestTriangle 1> 247/774 Test #247: vtkCommonDataModelCxx-TestTriangle ...........................................***Exception: Other 0.01 sec 1> Start 248: vtkCommonDataModelCxx-TimePointLocators 1> 248/774 Test #248: vtkCommonDataModelCxx-TimePointLocators ......................................***Exception: Other 0.01 sec 1> Start 249: vtkCommonDataModelCxx-otherCellArray 1> 249/774 Test #249: vtkCommonDataModelCxx-otherCellArray .........................................***Exception: Other 0.01 sec 1> Start 250: vtkCommonDataModelCxx-otherCellBoundaries 1> 250/774 Test #250: vtkCommonDataModelCxx-otherCellBoundaries ....................................***Exception: Other 0.01 sec 1> Start 251: vtkCommonDataModelCxx-otherCellPosition 1> 251/774 Test #251: vtkCommonDataModelCxx-otherCellPosition ......................................***Exception: Other 0.01 sec 1> Start 252: vtkCommonDataModelCxx-otherCellTypes 1> 252/774 Test #252: vtkCommonDataModelCxx-otherCellTypes .........................................***Exception: Other 0.01 sec 1> Start 253: vtkCommonDataModelCxx-otherColorTransferFunction 1> 253/774 Test #253: vtkCommonDataModelCxx-otherColorTransferFunction .............................***Exception: Other 0.01 sec 1> Start 254: vtkCommonDataModelCxx-otherEmptyCell 1> 254/774 Test #254: vtkCommonDataModelCxx-otherEmptyCell .........................................***Exception: Other 0.01 sec 1> Start 255: vtkCommonDataModelCxx-otherFieldData 1> 255/774 Test #255: vtkCommonDataModelCxx-otherFieldData .........................................***Exception: Other 0.01 sec 1> Start 256: vtkCommonDataModelCxx-otherRectilinearGrid 1> 256/774 Test #256: vtkCommonDataModelCxx-otherRectilinearGrid ...................................***Exception: Other 0.01 sec 1> Start 257: vtkCommonDataModelCxx-otherStructuredGrid 1> 257/774 Test #257: vtkCommonDataModelCxx-otherStructuredGrid ....................................***Exception: Other 0.01 sec 1> Start 258: vtkCommonDataModelCxx-quadCellConsistency 1> 258/774 Test #258: vtkCommonDataModelCxx-quadCellConsistency ....................................***Exception: Other 0.01 sec 1> Start 259: vtkCommonDataModelCxx-quadraticEvaluation 1> 259/774 Test #259: vtkCommonDataModelCxx-quadraticEvaluation ....................................***Exception: Other 0.01 sec 1> Start 260: vtkCommonDataModelCxx-TestBoundingBox 1> 260/774 Test #260: vtkCommonDataModelCxx-TestBoundingBox ........................................***Exception: Other 0.01 sec 1> Start 261: vtkCommonDataModelCxx-TestPlane 1> 261/774 Test #261: vtkCommonDataModelCxx-TestPlane ..............................................***Exception: Other 0.01 sec 1> Start 262: vtkCommonDataModelCxx-TestStaticCellLinks 1> 262/774 Test #262: vtkCommonDataModelCxx-TestStaticCellLinks ....................................***Exception: Other 0.01 sec 1> Start 263: vtkCommonDataModelCxx-TestStructuredData 1> 263/774 Test #263: vtkCommonDataModelCxx-TestStructuredData .....................................***Exception: Other 0.01 sec 1> Start 264: vtkCommonDataModelCxx-TestDataObjectTypes 1> 264/774 Test #264: vtkCommonDataModelCxx-TestDataObjectTypes ....................................***Exception: Other 0.01 sec 1> Start 265: vtkCommonDataModelCxx-TestPolyDataRemoveDeletedCells 1> 265/774 Test #265: vtkCommonDataModelCxx-TestPolyDataRemoveDeletedCells .........................***Exception: Other 0.01 sec 1> Start 266: vtkCommonDataModelCxx-UnitTestCells 1> 266/774 Test #266: vtkCommonDataModelCxx-UnitTestCells ..........................................***Exception: Other 0.01 sec 1> Start 267: vtkCommonDataModelCxx-UnitTestImplicitDataSet 1> 267/774 Test #267: vtkCommonDataModelCxx-UnitTestImplicitDataSet ................................***Exception: Other 0.01 sec 1> Start 268: vtkCommonDataModelCxx-UnitTestImplicitVolume 1> 268/774 Test #268: vtkCommonDataModelCxx-UnitTestImplicitVolume .................................***Exception: Other 0.01 sec 1> Start 269: vtkCommonDataModelCxx-UnitTestLine 1> 269/774 Test #269: vtkCommonDataModelCxx-UnitTestLine ...........................................***Exception: Other 0.01 sec 1> Start 270: vtkCommonDataModelCxx-UnitTestPlanesIntersection 1> 270/774 Test #270: vtkCommonDataModelCxx-UnitTestPlanesIntersection .............................***Exception: Other 0.01 sec 1> Start 271: vtkCommonDataModelCxx-quadraticIntersection 1> 271/774 Test #271: vtkCommonDataModelCxx-quadraticIntersection ..................................***Exception: Other 0.01 sec 1> Start 272: vtkCommonDataModelCxx-TestCellIterators 1> 272/774 Test #272: vtkCommonDataModelCxx-TestCellIterators ......................................***Exception: Other 0.01 sec 1> Start 273: vtkCommonDataModelCxx-TestCellLocator 1> 273/774 Test #273: vtkCommonDataModelCxx-TestCellLocator ........................................***Exception: Other 0.01 sec 1> Start 274: vtkCommonDataModelCxx-TestMeanValueCoordinatesInterpolation1 1> 274/774 Test #274: vtkCommonDataModelCxx-TestMeanValueCoordinatesInterpolation1 .................***Exception: Other 0.01 sec 1> Start 275: vtkCommonDataModelCxx-TestMeanValueCoordinatesInterpolation2 1> 275/774 Test #275: vtkCommonDataModelCxx-TestMeanValueCoordinatesInterpolation2 .................***Exception: Other 0.01 sec 1> Start 276: vtkCommonDataModelCxx-TestSmoothErrorMetric 1> 276/774 Test #276: vtkCommonDataModelCxx-TestSmoothErrorMetric ..................................***Exception: Other 0.01 sec 1> Start 277: vtkCommonDataModelCxx-TestQuadraticPolygonFilters 1> 277/774 Test #277: vtkCommonDataModelCxx-TestQuadraticPolygonFilters ............................***Exception: Other 0.01 sec 1> Start 278: vtkCommonDataModelCxx-TestKdTreeRepresentation 1> 278/774 Test #278: vtkCommonDataModelCxx-TestKdTreeRepresentation ...............................***Exception: Other 0.01 sec 1> Start 279: TestPolyhedron2 1> 279/774 Test #279: TestPolyhedron2 ..............................................................***Exception: Other 0.01 sec 1> Start 280: vtkCommonExecutionModelCxx-TestCopyAttributeData 1> 280/774 Test #280: vtkCommonExecutionModelCxx-TestCopyAttributeData .............................***Exception: Other 0.01 sec 1> Start 281: vtkCommonExecutionModelCxx-TestImageDataToStructuredGrid 1> 281/774 Test #281: vtkCommonExecutionModelCxx-TestImageDataToStructuredGrid .....................***Exception: Other 0.01 sec 1> Start 282: vtkCommonExecutionModelCxx-TestMetaData 1> 282/774 Test #282: vtkCommonExecutionModelCxx-TestMetaData ......................................***Exception: Other 0.01 sec 1> Start 283: vtkCommonExecutionModelCxx-TestSetInputDataObject 1> 283/774 Test #283: vtkCommonExecutionModelCxx-TestSetInputDataObject ............................***Exception: Other 0.01 sec 1> Start 284: vtkCommonExecutionModelCxx-TestTemporalSupport 1> 284/774 Test #284: vtkCommonExecutionModelCxx-TestTemporalSupport ...............................***Exception: Other 0.01 sec 1> Start 285: vtkCommonExecutionModelCxx-TestThreadedImageAlgorithmSplitExtent 1> 285/774 Test #285: vtkCommonExecutionModelCxx-TestThreadedImageAlgorithmSplitExtent .............***Exception: Other 0.01 sec 1> Start 286: vtkCommonExecutionModelCxx-TestTrivialConsumer 1> 286/774 Test #286: vtkCommonExecutionModelCxx-TestTrivialConsumer ...............................***Exception: Other 0.01 sec 1> Start 287: vtkCommonExecutionModelCxx-UnitTestSimpleScalarTree 1> 287/774 Test #287: vtkCommonExecutionModelCxx-UnitTestSimpleScalarTree ..........................***Exception: Other 0.01 sec 1> Start 288: vtkCommonMathCxx-TestAmoebaMinimizer 1> 288/774 Test #288: vtkCommonMathCxx-TestAmoebaMinimizer .........................................***Exception: Other 0.01 sec 1> Start 289: vtkCommonMathCxx-TestMatrix3x3 1> 289/774 Test #289: vtkCommonMathCxx-TestMatrix3x3 ...............................................***Exception: Other 0.01 sec 1> Start 290: vtkCommonMathCxx-TestPolynomialSolversUnivariate 1> 290/774 Test #290: vtkCommonMathCxx-TestPolynomialSolversUnivariate .............................***Exception: Other 0.01 sec 1> Start 291: vtkCommonMathCxx-TestQuaternion 1> 291/774 Test #291: vtkCommonMathCxx-TestQuaternion ..............................................***Exception: Other 0.01 sec 1> Start 292: vtkCommonMiscCxx-TestPolygonBuilder 1> 292/774 Test #292: vtkCommonMiscCxx-TestPolygonBuilder ..........................................***Exception: Other 0.01 sec 1> Start 293: vtkCommonMiscCxx-TestPolygonBuilder2 1> 293/774 Test #293: vtkCommonMiscCxx-TestPolygonBuilder2 .........................................***Exception: Other 0.01 sec 1> Start 294: vtkCommonMiscCxx-TestPolygonBuilder3 1> 294/774 Test #294: vtkCommonMiscCxx-TestPolygonBuilder3 .........................................***Exception: Other 0.01 sec 1> Start 295: vtkCommonMiscCxx-TestPolygonBuilder4 1> 295/774 Test #295: vtkCommonMiscCxx-TestPolygonBuilder4 .........................................***Exception: Other 0.01 sec 1> Start 296: vtkCommonMiscCxx-UnitTestFunctionParser 1> 296/774 Test #296: vtkCommonMiscCxx-UnitTestFunctionParser ......................................***Exception: Other 0.01 sec 1> Start 297: vtkCommonSystemCxx-TestDirectory 1> 297/774 Test #297: vtkCommonSystemCxx-TestDirectory .............................................***Exception: Other 0.01 sec 1> Start 298: vtkCommonSystemCxx-otherTimerLog 1> 298/774 Test #298: vtkCommonSystemCxx-otherTimerLog .............................................***Exception: Other 0.01 sec 1> Start 299: vtkCommonTransformsCxx-TestTransform 1> 299/774 Test #299: vtkCommonTransformsCxx-TestTransform .........................................***Exception: Other 0.01 sec 1> Start 300: vtkCommonTransformsCxx-TestLandmarkTransform 1> 300/774 Test #300: vtkCommonTransformsCxx-TestLandmarkTransform .................................***Exception: Other 0.01 sec 1> Start 301: vtkImagingMath-HeaderTest 1> 301/774 Test #301: vtkImagingMath-HeaderTest .................................................... Passed 0.12 sec 1> Start 302: vtkRenderingVolumeOpenGL2-HeaderTest 1> 302/774 Test #302: vtkRenderingVolumeOpenGL2-HeaderTest ......................................... Passed 0.13 sec 1> Start 303: vtkFiltersCoreCxx-TestAppendFilter 1> 303/774 Test #303: vtkFiltersCoreCxx-TestAppendFilter ...........................................***Exception: Other 0.01 sec 1> Start 304: vtkFiltersCoreCxx-TestAppendPolyData 1> 304/774 Test #304: vtkFiltersCoreCxx-TestAppendPolyData .........................................***Exception: Other 0.01 sec 1> Start 305: vtkFiltersCoreCxx-TestAppendSelection 1> 305/774 Test #305: vtkFiltersCoreCxx-TestAppendSelection ........................................***Exception: Other 0.01 sec 1> Start 306: vtkFiltersCoreCxx-TestArrayCalculator 1> 306/774 Test #306: vtkFiltersCoreCxx-TestArrayCalculator ........................................***Exception: Other 0.01 sec 1> Start 307: vtkFiltersCoreCxx-TestAssignAttribute 1> 307/774 Test #307: vtkFiltersCoreCxx-TestAssignAttribute ........................................***Exception: Other 0.01 sec 1> Start 308: vtkFiltersCoreCxx-TestBinCellDataFilter 1> 308/774 Test #308: vtkFiltersCoreCxx-TestBinCellDataFilter ......................................***Exception: Other 0.01 sec 1> Start 309: vtkFiltersCoreCxx-TestCategoricalPointDataToCellData 1> 309/774 Test #309: vtkFiltersCoreCxx-TestCategoricalPointDataToCellData .........................***Exception: Other 0.01 sec 1> Start 310: vtkFiltersCoreCxx-TestCellDataToPointData 1> 310/774 Test #310: vtkFiltersCoreCxx-TestCellDataToPointData ....................................***Exception: Other 0.01 sec 1> Start 311: vtkFiltersCoreCxx-TestCenterOfMass 1> 311/774 Test #311: vtkFiltersCoreCxx-TestCenterOfMass ...........................................***Exception: Other 0.01 sec 1> Start 312: vtkFiltersCoreCxx-TestCleanPolyData 1> 312/774 Test #312: vtkFiltersCoreCxx-TestCleanPolyData ..........................................***Exception: Other 0.01 sec 1> Start 313: vtkFiltersCoreCxx-TestClipPolyData 1> 313/774 Test #313: vtkFiltersCoreCxx-TestClipPolyData ...........................................***Exception: Other 0.01 sec 1> Start 314: vtkFiltersCoreCxx-TestConnectivityFilter 1> 314/774 Test #314: vtkFiltersCoreCxx-TestConnectivityFilter .....................................***Exception: Other 0.01 sec 1> Start 315: vtkFiltersCoreCxx-TestCutter 1> 315/774 Test #315: vtkFiltersCoreCxx-TestCutter .................................................***Exception: Other 0.01 sec 1> Start 316: vtkFiltersCoreCxx-TestDecimatePolylineFilter 1> 316/774 Test #316: vtkFiltersCoreCxx-TestDecimatePolylineFilter .................................***Exception: Other 0.01 sec 1> Start 317: vtkFiltersCoreCxx-TestDecimatePro 1> 317/774 Test #317: vtkFiltersCoreCxx-TestDecimatePro ............................................***Exception: Other 0.01 sec 1> Start 318: vtkFiltersCoreCxx-TestDelaunay2D 1> 318/774 Test #318: vtkFiltersCoreCxx-TestDelaunay2D .............................................***Exception: Other 0.01 sec 1> Start 319: vtkFiltersCoreCxx-TestDelaunay2DFindTriangle 1> 319/774 Test #319: vtkFiltersCoreCxx-TestDelaunay2DFindTriangle .................................***Exception: Other 0.01 sec 1> Start 320: vtkFiltersCoreCxx-TestDelaunay2DMeshes 1> 320/774 Test #320: vtkFiltersCoreCxx-TestDelaunay2DMeshes .......................................***Exception: Other 0.01 sec 1> Start 321: vtkFiltersCoreCxx-TestDelaunay3D 1> 321/774 Test #321: vtkFiltersCoreCxx-TestDelaunay3D .............................................***Exception: Other 0.01 sec 1> Start 322: vtkFiltersCoreCxx-TestExecutionTimer 1> 322/774 Test #322: vtkFiltersCoreCxx-TestExecutionTimer .........................................***Exception: Other 0.01 sec 1> Start 323: vtkFiltersCoreCxx-TestFeatureEdges 1> 323/774 Test #323: vtkFiltersCoreCxx-TestFeatureEdges ...........................................***Exception: Other 0.01 sec 1> Start 324: vtkFiltersCoreCxx-TestFlyingEdges 1> 324/774 Test #324: vtkFiltersCoreCxx-TestFlyingEdges ............................................***Exception: Other 0.01 sec 1> Start 325: vtkFiltersCoreCxx-TestGlyph3D 1> 325/774 Test #325: vtkFiltersCoreCxx-TestGlyph3D ................................................***Exception: Other 0.01 sec 1> Start 326: vtkFiltersCoreCxx-TestHedgeHog 1> 326/774 Test #326: vtkFiltersCoreCxx-TestHedgeHog ...............................................***Exception: Other 0.01 sec 1> Start 327: vtkFiltersCoreCxx-TestImplicitPolyDataDistance 1> 327/774 Test #327: vtkFiltersCoreCxx-TestImplicitPolyDataDistance ...............................***Exception: Other 0.01 sec 1> Start 328: vtkFiltersCoreCxx-TestMaskPoints 1> 328/774 Test #328: vtkFiltersCoreCxx-TestMaskPoints .............................................***Exception: Other 0.01 sec 1> Start 329: vtkFiltersCoreCxx-TestNamedComponents 1> 329/774 Test #329: vtkFiltersCoreCxx-TestNamedComponents ........................................***Exception: Other 0.01 sec 1> Start 330: vtkFiltersCoreCxx-TestPolyDataConnectivityFilter 1> 330/774 Test #330: vtkFiltersCoreCxx-TestPolyDataConnectivityFilter .............................***Exception: Other 0.01 sec 1> Start 331: vtkFiltersCoreCxx-TestProbeFilter 1> 331/774 Test #331: vtkFiltersCoreCxx-TestProbeFilter ............................................***Exception: Other 0.01 sec 1> Start 332: vtkFiltersCoreCxx-TestProbeFilterImageInput 1> 332/774 Test #332: vtkFiltersCoreCxx-TestProbeFilterImageInput ..................................***Exception: Other 0.01 sec 1> Start 333: vtkFiltersCoreCxx-TestProbeFilterOutputAttributes 1> 333/774 Test #333: vtkFiltersCoreCxx-TestProbeFilterOutputAttributes ............................***Exception: Other 0.01 sec 1> Start 334: vtkFiltersCoreCxx-TestResampleToImage 1> 334/774 Test #334: vtkFiltersCoreCxx-TestResampleToImage ........................................***Exception: Other 0.01 sec 1> Start 335: vtkFiltersCoreCxx-TestResampleWithDataSet 1> 335/774 Test #335: vtkFiltersCoreCxx-TestResampleWithDataSet ....................................***Exception: Other 0.01 sec 1> Start 336: vtkFiltersCoreCxx-TestSmoothPolyDataFilter 1> 336/774 Test #336: vtkFiltersCoreCxx-TestSmoothPolyDataFilter ...................................***Exception: Other 0.01 sec 1> Start 337: vtkFiltersCoreCxx-TestSMPPipelineContour 1> 337/774 Test #337: vtkFiltersCoreCxx-TestSMPPipelineContour .....................................***Exception: Other 0.01 sec 1> Start 338: vtkFiltersCoreCxx-TestStripper 1> 338/774 Test #338: vtkFiltersCoreCxx-TestStripper ...............................................***Exception: Other 0.01 sec 1> Start 339: vtkFiltersCoreCxx-TestStructuredGridAppend 1> 339/774 Test #339: vtkFiltersCoreCxx-TestStructuredGridAppend ...................................***Exception: Other 0.01 sec 1> Start 340: vtkFiltersCoreCxx-TestThreshold 1> 340/774 Test #340: vtkFiltersCoreCxx-TestThreshold ..............................................***Exception: Other 0.01 sec 1> Start 341: vtkFiltersCoreCxx-TestThresholdPoints 1> 341/774 Test #341: vtkFiltersCoreCxx-TestThresholdPoints ........................................***Exception: Other 0.01 sec 1> Start 342: vtkFiltersCoreCxx-TestTransposeTable 1> 342/774 Test #342: vtkFiltersCoreCxx-TestTransposeTable .........................................***Exception: Other 0.01 sec 1> Start 343: vtkFiltersCoreCxx-TestTubeFilter 1> 343/774 Test #343: vtkFiltersCoreCxx-TestTubeFilter .............................................***Exception: Other 0.01 sec 1> Start 344: vtkFiltersCoreCxx-TestUnstructuredGridQuadricDecimation 1> 344/774 Test #344: vtkFiltersCoreCxx-TestUnstructuredGridQuadricDecimation ......................***Exception: Other 0.01 sec 1> Start 345: vtkFiltersCoreCxx-UnitTestMaskPoints 1> 345/774 Test #345: vtkFiltersCoreCxx-UnitTestMaskPoints .........................................***Exception: Other 0.01 sec 1> Start 346: vtkFiltersCoreCxx-UnitTestMergeFilter 1> 346/774 Test #346: vtkFiltersCoreCxx-UnitTestMergeFilter ........................................***Exception: Other 0.01 sec 1> Start 347: vtkRenderingLabel-HeaderTest 1> 347/774 Test #347: vtkRenderingLabel-HeaderTest ................................................. Passed 0.20 sec 1> Start 348: vtkFiltersGenericCxx-TestGenericStreamTracer 1> 348/774 Test #348: vtkFiltersGenericCxx-TestGenericStreamTracer .................................***Exception: Other 0.01 sec 1> Start 349: vtkFiltersGenericCxx-TestGenericClip 1> 349/774 Test #349: vtkFiltersGenericCxx-TestGenericClip .........................................***Exception: Other 0.01 sec 1> Start 350: vtkFiltersGenericCxx-TestGenericContourFilter 1> 350/774 Test #350: vtkFiltersGenericCxx-TestGenericContourFilter ................................***Exception: Other 0.01 sec 1> Start 351: vtkFiltersGenericCxx-TestGenericCutter 1> 351/774 Test #351: vtkFiltersGenericCxx-TestGenericCutter .......................................***Exception: Other 0.01 sec 1> Start 352: vtkFiltersGenericCxx-TestGenericDataSetTessellator 1> 352/774 Test #352: vtkFiltersGenericCxx-TestGenericDataSetTessellator ...........................***Exception: Other 0.01 sec 1> Start 353: vtkFiltersGenericCxx-TestGenericGeometryFilter 1> 353/774 Test #353: vtkFiltersGenericCxx-TestGenericGeometryFilter ...............................***Exception: Other 0.01 sec 1> Start 354: vtkFiltersGenericCxx-TestGenericGlyph3DFilter 1> 354/774 Test #354: vtkFiltersGenericCxx-TestGenericGlyph3DFilter ................................***Exception: Other 0.01 sec 1> Start 355: vtkFiltersGenericCxx-TestGenericProbeFilter 1> 355/774 Test #355: vtkFiltersGenericCxx-TestGenericProbeFilter ..................................***Exception: Other 0.01 sec 1> Start 356: vtkFiltersGenericCxx-otherCreation 1> 356/774 Test #356: vtkFiltersGenericCxx-otherCreation ...........................................***Exception: Other 0.01 sec 1> Start 357: vtkFiltersGenericCxx-UnitTestGenericGeometryFilter 1> 357/774 Test #357: vtkFiltersGenericCxx-UnitTestGenericGeometryFilter ...........................***Exception: Other 0.01 sec 1> Start 358: vtkFiltersGeometryCxx-TestExtractSurfaceNonLinearSubdivision 1> 358/774 Test #358: vtkFiltersGeometryCxx-TestExtractSurfaceNonLinearSubdivision .................***Exception: Other 0.01 sec 1> Start 359: vtkFiltersGeometryCxx-TestDataSetSurfaceFieldData 1> 359/774 Test #359: vtkFiltersGeometryCxx-TestDataSetSurfaceFieldData ............................***Exception: Other 0.01 sec 1> Start 360: vtkFiltersGeometryCxx-TestDataSetRegionSurfaceFilter 1> 360/774 Test #360: vtkFiltersGeometryCxx-TestDataSetRegionSurfaceFilter .........................***Exception: Other 0.01 sec 1> Start 361: vtkFiltersGeometryCxx-TestImageDataToUniformGrid 1> 361/774 Test #361: vtkFiltersGeometryCxx-TestImageDataToUniformGrid .............................***Exception: Other 0.01 sec 1> Start 362: vtkFiltersGeometryCxx-TestLinearToQuadraticCellsFilter 1> 362/774 Test #362: vtkFiltersGeometryCxx-TestLinearToQuadraticCellsFilter .......................***Exception: Other 0.01 sec 1> Start 363: vtkFiltersGeometryCxx-TestProjectSphereFilter 1> 363/774 Test #363: vtkFiltersGeometryCxx-TestProjectSphereFilter ................................***Exception: Other 0.01 sec 1> Start 364: vtkFiltersGeometryCxx-TestStructuredAMRNeighbor 1> 364/774 Test #364: vtkFiltersGeometryCxx-TestStructuredAMRNeighbor ..............................***Exception: Other 0.01 sec 1> Start 365: vtkFiltersGeometryCxx-TestUniformGridGhostDataGenerator 1> 365/774 Test #365: vtkFiltersGeometryCxx-TestUniformGridGhostDataGenerator ......................***Exception: Other 0.01 sec 1> Start 366: vtkFiltersGeometryCxx-TestUnstructuredGridGeometryFilter 1> 366/774 Test #366: vtkFiltersGeometryCxx-TestUnstructuredGridGeometryFilter .....................***Exception: Other 0.01 sec 1> Start 367: vtkFiltersGeometryCxx-TestGeometryFilterCellData 1> 367/774 Test #367: vtkFiltersGeometryCxx-TestGeometryFilterCellData .............................***Exception: Other 0.01 sec 1> Start 368: vtkFiltersGeometryCxx-TestStructuredAMRGridConnectivity 1> 368/774 Test #368: vtkFiltersGeometryCxx-TestStructuredAMRGridConnectivity ......................***Exception: Other 0.01 sec 1> Start 369: vtkFiltersGeometryCxx-TestStructuredGridConnectivity 1> 369/774 Test #369: vtkFiltersGeometryCxx-TestStructuredGridConnectivity .........................***Exception: Other 0.01 sec 1> Start 370: vtkFiltersGeometryCxx-TestStructuredGridGhostDataGenerator 1> 370/774 Test #370: vtkFiltersGeometryCxx-TestStructuredGridGhostDataGenerator ...................***Exception: Other 0.01 sec 1> Start 371: vtkFiltersGeometryCxx-UnitTestDataSetSurfaceFilter 1> 371/774 Test #371: vtkFiltersGeometryCxx-UnitTestDataSetSurfaceFilter ...........................***Exception: Other 0.01 sec 1> Start 372: vtkImagingStencil-HeaderTest 1> 372/774 Test #372: vtkImagingStencil-HeaderTest ................................................. Passed 0.12 sec 1> Start 373: vtkFiltersHybridCxx-TemporalStatistics 1> 373/774 Test #373: vtkFiltersHybridCxx-TemporalStatistics .......................................***Exception: Other 0.01 sec 1> Start 374: vtkFiltersHybridCxx-TestBSplineTransform 1> 374/774 Test #374: vtkFiltersHybridCxx-TestBSplineTransform .....................................***Exception: Other 0.01 sec 1> Start 375: vtkFiltersHybridCxx-TestDepthSortPolyData 1> 375/774 Test #375: vtkFiltersHybridCxx-TestDepthSortPolyData ....................................***Exception: Other 0.01 sec 1> Start 376: vtkFiltersHybridCxx-TestForceTime 1> 376/774 Test #376: vtkFiltersHybridCxx-TestForceTime ............................................***Exception: Other 0.01 sec 1> Start 377: vtkFiltersHybridCxx-TestPolyDataSilhouette 1> 377/774 Test #377: vtkFiltersHybridCxx-TestPolyDataSilhouette ...................................***Exception: Other 0.01 sec 1> Start 378: vtkFiltersHybridCxx-TestProcrustesAlignmentFilter 1> 378/774 Test #378: vtkFiltersHybridCxx-TestProcrustesAlignmentFilter ............................***Exception: Other 0.01 sec 1> Start 379: vtkFiltersHybridCxx-TestTemporalCacheSimple 1> 379/774 Test #379: vtkFiltersHybridCxx-TestTemporalCacheSimple ..................................***Exception: Other 0.01 sec 1> Start 380: vtkFiltersHybridCxx-TestTemporalCacheTemporal 1> 380/774 Test #380: vtkFiltersHybridCxx-TestTemporalCacheTemporal ................................***Exception: Other 0.01 sec 1> Start 381: vtkFiltersHybridCxx-TestTemporalFractal 1> 381/774 Test #381: vtkFiltersHybridCxx-TestTemporalFractal ......................................***Exception: Other 0.01 sec 1> Start 382: vtkFiltersImaging-HeaderTest 1> 382/774 Test #382: vtkFiltersImaging-HeaderTest ................................................. Passed 0.12 sec 1> Start 383: vtkFiltersModelingCxx-TestButterflyScalars 1> 383/774 Test #383: vtkFiltersModelingCxx-TestButterflyScalars ...................................***Exception: Other 0.01 sec 1> Start 384: vtkFiltersModelingCxx-TestNamedColorsIntegration 1> 384/774 Test #384: vtkFiltersModelingCxx-TestNamedColorsIntegration .............................***Exception: Other 0.01 sec 1> Start 385: vtkFiltersModelingCxx-TestPolyDataPointSampler 1> 385/774 Test #385: vtkFiltersModelingCxx-TestPolyDataPointSampler ...............................***Exception: Other 0.01 sec 1> Start 386: vtkFiltersModelingCxx-TestQuadRotationalExtrusion 1> 386/774 Test #386: vtkFiltersModelingCxx-TestQuadRotationalExtrusion ............................***Exception: Other 0.01 sec 1> Start 387: vtkFiltersModelingCxx-TestQuadRotationalExtrusionMultiBlock 1> 387/774 Test #387: vtkFiltersModelingCxx-TestQuadRotationalExtrusionMultiBlock ..................***Exception: Other 0.01 sec 1> Start 388: vtkFiltersModelingCxx-TestRotationalExtrusion 1> 388/774 Test #388: vtkFiltersModelingCxx-TestRotationalExtrusion ................................***Exception: Other 0.01 sec 1> Start 389: vtkFiltersModelingCxx-TestSelectEnclosedPoints 1> 389/774 Test #389: vtkFiltersModelingCxx-TestSelectEnclosedPoints ...............................***Exception: Other 0.01 sec 1> Start 390: vtkFiltersModelingCxx-TestVolumeOfRevolutionFilter 1> 390/774 Test #390: vtkFiltersModelingCxx-TestVolumeOfRevolutionFilter ...........................***Exception: Other 0.01 sec 1> Start 391: vtkParallelCore-HeaderTest 1> 391/774 Test #391: vtkParallelCore-HeaderTest ................................................... Passed 0.25 sec 1> Start 392: vtkFiltersParallel-HeaderTest 1> 392/774 Test #392: vtkFiltersParallel-HeaderTest ................................................ Passed 0.29 sec 1> Start 393: vtkParallelMPI-HeaderTest 1> 393/774 Test #393: vtkParallelMPI-HeaderTest .................................................... Passed 0.13 sec 1> Start 394: vtkFiltersParallelGeometry-HeaderTest 1> 394/774 Test #394: vtkFiltersParallelGeometry-HeaderTest ........................................ Passed 0.16 sec 1> Start 395: vtkIONetCDF-HeaderTest 1> 395/774 Test #395: vtkIONetCDF-HeaderTest ....................................................... Passed 0.16 sec 1> Start 396: vtkIOParallel-HeaderTest 1> 396/774 Test #396: vtkIOParallel-HeaderTest ..................................................... Passed 0.15 sec 1> Start 397: vtkIOParallelXML-HeaderTest 1> 397/774 Test #397: vtkIOParallelXML-HeaderTest .................................................. Passed 0.13 sec 1> Start 398: vtkFiltersParallelGeometryCxx-MPI-TestPStructuredGridConnectivity 1> 398/774 Test #398: vtkFiltersParallelGeometryCxx-MPI-TestPStructuredGridConnectivity ............***Exception: Other 0.03 sec 1> Start 399: vtkFiltersParallelGeometryCxx-MPI-TestPStructuredGridGhostDataGenerator 1> 399/774 Test #399: vtkFiltersParallelGeometryCxx-MPI-TestPStructuredGridGhostDataGenerator ......***Exception: Other 0.03 sec 1> Start 400: vtkFiltersParallelGeometryCxx-MPI-TestPUnstructuredGridGhostCellsGenerator 1> 400/774 Test #400: vtkFiltersParallelGeometryCxx-MPI-TestPUnstructuredGridGhostCellsGenerator ...***Exception: Other 0.03 sec 1> Start 401: vtkFiltersParallelGeometryCxx-MPI-TestPUniformGridGhostDataGenerator 1> 401/774 Test #401: vtkFiltersParallelGeometryCxx-MPI-TestPUniformGridGhostDataGenerator .........***Exception: Other 0.03 sec 1> Start 402: vtkFiltersParallelGeometryCxx-MPI-TestPUnstructuredGridConnectivity 1> 402/774 Test #402: vtkFiltersParallelGeometryCxx-MPI-TestPUnstructuredGridConnectivity ..........***Exception: Other 0.03 sec 1> Start 403: vtkFiltersParallelGeometryCxx-MPI-TestPUnstructuredGridGhostDataGenerator 1> 403/774 Test #403: vtkFiltersParallelGeometryCxx-MPI-TestPUnstructuredGridGhostDataGenerator ....***Exception: Other 0.03 sec 1> Start 404: vtkFiltersParallelImaging-HeaderTest 1> 404/774 Test #404: vtkFiltersParallelImaging-HeaderTest ......................................... Passed 0.11 sec 1> Start 405: vtkFiltersParallelMPI-HeaderTest 1> 405/774 Test #405: vtkFiltersParallelMPI-HeaderTest ............................................. Passed 0.13 sec 1> Start 406: vtkFiltersParallelMPICxx-MPI-TestImplicitConnectivity 1> 406/774 Test #406: vtkFiltersParallelMPICxx-MPI-TestImplicitConnectivity ........................***Exception: Other 0.03 sec 1> Start 407: vtkFiltersPoints-HeaderTest 1> 407/774 Test #407: vtkFiltersPoints-HeaderTest .................................................. Passed 0.33 sec 1> Start 408: vtkFiltersPointsCxx-UnitTestKernels 1> 408/774 Test #408: vtkFiltersPointsCxx-UnitTestKernels ..........................................***Exception: Other 0.01 sec 1> Start 409: vtkFiltersPointsCxx-TestSPHKernels 1> 409/774 Test #409: vtkFiltersPointsCxx-TestSPHKernels ...........................................***Exception: Other 0.01 sec 1> Start 410: vtkFiltersPointsCxx-PlotSPHKernels 1> 410/774 Test #410: vtkFiltersPointsCxx-PlotSPHKernels ...........................................***Exception: Other 0.01 sec 1> Start 411: vtkFiltersSMP-HeaderTest 1> 411/774 Test #411: vtkFiltersSMP-HeaderTest ..................................................... Passed 0.11 sec 1> Start 412: vtkFiltersSMPCxx-TestSMPContour 1> 412/774 Test #412: vtkFiltersSMPCxx-TestSMPContour ..............................................***Exception: Other 0.01 sec 1> Start 413: vtkFiltersSMPCxx-TestThreadedSynchronizedTemplates3D 1> 413/774 Test #413: vtkFiltersSMPCxx-TestThreadedSynchronizedTemplates3D .........................***Exception: Other 0.01 sec 1> Start 414: vtkFiltersSMPCxx-TestThreadedSynchronizedTemplatesCutter3D 1> 414/774 Test #414: vtkFiltersSMPCxx-TestThreadedSynchronizedTemplatesCutter3D ...................***Exception: Other 0.01 sec 1> Start 415: vtkFiltersSMPCxx-TestSMPTransform 1> 415/774 Test #415: vtkFiltersSMPCxx-TestSMPTransform ............................................***Exception: Other 0.01 sec 1> Start 416: vtkFiltersSMPCxx-TestSMPWarp 1> 416/774 Test #416: vtkFiltersSMPCxx-TestSMPWarp .................................................***Exception: Other 0.01 sec 1> Start 417: vtkFiltersSelection-HeaderTest 1> 417/774 Test #417: vtkFiltersSelection-HeaderTest ............................................... Passed 0.10 sec 1> Start 418: vtkFiltersSelectionCxx-TestLinearSelector2D 1> 418/774 Test #418: vtkFiltersSelectionCxx-TestLinearSelector2D ..................................***Exception: Other 0.01 sec 1> Start 419: vtkFiltersSelectionCxx-TestCellDistanceSelector2D 1> 419/774 Test #419: vtkFiltersSelectionCxx-TestCellDistanceSelector2D ............................***Exception: Other 0.01 sec 1> Start 420: vtkFiltersSelectionCxx-TestCellDistanceSelector3D 1> 420/774 Test #420: vtkFiltersSelectionCxx-TestCellDistanceSelector3D ............................***Exception: Other 0.01 sec 1> Start 421: vtkFiltersSelectionCxx-TestLinearSelector3D 1> 421/774 Test #421: vtkFiltersSelectionCxx-TestLinearSelector3D ..................................***Exception: Other 0.01 sec 1> Start 422: vtkFiltersSourcesCxx-TestArcSource 1> 422/774 Test #422: vtkFiltersSourcesCxx-TestArcSource ...........................................***Exception: Other 0.01 sec 1> Start 423: vtkFiltersSourcesCxx-TestConeSource 1> 423/774 Test #423: vtkFiltersSourcesCxx-TestConeSource ..........................................***Exception: Other 0.01 sec 1> Start 424: vtkFiltersSourcesCxx-TestCubeSource 1> 424/774 Test #424: vtkFiltersSourcesCxx-TestCubeSource ..........................................***Exception: Other 0.01 sec 1> Start 425: vtkFiltersSourcesCxx-TestCylinderSource 1> 425/774 Test #425: vtkFiltersSourcesCxx-TestCylinderSource ......................................***Exception: Other 0.01 sec 1> Start 426: vtkFiltersSourcesCxx-TestDiskSource 1> 426/774 Test #426: vtkFiltersSourcesCxx-TestDiskSource ..........................................***Exception: Other 0.01 sec 1> Start 427: vtkFiltersSourcesCxx-TestEllipticalButtonSource 1> 427/774 Test #427: vtkFiltersSourcesCxx-TestEllipticalButtonSource ..............................***Exception: Other 0.01 sec 1> Start 428: vtkFiltersSourcesCxx-TestEllipseArcSource 1> 428/774 Test #428: vtkFiltersSourcesCxx-TestEllipseArcSource ....................................***Exception: Other 0.01 sec 1> Start 429: vtkFiltersSourcesCxx-TestFrustumSource 1> 429/774 Test #429: vtkFiltersSourcesCxx-TestFrustumSource .......................................***Exception: Other 0.01 sec 1> Start 430: vtkFiltersSourcesCxx-TestGlyphSource2D 1> 430/774 Test #430: vtkFiltersSourcesCxx-TestGlyphSource2D .......................................***Exception: Other 0.01 sec 1> Start 431: vtkFiltersSourcesCxx-TestLineSource 1> 431/774 Test #431: vtkFiltersSourcesCxx-TestLineSource ..........................................***Exception: Other 0.01 sec 1> Start 432: vtkFiltersSourcesCxx-TestMultiBlock 1> 432/774 Test #432: vtkFiltersSourcesCxx-TestMultiBlock ..........................................***Exception: Other 0.01 sec 1> Start 433: vtkFiltersSourcesCxx-TestOutlineCornerSource 1> 433/774 Test #433: vtkFiltersSourcesCxx-TestOutlineCornerSource .................................***Exception: Other 0.01 sec 1> Start 434: vtkFiltersSourcesCxx-TestOutlineSource 1> 434/774 Test #434: vtkFiltersSourcesCxx-TestOutlineSource .......................................***Exception: Other 0.01 sec 1> Start 435: vtkFiltersSourcesCxx-TestParametricFunctionSource 1> 435/774 Test #435: vtkFiltersSourcesCxx-TestParametricFunctionSource ............................***Exception: Other 0.01 sec 1> Start 436: vtkFiltersSourcesCxx-TestPlaneSource 1> 436/774 Test #436: vtkFiltersSourcesCxx-TestPlaneSource .........................................***Exception: Other 0.01 sec 1> Start 437: vtkFiltersSourcesCxx-TestPlatonicSolidSource 1> 437/774 Test #437: vtkFiltersSourcesCxx-TestPlatonicSolidSource .................................***Exception: Other 0.01 sec 1> Start 438: vtkFiltersSourcesCxx-TestPointSource 1> 438/774 Test #438: vtkFiltersSourcesCxx-TestPointSource .........................................***Exception: Other 0.01 sec 1> Start 439: vtkFiltersSourcesCxx-TestPolyLineSource 1> 439/774 Test #439: vtkFiltersSourcesCxx-TestPolyLineSource ......................................***Exception: Other 0.01 sec 1> Start 440: vtkFiltersSourcesCxx-TestRectangularButtonSource 1> 440/774 Test #440: vtkFiltersSourcesCxx-TestRectangularButtonSource .............................***Exception: Other 0.01 sec 1> Start 441: vtkFiltersSourcesCxx-TestRegularPolygonSource 1> 441/774 Test #441: vtkFiltersSourcesCxx-TestRegularPolygonSource ................................***Exception: Other 0.01 sec 1> Start 442: vtkFiltersSourcesCxx-TestSphereSource 1> 442/774 Test #442: vtkFiltersSourcesCxx-TestSphereSource ........................................***Exception: Other 0.01 sec 1> Start 443: vtkFiltersSourcesCxx-TestSuperquadricSource 1> 443/774 Test #443: vtkFiltersSourcesCxx-TestSuperquadricSource ..................................***Exception: Other 0.01 sec 1> Start 444: vtkFiltersSourcesCxx-TestTessellatedBoxSource 1> 444/774 Test #444: vtkFiltersSourcesCxx-TestTessellatedBoxSource ................................***Exception: Other 0.01 sec 1> Start 445: vtkFiltersSourcesCxx-TestTextSource 1> 445/774 Test #445: vtkFiltersSourcesCxx-TestTextSource ..........................................***Exception: Other 0.01 sec 1> Start 446: vtkFiltersSourcesCxx-TestTexturedSphereSource 1> 446/774 Test #446: vtkFiltersSourcesCxx-TestTexturedSphereSource ................................***Exception: Other 0.01 sec 1> Start 447: vtkFiltersSourcesCxx-TestGlyphSource2DResolution 1> 447/774 Test #447: vtkFiltersSourcesCxx-TestGlyphSource2DResolution .............................***Exception: Other 0.01 sec 1> Start 448: vtkFiltersStatisticsCxx-TestAutoCorrelativeStatistics 1> 448/774 Test #448: vtkFiltersStatisticsCxx-TestAutoCorrelativeStatistics ........................***Exception: Other 0.01 sec 1> Start 449: vtkFiltersStatisticsCxx-TestComputeQuartiles 1> 449/774 Test #449: vtkFiltersStatisticsCxx-TestComputeQuartiles .................................***Exception: Other 0.01 sec 1> Start 450: vtkFiltersStatisticsCxx-TestContingencyStatistics 1> 450/774 Test #450: vtkFiltersStatisticsCxx-TestContingencyStatistics ............................***Exception: Other 0.01 sec 1> Start 451: vtkFiltersStatisticsCxx-TestCorrelativeStatistics 1> 451/774 Test #451: vtkFiltersStatisticsCxx-TestCorrelativeStatistics ............................***Exception: Other 0.01 sec 1> Start 452: vtkFiltersStatisticsCxx-TestDescriptiveStatistics 1> 452/774 Test #452: vtkFiltersStatisticsCxx-TestDescriptiveStatistics ............................***Exception: Other 0.01 sec 1> Start 453: vtkFiltersStatisticsCxx-TestHighestDensityRegionsStatistics 1> 453/774 Test #453: vtkFiltersStatisticsCxx-TestHighestDensityRegionsStatistics ..................***Exception: Other 0.01 sec 1> Start 454: vtkFiltersStatisticsCxx-TestExtractFunctionalBagPlot 1> 454/774 Test #454: vtkFiltersStatisticsCxx-TestExtractFunctionalBagPlot .........................***Exception: Other 0.01 sec 1> Start 455: vtkFiltersStatisticsCxx-TestKMeansStatistics 1> 455/774 Test #455: vtkFiltersStatisticsCxx-TestKMeansStatistics .................................***Exception: Other 0.01 sec 1> Start 456: vtkFiltersStatisticsCxx-TestMultiCorrelativeStatistics 1> 456/774 Test #456: vtkFiltersStatisticsCxx-TestMultiCorrelativeStatistics .......................***Exception: Other 0.01 sec 1> Start 457: vtkFiltersStatisticsCxx-TestOrderStatistics 1> 457/774 Test #457: vtkFiltersStatisticsCxx-TestOrderStatistics ..................................***Exception: Other 0.01 sec 1> Start 458: vtkFiltersStatisticsCxx-TestPCAStatistics 1> 458/774 Test #458: vtkFiltersStatisticsCxx-TestPCAStatistics ....................................***Exception: Other 0.01 sec 1> Start 459: vtkFiltersTexture-HeaderTest 1> 459/774 Test #459: vtkFiltersTexture-HeaderTest ................................................. Passed 0.12 sec 1> Start 460: vtkFiltersVerdict-HeaderTest 1> 460/774 Test #460: vtkFiltersVerdict-HeaderTest ................................................. Passed 0.14 sec 1> Start 461: vtkFiltersVerdictCxx-MeshQuality 1> 461/774 Test #461: vtkFiltersVerdictCxx-MeshQuality .............................................***Exception: Other 0.01 sec 1> Start 462: vtkInfovisLayout-HeaderTest 1> 462/774 Test #462: vtkInfovisLayout-HeaderTest .................................................. Passed 0.40 sec 1> Start 463: vtkGeovisCore-HeaderTest 1> 463/774 Test #463: vtkGeovisCore-HeaderTest ..................................................... Passed 0.28 sec 1> Start 464: vtkViewsInfovis-HeaderTest 1> 464/774 Test #464: vtkViewsInfovis-HeaderTest ................................................... Passed 0.35 sec 1> Start 465: vtkViewsGeovis-HeaderTest 1> 465/774 Test #465: vtkViewsGeovis-HeaderTest .................................................... Passed 0.09 sec 1> Start 466: vtkGeovisCoreCxx-TestGeoAssignCoordinates 1> 466/774 Test #466: vtkGeovisCoreCxx-TestGeoAssignCoordinates ....................................***Exception: Other 0.01 sec 1> Start 467: vtkGeovisCoreCxx-TestGeoGraticule 1> 467/774 Test #467: vtkGeovisCoreCxx-TestGeoGraticule ............................................***Exception: Other 0.01 sec 1> Start 468: vtkGeovisCoreCxx-TestGeoProjection 1> 468/774 Test #468: vtkGeovisCoreCxx-TestGeoProjection ...........................................***Exception: Other 0.01 sec 1> Start 469: vtkGeovisCoreCxx-TestGlobeSource 1> 469/774 Test #469: vtkGeovisCoreCxx-TestGlobeSource .............................................***Exception: Other 0.01 sec 1> Start 470: vtkGeovisCoreCxx-TestCoincidentGeoGraphRepresentation2D 1> 470/774 Test #470: vtkGeovisCoreCxx-TestCoincidentGeoGraphRepresentation2D ......................***Exception: Other 0.01 sec 1> Start 471: vtkGeovisCoreCxx-TestLabeledGeoView2D 1> 471/774 Test #471: vtkGeovisCoreCxx-TestLabeledGeoView2D ........................................***Exception: Other 0.01 sec 1> Start 472: vtkIOCoreCxx-TestArrayDataWriter 1> 472/774 Test #472: vtkIOCoreCxx-TestArrayDataWriter .............................................***Exception: Other 0.01 sec 1> Start 473: vtkIOCoreCxx-TestArrayDenormalized 1> 473/774 Test #473: vtkIOCoreCxx-TestArrayDenormalized ...........................................***Exception: Other 0.01 sec 1> Start 474: vtkIOCoreCxx-TestArraySerialization 1> 474/774 Test #474: vtkIOCoreCxx-TestArraySerialization ..........................................***Exception: Other 0.01 sec 1> Start 475: vtkIOCoreCxx-TestCompress 1> 475/774 Test #475: vtkIOCoreCxx-TestCompress ....................................................***Exception: Other 0.01 sec 1> Start 476: vtkIOExport-HeaderTest 1> 476/774 Test #476: vtkIOExport-HeaderTest ....................................................... Passed 0.18 sec 1> Start 477: vtkInteractionImage-HeaderTest 1> 477/774 Test #477: vtkInteractionImage-HeaderTest ............................................... Passed 0.11 sec 1> Start 478: vtkIOExportCxx-X3DTest 1> 478/774 Test #478: vtkIOExportCxx-X3DTest .......................................................***Exception: Other 0.01 sec 1> Start 479: vtkIOExportCxx-TestRIBExporter 1> 479/774 Test #479: vtkIOExportCxx-TestRIBExporter ...............................................***Exception: Other 0.01 sec 1> Start 480: vtkIOExportCxx-UnitTestRIB 1> 480/774 Test #480: vtkIOExportCxx-UnitTestRIB ...................................................***Exception: Other 0.01 sec 1> Start 481: vtkIOImageCxx-TestNrrdReader 1> 481/774 Test #481: vtkIOImageCxx-TestNrrdReader .................................................***Exception: Other 0.01 sec 1> Start 482: vtkIOImageCxx-TestNIFTIReaderWriter 1> 482/774 Test #482: vtkIOImageCxx-TestNIFTIReaderWriter ..........................................***Exception: Other 0.01 sec 1> Start 483: vtkIOImageCxx-TestNIFTIReaderAnalyze 1> 483/774 Test #483: vtkIOImageCxx-TestNIFTIReaderAnalyze .........................................***Exception: Other 0.01 sec 1> Start 484: vtkIOImageCxx-TestNIFTI2 1> 484/774 Test #484: vtkIOImageCxx-TestNIFTI2 .....................................................***Exception: Other 0.01 sec 1> Start 485: vtkIOImageCxx-TestDataObjectIO 1> 485/774 Test #485: vtkIOImageCxx-TestDataObjectIO ...............................................***Exception: Other 0.01 sec 1> Start 486: vtkIOImageCxx-TestMetaIO 1> 486/774 Test #486: vtkIOImageCxx-TestMetaIO .....................................................***Exception: Other 0.01 sec 1> Start 487: vtkIOImageCxx-TestImportExport 1> 487/774 Test #487: vtkIOImageCxx-TestImportExport ...............................................***Exception: Other 0.01 sec 1> Start 488: vtkIOImageCxx-TestTIFFReaderMultipleMulti 1> 488/774 Test #488: vtkIOImageCxx-TestTIFFReaderMultipleMulti ....................................***Exception: Other 0.01 sec 1> Start 489: vtkIOImageCxx-TestTIFFReaderMultipleNormal 1> 489/774 Test #489: vtkIOImageCxx-TestTIFFReaderMultipleNormal ...................................***Exception: Other 0.01 sec 1> Start 490: vtkIOImageCxx-TestTIFFReaderMultipleTiled 1> 490/774 Test #490: vtkIOImageCxx-TestTIFFReaderMultipleTiled ....................................***Exception: Other 0.01 sec 1> Start 491: vtkIOImageCxx-TestTIFFReaderMulti 1> 491/774 Test #491: vtkIOImageCxx-TestTIFFReaderMulti ............................................***Exception: Other 0.01 sec 1> Start 492: vtkIOImageCxx-TestTIFFReaderTiled 1> 492/774 Test #492: vtkIOImageCxx-TestTIFFReaderTiled ............................................***Exception: Other 0.01 sec 1> Start 493: vtkIOImageCxx-TestTIFFReaderTiledRGB 1> 493/774 Test #493: vtkIOImageCxx-TestTIFFReaderTiledRGB .........................................***Exception: Other 0.01 sec 1> Start 494: vtkIOImageCxx-TestCompressedTIFFReader 1> 494/774 Test #494: vtkIOImageCxx-TestCompressedTIFFReader .......................................***Exception: Other 0.01 sec 1> Start 495: vtkIOImport-HeaderTest 1> 495/774 Test #495: vtkIOImport-HeaderTest ....................................................... Passed 0.11 sec 1> Start 496: vtkIOImportCxx-TestOBJImporter 1> 496/774 Test #496: vtkIOImportCxx-TestOBJImporter ...............................................***Exception: Other 0.01 sec 1> Start 497: vtkIOImportCxx-TestVRMLNormals 1> 497/774 Test #497: vtkIOImportCxx-TestVRMLNormals ...............................................***Exception: Other 0.01 sec 1> Start 498: vtkIOImportCxx-TestVRMLImporter 1> 498/774 Test #498: vtkIOImportCxx-TestVRMLImporter ..............................................***Exception: Other 0.01 sec 1> Start 499: vtkIOImportCxx-OBJImport-MixedOrder1 1> 499/774 Test #499: vtkIOImportCxx-OBJImport-MixedOrder1 .........................................***Exception: Other 0.01 sec 1> Start 500: vtkIOImportCxx-OBJImport-NoMTL 1> 500/774 Test #500: vtkIOImportCxx-OBJImport-NoMTL ...............................................***Exception: Other 0.01 sec 1> Start 501: vtkIOImportCxx-OBJImport-SolidAndTextured 1> 501/774 Test #501: vtkIOImportCxx-OBJImport-SolidAndTextured ....................................***Exception: Other 0.01 sec 1> Start 502: vtkIOImportCxx-OBJImport-MTLwithoutTextureFile 1> 502/774 Test #502: vtkIOImportCxx-OBJImport-MTLwithoutTextureFile ...............................***Exception: Other 0.01 sec 1> Start 503: vtkIOInfovisCxx-TestBiomTableReader 1> 503/774 Test #503: vtkIOInfovisCxx-TestBiomTableReader ..........................................***Exception: Other 0.01 sec 1> Start 504: vtkIOInfovisCxx-TestDIMACSGraphReader 1> 504/774 Test #504: vtkIOInfovisCxx-TestDIMACSGraphReader ........................................***Exception: Other 0.01 sec 1> Start 505: vtkIOInfovisCxx-TestDataObjectIO 1> 505/774 Test #505: vtkIOInfovisCxx-TestDataObjectIO .............................................***Exception: Other 0.01 sec 1> Start 506: vtkIOInfovisCxx-TestISIReader 1> 506/774 Test #506: vtkIOInfovisCxx-TestISIReader ................................................***Exception: Other 0.01 sec 1> Start 507: vtkIOInfovisCxx-TestFixedWidthTextReader 1> 507/774 Test #507: vtkIOInfovisCxx-TestFixedWidthTextReader .....................................***Exception: Other 0.01 sec 1> Start 508: vtkIOInfovisCxx-TestNewickTreeReader 1> 508/774 Test #508: vtkIOInfovisCxx-TestNewickTreeReader .........................................***Exception: Other 0.01 sec 1> Start 509: vtkIOInfovisCxx-TestNewickTreeWriter 1> 509/774 Test #509: vtkIOInfovisCxx-TestNewickTreeWriter .........................................***Exception: Other 0.01 sec 1> Start 510: vtkIOInfovisCxx-TestMultiNewickTreeReader 1> 510/774 Test #510: vtkIOInfovisCxx-TestMultiNewickTreeReader ....................................***Exception: Other 0.01 sec 1> Start 511: vtkIOInfovisCxx-TestPhyloXMLTreeReadWrite 1> 511/774 Test #511: vtkIOInfovisCxx-TestPhyloXMLTreeReadWrite ....................................***Exception: Other 0.01 sec 1> Start 512: vtkIOInfovisCxx-TestRISReader 1> 512/774 Test #512: vtkIOInfovisCxx-TestRISReader ................................................***Exception: Other 0.01 sec 1> Start 513: vtkIOInfovisCxx-TestTulipReaderProperties 1> 513/774 Test #513: vtkIOInfovisCxx-TestTulipReaderProperties ....................................***Exception: Other 0.01 sec 1> Start 514: vtkIOInfovisCxx-TestDelimitedTextReader2 1> 514/774 Test #514: vtkIOInfovisCxx-TestDelimitedTextReader2 .....................................***Exception: Other 0.01 sec 1> Start 515: vtkIOMovie-HeaderTest 1> 515/774 Test #515: vtkIOMovie-HeaderTest ........................................................ Passed 0.10 sec 1> Start 516: vtkIOMovieCxx-TestAVIWriter 1> 516/774 Test #516: vtkIOMovieCxx-TestAVIWriter ..................................................***Exception: Other 0.01 sec 1> Start 517: vtkIOMovieCxx-TestOggTheoraWriter 1> 517/774 Test #517: vtkIOMovieCxx-TestOggTheoraWriter ............................................***Exception: Other 0.01 sec 1> Start 518: vtkIOPLY-HeaderTest 1> 518/774 Test #518: vtkIOPLY-HeaderTest .......................................................... Passed 0.09 sec 1> Start 519: vtkIOPLYCxx-TestPLYReader 1> 519/774 Test #519: vtkIOPLYCxx-TestPLYReader ....................................................***Exception: Other 0.01 sec 1> Start 520: vtkIOPLYCxx-TestPLYReaderTextureUV 1> 520/774 Test #520: vtkIOPLYCxx-TestPLYReaderTextureUV ...........................................***Exception: Other 0.01 sec 1> Start 521: vtkIOPLYCxx-TestPLYWriter 1> 521/774 Test #521: vtkIOPLYCxx-TestPLYWriter ....................................................***Exception: Other 0.01 sec 1> Start 522: vtkRenderingParallel-HeaderTest 1> 522/774 Test #522: vtkRenderingParallel-HeaderTest .............................................. Passed 0.18 sec 1> Start 523: vtkIOParallelCxx-TestPOpenFOAMReader 1> 523/774 Test #523: vtkIOParallelCxx-TestPOpenFOAMReader .........................................***Exception: Other 0.01 sec 1> Start 524: vtkIOVideo-HeaderTest 1> 524/774 Test #524: vtkIOVideo-HeaderTest ........................................................ Passed 0.11 sec 1> Start 525: vtkImagingStatistics-HeaderTest 1> 525/774 Test #525: vtkImagingStatistics-HeaderTest .............................................. Passed 0.10 sec 1> Start 526: vtkRenderingImage-HeaderTest 1> 526/774 Test #526: vtkRenderingImage-HeaderTest ................................................. Passed 0.11 sec 1> Start 527: vtkImagingCoreCxx-FastSplatter 1> 527/774 Test #527: vtkImagingCoreCxx-FastSplatter ...............................................***Exception: Other 0.01 sec 1> Start 528: vtkImagingCoreCxx-ImageAccumulate 1> 528/774 Test #528: vtkImagingCoreCxx-ImageAccumulate ............................................***Exception: Other 0.01 sec 1> Start 529: vtkImagingCoreCxx-ImageAccumulateLarge 1> 529/774 Test #529: vtkImagingCoreCxx-ImageAccumulateLarge .......................................***Exception: Other 0.01 sec 1> Start 530: vtkImagingCoreCxx-ImageAutoRange 1> 530/774 Test #530: vtkImagingCoreCxx-ImageAutoRange .............................................***Exception: Other 0.01 sec 1> Start 531: vtkImagingCoreCxx-ImageBSplineCoefficients 1> 531/774 Test #531: vtkImagingCoreCxx-ImageBSplineCoefficients ...................................***Exception: Other 0.01 sec 1> Start 532: vtkImagingCoreCxx-ImageHistogram 1> 532/774 Test #532: vtkImagingCoreCxx-ImageHistogram .............................................***Exception: Other 0.01 sec 1> Start 533: vtkImagingCoreCxx-ImageHistogramStatistics 1> 533/774 Test #533: vtkImagingCoreCxx-ImageHistogramStatistics ...................................***Exception: Other 0.01 sec 1> Start 534: vtkImagingCoreCxx-ImageResize 1> 534/774 Test #534: vtkImagingCoreCxx-ImageResize ................................................***Exception: Other 0.01 sec 1> Start 535: vtkImagingCoreCxx-ImageResize3D 1> 535/774 Test #535: vtkImagingCoreCxx-ImageResize3D ..............................................***Exception: Other 0.01 sec 1> Start 536: vtkImagingCoreCxx-ImageResizeCropping 1> 536/774 Test #536: vtkImagingCoreCxx-ImageResizeCropping ........................................***Exception: Other 0.01 sec 1> Start 537: vtkImagingCoreCxx-ImageReslice 1> 537/774 Test #537: vtkImagingCoreCxx-ImageReslice ...............................................***Exception: Other 0.01 sec 1> Start 538: vtkImagingCoreCxx-ImageWeightedSum 1> 538/774 Test #538: vtkImagingCoreCxx-ImageWeightedSum ...........................................***Exception: Other 0.01 sec 1> Start 539: vtkImagingCoreCxx-ImportExport 1> 539/774 Test #539: vtkImagingCoreCxx-ImportExport ...............................................***Exception: Other 0.01 sec 1> Start 540: vtkImagingCoreCxx-TestBSplineWarp 1> 540/774 Test #540: vtkImagingCoreCxx-TestBSplineWarp ............................................***Exception: Other 0.01 sec 1> Start 541: vtkImagingCoreCxx-TestImageStencilDataMethods 1> 541/774 Test #541: vtkImagingCoreCxx-TestImageStencilDataMethods ................................***Exception: Other 0.01 sec 1> Start 542: vtkImagingCoreCxx-TestImageStencilIterator 1> 542/774 Test #542: vtkImagingCoreCxx-TestImageStencilIterator ...................................***Exception: Other 0.01 sec 1> Start 543: vtkImagingCoreCxx-TestStencilWithLasso 1> 543/774 Test #543: vtkImagingCoreCxx-TestStencilWithLasso .......................................***Exception: Other 0.01 sec 1> Start 544: vtkImagingCoreCxx-TestStencilWithPolyDataContour 1> 544/774 Test #544: vtkImagingCoreCxx-TestStencilWithPolyDataContour .............................***Exception: Other 0.01 sec 1> Start 545: vtkImagingCoreCxx-TestStencilWithPolyDataSurface 1> 545/774 Test #545: vtkImagingCoreCxx-TestStencilWithPolyDataSurface .............................***Exception: Other 0.01 sec 1> Start 546: vtkImagingCoreCxx-TestUpdateExtentReset 1> 546/774 Test #546: vtkImagingCoreCxx-TestUpdateExtentReset ......................................***Exception: Other 0.01 sec 1> Start 547: vtkImagingCoreCxx-AddStencilData 1> 547/774 Test #547: vtkImagingCoreCxx-AddStencilData .............................................***Exception: Other 0.01 sec 1> Start 548: vtkImagingCoreCxx-SubtractStencilData 1> 548/774 Test #548: vtkImagingCoreCxx-SubtractStencilData ........................................***Exception: Other 0.01 sec 1> Start 549: vtkImagingCoreCxx-ClipStencilData 1> 549/774 Test #549: vtkImagingCoreCxx-ClipStencilData ............................................***Exception: Other 0.01 sec 1> Start 550: vtkImagingHybridCxx-TestImageToPoints 1> 550/774 Test #550: vtkImagingHybridCxx-TestImageToPoints ........................................***Exception: Other 0.01 sec 1> Start 551: vtkImagingHybridCxx-TestSampleFunction 1> 551/774 Test #551: vtkImagingHybridCxx-TestSampleFunction .......................................***Exception: Other 0.01 sec 1> Start 552: vtkImagingMorphological-HeaderTest 1> 552/774 Test #552: vtkImagingMorphological-HeaderTest ........................................... Passed 0.15 sec 1> Start 553: vtkImagingMorphologicalCxx-TestImageThresholdConnectivity 1> 553/774 Test #553: vtkImagingMorphologicalCxx-TestImageThresholdConnectivity ....................***Exception: Other 0.01 sec 1> Start 554: vtkImagingMorphologicalCxx-TestImageConnectivityFilter 1> 554/774 Test #554: vtkImagingMorphologicalCxx-TestImageConnectivityFilter .......................***Exception: Other 0.01 sec 1> Start 555: vtkImagingOpenGL2-HeaderTest 1> 555/774 Test #555: vtkImagingOpenGL2-HeaderTest ................................................. Passed 0.08 sec 1> Start 556: vtkImagingOpenGL2Cxx-TestOpenGLImageGradient 1> 556/774 Test #556: vtkImagingOpenGL2Cxx-TestOpenGLImageGradient .................................***Exception: Other 0.01 sec 1> Start 557: vtkInfovisCoreCxx-TestStringToNumeric 1> 557/774 Test #557: vtkInfovisCoreCxx-TestStringToNumeric ........................................***Exception: Other 0.01 sec 1> Start 558: vtkInfovisCoreCxx-TestMergeTables 1> 558/774 Test #558: vtkInfovisCoreCxx-TestMergeTables ............................................***Exception: Other 0.01 sec 1> Start 559: vtkInfovisCoreCxx-ArrayDotProductSimilarity 1> 559/774 Test #559: vtkInfovisCoreCxx-ArrayDotProductSimilarity ..................................***Exception: Other 0.01 sec 1> Start 560: vtkInfovisCoreCxx-ArraySparseArrayToTable 1> 560/774 Test #560: vtkInfovisCoreCxx-ArraySparseArrayToTable ....................................***Exception: Other 0.01 sec 1> Start 561: vtkInfovisCoreCxx-ArrayTableToSparseArray 1> 561/774 Test #561: vtkInfovisCoreCxx-ArrayTableToSparseArray ....................................***Exception: Other 0.01 sec 1> Start 562: vtkInfovisCoreCxx-ArrayToTable 1> 562/774 Test #562: vtkInfovisCoreCxx-ArrayToTable ...............................................***Exception: Other 0.01 sec 1> Start 563: vtkInfovisCoreCxx-ArrayTransposeMatrix 1> 563/774 Test #563: vtkInfovisCoreCxx-ArrayTransposeMatrix .......................................***Exception: Other 0.01 sec 1> Start 564: vtkInfovisCoreCxx-TestArrayNorm 1> 564/774 Test #564: vtkInfovisCoreCxx-TestArrayNorm ..............................................***Exception: Other 0.01 sec 1> Start 565: vtkInfovisCoreCxx-TestCollapseVerticesByArray 1> 565/774 Test #565: vtkInfovisCoreCxx-TestCollapseVerticesByArray ................................***Exception: Other 0.01 sec 1> Start 566: vtkInfovisCoreCxx-TestDataObjectToTable 1> 566/774 Test #566: vtkInfovisCoreCxx-TestDataObjectToTable ......................................***Exception: Other 0.01 sec 1> Start 567: vtkInfovisCoreCxx-TestExtractSelectedTree 1> 567/774 Test #567: vtkInfovisCoreCxx-TestExtractSelectedTree ....................................***Exception: Other 0.01 sec 1> Start 568: vtkInfovisCoreCxx-TestExtractSelectedGraph 1> 568/774 Test #568: vtkInfovisCoreCxx-TestExtractSelectedGraph ...................................***Exception: Other 0.01 sec 1> Start 569: vtkInfovisCoreCxx-TestGraphAlgorithms 1> 569/774 Test #569: vtkInfovisCoreCxx-TestGraphAlgorithms ........................................***Exception: Other 0.01 sec 1> Start 570: vtkInfovisCoreCxx-TestMergeGraphs 1> 570/774 Test #570: vtkInfovisCoreCxx-TestMergeGraphs ............................................***Exception: Other 0.01 sec 1> Start 571: vtkInfovisCoreCxx-TestPruneTreeFilter 1> 571/774 Test #571: vtkInfovisCoreCxx-TestPruneTreeFilter ........................................***Exception: Other 0.01 sec 1> Start 572: vtkInfovisCoreCxx-TestRandomGraphSource 1> 572/774 Test #572: vtkInfovisCoreCxx-TestRandomGraphSource ......................................***Exception: Other 0.01 sec 1> Start 573: vtkInfovisCoreCxx-TestReduceTable 1> 573/774 Test #573: vtkInfovisCoreCxx-TestReduceTable ............................................***Exception: Other 0.01 sec 1> Start 574: vtkInfovisCoreCxx-TestRemoveIsolatedVertices 1> 574/774 Test #574: vtkInfovisCoreCxx-TestRemoveIsolatedVertices .................................***Exception: Other 0.01 sec 1> Start 575: vtkInfovisCoreCxx-TestStreamGraph 1> 575/774 Test #575: vtkInfovisCoreCxx-TestStreamGraph ............................................***Exception: Other 0.01 sec 1> Start 576: vtkInfovisCoreCxx-TestTableToArray 1> 576/774 Test #576: vtkInfovisCoreCxx-TestTableToArray ...........................................***Exception: Other 0.01 sec 1> Start 577: vtkInfovisCoreCxx-TestThresholdTable 1> 577/774 Test #577: vtkInfovisCoreCxx-TestThresholdTable .........................................***Exception: Other 0.01 sec 1> Start 578: vtkInfovisCoreCxx-TestTreeDifferenceFilter 1> 578/774 Test #578: vtkInfovisCoreCxx-TestTreeDifferenceFilter ...................................***Exception: Other 0.01 sec 1> Start 579: vtkInfovisLayoutCxx-TestChacoGraphReader 1> 579/774 Test #579: vtkInfovisLayoutCxx-TestChacoGraphReader .....................................***Exception: Other 0.01 sec 1> Start 580: vtkInfovisLayoutCxx-TestCirclePackLayoutStrategy 1> 580/774 Test #580: vtkInfovisLayoutCxx-TestCirclePackLayoutStrategy .............................***Exception: Other 0.01 sec 1> Start 581: vtkInfovisLayoutCxx-TestGraphLayoutStrategy 1> 581/774 Test #581: vtkInfovisLayoutCxx-TestGraphLayoutStrategy ..................................***Exception: Other 0.01 sec 1> Start 582: vtkInfovisLayoutCxx-TestIncrementalForceLayout 1> 582/774 Test #582: vtkInfovisLayoutCxx-TestIncrementalForceLayout ...............................***Exception: Other 0.01 sec 1> Start 583: vtkInfovisLayoutCxx-TestTreeMapLayoutStrategy 1> 583/774 Test #583: vtkInfovisLayoutCxx-TestTreeMapLayoutStrategy ................................***Exception: Other 0.01 sec 1> Start 584: vtkParallelCoreCxx-TestFieldDataSerialization 1> 584/774 Test #584: vtkParallelCoreCxx-TestFieldDataSerialization ................................***Exception: Other 0.01 sec 1> Start 585: vtkParallelCore-TestSocketCommunicator 1> 585/774 Test #585: vtkParallelCore-TestSocketCommunicator .......................................***Failed 0.24 sec 1> Start 586: vtkParallelMPICxx-MPI-TestPProbe 1> 586/774 Test #586: vtkParallelMPICxx-MPI-TestPProbe .............................................***Exception: Other 0.04 sec 1> Start 587: vtkParallelMPICxx-MPI-GenericCommunicator 1> 587/774 Test #587: vtkParallelMPICxx-MPI-GenericCommunicator ....................................***Exception: Other 0.03 sec 1> Start 588: vtkParallelMPICxx-MPI-MPIController 1> 588/774 Test #588: vtkParallelMPICxx-MPI-MPIController ..........................................***Exception: Other 0.03 sec 1> Start 589: vtkParallelMPICxx-MPI-PDirectory 1> 589/774 Test #589: vtkParallelMPICxx-MPI-PDirectory .............................................***Exception: Other 0.03 sec 1> Start 590: vtkParallelMPICxx-MPI-PSystemTools 1> 590/774 Test #590: vtkParallelMPICxx-MPI-PSystemTools ...........................................***Exception: Other 0.03 sec 1> Start 591: vtkParallelMPICxx-MPI-TestNonBlockingCommunication 1> 591/774 Test #591: vtkParallelMPICxx-MPI-TestNonBlockingCommunication ...........................***Exception: Other 0.03 sec 1> Start 592: vtkParallelMPICxx-MPI-TestProcess 1> 592/774 Test #592: vtkParallelMPICxx-MPI-TestProcess ............................................***Exception: Other 0.03 sec 1> Start 593: vtkRenderingLOD-HeaderTest 1> 593/774 Test #593: vtkRenderingLOD-HeaderTest ................................................... Passed 0.10 sec 1> Start 594: vtkRenderingAnnotationCxx-TestAxisActor 1> 594/774 Test #594: vtkRenderingAnnotationCxx-TestAxisActor ......................................***Exception: Other 0.01 sec 1> Start 595: vtkRenderingAnnotationCxx-TestAxisActor2D 1> 595/774 Test #595: vtkRenderingAnnotationCxx-TestAxisActor2D ....................................***Exception: Other 0.01 sec 1> Start 596: vtkRenderingAnnotationCxx-TestAxisActor3D 1> 596/774 Test #596: vtkRenderingAnnotationCxx-TestAxisActor3D ....................................***Exception: Other 0.01 sec 1> Start 597: vtkRenderingAnnotationCxx-TestAxisActorText3D 1> 597/774 Test #597: vtkRenderingAnnotationCxx-TestAxisActorText3D ................................***Exception: Other 0.01 sec 1> Start 598: vtkRenderingAnnotationCxx-TestBarChartActor 1> 598/774 Test #598: vtkRenderingAnnotationCxx-TestBarChartActor ..................................***Exception: Other 0.01 sec 1> Start 599: vtkRenderingAnnotationCxx-TestCaptionActor2D 1> 599/774 Test #599: vtkRenderingAnnotationCxx-TestCaptionActor2D .................................***Exception: Other 0.01 sec 1> Start 600: vtkRenderingAnnotationCxx-TestConvexHull2D 1> 600/774 Test #600: vtkRenderingAnnotationCxx-TestConvexHull2D ...................................***Exception: Other 0.01 sec 1> Start 601: vtkRenderingAnnotationCxx-TestCornerAnnotation 1> 601/774 Test #601: vtkRenderingAnnotationCxx-TestCornerAnnotation ...............................***Exception: Other 0.01 sec 1> Start 602: vtkRenderingAnnotationCxx-TestCubeAxes2DMode 1> 602/774 Test #602: vtkRenderingAnnotationCxx-TestCubeAxes2DMode .................................***Exception: Other 0.01 sec 1> Start 603: vtkRenderingAnnotationCxx-TestCubeAxes3 1> 603/774 Test #603: vtkRenderingAnnotationCxx-TestCubeAxes3 ......................................***Exception: Other 0.01 sec 1> Start 604: vtkRenderingAnnotationCxx-TestCubeAxesInnerGridAll 1> 604/774 Test #604: vtkRenderingAnnotationCxx-TestCubeAxesInnerGridAll ...........................***Exception: Other 0.01 sec 1> Start 605: vtkRenderingAnnotationCxx-TestCubeAxesInnerGridClosest 1> 605/774 Test #605: vtkRenderingAnnotationCxx-TestCubeAxesInnerGridClosest .......................***Exception: Other 0.01 sec 1> Start 606: vtkRenderingAnnotationCxx-TestCubeAxesInnerGridFurthest 1> 606/774 Test #606: vtkRenderingAnnotationCxx-TestCubeAxesInnerGridFurthest ......................***Exception: Other 0.01 sec 1> Start 607: vtkRenderingAnnotationCxx-TestCubeAxesIntersectionPoint 1> 607/774 Test #607: vtkRenderingAnnotationCxx-TestCubeAxesIntersectionPoint ......................***Exception: Other 0.01 sec 1> Start 608: vtkRenderingAnnotationCxx-TestCubeAxesOrientedBoundingBox 1> 608/774 Test #608: vtkRenderingAnnotationCxx-TestCubeAxesOrientedBoundingBox ....................***Exception: Other 0.01 sec 1> Start 609: vtkRenderingAnnotationCxx-TestCubeAxesSticky 1> 609/774 Test #609: vtkRenderingAnnotationCxx-TestCubeAxesSticky .................................***Exception: Other 0.01 sec 1> Start 610: vtkRenderingAnnotationCxx-TestCubeAxesStickyCentered 1> 610/774 Test #610: vtkRenderingAnnotationCxx-TestCubeAxesStickyCentered .........................***Exception: Other 0.01 sec 1> Start 611: vtkRenderingAnnotationCxx-TestCubeAxesWithGridLines 1> 611/774 Test #611: vtkRenderingAnnotationCxx-TestCubeAxesWithGridLines ..........................***Exception: Other 0.01 sec 1> Start 612: vtkRenderingAnnotationCxx-TestCubeAxesWithXInnerGrids 1> 612/774 Test #612: vtkRenderingAnnotationCxx-TestCubeAxesWithXInnerGrids ........................***Exception: Other 0.01 sec 1> Start 613: vtkRenderingAnnotationCxx-TestCubeAxesWithXInnerPolys 1> 613/774 Test #613: vtkRenderingAnnotationCxx-TestCubeAxesWithXInnerPolys ........................***Exception: Other 0.01 sec 1> Start 614: vtkRenderingAnnotationCxx-TestCubeAxesWithXLines 1> 614/774 Test #614: vtkRenderingAnnotationCxx-TestCubeAxesWithXLines .............................***Exception: Other 0.01 sec 1> Start 615: vtkRenderingAnnotationCxx-TestCubeAxesWithYInnerGrids 1> 615/774 Test #615: vtkRenderingAnnotationCxx-TestCubeAxesWithYInnerGrids ........................***Exception: Other 0.01 sec 1> Start 616: vtkRenderingAnnotationCxx-TestCubeAxesWithYInnerPolys 1> 616/774 Test #616: vtkRenderingAnnotationCxx-TestCubeAxesWithYInnerPolys ........................***Exception: Other 0.01 sec 1> Start 617: vtkRenderingAnnotationCxx-TestCubeAxesWithYLines 1> 617/774 Test #617: vtkRenderingAnnotationCxx-TestCubeAxesWithYLines .............................***Exception: Other 0.01 sec 1> Start 618: vtkRenderingAnnotationCxx-TestCubeAxesWithZInnerGrids 1> 618/774 Test #618: vtkRenderingAnnotationCxx-TestCubeAxesWithZInnerGrids ........................***Exception: Other 0.01 sec 1> Start 619: vtkRenderingAnnotationCxx-TestCubeAxesWithZInnerPolys 1> 619/774 Test #619: vtkRenderingAnnotationCxx-TestCubeAxesWithZInnerPolys ........................***Exception: Other 0.01 sec 1> Start 620: vtkRenderingAnnotationCxx-TestCubeAxesWithZLines 1> 620/774 Test #620: vtkRenderingAnnotationCxx-TestCubeAxesWithZLines .............................***Exception: Other 0.01 sec 1> Start 621: vtkRenderingAnnotationCxx-TestEmptyCornerAnnotation 1> 621/774 Test #621: vtkRenderingAnnotationCxx-TestEmptyCornerAnnotation ..........................***Exception: Other 0.01 sec 1> Start 622: vtkRenderingAnnotationCxx-TestLegendBoxActor 1> 622/774 Test #622: vtkRenderingAnnotationCxx-TestLegendBoxActor .................................***Exception: Other 0.01 sec 1> Start 623: vtkRenderingAnnotationCxx-TestLegendBoxActor2 1> 623/774 Test #623: vtkRenderingAnnotationCxx-TestLegendBoxActor2 ................................***Exception: Other 0.01 sec 1> Start 624: vtkRenderingAnnotationCxx-TestLegendScaleActor 1> 624/774 Test #624: vtkRenderingAnnotationCxx-TestLegendScaleActor ...............................***Exception: Other 0.01 sec 1> Start 625: vtkRenderingAnnotationCxx-TestPieChartActor 1> 625/774 Test #625: vtkRenderingAnnotationCxx-TestPieChartActor ..................................***Exception: Other 0.01 sec 1> Start 626: vtkRenderingAnnotationCxx-TestPolarAxes 1> 626/774 Test #626: vtkRenderingAnnotationCxx-TestPolarAxes ......................................***Exception: Other 0.01 sec 1> Start 627: vtkRenderingAnnotationCxx-TestScalarBar 1> 627/774 Test #627: vtkRenderingAnnotationCxx-TestScalarBar ......................................***Exception: Other 0.01 sec 1> Start 628: vtkRenderingAnnotationCxx-TestScalarBarAboveBelow 1> 628/774 Test #628: vtkRenderingAnnotationCxx-TestScalarBarAboveBelow ............................***Exception: Other 0.01 sec 1> Start 629: vtkRenderingAnnotationCxx-TestSpiderPlotActor 1> 629/774 Test #629: vtkRenderingAnnotationCxx-TestSpiderPlotActor ................................***Exception: Other 0.01 sec 1> Start 630: vtkRenderingAnnotationCxx-TestXYPlotActor 1> 630/774 Test #630: vtkRenderingAnnotationCxx-TestXYPlotActor ....................................***Exception: Other 0.01 sec 1> Start 631: vtkRenderingContext2DCxx-TestContext2D 1> 631/774 Test #631: vtkRenderingContext2DCxx-TestContext2D .......................................***Exception: Other 0.01 sec 1> Start 632: vtkRenderingFreeTypeCxx-TestBillboardTextActor3D 1> 632/774 Test #632: vtkRenderingFreeTypeCxx-TestBillboardTextActor3D .............................***Exception: Other 0.01 sec 1> Start 633: vtkRenderingFreeTypeCxx-TestFTStringToPath 1> 633/774 Test #633: vtkRenderingFreeTypeCxx-TestFTStringToPath ...................................***Exception: Other 0.01 sec 1> Start 634: vtkRenderingFreeTypeCxx-TestFreeTypeTextMapperNoMath 1> 634/774 Test #634: vtkRenderingFreeTypeCxx-TestFreeTypeTextMapperNoMath .........................***Exception: Other 0.01 sec 1> Start 635: vtkRenderingFreeTypeCxx-TestFreeTypeTools 1> 635/774 Test #635: vtkRenderingFreeTypeCxx-TestFreeTypeTools ....................................***Exception: Other 0.01 sec 1> Start 636: vtkRenderingFreeTypeCxx-TestMathTextFreeTypeTextRendererNoMath 1> 636/774 Test #636: vtkRenderingFreeTypeCxx-TestMathTextFreeTypeTextRendererNoMath ...............***Exception: Other 0.01 sec 1> Start 637: vtkRenderingFreeTypeCxx-TestTextActor 1> 637/774 Test #637: vtkRenderingFreeTypeCxx-TestTextActor ........................................***Exception: Other 0.01 sec 1> Start 638: vtkRenderingFreeTypeCxx-TestTextActor3D 1> 638/774 Test #638: vtkRenderingFreeTypeCxx-TestTextActor3D ......................................***Exception: Other 0.01 sec 1> Start 639: vtkRenderingFreeTypeCxx-TestTextActorAlphaBlending 1> 639/774 Test #639: vtkRenderingFreeTypeCxx-TestTextActorAlphaBlending ...........................***Exception: Other 0.01 sec 1> Start 640: vtkRenderingFreeTypeCxx-TestTextActorDepthPeeling 1> 640/774 Test #640: vtkRenderingFreeTypeCxx-TestTextActorDepthPeeling ............................***Exception: Other 0.01 sec 1> Start 641: vtkRenderingFreeTypeCxx-TestTextActor3DAlphaBlending 1> 641/774 Test #641: vtkRenderingFreeTypeCxx-TestTextActor3DAlphaBlending .........................***Exception: Other 0.01 sec 1> Start 642: vtkRenderingFreeTypeCxx-TestTextActor3DDepthPeeling 1> 642/774 Test #642: vtkRenderingFreeTypeCxx-TestTextActor3DDepthPeeling ..........................***Exception: Other 0.01 sec 1> Start 643: vtkRenderingFreeTypeCxx-TestTextActorScaleModeProp 1> 643/774 Test #643: vtkRenderingFreeTypeCxx-TestTextActorScaleModeProp ...........................***Exception: Other 0.01 sec 1> Start 644: vtkRenderingFreeTypeCxx-TestTextMapper 1> 644/774 Test #644: vtkRenderingFreeTypeCxx-TestTextMapper .......................................***Exception: Other 0.01 sec 1> Start 645: vtkRenderingImageCxx-TestCellPickerImage 1> 645/774 Test #645: vtkRenderingImageCxx-TestCellPickerImage .....................................***Exception: Other 0.01 sec 1> Start 646: vtkRenderingImageCxx-TestImageSliceMapperAlpha 1> 646/774 Test #646: vtkRenderingImageCxx-TestImageSliceMapperAlpha ...............................***Exception: Other 0.01 sec 1> Start 647: vtkRenderingImageCxx-TestImageResliceMapperAlpha 1> 647/774 Test #647: vtkRenderingImageCxx-TestImageResliceMapperAlpha .............................***Exception: Other 0.01 sec 1> Start 648: vtkRenderingImageCxx-TestImageSliceMapperBackground 1> 648/774 Test #648: vtkRenderingImageCxx-TestImageSliceMapperBackground ..........................***Exception: Other 0.01 sec 1> Start 649: vtkRenderingImageCxx-TestImageResliceMapperBackground 1> 649/774 Test #649: vtkRenderingImageCxx-TestImageResliceMapperBackground ........................***Exception: Other 0.01 sec 1> Start 650: vtkRenderingImageCxx-TestImageSliceMapperBorder 1> 650/774 Test #650: vtkRenderingImageCxx-TestImageSliceMapperBorder ..............................***Exception: Other 0.01 sec 1> Start 651: vtkRenderingImageCxx-TestImageResliceMapperBorder 1> 651/774 Test #651: vtkRenderingImageCxx-TestImageResliceMapperBorder ............................***Exception: Other 0.01 sec 1> Start 652: vtkRenderingImageCxx-TestImageSliceMapperInterpolation 1> 652/774 Test #652: vtkRenderingImageCxx-TestImageSliceMapperInterpolation .......................***Exception: Other 0.01 sec 1> Start 653: vtkRenderingImageCxx-TestImageResliceMapperInterpolation 1> 653/774 Test #653: vtkRenderingImageCxx-TestImageResliceMapperInterpolation .....................***Exception: Other 0.01 sec 1> Start 654: vtkRenderingImageCxx-TestImageSliceMapperOrient2D 1> 654/774 Test #654: vtkRenderingImageCxx-TestImageSliceMapperOrient2D ............................***Exception: Other 0.01 sec 1> Start 655: vtkRenderingImageCxx-TestImageResliceMapperOffAxis 1> 655/774 Test #655: vtkRenderingImageCxx-TestImageResliceMapperOffAxis ...........................***Exception: Other 0.01 sec 1> Start 656: vtkRenderingImageCxx-TestImageSliceMapperOrient3D 1> 656/774 Test #656: vtkRenderingImageCxx-TestImageSliceMapperOrient3D ............................***Exception: Other 0.01 sec 1> Start 657: vtkRenderingImageCxx-TestImageResliceMapperOrient3D 1> 657/774 Test #657: vtkRenderingImageCxx-TestImageResliceMapperOrient3D ..........................***Exception: Other 0.01 sec 1> Start 658: vtkRenderingImageCxx-TestImageStack 1> 658/774 Test #658: vtkRenderingImageCxx-TestImageStack ..........................................***Exception: Other 0.01 sec 1> Start 659: vtkRenderingImageCxx-TestImageResliceMapperSlab 1> 659/774 Test #659: vtkRenderingImageCxx-TestImageResliceMapperSlab ..............................***Exception: Other 0.01 sec 1> Start 660: vtkRenderingLODCxx-TestLODActor 1> 660/774 Test #660: vtkRenderingLODCxx-TestLODActor ..............................................***Exception: Other 0.01 sec 1> Start 661: vtkRenderingLabelCxx-TestDynamic2DLabelMapper 1> 661/774 Test #661: vtkRenderingLabelCxx-TestDynamic2DLabelMapper ................................***Exception: Other 0.01 sec 1> Start 662: vtkRenderingLabelCxx-TestLabelPlacer 1> 662/774 Test #662: vtkRenderingLabelCxx-TestLabelPlacer .........................................***Exception: Other 0.01 sec 1> Start 663: vtkRenderingLabelCxx-TestLabelPlacer2D 1> 663/774 Test #663: vtkRenderingLabelCxx-TestLabelPlacer2D .......................................***Exception: Other 0.01 sec 1> Start 664: vtkRenderingLabelCxx-TestLabelPlacerCoincidentPoints 1> 664/774 Test #664: vtkRenderingLabelCxx-TestLabelPlacerCoincidentPoints .........................***Exception: Other 0.01 sec 1> Start 665: vtkRenderingLabelCxx-TestLabelPlacementMapper 1> 665/774 Test #665: vtkRenderingLabelCxx-TestLabelPlacementMapper ................................***Exception: Other 0.01 sec 1> Start 666: vtkRenderingLabelCxx-TestLabelPlacementMapper2D 1> 666/774 Test #666: vtkRenderingLabelCxx-TestLabelPlacementMapper2D ..............................***Exception: Other 0.01 sec 1> Start 667: vtkRenderingLabelCxx-TestLabelPlacementMapperCoincidentPoints 1> 667/774 Test #667: vtkRenderingLabelCxx-TestLabelPlacementMapperCoincidentPoints ................***Exception: Other 0.01 sec 1> Start 668: vtkRenderingOpenGL2Cxx-TestAppleBug 1> 668/774 Test #668: vtkRenderingOpenGL2Cxx-TestAppleBug ..........................................***Exception: Other 0.01 sec 1> Start 669: vtkRenderingOpenGL2Cxx-TestBlurAndSobelPasses 1> 669/774 Test #669: vtkRenderingOpenGL2Cxx-TestBlurAndSobelPasses ................................***Exception: Other 0.01 sec 1> Start 670: vtkRenderingOpenGL2Cxx-TestCoincident 1> 670/774 Test #670: vtkRenderingOpenGL2Cxx-TestCoincident ........................................***Exception: Other 0.01 sec 1> Start 671: vtkRenderingOpenGL2Cxx-TestCompositePolyDataMapper2Spheres 1> 671/774 Test #671: vtkRenderingOpenGL2Cxx-TestCompositePolyDataMapper2Spheres ...................***Exception: Other 0.01 sec 1> Start 672: vtkRenderingOpenGL2Cxx-TestCubeMap 1> 672/774 Test #672: vtkRenderingOpenGL2Cxx-TestCubeMap ...........................................***Exception: Other 0.01 sec 1> Start 673: vtkRenderingOpenGL2Cxx-TestDepthOfFieldPass 1> 673/774 Test #673: vtkRenderingOpenGL2Cxx-TestDepthOfFieldPass ..................................***Exception: Other 0.01 sec 1> Start 674: vtkRenderingOpenGL2Cxx-TestDepthPeelingPass 1> 674/774 Test #674: vtkRenderingOpenGL2Cxx-TestDepthPeelingPass ..................................***Exception: Other 0.01 sec 1> Start 675: vtkRenderingOpenGL2Cxx-TestEDLPass 1> 675/774 Test #675: vtkRenderingOpenGL2Cxx-TestEDLPass ...........................................***Exception: Other 0.01 sec 1> Start 676: vtkRenderingOpenGL2Cxx-TestFXAAFilter 1> 676/774 Test #676: vtkRenderingOpenGL2Cxx-TestFXAAFilter ........................................***Exception: Other 0.01 sec 1> Start 677: vtkRenderingOpenGL2Cxx-TestGaussianBlurPass 1> 677/774 Test #677: vtkRenderingOpenGL2Cxx-TestGaussianBlurPass ..................................***Exception: Other 0.01 sec 1> Start 678: vtkRenderingOpenGL2Cxx-TestLightingMapLuminancePass 1> 678/774 Test #678: vtkRenderingOpenGL2Cxx-TestLightingMapLuminancePass ..........................***Exception: Other 0.01 sec 1> Start 679: vtkRenderingOpenGL2Cxx-TestLightingMapNormalsPass 1> 679/774 Test #679: vtkRenderingOpenGL2Cxx-TestLightingMapNormalsPass ............................***Exception: Other 0.01 sec 1> Start 680: vtkRenderingOpenGL2Cxx-TestPointFillPass 1> 680/774 Test #680: vtkRenderingOpenGL2Cxx-TestPointFillPass .....................................***Exception: Other 0.01 sec 1> Start 681: vtkRenderingOpenGL2Cxx-TestPointGaussianMapper 1> 681/774 Test #681: vtkRenderingOpenGL2Cxx-TestPointGaussianMapper ...............................***Exception: Other 0.01 sec 1> Start 682: vtkRenderingOpenGL2Cxx-TestPointGaussianMapperOpacity 1> 682/774 Test #682: vtkRenderingOpenGL2Cxx-TestPointGaussianMapperOpacity ........................***Exception: Other 0.01 sec 1> Start 683: vtkRenderingOpenGL2Cxx-TestRemoveActorNonCurrentContext 1> 683/774 Test #683: vtkRenderingOpenGL2Cxx-TestRemoveActorNonCurrentContext ......................***Exception: Other 0.01 sec 1> Start 684: vtkRenderingOpenGL2Cxx-TestRenderToImage 1> 684/774 Test #684: vtkRenderingOpenGL2Cxx-TestRenderToImage .....................................***Exception: Other 0.01 sec 1> Start 685: vtkRenderingOpenGL2Cxx-TestSSAAPass 1> 685/774 Test #685: vtkRenderingOpenGL2Cxx-TestSSAAPass ..........................................***Exception: Other 0.01 sec 1> Start 686: vtkRenderingOpenGL2Cxx-TestSetZBuffer 1> 686/774 Test #686: vtkRenderingOpenGL2Cxx-TestSetZBuffer ........................................***Exception: Other 0.01 sec 1> Start 687: vtkRenderingOpenGL2Cxx-TestShadowMapBakerPass 1> 687/774 Test #687: vtkRenderingOpenGL2Cxx-TestShadowMapBakerPass ................................***Exception: Other 0.02 sec 1> Start 688: vtkRenderingOpenGL2Cxx-TestShadowMapPass 1> 688/774 Test #688: vtkRenderingOpenGL2Cxx-TestShadowMapPass .....................................***Exception: Other 0.01 sec 1> Start 689: vtkRenderingOpenGL2Cxx-TestSobelGradientMagnitudePass 1> 689/774 Test #689: vtkRenderingOpenGL2Cxx-TestSobelGradientMagnitudePass ........................***Exception: Other 0.01 sec 1> Start 690: vtkRenderingOpenGL2Cxx-TestSpherePoints 1> 690/774 Test #690: vtkRenderingOpenGL2Cxx-TestSpherePoints ......................................***Exception: Other 0.01 sec 1> Start 691: vtkRenderingOpenGL2Cxx-TestUserShader 1> 691/774 Test #691: vtkRenderingOpenGL2Cxx-TestUserShader ........................................***Exception: Other 0.01 sec 1> Start 692: vtkRenderingOpenGL2Cxx-TestUserShader2 1> 692/774 Test #692: vtkRenderingOpenGL2Cxx-TestUserShader2 .......................................***Exception: Other 0.01 sec 1> Start 693: vtkRenderingOpenGL2Cxx-TestVBOPLYMapper 1> 693/774 Test #693: vtkRenderingOpenGL2Cxx-TestVBOPLYMapper ......................................***Exception: Other 0.01 sec 1> Start 694: vtkRenderingOpenGL2Cxx-TestVBOPointsLines 1> 694/774 Test #694: vtkRenderingOpenGL2Cxx-TestVBOPointsLines ....................................***Exception: Other 0.01 sec 1> Start 695: vtkRenderingOpenGL2Cxx-TestValuePass 1> 695/774 Test #695: vtkRenderingOpenGL2Cxx-TestValuePass .........................................***Exception: Other 0.01 sec 1> Start 696: vtkRenderingOpenGL2Cxx-TestValuePass2 1> 696/774 Test #696: vtkRenderingOpenGL2Cxx-TestValuePass2 ........................................***Exception: Other 0.01 sec 1> Start 697: vtkRenderingParallelCxx-PrmMagnify 1> 697/774 Test #697: vtkRenderingParallelCxx-PrmMagnify ...........................................***Exception: Other 0.01 sec 1> Start 698: vtkRenderingParallelCxx-MPI-TestSimplePCompositeZPass 1> 698/774 Test #698: vtkRenderingParallelCxx-MPI-TestSimplePCompositeZPass ........................***Exception: Other 0.03 sec 1> Start 699: vtkRenderingParallelCxx-MPI-TestParallelRendering 1> 699/774 Test #699: vtkRenderingParallelCxx-MPI-TestParallelRendering ............................***Exception: Other 0.03 sec 1> Start 700: vtkRenderingParallel-TestClientServerRendering 1> 700/774 Test #700: vtkRenderingParallel-TestClientServerRendering ...............................***Failed 0.24 sec 1> Start 701: vtkRenderingVolumeCxx-ProjectedTetrahedraZoomIn 1> 701/774 Test #701: vtkRenderingVolumeCxx-ProjectedTetrahedraZoomIn ..............................***Exception: Other 0.02 sec 1> Start 702: vtkRenderingVolumeCxx-TestFinalColorWindowLevel 1> 702/774 Test #702: vtkRenderingVolumeCxx-TestFinalColorWindowLevel ..............................***Exception: Other 0.01 sec 1> Start 703: vtkRenderingVolumeCxx-TestFixedPointRayCastLightComponents 1> 703/774 Test #703: vtkRenderingVolumeCxx-TestFixedPointRayCastLightComponents ...................***Exception: Other 0.01 sec 1> Start 704: vtkRenderingVolumeCxx-TestGPURayCastAdditive 1> 704/774 Test #704: vtkRenderingVolumeCxx-TestGPURayCastAdditive .................................***Exception: Other 0.01 sec 1> Start 705: vtkRenderingVolumeCxx-TestGPURayCastCompositeBinaryMask 1> 705/774 Test #705: vtkRenderingVolumeCxx-TestGPURayCastCompositeBinaryMask ......................***Exception: Other 0.01 sec 1> Start 706: vtkRenderingVolumeCxx-TestGPURayCastCompositeMaskBlend 1> 706/774 Test #706: vtkRenderingVolumeCxx-TestGPURayCastCompositeMaskBlend .......................***Exception: Other 0.01 sec 1> Start 707: vtkRenderingVolumeCxx-TestGPURayCastCompositeMask 1> 707/774 Test #707: vtkRenderingVolumeCxx-TestGPURayCastCompositeMask ............................***Exception: Other 0.01 sec 1> Start 708: vtkRenderingVolumeCxx-TestGPURayCastCompositeToMIP 1> 708/774 Test #708: vtkRenderingVolumeCxx-TestGPURayCastCompositeToMIP ...........................***Exception: Other 0.01 sec 1> Start 709: vtkRenderingVolumeCxx-TestGPURayCastCropping 1> 709/774 Test #709: vtkRenderingVolumeCxx-TestGPURayCastCropping .................................***Exception: Other 0.01 sec 1> Start 710: vtkRenderingVolumeCxx-TestGPURayCastDataTypesMinIP 1> 710/774 Test #710: vtkRenderingVolumeCxx-TestGPURayCastDataTypesMinIP ...........................***Exception: Other 0.01 sec 1> Start 711: vtkRenderingVolumeCxx-TestGPURayCastDataTypesMIP 1> 711/774 Test #711: vtkRenderingVolumeCxx-TestGPURayCastDataTypesMIP .............................***Exception: Other 0.01 sec 1> Start 712: vtkRenderingVolumeCxx-TestGPURayCastFourComponentsComposite 1> 712/774 Test #712: vtkRenderingVolumeCxx-TestGPURayCastFourComponentsComposite ..................***Exception: Other 0.01 sec 1> Start 713: vtkRenderingVolumeCxx-TestGPURayCastFourComponentsCompositeStreaming 1> 713/774 Test #713: vtkRenderingVolumeCxx-TestGPURayCastFourComponentsCompositeStreaming .........***Exception: Other 0.01 sec 1> Start 714: vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMinIP 1> 714/774 Test #714: vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMinIP ......................***Exception: Other 0.01 sec 1> Start 715: vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMIP 1> 715/774 Test #715: vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMIP ........................***Exception: Other 0.01 sec 1> Start 716: vtkRenderingVolumeCxx-TestGPURayCastMapperBenchmark 1> 716/774 Test #716: vtkRenderingVolumeCxx-TestGPURayCastMapperBenchmark ..........................***Exception: Other 0.01 sec 1> Start 717: vtkRenderingVolumeCxx-TestGPURayCastMIPBinaryMask 1> 717/774 Test #717: vtkRenderingVolumeCxx-TestGPURayCastMIPBinaryMask ............................***Exception: Other 0.01 sec 1> Start 718: vtkRenderingVolumeCxx-TestGPURayCastMIPToComposite 1> 718/774 Test #718: vtkRenderingVolumeCxx-TestGPURayCastMIPToComposite ...........................***Exception: Other 0.01 sec 1> Start 719: vtkRenderingVolumeCxx-TestGPURayCastNearestDataTypesMIP 1> 719/774 Test #719: vtkRenderingVolumeCxx-TestGPURayCastNearestDataTypesMIP ......................***Exception: Other 0.01 sec 1> Start 720: vtkRenderingVolumeCxx-TestGPURayCastPerspectiveParallel 1> 720/774 Test #720: vtkRenderingVolumeCxx-TestGPURayCastPerspectiveParallel ......................***Exception: Other 0.01 sec 1> Start 721: vtkRenderingVolumeCxx-TestGPURayCastVolumeOrientation 1> 721/774 Test #721: vtkRenderingVolumeCxx-TestGPURayCastVolumeOrientation ........................***Exception: Other 0.01 sec 1> Start 722: vtkRenderingVolumeCxx-TestGPURayCastVolumeUpdate 1> 722/774 Test #722: vtkRenderingVolumeCxx-TestGPURayCastVolumeUpdate .............................***Exception: Other 0.01 sec 1> Start 723: vtkRenderingVolumeCxx-TestGPUVolumeRayCastMapper 1> 723/774 Test #723: vtkRenderingVolumeCxx-TestGPUVolumeRayCastMapper .............................***Exception: Other 0.01 sec 1> Start 724: vtkRenderingVolumeCxx-TestMinIntensityRendering 1> 724/774 Test #724: vtkRenderingVolumeCxx-TestMinIntensityRendering ..............................***Exception: Other 0.01 sec 1> Start 725: vtkRenderingVolumeCxx-TestProjectedTetrahedra 1> 725/774 Test #725: vtkRenderingVolumeCxx-TestProjectedTetrahedra ................................***Exception: Other 0.01 sec 1> Start 726: vtkRenderingVolumeCxx-TestSmartVolumeMapper 1> 726/774 Test #726: vtkRenderingVolumeCxx-TestSmartVolumeMapper ..................................***Exception: Other 0.01 sec 1> Start 727: vtkRenderingVolumeCxx-TestSmartVolumeMapperWindowLevel 1> 727/774 Test #727: vtkRenderingVolumeCxx-TestSmartVolumeMapperWindowLevel .......................***Exception: Other 0.01 sec 1> Start 728: vtkRenderingVolumeCxx-TestGPURayCastBlendModes 1> 728/774 Test #728: vtkRenderingVolumeCxx-TestGPURayCastBlendModes ...............................***Exception: Other 0.01 sec 1> Start 729: vtkRenderingVolumeCxx-TestGPURayCastAverageIP 1> 729/774 Test #729: vtkRenderingVolumeCxx-TestGPURayCastAverageIP ................................***Exception: Other 0.01 sec 1> Start 730: vtkRenderingVolumeCxx-TestGPURayCastCameraInside 1> 730/774 Test #730: vtkRenderingVolumeCxx-TestGPURayCastCameraInside .............................***Exception: Other 0.01 sec 1> Start 731: vtkRenderingVolumeCxx-TestGPURayCastCameraInsideSmallSpacing 1> 731/774 Test #731: vtkRenderingVolumeCxx-TestGPURayCastCameraInsideSmallSpacing .................***Exception: Other 0.01 sec 1> Start 732: vtkRenderingVolumeCxx-TestGPURayCastCameraInsideTransformation 1> 732/774 Test #732: vtkRenderingVolumeCxx-TestGPURayCastCameraInsideTransformation ...............***Exception: Other 0.01 sec 1> Start 733: vtkRenderingVolumeCxx-TestGPURayCastCellData 1> 733/774 Test #733: vtkRenderingVolumeCxx-TestGPURayCastCellData .................................***Exception: Other 0.01 sec 1> Start 734: vtkRenderingVolumeCxx-TestGPURayCastClipping 1> 734/774 Test #734: vtkRenderingVolumeCxx-TestGPURayCastClipping .................................***Exception: Other 0.01 sec 1> Start 735: vtkRenderingVolumeCxx-TestGPURayCastClippingPolyData 1> 735/774 Test #735: vtkRenderingVolumeCxx-TestGPURayCastClippingPolyData .........................***Exception: Other 0.01 sec 1> Start 736: vtkRenderingVolumeCxx-TestGPURayCastClippingUserTransform 1> 736/774 Test #736: vtkRenderingVolumeCxx-TestGPURayCastClippingUserTransform ....................***Exception: Other 0.01 sec 1> Start 737: vtkRenderingVolumeCxx-TestGPURayCastDependentComponentsLightParameters 1> 737/774 Test #737: vtkRenderingVolumeCxx-TestGPURayCastDependentComponentsLightParameters .......***Exception: Other 0.01 sec 1> Start 738: vtkRenderingVolumeCxx-TestGPURayCastFourComponentsAdditive 1> 738/774 Test #738: vtkRenderingVolumeCxx-TestGPURayCastFourComponentsAdditive ...................***Exception: Other 0.01 sec 1> Start 739: vtkRenderingVolumeCxx-TestGPURayCastFourComponentsAverage 1> 739/774 Test #739: vtkRenderingVolumeCxx-TestGPURayCastFourComponentsAverage ....................***Exception: Other 0.01 sec 1> Start 740: vtkRenderingVolumeCxx-TestGPURayCastFourComponentsDependentGradient 1> 740/774 Test #740: vtkRenderingVolumeCxx-TestGPURayCastFourComponentsDependentGradient ..........***Exception: Other 0.01 sec 1> Start 741: vtkRenderingVolumeCxx-TestGPURayCastGradientOpacity 1> 741/774 Test #741: vtkRenderingVolumeCxx-TestGPURayCastGradientOpacity ..........................***Exception: Other 0.01 sec 1> Start 742: vtkRenderingVolumeCxx-TestGPURayCastGradientOpacityLight 1> 742/774 Test #742: vtkRenderingVolumeCxx-TestGPURayCastGradientOpacityLight .....................***Exception: Other 0.01 sec 1> Start 743: vtkRenderingVolumeCxx-TestGPURayCastIndependentComponentsLightParameters 1> 743/774 Test #743: vtkRenderingVolumeCxx-TestGPURayCastIndependentComponentsLightParameters .....***Exception: Other 0.01 sec 1> Start 744: vtkRenderingVolumeCxx-TestGPURayCastIndependentVectorMode 1> 744/774 Test #744: vtkRenderingVolumeCxx-TestGPURayCastIndependentVectorMode ....................***Exception: Other 0.01 sec 1> Start 745: vtkRenderingVolumeCxx-TestGPURayCastJittering 1> 745/774 Test #745: vtkRenderingVolumeCxx-TestGPURayCastJittering ................................***Exception: Other 0.01 sec 1> Start 746: vtkRenderingVolumeCxx-TestGPURayCastJitteringCustom 1> 746/774 Test #746: vtkRenderingVolumeCxx-TestGPURayCastJitteringCustom ..........................***Exception: Other 0.01 sec 1> Start 747: vtkRenderingVolumeCxx-TestGPURayCastLargeColorTransferFunction 1> 747/774 Test #747: vtkRenderingVolumeCxx-TestGPURayCastLargeColorTransferFunction ...............***Exception: Other 0.01 sec 1> Start 748: vtkRenderingVolumeCxx-TestGPURayCastMapperSampleDistance 1> 748/774 Test #748: vtkRenderingVolumeCxx-TestGPURayCastMapperSampleDistance .....................***Exception: Other 0.01 sec 1> Start 749: vtkRenderingVolumeCxx-TestGPURayCastPositionalLights 1> 749/774 Test #749: vtkRenderingVolumeCxx-TestGPURayCastPositionalLights .........................***Exception: Other 0.01 sec 1> Start 750: vtkRenderingVolumeCxx-TestGPURayCastReleaseResources 1> 750/774 Test #750: vtkRenderingVolumeCxx-TestGPURayCastReleaseResources .........................***Exception: Other 0.01 sec 1> Start 751: vtkRenderingVolumeCxx-TestGPURayCastRenderDepthToImage 1> 751/774 Test #751: vtkRenderingVolumeCxx-TestGPURayCastRenderDepthToImage .......................***Exception: Other 0.01 sec 1> Start 752: vtkRenderingVolumeCxx-TestGPURayCastRenderDepthToImage2 1> 752/774 Test #752: vtkRenderingVolumeCxx-TestGPURayCastRenderDepthToImage2 ......................***Exception: Other 0.01 sec 1> Start 753: vtkRenderingVolumeCxx-TestGPURayCastRenderToTexture 1> 753/774 Test #753: vtkRenderingVolumeCxx-TestGPURayCastRenderToTexture ..........................***Exception: Other 0.01 sec 1> Start 754: vtkRenderingVolumeCxx-TestGPURayCastThreeComponentsAdditive 1> 754/774 Test #754: vtkRenderingVolumeCxx-TestGPURayCastThreeComponentsAdditive ..................***Exception: Other 0.01 sec 1> Start 755: vtkRenderingVolumeCxx-TestGPURayCastThreeComponentsIndependent 1> 755/774 Test #755: vtkRenderingVolumeCxx-TestGPURayCastThreeComponentsIndependent ...............***Exception: Other 0.01 sec 1> Start 756: vtkRenderingVolumeCxx-TestGPURayCastTwoComponentsDependent 1> 756/774 Test #756: vtkRenderingVolumeCxx-TestGPURayCastTwoComponentsDependent ...................***Exception: Other 0.01 sec 1> Start 757: vtkRenderingVolumeCxx-TestGPURayCastTwoComponentsDependentGradient 1> 757/774 Test #757: vtkRenderingVolumeCxx-TestGPURayCastTwoComponentsDependentGradient ...........***Exception: Other 0.01 sec 1> Start 758: vtkRenderingVolumeCxx-TestGPURayCastTwoComponentsGradient 1> 758/774 Test #758: vtkRenderingVolumeCxx-TestGPURayCastTwoComponentsGradient ....................***Exception: Other 0.01 sec 1> Start 759: vtkRenderingVolumeCxx-TestGPURayCastTwoComponentsIndependent 1> 759/774 Test #759: vtkRenderingVolumeCxx-TestGPURayCastTwoComponentsIndependent .................***Exception: Other 0.01 sec 1> Start 760: vtkRenderingVolumeCxx-TestGPURayCastVolumeDepthPass 1> 760/774 Test #760: vtkRenderingVolumeCxx-TestGPURayCastVolumeDepthPass ..........................***Exception: Other 0.01 sec 1> Start 761: vtkRenderingVolumeCxx-TestGPURayCastVolumeLightKit 1> 761/774 Test #761: vtkRenderingVolumeCxx-TestGPURayCastVolumeLightKit ...........................***Exception: Other 0.01 sec 1> Start 762: vtkRenderingVolumeCxx-TestGPURayCastVolumePicking 1> 762/774 Test #762: vtkRenderingVolumeCxx-TestGPURayCastVolumePicking ............................***Exception: Other 0.01 sec 1> Start 763: vtkRenderingVolumeCxx-TestGPURayCastVolumePolyData 1> 763/774 Test #763: vtkRenderingVolumeCxx-TestGPURayCastVolumePolyData ...........................***Exception: Other 0.01 sec 1> Start 764: vtkRenderingVolumeCxx-TestGPURayCastVolumeRotation 1> 764/774 Test #764: vtkRenderingVolumeCxx-TestGPURayCastVolumeRotation ...........................***Exception: Other 0.01 sec 1> Start 765: vtkRenderingVolumeCxx-TestGPURayCastVolumeScale 1> 765/774 Test #765: vtkRenderingVolumeCxx-TestGPURayCastVolumeScale ..............................***Exception: Other 0.01 sec 1> Start 766: vtkRenderingVolumeCxx-TestProjectedTetrahedraOffscreen 1> 766/774 Test #766: vtkRenderingVolumeCxx-TestProjectedTetrahedraOffscreen .......................***Exception: Other 0.01 sec 1> Start 767: vtkRenderingVolumeCxx-TestProjectedTetrahedraTransform 1> 767/774 Test #767: vtkRenderingVolumeCxx-TestProjectedTetrahedraTransform .......................***Exception: Other 0.01 sec 1> Start 768: vtkRenderingVolumeCxx-TestRemoveVolumeNonCurrentContext 1> 768/774 Test #768: vtkRenderingVolumeCxx-TestRemoveVolumeNonCurrentContext ......................***Exception: Other 0.01 sec 1> Start 769: vtkWrappingJava-HeaderTest 1> 769/774 Test #769: vtkWrappingJava-HeaderTest ................................................... Passed 0.08 sec 1> Start 770: JavaRendering 1> 770/774 Test #770: JavaRendering ................................................................ Passed 1.44 sec 1> Start 771: JavaGCRegression 1> 771/774 Test #771: JavaGCRegression .............................................................***Failed 0.23 sec 1> Start 772: JavaDeleteRegression 1> 772/774 Test #772: JavaDeleteRegression .........................................................***Failed 0.19 sec 1> Start 773: JavaManualGC 1> 773/774 Test #773: JavaManualGC .................................................................***Failed 0.19 sec 1> Start 774: JavaDeleteAndGC 1> 774/774 Test #774: JavaDeleteAndGC ..............................................................***Failed 0.17 sec 1> 1> 11% tests passed, 690 tests failed out of 774 1> 1> Label Time Summary: 1> vtkChartsCore = 0.93 sec (62 tests) 1> vtkCommonColor = 0.15 sec (5 tests) 1> vtkCommonComputationalGeometry = 0.28 sec (2 tests) 1> vtkCommonCore = 1.45 sec (97 tests) 1> vtkCommonDataModel = 2.58 sec (70 tests) 1> vtkCommonExecutionModel = 0.59 sec (9 tests) 1> vtkCommonMath = 0.20 sec (5 tests) 1> vtkCommonMisc = 0.14 sec (6 tests) 1> vtkCommonSystem = 0.14 sec (3 tests) 1> vtkCommonTransforms = 0.26 sec (3 tests) 1> vtkFiltersCore = 1.17 sec (45 tests) 1> vtkFiltersExtraction = 0.25 sec (1 test) 1> vtkFiltersGeneral = 0.87 sec (1 test) 1> vtkFiltersGeneric = 0.25 sec (11 tests) 1> vtkFiltersGeometry = 0.43 sec (15 tests) 1> vtkFiltersHybrid = 0.34 sec (10 tests) 1> vtkFiltersImaging = 0.12 sec (1 test) 1> vtkFiltersModeling = 0.31 sec (9 tests) 1> vtkFiltersParallel = 0.29 sec (1 test) 1> vtkFiltersParallelGeometry = 0.33 sec (7 tests) 1> vtkFiltersParallelImaging = 0.11 sec (1 test) 1> vtkFiltersParallelMPI = 0.16 sec (2 tests) 1> vtkFiltersPoints = 0.35 sec (4 tests) 1> vtkFiltersSMP = 0.15 sec (6 tests) 1> vtkFiltersSelection = 0.12 sec (5 tests) 1> vtkFiltersSources = 0.50 sec (27 tests) 1> vtkFiltersStatistics = 0.32 sec (12 tests) 1> vtkFiltersTexture = 0.12 sec (1 test) 1> vtkFiltersVerdict = 0.14 sec (2 tests) 1> vtkGeovisCore = 0.32 sec (7 tests) 1> vtkIOCore = 0.24 sec (5 tests) 1> vtkIOExport = 0.20 sec (4 tests) 1> vtkIOGeometry = 0.30 sec (1 test) 1> vtkIOImage = 0.45 sec (15 tests) 1> vtkIOImport = 0.13 sec (4 tests) 1> vtkIOInfovis = 0.29 sec (13 tests) 1> vtkIOLegacy = 0.24 sec (1 test) 1> vtkIOMovie = 0.11 sec (3 tests) 1> vtkIONetCDF = 0.16 sec (1 test) 1> vtkIOPLY = 0.11 sec (4 tests) 1> vtkIOParallel = 0.16 sec (2 tests) 1> vtkIOParallelXML = 0.13 sec (1 test) 1> vtkIOVideo = 0.11 sec (1 test) 1> vtkIOXML = 0.34 sec (1 test) 1> vtkIOXMLParser = 0.11 sec (1 test) 1> vtkImagingColor = 0.12 sec (1 test) 1> vtkImagingCore = 0.48 sec (21 tests) 1> vtkImagingFourier = 0.11 sec (1 test) 1> vtkImagingGeneral = 0.19 sec (1 test) 1> vtkImagingHybrid = 0.23 sec (3 tests) 1> vtkImagingMath = 0.12 sec (1 test) 1> vtkImagingMorphological = 0.16 sec (3 tests) 1> vtkImagingOpenGL2 = 0.09 sec (2 tests) 1> vtkImagingSources = 0.13 sec (1 test) 1> vtkImagingStatistics = 0.10 sec (1 test) 1> vtkImagingStencil = 0.12 sec (1 test) 1> vtkInfovisCore = 0.53 sec (23 tests) 1> vtkInfovisLayout = 0.43 sec (6 tests) 1> vtkInteractionImage = 0.11 sec (1 test) 1> vtkInteractionStyle = 0.21 sec (1 test) 1> vtkInteractionWidgets = 1.41 sec (1 test) 1> vtkParallelCore = 0.26 sec (2 tests) 1> vtkParallelMPI = 0.35 sec (8 tests) 1> vtkRenderingAnnotation = 0.73 sec (38 tests) 1> vtkRenderingContext2D = 0.25 sec (2 tests) 1> vtkRenderingContextOpenGL2 = 0.13 sec (1 test) 1> vtkRenderingCore = 1.29 sec (1 test) 1> vtkRenderingFreeType = 0.22 sec (14 tests) 1> vtkRenderingImage = 0.22 sec (16 tests) 1> vtkRenderingLOD = 0.11 sec (2 tests) 1> vtkRenderingLabel = 0.25 sec (8 tests) 1> vtkRenderingOpenGL2 = 0.98 sec (30 tests) 1> vtkRenderingParallel = 0.24 sec (4 tests) 1> vtkRenderingVolume = 1.33 sec (69 tests) 1> vtkRenderingVolumeOpenGL2 = 0.13 sec (1 test) 1> vtkTestingGenericBridge = 0.19 sec (1 test) 1> vtkTestingRendering = 0.11 sec (1 test) 1> vtkViewsContext2D = 0.10 sec (1 test) 1> vtkViewsCore = 0.14 sec (1 test) 1> vtkViewsGeovis = 0.09 sec (1 test) 1> vtkViewsInfovis = 0.35 sec (1 test) 1> vtkWrappingJava = 0.08 sec (1 test) 1> 1> Total Test time (real) = 34.75 sec 1> 1> The following tests FAILED: 1> 45 - vtkChartsCoreCxx-TestContextScene (OTHER_FAULT) 1> 46 - vtkChartsCoreCxx-TestControlPointsItem (OTHER_FAULT) 1> 47 - vtkChartsCoreCxx-TestControlPointsItemEvents (OTHER_FAULT) 1> 48 - vtkChartsCoreCxx-TestAreaPlot (OTHER_FAULT) 1> 49 - vtkChartsCoreCxx-TestAxes (OTHER_FAULT) 1> 50 - vtkChartsCoreCxx-TestBagPlot (OTHER_FAULT) 1> 51 - vtkChartsCoreCxx-TestBarGraph (OTHER_FAULT) 1> 52 - vtkChartsCoreCxx-TestBarGraphHorizontal (OTHER_FAULT) 1> 53 - vtkChartsCoreCxx-TestBarGraphSelection (OTHER_FAULT) 1> 54 - vtkChartsCoreCxx-TestBoxPlot (OTHER_FAULT) 1> 55 - vtkChartsCoreCxx-TestCategoryLegend (OTHER_FAULT) 1> 56 - vtkChartsCoreCxx-TestColorTransferFunction (OTHER_FAULT) 1> 57 - vtkChartsCoreCxx-TestChartDouble (OTHER_FAULT) 1> 58 - vtkChartsCoreCxx-TestChartDoubleColors (OTHER_FAULT) 1> 59 - vtkChartsCoreCxx-TestChartMatrix (OTHER_FAULT) 1> 60 - vtkChartsCoreCxx-TestChartTileScaling (OTHER_FAULT) 1> 61 - vtkChartsCoreCxx-TestChartUnicode (OTHER_FAULT) 1> 62 - vtkChartsCoreCxx-TestChartsOn3D (OTHER_FAULT) 1> 63 - vtkChartsCoreCxx-TestChartXYInvertedAxis (OTHER_FAULT) 1> 64 - vtkChartsCoreCxx-TestChartXYZ (OTHER_FAULT) 1> 65 - vtkChartsCoreCxx-TestContext (OTHER_FAULT) 1> 66 - vtkChartsCoreCxx-TestContextArea (OTHER_FAULT) 1> 67 - vtkChartsCoreCxx-TestContextAreaFixedAspect (OTHER_FAULT) 1> 68 - vtkChartsCoreCxx-TestContextAreaFixedMargins (OTHER_FAULT) 1> 69 - vtkChartsCoreCxx-TestContextAreaFixedRect (OTHER_FAULT) 1> 70 - vtkChartsCoreCxx-TestContextImage (OTHER_FAULT) 1> 71 - vtkChartsCoreCxx-TestContextItemStacking (OTHER_FAULT) 1> 72 - vtkChartsCoreCxx-TestContextUnicode (OTHER_FAULT) 1> 73 - vtkChartsCoreCxx-TestControlPointsHandleItem (OTHER_FAULT) 1> 74 - vtkChartsCoreCxx-TestDiagram (OTHER_FAULT) 1> 75 - vtkChartsCoreCxx-TestFunctionalBagPlot (OTHER_FAULT) 1> 76 - vtkChartsCoreCxx-TestHistogram2D (OTHER_FAULT) 1> 77 - vtkChartsCoreCxx-TestInteractiveChartXYZ (OTHER_FAULT) 1> 78 - vtkChartsCoreCxx-TestLegendHiddenPlots (OTHER_FAULT) 1> 79 - vtkChartsCoreCxx-TestLinePlot (OTHER_FAULT) 1> 80 - vtkChartsCoreCxx-TestLinePlotDouble (OTHER_FAULT) 1> 81 - vtkChartsCoreCxx-TestLinePlotDouble2 (OTHER_FAULT) 1> 82 - vtkChartsCoreCxx-TestLinePlot3D (OTHER_FAULT) 1> 83 - vtkChartsCoreCxx-TestLinePlotAxisFonts (OTHER_FAULT) 1> 84 - vtkChartsCoreCxx-TestLinePlot2 (OTHER_FAULT) 1> 85 - vtkChartsCoreCxx-TestLinePlotInteraction (OTHER_FAULT) 1> 86 - vtkChartsCoreCxx-TestLinePlotSelection (OTHER_FAULT) 1> 87 - vtkChartsCoreCxx-TestLinePlotSelection2 (OTHER_FAULT) 1> 88 - vtkChartsCoreCxx-TestMultipleChartRenderers (OTHER_FAULT) 1> 89 - vtkChartsCoreCxx-TestMultipleRenderers (OTHER_FAULT) 1> 90 - vtkChartsCoreCxx-TestMultipleScalarsToColors (OTHER_FAULT) 1> 91 - vtkChartsCoreCxx-TestParallelCoordinates (OTHER_FAULT) 1> 92 - vtkChartsCoreCxx-TestParallelCoordinatesDouble (OTHER_FAULT) 1> 93 - vtkChartsCoreCxx-TestPieChart (OTHER_FAULT) 1> 94 - vtkChartsCoreCxx-TestPlotMatrix (OTHER_FAULT) 1> 95 - vtkChartsCoreCxx-TestPropItem (OTHER_FAULT) 1> 96 - vtkChartsCoreCxx-TestScalarsToColors (OTHER_FAULT) 1> 97 - vtkChartsCoreCxx-TestScatterPlot (OTHER_FAULT) 1> 98 - vtkChartsCoreCxx-TestScatterPlotMatrix (OTHER_FAULT) 1> 99 - vtkChartsCoreCxx-TestScatterPlotMatrixVehicles (OTHER_FAULT) 1> 100 - vtkChartsCoreCxx-TestScatterPlotMatrixVisible (OTHER_FAULT) 1> 101 - vtkChartsCoreCxx-TestScientificPlot (OTHER_FAULT) 1> 102 - vtkChartsCoreCxx-TestStackedBarGraph (OTHER_FAULT) 1> 103 - vtkChartsCoreCxx-TestStackedPlot (OTHER_FAULT) 1> 104 - vtkChartsCoreCxx-TestSurfacePlot (OTHER_FAULT) 1> 105 - vtkChartsCoreCxx-TestZoomAxis (OTHER_FAULT) 1> 106 - vtkCommonColorCxx-TestCategoricalColors (OTHER_FAULT) 1> 107 - vtkCommonColorCxx-TestColorSeries (OTHER_FAULT) 1> 108 - vtkCommonColorCxx-TestColorSeriesLookupTables (OTHER_FAULT) 1> 109 - vtkCommonColorCxx-TestNamedColors (OTHER_FAULT) 1> 110 - vtkCommonComputationalGeometryCxx-UnitTestParametricSpline (OTHER_FAULT) 1> 111 - vtkCommonCoreCxx-UnitTestMath (OTHER_FAULT) 1> 112 - vtkCommonCoreCxx-TestAngularPeriodicDataArray (OTHER_FAULT) 1> 113 - vtkCommonCoreCxx-TestArrayAPI (OTHER_FAULT) 1> 114 - vtkCommonCoreCxx-TestArrayAPIConvenience (OTHER_FAULT) 1> 115 - vtkCommonCoreCxx-TestArrayAPIDense (OTHER_FAULT) 1> 116 - vtkCommonCoreCxx-TestArrayAPISparse (OTHER_FAULT) 1> 117 - vtkCommonCoreCxx-TestArrayBool (OTHER_FAULT) 1> 118 - vtkCommonCoreCxx-TestArrayDispatchers (OTHER_FAULT) 1> 119 - vtkCommonCoreCxx-TestAtomic (OTHER_FAULT) 1> 120 - vtkCommonCoreCxx-TestScalarsToColors (OTHER_FAULT) 1> 121 - vtkCommonCoreCxx-TestArrayExtents (OTHER_FAULT) 1> 122 - vtkCommonCoreCxx-TestArrayInterpolationDense (OTHER_FAULT) 1> 123 - vtkCommonCoreCxx-TestArrayLookup (OTHER_FAULT) 1> 124 - vtkCommonCoreCxx-TestArrayNullValues (OTHER_FAULT) 1> 125 - vtkCommonCoreCxx-TestArraySize (OTHER_FAULT) 1> 126 - vtkCommonCoreCxx-TestArrayUniqueValueDetection (OTHER_FAULT) 1> 127 - vtkCommonCoreCxx-TestArrayUserTypes (OTHER_FAULT) 1> 128 - vtkCommonCoreCxx-TestArrayVariants (OTHER_FAULT) 1> 129 - vtkCommonCoreCxx-TestCollection (OTHER_FAULT) 1> 130 - vtkCommonCoreCxx-TestConditionVariable (OTHER_FAULT) 1> 131 - vtkCommonCoreCxx-TestDataArray (OTHER_FAULT) 1> 132 - vtkCommonCoreCxx-TestDataArrayComponentNames (OTHER_FAULT) 1> 133 - vtkCommonCoreCxx-TestDataArrayIterators (OTHER_FAULT) 1> 134 - vtkCommonCoreCxx-TestGarbageCollector (OTHER_FAULT) 1> 135 - vtkCommonCoreCxx-TestGenericDataArrayAPI (OTHER_FAULT) 1> 136 - vtkCommonCoreCxx-TestInformationKeyLookup (OTHER_FAULT) 1> 137 - vtkCommonCoreCxx-TestLookupTable (OTHER_FAULT) 1> 138 - vtkCommonCoreCxx-TestLookupTableThreaded (OTHER_FAULT) 1> 139 - vtkCommonCoreCxx-TestMath (OTHER_FAULT) 1> 140 - vtkCommonCoreCxx-TestMersenneTwister (OTHER_FAULT) 1> 141 - vtkCommonCoreCxx-TestMinimalStandardRandomSequence (OTHER_FAULT) 1> 142 - vtkCommonCoreCxx-TestNew (OTHER_FAULT) 1> 143 - vtkCommonCoreCxx-TestObjectFactory (OTHER_FAULT) 1> 144 - vtkCommonCoreCxx-TestObservers (OTHER_FAULT) 1> 145 - vtkCommonCoreCxx-TestObserversPerformance (OTHER_FAULT) 1> 146 - vtkCommonCoreCxx-TestOStreamWrapper (OTHER_FAULT) 1> 147 - vtkCommonCoreCxx-TestSMP (OTHER_FAULT) 1> 148 - vtkCommonCoreCxx-TestSmartPointer (OTHER_FAULT) 1> 149 - vtkCommonCoreCxx-TestSortDataArray (OTHER_FAULT) 1> 150 - vtkCommonCoreCxx-TestSparseArrayValidation (OTHER_FAULT) 1> 151 - vtkCommonCoreCxx-TestSystemInformation (OTHER_FAULT) 1> 152 - vtkCommonCoreCxx-TestTemplateMacro (OTHER_FAULT) 1> 153 - vtkCommonCoreCxx-TestTimePointUtility (OTHER_FAULT) 1> 154 - vtkCommonCoreCxx-TestUnicodeStringAPI (OTHER_FAULT) 1> 155 - vtkCommonCoreCxx-TestUnicodeStringArrayAPI (OTHER_FAULT) 1> 156 - vtkCommonCoreCxx-TestVariant (OTHER_FAULT) 1> 157 - vtkCommonCoreCxx-TestVariantComparison (OTHER_FAULT) 1> 158 - vtkCommonCoreCxx-TestWeakPointer (OTHER_FAULT) 1> 159 - vtkCommonCoreCxx-TestXMLFileOutputWindow (OTHER_FAULT) 1> 160 - vtkCommonCoreCxx-UnitTestInformationKeys (OTHER_FAULT) 1> 161 - vtkCommonCoreCxx-otherArrays (OTHER_FAULT) 1> 162 - vtkCommonCoreCxx-otherByteSwap (OTHER_FAULT) 1> 163 - vtkCommonCoreCxx-otherStringArray (OTHER_FAULT) 1> 164 - vtkCommonCoreCxx-TestDataArrayAPI_vtkDataArrayTemplate_LEGACY (OTHER_FAULT) 1> 165 - vtkCommonCoreCxx-TestDataArrayAPI_vtkCharArray (OTHER_FAULT) 1> 166 - vtkCommonCoreCxx-TestDataArrayAPI_vtkDoubleArray (OTHER_FAULT) 1> 167 - vtkCommonCoreCxx-TestDataArrayAPI_vtkFloatArray (OTHER_FAULT) 1> 168 - vtkCommonCoreCxx-TestDataArrayAPI_vtkIntArray (OTHER_FAULT) 1> 169 - vtkCommonCoreCxx-TestDataArrayAPI_vtkLongArray (OTHER_FAULT) 1> 170 - vtkCommonCoreCxx-TestDataArrayAPI_vtkLongLongArray (OTHER_FAULT) 1> 171 - vtkCommonCoreCxx-TestDataArrayAPI_vtkShortArray (OTHER_FAULT) 1> 172 - vtkCommonCoreCxx-TestDataArrayAPI_vtkSignedCharArray (OTHER_FAULT) 1> 173 - vtkCommonCoreCxx-TestDataArrayAPI_vtkUnsignedCharArray (OTHER_FAULT) 1> 174 - vtkCommonCoreCxx-TestDataArrayAPI_vtkUnsignedIntArray (OTHER_FAULT) 1> 175 - vtkCommonCoreCxx-TestDataArrayAPI_vtkUnsignedLongArray (OTHER_FAULT) 1> 176 - vtkCommonCoreCxx-TestDataArrayAPI_vtkUnsignedLongLongArray (OTHER_FAULT) 1> 177 - vtkCommonCoreCxx-TestDataArrayAPI_vtkUnsignedShortArray (OTHER_FAULT) 1> 178 - vtkCommonCoreCxx-TestDataArrayAPI_vtkIdTypeArray (OTHER_FAULT) 1> 179 - vtkCommonCoreCxx-TestDataArrayAPI_AoS_char (OTHER_FAULT) 1> 180 - vtkCommonCoreCxx-TestDataArrayAPI_SoA_char (OTHER_FAULT) 1> 181 - vtkCommonCoreCxx-TestDataArrayAPI_AoS_double (OTHER_FAULT) 1> 182 - vtkCommonCoreCxx-TestDataArrayAPI_SoA_double (OTHER_FAULT) 1> 183 - vtkCommonCoreCxx-TestDataArrayAPI_AoS_float (OTHER_FAULT) 1> 184 - vtkCommonCoreCxx-TestDataArrayAPI_SoA_float (OTHER_FAULT) 1> 185 - vtkCommonCoreCxx-TestDataArrayAPI_AoS_int (OTHER_FAULT) 1> 186 - vtkCommonCoreCxx-TestDataArrayAPI_SoA_int (OTHER_FAULT) 1> 187 - vtkCommonCoreCxx-TestDataArrayAPI_AoS_long (OTHER_FAULT) 1> 188 - vtkCommonCoreCxx-TestDataArrayAPI_SoA_long (OTHER_FAULT) 1> 189 - vtkCommonCoreCxx-TestDataArrayAPI_AoS_long_long (OTHER_FAULT) 1> 190 - vtkCommonCoreCxx-TestDataArrayAPI_SoA_long_long (OTHER_FAULT) 1> 191 - vtkCommonCoreCxx-TestDataArrayAPI_AoS_short (OTHER_FAULT) 1> 192 - vtkCommonCoreCxx-TestDataArrayAPI_SoA_short (OTHER_FAULT) 1> 193 - vtkCommonCoreCxx-TestDataArrayAPI_AoS_signed_char (OTHER_FAULT) 1> 194 - vtkCommonCoreCxx-TestDataArrayAPI_SoA_signed_char (OTHER_FAULT) 1> 195 - vtkCommonCoreCxx-TestDataArrayAPI_AoS_unsigned_char (OTHER_FAULT) 1> 196 - vtkCommonCoreCxx-TestDataArrayAPI_SoA_unsigned_char (OTHER_FAULT) 1> 197 - vtkCommonCoreCxx-TestDataArrayAPI_AoS_unsigned_int (OTHER_FAULT) 1> 198 - vtkCommonCoreCxx-TestDataArrayAPI_SoA_unsigned_int (OTHER_FAULT) 1> 199 - vtkCommonCoreCxx-TestDataArrayAPI_AoS_unsigned_long (OTHER_FAULT) 1> 200 - vtkCommonCoreCxx-TestDataArrayAPI_SoA_unsigned_long (OTHER_FAULT) 1> 201 - vtkCommonCoreCxx-TestDataArrayAPI_AoS_unsigned_long_long (OTHER_FAULT) 1> 202 - vtkCommonCoreCxx-TestDataArrayAPI_SoA_unsigned_long_long (OTHER_FAULT) 1> 203 - vtkCommonCoreCxx-TestDataArrayAPI_AoS_unsigned_short (OTHER_FAULT) 1> 204 - vtkCommonCoreCxx-TestDataArrayAPI_SoA_unsigned_short (OTHER_FAULT) 1> 205 - vtkCommonCoreCxx-TestDataArrayAPI_AoS_vtkIdType (OTHER_FAULT) 1> 206 - vtkCommonCoreCxx-TestDataArrayAPI_SoA_vtkIdType (OTHER_FAULT) 1> 210 - vtkCommonDataModelCxx-TestColor (OTHER_FAULT) 1> 211 - vtkCommonDataModelCxx-TestVector (OTHER_FAULT) 1> 212 - vtkCommonDataModelCxx-TestVectorOperators (OTHER_FAULT) 1> 213 - vtkCommonDataModelCxx-TestAMRBox (OTHER_FAULT) 1> 214 - vtkCommonDataModelCxx-TestBiQuadraticQuad (OTHER_FAULT) 1> 215 - vtkCommonDataModelCxx-TestCompositeDataSets (OTHER_FAULT) 1> 216 - vtkCommonDataModelCxx-TestComputeBoundingSphere (OTHER_FAULT) 1> 217 - vtkCommonDataModelCxx-TestDataArrayDispatcher (OTHER_FAULT) 1> 218 - vtkCommonDataModelCxx-TestDataObject (OTHER_FAULT) 1> 219 - vtkCommonDataModelCxx-TestDispatchers (OTHER_FAULT) 1> 220 - vtkCommonDataModelCxx-TestGenericCell (OTHER_FAULT) 1> 221 - vtkCommonDataModelCxx-TestGraph (OTHER_FAULT) 1> 222 - vtkCommonDataModelCxx-TestGraph2 (OTHER_FAULT) 1> 223 - vtkCommonDataModelCxx-TestGraphAttributes (OTHER_FAULT) 1> 224 - vtkCommonDataModelCxx-TestHigherOrderCell (OTHER_FAULT) 1> 225 - vtkCommonDataModelCxx-TestImageDataFindCell (OTHER_FAULT) 1> 226 - vtkCommonDataModelCxx-TestImageDataInterpolation (OTHER_FAULT) 1> 227 - vtkCommonDataModelCxx-TestImageIterator (OTHER_FAULT) 1> 228 - vtkCommonDataModelCxx-TestInterpolationDerivs (OTHER_FAULT) 1> 229 - vtkCommonDataModelCxx-TestInterpolationFunctions (OTHER_FAULT) 1> 230 - vtkCommonDataModelCxx-TestPath (OTHER_FAULT) 1> 231 - vtkCommonDataModelCxx-TestPentagonalPrism (OTHER_FAULT) 1> 232 - vtkCommonDataModelCxx-TestPixelExtent (OTHER_FAULT) 1> 233 - vtkCommonDataModelCxx-TestPointLocators (OTHER_FAULT) 1> 234 - vtkCommonDataModelCxx-TestPolyDataRemoveCell (OTHER_FAULT) 1> 235 - vtkCommonDataModelCxx-TestPolygon (OTHER_FAULT) 1> 236 - vtkCommonDataModelCxx-TestPolyhedron0 (OTHER_FAULT) 1> 237 - vtkCommonDataModelCxx-TestPolyhedron1 (OTHER_FAULT) 1> 238 - vtkCommonDataModelCxx-TestPolyhedron3 (OTHER_FAULT) 1> 239 - vtkCommonDataModelCxx-TestPolyhedronConvexity (OTHER_FAULT) 1> 240 - vtkCommonDataModelCxx-TestQuadraticPolygon (OTHER_FAULT) 1> 241 - vtkCommonDataModelCxx-TestRect (OTHER_FAULT) 1> 242 - vtkCommonDataModelCxx-TestSelectionSubtract (OTHER_FAULT) 1> 243 - vtkCommonDataModelCxx-TestSortFieldData (OTHER_FAULT) 1> 244 - vtkCommonDataModelCxx-TestTable (OTHER_FAULT) 1> 245 - vtkCommonDataModelCxx-TestTreeBFSIterator (OTHER_FAULT) 1> 246 - vtkCommonDataModelCxx-TestTreeDFSIterator (OTHER_FAULT) 1> 247 - vtkCommonDataModelCxx-TestTriangle (OTHER_FAULT) 1> 248 - vtkCommonDataModelCxx-TimePointLocators (OTHER_FAULT) 1> 249 - vtkCommonDataModelCxx-otherCellArray (OTHER_FAULT) 1> 250 - vtkCommonDataModelCxx-otherCellBoundaries (OTHER_FAULT) 1> 251 - vtkCommonDataModelCxx-otherCellPosition (OTHER_FAULT) 1> 252 - vtkCommonDataModelCxx-otherCellTypes (OTHER_FAULT) 1> 253 - vtkCommonDataModelCxx-otherColorTransferFunction (OTHER_FAULT) 1> 254 - vtkCommonDataModelCxx-otherEmptyCell (OTHER_FAULT) 1> 255 - vtkCommonDataModelCxx-otherFieldData (OTHER_FAULT) 1> 256 - vtkCommonDataModelCxx-otherRectilinearGrid (OTHER_FAULT) 1> 257 - vtkCommonDataModelCxx-otherStructuredGrid (OTHER_FAULT) 1> 258 - vtkCommonDataModelCxx-quadCellConsistency (OTHER_FAULT) 1> 259 - vtkCommonDataModelCxx-quadraticEvaluation (OTHER_FAULT) 1> 260 - vtkCommonDataModelCxx-TestBoundingBox (OTHER_FAULT) 1> 261 - vtkCommonDataModelCxx-TestPlane (OTHER_FAULT) 1> 262 - vtkCommonDataModelCxx-TestStaticCellLinks (OTHER_FAULT) 1> 263 - vtkCommonDataModelCxx-TestStructuredData (OTHER_FAULT) 1> 264 - vtkCommonDataModelCxx-TestDataObjectTypes (OTHER_FAULT) 1> 265 - vtkCommonDataModelCxx-TestPolyDataRemoveDeletedCells (OTHER_FAULT) 1> 266 - vtkCommonDataModelCxx-UnitTestCells (OTHER_FAULT) 1> 267 - vtkCommonDataModelCxx-UnitTestImplicitDataSet (OTHER_FAULT) 1> 268 - vtkCommonDataModelCxx-UnitTestImplicitVolume (OTHER_FAULT) 1> 269 - vtkCommonDataModelCxx-UnitTestLine (OTHER_FAULT) 1> 270 - vtkCommonDataModelCxx-UnitTestPlanesIntersection (OTHER_FAULT) 1> 271 - vtkCommonDataModelCxx-quadraticIntersection (OTHER_FAULT) 1> 272 - vtkCommonDataModelCxx-TestCellIterators (OTHER_FAULT) 1> 273 - vtkCommonDataModelCxx-TestCellLocator (OTHER_FAULT) 1> 274 - vtkCommonDataModelCxx-TestMeanValueCoordinatesInterpolation1 (OTHER_FAULT) 1> 275 - vtkCommonDataModelCxx-TestMeanValueCoordinatesInterpolation2 (OTHER_FAULT) 1> 276 - vtkCommonDataModelCxx-TestSmoothErrorMetric (OTHER_FAULT) 1> 277 - vtkCommonDataModelCxx-TestQuadraticPolygonFilters (OTHER_FAULT) 1> 278 - vtkCommonDataModelCxx-TestKdTreeRepresentation (OTHER_FAULT) 1> 279 - TestPolyhedron2 (OTHER_FAULT) 1> 280 - vtkCommonExecutionModelCxx-TestCopyAttributeData (OTHER_FAULT) 1> 281 - vtkCommonExecutionModelCxx-TestImageDataToStructuredGrid (OTHER_FAULT) 1> 282 - vtkCommonExecutionModelCxx-TestMetaData (OTHER_FAULT) 1> 283 - vtkCommonExecutionModelCxx-TestSetInputDataObject (OTHER_FAULT) 1> 284 - vtkCommonExecutionModelCxx-TestTemporalSupport (OTHER_FAULT) 1> 285 - vtkCommonExecutionModelCxx-TestThreadedImageAlgorithmSplitExtent (OTHER_FAULT) 1> 286 - vtkCommonExecutionModelCxx-TestTrivialConsumer (OTHER_FAULT) 1> 287 - vtkCommonExecutionModelCxx-UnitTestSimpleScalarTree (OTHER_FAULT) 1> 288 - vtkCommonMathCxx-TestAmoebaMinimizer (OTHER_FAULT) 1> 289 - vtkCommonMathCxx-TestMatrix3x3 (OTHER_FAULT) 1> 290 - vtkCommonMathCxx-TestPolynomialSolversUnivariate (OTHER_FAULT) 1> 291 - vtkCommonMathCxx-TestQuaternion (OTHER_FAULT) 1> 292 - vtkCommonMiscCxx-TestPolygonBuilder (OTHER_FAULT) 1> 293 - vtkCommonMiscCxx-TestPolygonBuilder2 (OTHER_FAULT) 1> 294 - vtkCommonMiscCxx-TestPolygonBuilder3 (OTHER_FAULT) 1> 295 - vtkCommonMiscCxx-TestPolygonBuilder4 (OTHER_FAULT) 1> 296 - vtkCommonMiscCxx-UnitTestFunctionParser (OTHER_FAULT) 1> 297 - vtkCommonSystemCxx-TestDirectory (OTHER_FAULT) 1> 298 - vtkCommonSystemCxx-otherTimerLog (OTHER_FAULT) 1> 299 - vtkCommonTransformsCxx-TestTransform (OTHER_FAULT) 1> 300 - vtkCommonTransformsCxx-TestLandmarkTransform (OTHER_FAULT) 1> 303 - vtkFiltersCoreCxx-TestAppendFilter (OTHER_FAULT) 1> 304 - vtkFiltersCoreCxx-TestAppendPolyData (OTHER_FAULT) 1> 305 - vtkFiltersCoreCxx-TestAppendSelection (OTHER_FAULT) 1> 306 - vtkFiltersCoreCxx-TestArrayCalculator (OTHER_FAULT) 1> 307 - vtkFiltersCoreCxx-TestAssignAttribute (OTHER_FAULT) 1> 308 - vtkFiltersCoreCxx-TestBinCellDataFilter (OTHER_FAULT) 1> 309 - vtkFiltersCoreCxx-TestCategoricalPointDataToCellData (OTHER_FAULT) 1> 310 - vtkFiltersCoreCxx-TestCellDataToPointData (OTHER_FAULT) 1> 311 - vtkFiltersCoreCxx-TestCenterOfMass (OTHER_FAULT) 1> 312 - vtkFiltersCoreCxx-TestCleanPolyData (OTHER_FAULT) 1> 313 - vtkFiltersCoreCxx-TestClipPolyData (OTHER_FAULT) 1> 314 - vtkFiltersCoreCxx-TestConnectivityFilter (OTHER_FAULT) 1> 315 - vtkFiltersCoreCxx-TestCutter (OTHER_FAULT) 1> 316 - vtkFiltersCoreCxx-TestDecimatePolylineFilter (OTHER_FAULT) 1> 317 - vtkFiltersCoreCxx-TestDecimatePro (OTHER_FAULT) 1> 318 - vtkFiltersCoreCxx-TestDelaunay2D (OTHER_FAULT) 1> 319 - vtkFiltersCoreCxx-TestDelaunay2DFindTriangle (OTHER_FAULT) 1> 320 - vtkFiltersCoreCxx-TestDelaunay2DMeshes (OTHER_FAULT) 1> 321 - vtkFiltersCoreCxx-TestDelaunay3D (OTHER_FAULT) 1> 322 - vtkFiltersCoreCxx-TestExecutionTimer (OTHER_FAULT) 1> 323 - vtkFiltersCoreCxx-TestFeatureEdges (OTHER_FAULT) 1> 324 - vtkFiltersCoreCxx-TestFlyingEdges (OTHER_FAULT) 1> 325 - vtkFiltersCoreCxx-TestGlyph3D (OTHER_FAULT) 1> 326 - vtkFiltersCoreCxx-TestHedgeHog (OTHER_FAULT) 1> 327 - vtkFiltersCoreCxx-TestImplicitPolyDataDistance (OTHER_FAULT) 1> 328 - vtkFiltersCoreCxx-TestMaskPoints (OTHER_FAULT) 1> 329 - vtkFiltersCoreCxx-TestNamedComponents (OTHER_FAULT) 1> 330 - vtkFiltersCoreCxx-TestPolyDataConnectivityFilter (OTHER_FAULT) 1> 331 - vtkFiltersCoreCxx-TestProbeFilter (OTHER_FAULT) 1> 332 - vtkFiltersCoreCxx-TestProbeFilterImageInput (OTHER_FAULT) 1> 333 - vtkFiltersCoreCxx-TestProbeFilterOutputAttributes (OTHER_FAULT) 1> 334 - vtkFiltersCoreCxx-TestResampleToImage (OTHER_FAULT) 1> 335 - vtkFiltersCoreCxx-TestResampleWithDataSet (OTHER_FAULT) 1> 336 - vtkFiltersCoreCxx-TestSmoothPolyDataFilter (OTHER_FAULT) 1> 337 - vtkFiltersCoreCxx-TestSMPPipelineContour (OTHER_FAULT) 1> 338 - vtkFiltersCoreCxx-TestStripper (OTHER_FAULT) 1> 339 - vtkFiltersCoreCxx-TestStructuredGridAppend (OTHER_FAULT) 1> 340 - vtkFiltersCoreCxx-TestThreshold (OTHER_FAULT) 1> 341 - vtkFiltersCoreCxx-TestThresholdPoints (OTHER_FAULT) 1> 342 - vtkFiltersCoreCxx-TestTransposeTable (OTHER_FAULT) 1> 343 - vtkFiltersCoreCxx-TestTubeFilter (OTHER_FAULT) 1> 344 - vtkFiltersCoreCxx-TestUnstructuredGridQuadricDecimation (OTHER_FAULT) 1> 345 - vtkFiltersCoreCxx-UnitTestMaskPoints (OTHER_FAULT) 1> 346 - vtkFiltersCoreCxx-UnitTestMergeFilter (OTHER_FAULT) 1> 348 - vtkFiltersGenericCxx-TestGenericStreamTracer (OTHER_FAULT) 1> 349 - vtkFiltersGenericCxx-TestGenericClip (OTHER_FAULT) 1> 350 - vtkFiltersGenericCxx-TestGenericContourFilter (OTHER_FAULT) 1> 351 - vtkFiltersGenericCxx-TestGenericCutter (OTHER_FAULT) 1> 352 - vtkFiltersGenericCxx-TestGenericDataSetTessellator (OTHER_FAULT) 1> 353 - vtkFiltersGenericCxx-TestGenericGeometryFilter (OTHER_FAULT) 1> 354 - vtkFiltersGenericCxx-TestGenericGlyph3DFilter (OTHER_FAULT) 1> 355 - vtkFiltersGenericCxx-TestGenericProbeFilter (OTHER_FAULT) 1> 356 - vtkFiltersGenericCxx-otherCreation (OTHER_FAULT) 1> 357 - vtkFiltersGenericCxx-UnitTestGenericGeometryFilter (OTHER_FAULT) 1> 358 - vtkFiltersGeometryCxx-TestExtractSurfaceNonLinearSubdivision (OTHER_FAULT) 1> 359 - vtkFiltersGeometryCxx-TestDataSetSurfaceFieldData (OTHER_FAULT) 1> 360 - vtkFiltersGeometryCxx-TestDataSetRegionSurfaceFilter (OTHER_FAULT) 1> 361 - vtkFiltersGeometryCxx-TestImageDataToUniformGrid (OTHER_FAULT) 1> 362 - vtkFiltersGeometryCxx-TestLinearToQuadraticCellsFilter (OTHER_FAULT) 1> 363 - vtkFiltersGeometryCxx-TestProjectSphereFilter (OTHER_FAULT) 1> 364 - vtkFiltersGeometryCxx-TestStructuredAMRNeighbor (OTHER_FAULT) 1> 365 - vtkFiltersGeometryCxx-TestUniformGridGhostDataGenerator (OTHER_FAULT) 1> 366 - vtkFiltersGeometryCxx-TestUnstructuredGridGeometryFilter (OTHER_FAULT) 1> 367 - vtkFiltersGeometryCxx-TestGeometryFilterCellData (OTHER_FAULT) 1> 368 - vtkFiltersGeometryCxx-TestStructuredAMRGridConnectivity (OTHER_FAULT) 1> 369 - vtkFiltersGeometryCxx-TestStructuredGridConnectivity (OTHER_FAULT) 1> 370 - vtkFiltersGeometryCxx-TestStructuredGridGhostDataGenerator (OTHER_FAULT) 1> 371 - vtkFiltersGeometryCxx-UnitTestDataSetSurfaceFilter (OTHER_FAULT) 1> 373 - vtkFiltersHybridCxx-TemporalStatistics (OTHER_FAULT) 1> 374 - vtkFiltersHybridCxx-TestBSplineTransform (OTHER_FAULT) 1> 375 - vtkFiltersHybridCxx-TestDepthSortPolyData (OTHER_FAULT) 1> 376 - vtkFiltersHybridCxx-TestForceTime (OTHER_FAULT) 1> 377 - vtkFiltersHybridCxx-TestPolyDataSilhouette (OTHER_FAULT) 1> 378 - vtkFiltersHybridCxx-TestProcrustesAlignmentFilter (OTHER_FAULT) 1> 379 - vtkFiltersHybridCxx-TestTemporalCacheSimple (OTHER_FAULT) 1> 380 - vtkFiltersHybridCxx-TestTemporalCacheTemporal (OTHER_FAULT) 1> 381 - vtkFiltersHybridCxx-TestTemporalFractal (OTHER_FAULT) 1> 383 - vtkFiltersModelingCxx-TestButterflyScalars (OTHER_FAULT) 1> 384 - vtkFiltersModelingCxx-TestNamedColorsIntegration (OTHER_FAULT) 1> 385 - vtkFiltersModelingCxx-TestPolyDataPointSampler (OTHER_FAULT) 1> 386 - vtkFiltersModelingCxx-TestQuadRotationalExtrusion (OTHER_FAULT) 1> 387 - vtkFiltersModelingCxx-TestQuadRotationalExtrusionMultiBlock (OTHER_FAULT) 1> 388 - vtkFiltersModelingCxx-TestRotationalExtrusion (OTHER_FAULT) 1> 389 - vtkFiltersModelingCxx-TestSelectEnclosedPoints (OTHER_FAULT) 1> 390 - vtkFiltersModelingCxx-TestVolumeOfRevolutionFilter (OTHER_FAULT) 1> 398 - vtkFiltersParallelGeometryCxx-MPI-TestPStructuredGridConnectivity (OTHER_FAULT) 1> 399 - vtkFiltersParallelGeometryCxx-MPI-TestPStructuredGridGhostDataGenerator (OTHER_FAULT) 1> 400 - vtkFiltersParallelGeometryCxx-MPI-TestPUnstructuredGridGhostCellsGenerator (OTHER_FAULT) 1> 401 - vtkFiltersParallelGeometryCxx-MPI-TestPUniformGridGhostDataGenerator (OTHER_FAULT) 1> 402 - vtkFiltersParallelGeometryCxx-MPI-TestPUnstructuredGridConnectivity (OTHER_FAULT) 1> 403 - vtkFiltersParallelGeometryCxx-MPI-TestPUnstructuredGridGhostDataGenerator (OTHER_FAULT) 1> 406 - vtkFiltersParallelMPICxx-MPI-TestImplicitConnectivity (OTHER_FAULT) 1> 408 - vtkFiltersPointsCxx-UnitTestKernels (OTHER_FAULT) 1> 409 - vtkFiltersPointsCxx-TestSPHKernels (OTHER_FAULT) 1> 410 - vtkFiltersPointsCxx-PlotSPHKernels (OTHER_FAULT) 1> 412 - vtkFiltersSMPCxx-TestSMPContour (OTHER_FAULT) 1> 413 - vtkFiltersSMPCxx-TestThreadedSynchronizedTemplates3D (OTHER_FAULT) 1> 414 - vtkFiltersSMPCxx-TestThreadedSynchronizedTemplatesCutter3D (OTHER_FAULT) 1> 415 - vtkFiltersSMPCxx-TestSMPTransform (OTHER_FAULT) 1> 416 - vtkFiltersSMPCxx-TestSMPWarp (OTHER_FAULT) 1> 418 - vtkFiltersSelectionCxx-TestLinearSelector2D (OTHER_FAULT) 1> 419 - vtkFiltersSelectionCxx-TestCellDistanceSelector2D (OTHER_FAULT) 1> 420 - vtkFiltersSelectionCxx-TestCellDistanceSelector3D (OTHER_FAULT) 1> 421 - vtkFiltersSelectionCxx-TestLinearSelector3D (OTHER_FAULT) 1> 422 - vtkFiltersSourcesCxx-TestArcSource (OTHER_FAULT) 1> 423 - vtkFiltersSourcesCxx-TestConeSource (OTHER_FAULT) 1> 424 - vtkFiltersSourcesCxx-TestCubeSource (OTHER_FAULT) 1> 425 - vtkFiltersSourcesCxx-TestCylinderSource (OTHER_FAULT) 1> 426 - vtkFiltersSourcesCxx-TestDiskSource (OTHER_FAULT) 1> 427 - vtkFiltersSourcesCxx-TestEllipticalButtonSource (OTHER_FAULT) 1> 428 - vtkFiltersSourcesCxx-TestEllipseArcSource (OTHER_FAULT) 1> 429 - vtkFiltersSourcesCxx-TestFrustumSource (OTHER_FAULT) 1> 430 - vtkFiltersSourcesCxx-TestGlyphSource2D (OTHER_FAULT) 1> 431 - vtkFiltersSourcesCxx-TestLineSource (OTHER_FAULT) 1> 432 - vtkFiltersSourcesCxx-TestMultiBlock (OTHER_FAULT) 1> 433 - vtkFiltersSourcesCxx-TestOutlineCornerSource (OTHER_FAULT) 1> 434 - vtkFiltersSourcesCxx-TestOutlineSource (OTHER_FAULT) 1> 435 - vtkFiltersSourcesCxx-TestParametricFunctionSource (OTHER_FAULT) 1> 436 - vtkFiltersSourcesCxx-TestPlaneSource (OTHER_FAULT) 1> 437 - vtkFiltersSourcesCxx-TestPlatonicSolidSource (OTHER_FAULT) 1> 438 - vtkFiltersSourcesCxx-TestPointSource (OTHER_FAULT) 1> 439 - vtkFiltersSourcesCxx-TestPolyLineSource (OTHER_FAULT) 1> 440 - vtkFiltersSourcesCxx-TestRectangularButtonSource (OTHER_FAULT) 1> 441 - vtkFiltersSourcesCxx-TestRegularPolygonSource (OTHER_FAULT) 1> 442 - vtkFiltersSourcesCxx-TestSphereSource (OTHER_FAULT) 1> 443 - vtkFiltersSourcesCxx-TestSuperquadricSource (OTHER_FAULT) 1> 444 - vtkFiltersSourcesCxx-TestTessellatedBoxSource (OTHER_FAULT) 1> 445 - vtkFiltersSourcesCxx-TestTextSource (OTHER_FAULT) 1> 446 - vtkFiltersSourcesCxx-TestTexturedSphereSource (OTHER_FAULT) 1> 447 - vtkFiltersSourcesCxx-TestGlyphSource2DResolution (OTHER_FAULT) 1> 448 - vtkFiltersStatisticsCxx-TestAutoCorrelativeStatistics (OTHER_FAULT) 1> 449 - vtkFiltersStatisticsCxx-TestComputeQuartiles (OTHER_FAULT) 1> 450 - vtkFiltersStatisticsCxx-TestContingencyStatistics (OTHER_FAULT) 1> 451 - vtkFiltersStatisticsCxx-TestCorrelativeStatistics (OTHER_FAULT) 1> 452 - vtkFiltersStatisticsCxx-TestDescriptiveStatistics (OTHER_FAULT) 1> 453 - vtkFiltersStatisticsCxx-TestHighestDensityRegionsStatistics (OTHER_FAULT) 1> 454 - vtkFiltersStatisticsCxx-TestExtractFunctionalBagPlot (OTHER_FAULT) 1> 455 - vtkFiltersStatisticsCxx-TestKMeansStatistics (OTHER_FAULT) 1> 456 - vtkFiltersStatisticsCxx-TestMultiCorrelativeStatistics (OTHER_FAULT) 1> 457 - vtkFiltersStatisticsCxx-TestOrderStatistics (OTHER_FAULT) 1> 458 - vtkFiltersStatisticsCxx-TestPCAStatistics (OTHER_FAULT) 1> 461 - vtkFiltersVerdictCxx-MeshQuality (OTHER_FAULT) 1> 466 - vtkGeovisCoreCxx-TestGeoAssignCoordinates (OTHER_FAULT) 1> 467 - vtkGeovisCoreCxx-TestGeoGraticule (OTHER_FAULT) 1> 468 - vtkGeovisCoreCxx-TestGeoProjection (OTHER_FAULT) 1> 469 - vtkGeovisCoreCxx-TestGlobeSource (OTHER_FAULT) 1> 470 - vtkGeovisCoreCxx-TestCoincidentGeoGraphRepresentation2D (OTHER_FAULT) 1> 471 - vtkGeovisCoreCxx-TestLabeledGeoView2D (OTHER_FAULT) 1> 472 - vtkIOCoreCxx-TestArrayDataWriter (OTHER_FAULT) 1> 473 - vtkIOCoreCxx-TestArrayDenormalized (OTHER_FAULT) 1> 474 - vtkIOCoreCxx-TestArraySerialization (OTHER_FAULT) 1> 475 - vtkIOCoreCxx-TestCompress (OTHER_FAULT) 1> 478 - vtkIOExportCxx-X3DTest (OTHER_FAULT) 1> 479 - vtkIOExportCxx-TestRIBExporter (OTHER_FAULT) 1> 480 - vtkIOExportCxx-UnitTestRIB (OTHER_FAULT) 1> 481 - vtkIOImageCxx-TestNrrdReader (OTHER_FAULT) 1> 482 - vtkIOImageCxx-TestNIFTIReaderWriter (OTHER_FAULT) 1> 483 - vtkIOImageCxx-TestNIFTIReaderAnalyze (OTHER_FAULT) 1> 484 - vtkIOImageCxx-TestNIFTI2 (OTHER_FAULT) 1> 485 - vtkIOImageCxx-TestDataObjectIO (OTHER_FAULT) 1> 486 - vtkIOImageCxx-TestMetaIO (OTHER_FAULT) 1> 487 - vtkIOImageCxx-TestImportExport (OTHER_FAULT) 1> 488 - vtkIOImageCxx-TestTIFFReaderMultipleMulti (OTHER_FAULT) 1> 489 - vtkIOImageCxx-TestTIFFReaderMultipleNormal (OTHER_FAULT) 1> 490 - vtkIOImageCxx-TestTIFFReaderMultipleTiled (OTHER_FAULT) 1> 491 - vtkIOImageCxx-TestTIFFReaderMulti (OTHER_FAULT) 1> 492 - vtkIOImageCxx-TestTIFFReaderTiled (OTHER_FAULT) 1> 493 - vtkIOImageCxx-TestTIFFReaderTiledRGB (OTHER_FAULT) 1> 494 - vtkIOImageCxx-TestCompressedTIFFReader (OTHER_FAULT) 1> 496 - vtkIOImportCxx-TestOBJImporter (OTHER_FAULT) 1> 497 - vtkIOImportCxx-TestVRMLNormals (OTHER_FAULT) 1> 498 - vtkIOImportCxx-TestVRMLImporter (OTHER_FAULT) 1> 499 - vtkIOImportCxx-OBJImport-MixedOrder1 (OTHER_FAULT) 1> 500 - vtkIOImportCxx-OBJImport-NoMTL (OTHER_FAULT) 1> 501 - vtkIOImportCxx-OBJImport-SolidAndTextured (OTHER_FAULT) 1> 502 - vtkIOImportCxx-OBJImport-MTLwithoutTextureFile (OTHER_FAULT) 1> 503 - vtkIOInfovisCxx-TestBiomTableReader (OTHER_FAULT) 1> 504 - vtkIOInfovisCxx-TestDIMACSGraphReader (OTHER_FAULT) 1> 505 - vtkIOInfovisCxx-TestDataObjectIO (OTHER_FAULT) 1> 506 - vtkIOInfovisCxx-TestISIReader (OTHER_FAULT) 1> 507 - vtkIOInfovisCxx-TestFixedWidthTextReader (OTHER_FAULT) 1> 508 - vtkIOInfovisCxx-TestNewickTreeReader (OTHER_FAULT) 1> 509 - vtkIOInfovisCxx-TestNewickTreeWriter (OTHER_FAULT) 1> 510 - vtkIOInfovisCxx-TestMultiNewickTreeReader (OTHER_FAULT) 1> 511 - vtkIOInfovisCxx-TestPhyloXMLTreeReadWrite (OTHER_FAULT) 1> 512 - vtkIOInfovisCxx-TestRISReader (OTHER_FAULT) 1> 513 - vtkIOInfovisCxx-TestTulipReaderProperties (OTHER_FAULT) 1> 514 - vtkIOInfovisCxx-TestDelimitedTextReader2 (OTHER_FAULT) 1> 516 - vtkIOMovieCxx-TestAVIWriter (OTHER_FAULT) 1> 517 - vtkIOMovieCxx-TestOggTheoraWriter (OTHER_FAULT) 1> 519 - vtkIOPLYCxx-TestPLYReader (OTHER_FAULT) 1> 520 - vtkIOPLYCxx-TestPLYReaderTextureUV (OTHER_FAULT) 1> 521 - vtkIOPLYCxx-TestPLYWriter (OTHER_FAULT) 1> 523 - vtkIOParallelCxx-TestPOpenFOAMReader (OTHER_FAULT) 1> 527 - vtkImagingCoreCxx-FastSplatter (OTHER_FAULT) 1> 528 - vtkImagingCoreCxx-ImageAccumulate (OTHER_FAULT) 1> 529 - vtkImagingCoreCxx-ImageAccumulateLarge (OTHER_FAULT) 1> 530 - vtkImagingCoreCxx-ImageAutoRange (OTHER_FAULT) 1> 531 - vtkImagingCoreCxx-ImageBSplineCoefficients (OTHER_FAULT) 1> 532 - vtkImagingCoreCxx-ImageHistogram (OTHER_FAULT) 1> 533 - vtkImagingCoreCxx-ImageHistogramStatistics (OTHER_FAULT) 1> 534 - vtkImagingCoreCxx-ImageResize (OTHER_FAULT) 1> 535 - vtkImagingCoreCxx-ImageResize3D (OTHER_FAULT) 1> 536 - vtkImagingCoreCxx-ImageResizeCropping (OTHER_FAULT) 1> 537 - vtkImagingCoreCxx-ImageReslice (OTHER_FAULT) 1> 538 - vtkImagingCoreCxx-ImageWeightedSum (OTHER_FAULT) 1> 539 - vtkImagingCoreCxx-ImportExport (OTHER_FAULT) 1> 540 - vtkImagingCoreCxx-TestBSplineWarp (OTHER_FAULT) 1> 541 - vtkImagingCoreCxx-TestImageStencilDataMethods (OTHER_FAULT) 1> 542 - vtkImagingCoreCxx-TestImageStencilIterator (OTHER_FAULT) 1> 543 - vtkImagingCoreCxx-TestStencilWithLasso (OTHER_FAULT) 1> 544 - vtkImagingCoreCxx-TestStencilWithPolyDataContour (OTHER_FAULT) 1> 545 - vtkImagingCoreCxx-TestStencilWithPolyDataSurface (OTHER_FAULT) 1> 546 - vtkImagingCoreCxx-TestUpdateExtentReset (OTHER_FAULT) 1> 547 - vtkImagingCoreCxx-AddStencilData (OTHER_FAULT) 1> 548 - vtkImagingCoreCxx-SubtractStencilData (OTHER_FAULT) 1> 549 - vtkImagingCoreCxx-ClipStencilData (OTHER_FAULT) 1> 550 - vtkImagingHybridCxx-TestImageToPoints (OTHER_FAULT) 1> 551 - vtkImagingHybridCxx-TestSampleFunction (OTHER_FAULT) 1> 553 - vtkImagingMorphologicalCxx-TestImageThresholdConnectivity (OTHER_FAULT) 1> 554 - vtkImagingMorphologicalCxx-TestImageConnectivityFilter (OTHER_FAULT) 1> 556 - vtkImagingOpenGL2Cxx-TestOpenGLImageGradient (OTHER_FAULT) 1> 557 - vtkInfovisCoreCxx-TestStringToNumeric (OTHER_FAULT) 1> 558 - vtkInfovisCoreCxx-TestMergeTables (OTHER_FAULT) 1> 559 - vtkInfovisCoreCxx-ArrayDotProductSimilarity (OTHER_FAULT) 1> 560 - vtkInfovisCoreCxx-ArraySparseArrayToTable (OTHER_FAULT) 1> 561 - vtkInfovisCoreCxx-ArrayTableToSparseArray (OTHER_FAULT) 1> 562 - vtkInfovisCoreCxx-ArrayToTable (OTHER_FAULT) 1> 563 - vtkInfovisCoreCxx-ArrayTransposeMatrix (OTHER_FAULT) 1> 564 - vtkInfovisCoreCxx-TestArrayNorm (OTHER_FAULT) 1> 565 - vtkInfovisCoreCxx-TestCollapseVerticesByArray (OTHER_FAULT) 1> 566 - vtkInfovisCoreCxx-TestDataObjectToTable (OTHER_FAULT) 1> 567 - vtkInfovisCoreCxx-TestExtractSelectedTree (OTHER_FAULT) 1> 568 - vtkInfovisCoreCxx-TestExtractSelectedGraph (OTHER_FAULT) 1> 569 - vtkInfovisCoreCxx-TestGraphAlgorithms (OTHER_FAULT) 1> 570 - vtkInfovisCoreCxx-TestMergeGraphs (OTHER_FAULT) 1> 571 - vtkInfovisCoreCxx-TestPruneTreeFilter (OTHER_FAULT) 1> 572 - vtkInfovisCoreCxx-TestRandomGraphSource (OTHER_FAULT) 1> 573 - vtkInfovisCoreCxx-TestReduceTable (OTHER_FAULT) 1> 574 - vtkInfovisCoreCxx-TestRemoveIsolatedVertices (OTHER_FAULT) 1> 575 - vtkInfovisCoreCxx-TestStreamGraph (OTHER_FAULT) 1> 576 - vtkInfovisCoreCxx-TestTableToArray (OTHER_FAULT) 1> 577 - vtkInfovisCoreCxx-TestThresholdTable (OTHER_FAULT) 1> 578 - vtkInfovisCoreCxx-TestTreeDifferenceFilter (OTHER_FAULT) 1> 579 - vtkInfovisLayoutCxx-TestChacoGraphReader (OTHER_FAULT) 1> 580 - vtkInfovisLayoutCxx-TestCirclePackLayoutStrategy (OTHER_FAULT) 1> 581 - vtkInfovisLayoutCxx-TestGraphLayoutStrategy (OTHER_FAULT) 1> 582 - vtkInfovisLayoutCxx-TestIncrementalForceLayout (OTHER_FAULT) 1> 583 - vtkInfovisLayoutCxx-TestTreeMapLayoutStrategy (OTHER_FAULT) 1> 584 - vtkParallelCoreCxx-TestFieldDataSerialization (OTHER_FAULT) 1> 585 - vtkParallelCore-TestSocketCommunicator (Failed) 1> 586 - vtkParallelMPICxx-MPI-TestPProbe (OTHER_FAULT) 1> 587 - vtkParallelMPICxx-MPI-GenericCommunicator (OTHER_FAULT) 1> 588 - vtkParallelMPICxx-MPI-MPIController (OTHER_FAULT) 1> 589 - vtkParallelMPICxx-MPI-PDirectory (OTHER_FAULT) 1> 590 - vtkParallelMPICxx-MPI-PSystemTools (OTHER_FAULT) 1> 591 - vtkParallelMPICxx-MPI-TestNonBlockingCommunication (OTHER_FAULT) 1> 592 - vtkParallelMPICxx-MPI-TestProcess (OTHER_FAULT) 1> 594 - vtkRenderingAnnotationCxx-TestAxisActor (OTHER_FAULT) 1> 595 - vtkRenderingAnnotationCxx-TestAxisActor2D (OTHER_FAULT) 1> 596 - vtkRenderingAnnotationCxx-TestAxisActor3D (OTHER_FAULT) 1> 597 - vtkRenderingAnnotationCxx-TestAxisActorText3D (OTHER_FAULT) 1> 598 - vtkRenderingAnnotationCxx-TestBarChartActor (OTHER_FAULT) 1> 599 - vtkRenderingAnnotationCxx-TestCaptionActor2D (OTHER_FAULT) 1> 600 - vtkRenderingAnnotationCxx-TestConvexHull2D (OTHER_FAULT) 1> 601 - vtkRenderingAnnotationCxx-TestCornerAnnotation (OTHER_FAULT) 1> 602 - vtkRenderingAnnotationCxx-TestCubeAxes2DMode (OTHER_FAULT) 1> 603 - vtkRenderingAnnotationCxx-TestCubeAxes3 (OTHER_FAULT) 1> 604 - vtkRenderingAnnotationCxx-TestCubeAxesInnerGridAll (OTHER_FAULT) 1> 605 - vtkRenderingAnnotationCxx-TestCubeAxesInnerGridClosest (OTHER_FAULT) 1> 606 - vtkRenderingAnnotationCxx-TestCubeAxesInnerGridFurthest (OTHER_FAULT) 1> 607 - vtkRenderingAnnotationCxx-TestCubeAxesIntersectionPoint (OTHER_FAULT) 1> 608 - vtkRenderingAnnotationCxx-TestCubeAxesOrientedBoundingBox (OTHER_FAULT) 1> 609 - vtkRenderingAnnotationCxx-TestCubeAxesSticky (OTHER_FAULT) 1> 610 - vtkRenderingAnnotationCxx-TestCubeAxesStickyCentered (OTHER_FAULT) 1> 611 - vtkRenderingAnnotationCxx-TestCubeAxesWithGridLines (OTHER_FAULT) 1> 612 - vtkRenderingAnnotationCxx-TestCubeAxesWithXInnerGrids (OTHER_FAULT) 1> 613 - vtkRenderingAnnotationCxx-TestCubeAxesWithXInnerPolys (OTHER_FAULT) 1> 614 - vtkRenderingAnnotationCxx-TestCubeAxesWithXLines (OTHER_FAULT) 1> 615 - vtkRenderingAnnotationCxx-TestCubeAxesWithYInnerGrids (OTHER_FAULT) 1> 616 - vtkRenderingAnnotationCxx-TestCubeAxesWithYInnerPolys (OTHER_FAULT) 1> 617 - vtkRenderingAnnotationCxx-TestCubeAxesWithYLines (OTHER_FAULT) 1> 618 - vtkRenderingAnnotationCxx-TestCubeAxesWithZInnerGrids (OTHER_FAULT) 1> 619 - vtkRenderingAnnotationCxx-TestCubeAxesWithZInnerPolys (OTHER_FAULT) 1> 620 - vtkRenderingAnnotationCxx-TestCubeAxesWithZLines (OTHER_FAULT) 1> 621 - vtkRenderingAnnotationCxx-TestEmptyCornerAnnotation (OTHER_FAULT) 1> 622 - vtkRenderingAnnotationCxx-TestLegendBoxActor (OTHER_FAULT) 1> 623 - vtkRenderingAnnotationCxx-TestLegendBoxActor2 (OTHER_FAULT) 1> 624 - vtkRenderingAnnotationCxx-TestLegendScaleActor (OTHER_FAULT) 1> 625 - vtkRenderingAnnotationCxx-TestPieChartActor (OTHER_FAULT) 1> 626 - vtkRenderingAnnotationCxx-TestPolarAxes (OTHER_FAULT) 1> 627 - vtkRenderingAnnotationCxx-TestScalarBar (OTHER_FAULT) 1> 628 - vtkRenderingAnnotationCxx-TestScalarBarAboveBelow (OTHER_FAULT) 1> 629 - vtkRenderingAnnotationCxx-TestSpiderPlotActor (OTHER_FAULT) 1> 630 - vtkRenderingAnnotationCxx-TestXYPlotActor (OTHER_FAULT) 1> 631 - vtkRenderingContext2DCxx-TestContext2D (OTHER_FAULT) 1> 632 - vtkRenderingFreeTypeCxx-TestBillboardTextActor3D (OTHER_FAULT) 1> 633 - vtkRenderingFreeTypeCxx-TestFTStringToPath (OTHER_FAULT) 1> 634 - vtkRenderingFreeTypeCxx-TestFreeTypeTextMapperNoMath (OTHER_FAULT) 1> 635 - vtkRenderingFreeTypeCxx-TestFreeTypeTools (OTHER_FAULT) 1> 636 - vtkRenderingFreeTypeCxx-TestMathTextFreeTypeTextRendererNoMath (OTHER_FAULT) 1> 637 - vtkRenderingFreeTypeCxx-TestTextActor (OTHER_FAULT) 1> 638 - vtkRenderingFreeTypeCxx-TestTextActor3D (OTHER_FAULT) 1> 639 - vtkRenderingFreeTypeCxx-TestTextActorAlphaBlending (OTHER_FAULT) 1> 640 - vtkRenderingFreeTypeCxx-TestTextActorDepthPeeling (OTHER_FAULT) 1> 641 - vtkRenderingFreeTypeCxx-TestTextActor3DAlphaBlending (OTHER_FAULT) 1> 642 - vtkRenderingFreeTypeCxx-TestTextActor3DDepthPeeling (OTHER_FAULT) 1> 643 - vtkRenderingFreeTypeCxx-TestTextActorScaleModeProp (OTHER_FAULT) 1> 644 - vtkRenderingFreeTypeCxx-TestTextMapper (OTHER_FAULT) 1> 645 - vtkRenderingImageCxx-TestCellPickerImage (OTHER_FAULT) 1> 646 - vtkRenderingImageCxx-TestImageSliceMapperAlpha (OTHER_FAULT) 1> 647 - vtkRenderingImageCxx-TestImageResliceMapperAlpha (OTHER_FAULT) 1> 648 - vtkRenderingImageCxx-TestImageSliceMapperBackground (OTHER_FAULT) 1> 649 - vtkRenderingImageCxx-TestImageResliceMapperBackground (OTHER_FAULT) 1> 650 - vtkRenderingImageCxx-TestImageSliceMapperBorder (OTHER_FAULT) 1> 651 - vtkRenderingImageCxx-TestImageResliceMapperBorder (OTHER_FAULT) 1> 652 - vtkRenderingImageCxx-TestImageSliceMapperInterpolation (OTHER_FAULT) 1> 653 - vtkRenderingImageCxx-TestImageResliceMapperInterpolation (OTHER_FAULT) 1> 654 - vtkRenderingImageCxx-TestImageSliceMapperOrient2D (OTHER_FAULT) 1> 655 - vtkRenderingImageCxx-TestImageResliceMapperOffAxis (OTHER_FAULT) 1> 656 - vtkRenderingImageCxx-TestImageSliceMapperOrient3D (OTHER_FAULT) 1> 657 - vtkRenderingImageCxx-TestImageResliceMapperOrient3D (OTHER_FAULT) 1> 658 - vtkRenderingImageCxx-TestImageStack (OTHER_FAULT) 1> 659 - vtkRenderingImageCxx-TestImageResliceMapperSlab (OTHER_FAULT) 1> 660 - vtkRenderingLODCxx-TestLODActor (OTHER_FAULT) 1> 661 - vtkRenderingLabelCxx-TestDynamic2DLabelMapper (OTHER_FAULT) 1> 662 - vtkRenderingLabelCxx-TestLabelPlacer (OTHER_FAULT) 1> 663 - vtkRenderingLabelCxx-TestLabelPlacer2D (OTHER_FAULT) 1> 664 - vtkRenderingLabelCxx-TestLabelPlacerCoincidentPoints (OTHER_FAULT) 1> 665 - vtkRenderingLabelCxx-TestLabelPlacementMapper (OTHER_FAULT) 1> 666 - vtkRenderingLabelCxx-TestLabelPlacementMapper2D (OTHER_FAULT) 1> 667 - vtkRenderingLabelCxx-TestLabelPlacementMapperCoincidentPoints (OTHER_FAULT) 1> 668 - vtkRenderingOpenGL2Cxx-TestAppleBug (OTHER_FAULT) 1> 669 - vtkRenderingOpenGL2Cxx-TestBlurAndSobelPasses (OTHER_FAULT) 1> 670 - vtkRenderingOpenGL2Cxx-TestCoincident (OTHER_FAULT) 1> 671 - vtkRenderingOpenGL2Cxx-TestCompositePolyDataMapper2Spheres (OTHER_FAULT) 1> 672 - vtkRenderingOpenGL2Cxx-TestCubeMap (OTHER_FAULT) 1> 673 - vtkRenderingOpenGL2Cxx-TestDepthOfFieldPass (OTHER_FAULT) 1> 674 - vtkRenderingOpenGL2Cxx-TestDepthPeelingPass (OTHER_FAULT) 1> 675 - vtkRenderingOpenGL2Cxx-TestEDLPass (OTHER_FAULT) 1> 676 - vtkRenderingOpenGL2Cxx-TestFXAAFilter (OTHER_FAULT) 1> 677 - vtkRenderingOpenGL2Cxx-TestGaussianBlurPass (OTHER_FAULT) 1> 678 - vtkRenderingOpenGL2Cxx-TestLightingMapLuminancePass (OTHER_FAULT) 1> 679 - vtkRenderingOpenGL2Cxx-TestLightingMapNormalsPass (OTHER_FAULT) 1> 680 - vtkRenderingOpenGL2Cxx-TestPointFillPass (OTHER_FAULT) 1> 681 - vtkRenderingOpenGL2Cxx-TestPointGaussianMapper (OTHER_FAULT) 1> 682 - vtkRenderingOpenGL2Cxx-TestPointGaussianMapperOpacity (OTHER_FAULT) 1> 683 - vtkRenderingOpenGL2Cxx-TestRemoveActorNonCurrentContext (OTHER_FAULT) 1> 684 - vtkRenderingOpenGL2Cxx-TestRenderToImage (OTHER_FAULT) 1> 685 - vtkRenderingOpenGL2Cxx-TestSSAAPass (OTHER_FAULT) 1> 686 - vtkRenderingOpenGL2Cxx-TestSetZBuffer (OTHER_FAULT) 1> 687 - vtkRenderingOpenGL2Cxx-TestShadowMapBakerPass (OTHER_FAULT) 1> 688 - vtkRenderingOpenGL2Cxx-TestShadowMapPass (OTHER_FAULT) 1> 689 - vtkRenderingOpenGL2Cxx-TestSobelGradientMagnitudePass (OTHER_FAULT) 1> 690 - vtkRenderingOpenGL2Cxx-TestSpherePoints (OTHER_FAULT) 1> 691 - vtkRenderingOpenGL2Cxx-TestUserShader (OTHER_FAULT) 1> 692 - vtkRenderingOpenGL2Cxx-TestUserShader2 (OTHER_FAULT) 1> 693 - vtkRenderingOpenGL2Cxx-TestVBOPLYMapper (OTHER_FAULT) 1> 694 - vtkRenderingOpenGL2Cxx-TestVBOPointsLines (OTHER_FAULT) 1> 695 - vtkRenderingOpenGL2Cxx-TestValuePass (OTHER_FAULT) 1> 696 - vtkRenderingOpenGL2Cxx-TestValuePass2 (OTHER_FAULT) 1> 697 - vtkRenderingParallelCxx-PrmMagnify (OTHER_FAULT) 1> 698 - vtkRenderingParallelCxx-MPI-TestSimplePCompositeZPass (OTHER_FAULT) 1> 699 - vtkRenderingParallelCxx-MPI-TestParallelRendering (OTHER_FAULT) 1> 700 - vtkRenderingParallel-TestClientServerRendering (Failed) 1> 701 - vtkRenderingVolumeCxx-ProjectedTetrahedraZoomIn (OTHER_FAULT) 1> 702 - vtkRenderingVolumeCxx-TestFinalColorWindowLevel (OTHER_FAULT) 1> 703 - vtkRenderingVolumeCxx-TestFixedPointRayCastLightComponents (OTHER_FAULT) 1> 704 - vtkRenderingVolumeCxx-TestGPURayCastAdditive (OTHER_FAULT) 1> 705 - vtkRenderingVolumeCxx-TestGPURayCastCompositeBinaryMask (OTHER_FAULT) 1> 706 - vtkRenderingVolumeCxx-TestGPURayCastCompositeMaskBlend (OTHER_FAULT) 1> 707 - vtkRenderingVolumeCxx-TestGPURayCastCompositeMask (OTHER_FAULT) 1> 708 - vtkRenderingVolumeCxx-TestGPURayCastCompositeToMIP (OTHER_FAULT) 1> 709 - vtkRenderingVolumeCxx-TestGPURayCastCropping (OTHER_FAULT) 1> 710 - vtkRenderingVolumeCxx-TestGPURayCastDataTypesMinIP (OTHER_FAULT) 1> 711 - vtkRenderingVolumeCxx-TestGPURayCastDataTypesMIP (OTHER_FAULT) 1> 712 - vtkRenderingVolumeCxx-TestGPURayCastFourComponentsComposite (OTHER_FAULT) 1> 713 - vtkRenderingVolumeCxx-TestGPURayCastFourComponentsCompositeStreaming (OTHER_FAULT) 1> 714 - vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMinIP (OTHER_FAULT) 1> 715 - vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMIP (OTHER_FAULT) 1> 716 - vtkRenderingVolumeCxx-TestGPURayCastMapperBenchmark (OTHER_FAULT) 1> 717 - vtkRenderingVolumeCxx-TestGPURayCastMIPBinaryMask (OTHER_FAULT) 1> 718 - vtkRenderingVolumeCxx-TestGPURayCastMIPToComposite (OTHER_FAULT) 1> 719 - vtkRenderingVolumeCxx-TestGPURayCastNearestDataTypesMIP (OTHER_FAULT) 1> 720 - vtkRenderingVolumeCxx-TestGPURayCastPerspectiveParallel (OTHER_FAULT) 1> 721 - vtkRenderingVolumeCxx-TestGPURayCastVolumeOrientation (OTHER_FAULT) 1> 722 - vtkRenderingVolumeCxx-TestGPURayCastVolumeUpdate (OTHER_FAULT) 1> 723 - vtkRenderingVolumeCxx-TestGPUVolumeRayCastMapper (OTHER_FAULT) 1> 724 - vtkRenderingVolumeCxx-TestMinIntensityRendering (OTHER_FAULT) 1> 725 - vtkRenderingVolumeCxx-TestProjectedTetrahedra (OTHER_FAULT) 1> 726 - vtkRenderingVolumeCxx-TestSmartVolumeMapper (OTHER_FAULT) 1> 727 - vtkRenderingVolumeCxx-TestSmartVolumeMapperWindowLevel (OTHER_FAULT) 1> 728 - vtkRenderingVolumeCxx-TestGPURayCastBlendModes (OTHER_FAULT) 1> 729 - vtkRenderingVolumeCxx-TestGPURayCastAverageIP (OTHER_FAULT) 1> 730 - vtkRenderingVolumeCxx-TestGPURayCastCameraInside (OTHER_FAULT) 1> 731 - vtkRenderingVolumeCxx-TestGPURayCastCameraInsideSmallSpacing (OTHER_FAULT) 1> 732 - vtkRenderingVolumeCxx-TestGPURayCastCameraInsideTransformation (OTHER_FAULT) 1> 733 - vtkRenderingVolumeCxx-TestGPURayCastCellData (OTHER_FAULT) 1> 734 - vtkRenderingVolumeCxx-TestGPURayCastClipping (OTHER_FAULT) 1> 735 - vtkRenderingVolumeCxx-TestGPURayCastClippingPolyData (OTHER_FAULT) 1> 736 - vtkRenderingVolumeCxx-TestGPURayCastClippingUserTransform (OTHER_FAULT) 1> 737 - vtkRenderingVolumeCxx-TestGPURayCastDependentComponentsLightParameters (OTHER_FAULT) 1> 738 - vtkRenderingVolumeCxx-TestGPURayCastFourComponentsAdditive (OTHER_FAULT) 1> 739 - vtkRenderingVolumeCxx-TestGPURayCastFourComponentsAverage (OTHER_FAULT) 1> 740 - vtkRenderingVolumeCxx-TestGPURayCastFourComponentsDependentGradient (OTHER_FAULT) 1> 741 - vtkRenderingVolumeCxx-TestGPURayCastGradientOpacity (OTHER_FAULT) 1> 742 - vtkRenderingVolumeCxx-TestGPURayCastGradientOpacityLight (OTHER_FAULT) 1> 743 - vtkRenderingVolumeCxx-TestGPURayCastIndependentComponentsLightParameters (OTHER_FAULT) 1> 744 - vtkRenderingVolumeCxx-TestGPURayCastIndependentVectorMode (OTHER_FAULT) 1> 745 - vtkRenderingVolumeCxx-TestGPURayCastJittering (OTHER_FAULT) 1> 746 - vtkRenderingVolumeCxx-TestGPURayCastJitteringCustom (OTHER_FAULT) 1> 747 - vtkRenderingVolumeCxx-TestGPURayCastLargeColorTransferFunction (OTHER_FAULT) 1> 748 - vtkRenderingVolumeCxx-TestGPURayCastMapperSampleDistance (OTHER_FAULT) 1> 749 - vtkRenderingVolumeCxx-TestGPURayCastPositionalLights (OTHER_FAULT) 1> 750 - vtkRenderingVolumeCxx-TestGPURayCastReleaseResources (OTHER_FAULT) 1> 751 - vtkRenderingVolumeCxx-TestGPURayCastRenderDepthToImage (OTHER_FAULT) 1> 752 - vtkRenderingVolumeCxx-TestGPURayCastRenderDepthToImage2 (OTHER_FAULT) 1> 753 - vtkRenderingVolumeCxx-TestGPURayCastRenderToTexture (OTHER_FAULT) 1> 754 - vtkRenderingVolumeCxx-TestGPURayCastThreeComponentsAdditive (OTHER_FAULT) 1> 755 - vtkRenderingVolumeCxx-TestGPURayCastThreeComponentsIndependent (OTHER_FAULT) 1> 756 - vtkRenderingVolumeCxx-TestGPURayCastTwoComponentsDependent (OTHER_FAULT) 1> 757 - vtkRenderingVolumeCxx-TestGPURayCastTwoComponentsDependentGradient (OTHER_FAULT) 1> 758 - vtkRenderingVolumeCxx-TestGPURayCastTwoComponentsGradient (OTHER_FAULT) 1> 759 - vtkRenderingVolumeCxx-TestGPURayCastTwoComponentsIndependent (OTHER_FAULT) 1> 760 - vtkRenderingVolumeCxx-TestGPURayCastVolumeDepthPass (OTHER_FAULT) 1> 761 - vtkRenderingVolumeCxx-TestGPURayCastVolumeLightKit (OTHER_FAULT) 1> 762 - vtkRenderingVolumeCxx-TestGPURayCastVolumePicking (OTHER_FAULT) 1> 763 - vtkRenderingVolumeCxx-TestGPURayCastVolumePolyData (OTHER_FAULT) 1> 764 - vtkRenderingVolumeCxx-TestGPURayCastVolumeRotation (OTHER_FAULT) 1> 765 - vtkRenderingVolumeCxx-TestGPURayCastVolumeScale (OTHER_FAULT) 1> 766 - vtkRenderingVolumeCxx-TestProjectedTetrahedraOffscreen (OTHER_FAULT) 1> 767 - vtkRenderingVolumeCxx-TestProjectedTetrahedraTransform (OTHER_FAULT) 1> 768 - vtkRenderingVolumeCxx-TestRemoveVolumeNonCurrentContext (OTHER_FAULT) 1> 771 - JavaGCRegression (Failed) 1> 772 - JavaDeleteRegression (Failed) 1> 773 - JavaManualGC (Failed) 1> 774 - JavaDeleteAndGC (Failed) 1> Errors while running CTest 1>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets(132,5): error MSB3073: The command "setlocal 1>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets(132,5): error MSB3073: "C:\Program Files (x86)\CMake\bin\ctest.exe" --force-new-ctest-process -C Release 1>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets(132,5): error MSB3073: if %errorlevel% neq 0 goto :cmEnd 1>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets(132,5): error MSB3073: :cmEnd 1>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets(132,5): error MSB3073: endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone 1>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets(132,5): error MSB3073: :cmErrorLevel 1>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets(132,5): error MSB3073: exit /b %1 1>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets(132,5): error MSB3073: :cmDone 1>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets(132,5): error MSB3073: if %errorlevel% neq 0 goto :VCEnd 1>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets(132,5): error MSB3073: :VCEnd" exited with code 8. ========== Build: 0 succeeded, 1 failed, 1 up-to-date, 0 skipped ========== From Wiggerl at Linhuber.info Tue Feb 14 10:15:19 2017 From: Wiggerl at Linhuber.info (Willy) Date: Tue, 14 Feb 2017 08:15:19 -0700 (MST) Subject: [vtkusers] vtkGPUVolumeRayCastMapper: Updateing ImageData after first Rendering? In-Reply-To: References: <1486972453592-5742153.post@n5.nabble.com> Message-ID: <1487085319680-5742181.post@n5.nabble.com> @Aashish: I compiled your example and changed the reader to vtkTIFFReader to read some of my testdata, but i can't see any difference between with and without "SetPartitions". i don't understand the purpose the that method. @Sankhesh: i tried "Modified" but it still does not work. i tested the vtkFixedPointVolumeRayCastMapper too (with just 8bm data) and got the same behaviour. After the first call of Render3DImage the rendered Image does not change, even if i change the vtkImageData. i always though the problem would be the GPU-Mapper, but apparently thats not the case. It looks like vtk makes a intern copy of the data somewhere ... @Donny: I already tried that, but here is the problem: i have a big .NET projectmap with many projects and parentforms and parent-parent-form and so on. If i use "SetParentId" the .NET PictureBox does not "know" that there is a picture in it. If any parent or the PictureBox self does receive a refresh-event .NET does repaint the Picture and because .NET thinks that there is no Picture in the picturebox it repaints with black. Even if i would call "render" rigth after the refresh event i get a very annoying flickering. And it would take very much time to check every line of .NET code witch could cause a refresh-event. -- View this message in context: http://vtk.1045678.n5.nabble.com/vtkGPUVolumeRayCastMapper-Updateing-ImageData-after-first-Rendering-tp5742153p5742181.html Sent from the VTK - Users mailing list archive at Nabble.com. From dan.lipsa at kitware.com Tue Feb 14 10:25:50 2017 From: dan.lipsa at kitware.com (Dan Lipsa) Date: Tue, 14 Feb 2017 10:25:50 -0500 Subject: [vtkusers] Most VTK 7.1 Tests fail on Windows 7 Sp1 64 (with java) In-Reply-To: <9d178962-7985-ef5f-bca8-3bc68593bdb3@gmx.de> References: <9d178962-7985-ef5f-bca8-3bc68593bdb3@gmx.de> Message-ID: Jens, Can you do 'ctest -N -V -R vtkChartsCoreCxx-TestContextScene' and then run the command printed. This will give you more information about what is going on. Usually, when all tests fail like that there is some configuration problem. You can do that for other tests as well. Dan On Tue, Feb 14, 2017 at 9:22 AM, Jens Schmidt wrote: > Hi there, > > as the title says, most of the tests fail for VTK 7.1. Built with TBB and > java wrapping. > > Cheers Jens > > > Built with Windows 7 Sp1 64bit Visual Studio 2013 > Log below here: > > 1>------ Build started: Project: RUN_TESTS, Configuration: Release x64 > ------ > 1> Test project C:/data/src-build/VTK-7.1.0 > 1> Start 1: vtkkwiml.test > 1> 1/774 Test #1: vtkkwiml.test .............................. > .................................. Passed 0.01 sec > 1> Start 2: vtkCommonCore-HeaderTest > 1> 2/774 Test #2: vtkCommonCore-HeaderTest > ..................................................... Passed 0.84 sec > 1> Start 3: vtkCommonMath-HeaderTest > 1> 3/774 Test #3: vtkCommonMath-HeaderTest > ..................................................... Passed 0.17 sec > 1> Start 4: vtkCommonMisc-HeaderTest > 1> 4/774 Test #4: vtkCommonMisc-HeaderTest > ..................................................... Passed 0.11 sec > 1> Start 5: vtkCommonSystem-HeaderTest > 1> 5/774 Test #5: vtkCommonSystem-HeaderTest > ................................................... Passed 0.12 sec > 1> Start 6: vtkCommonTransforms-HeaderTest > 1> 6/774 Test #6: vtkCommonTransforms-HeaderTest > ............................................... Passed 0.24 sec > 1> Start 7: vtkCommonDataModel-HeaderTest > 1> 7/774 Test #7: vtkCommonDataModel-HeaderTest > ................................................ Passed 2.06 sec > 1> Start 8: vtkCommonColor-HeaderTest > 1> 8/774 Test #8: vtkCommonColor-HeaderTest > .................................................... Passed 0.12 sec > 1> Start 9: vtkCommonExecutionModel-HeaderTest > 1> 9/774 Test #9: vtkCommonExecutionModel-HeaderTest > ........................................... Passed 0.53 sec > 1> Start 10: vtkCommonComputationalGeometry-HeaderTest > 1> 10/774 Test #10: vtkCommonComputationalGeometry-HeaderTest > .................................... Passed 0.27 sec > 1> Start 11: vtkFiltersCore-HeaderTest > 1> 11/774 Test #11: vtkFiltersCore-HeaderTest > .................................................... Passed 0.86 sec > 1> Start 12: vtkFiltersGeneral-HeaderTest > 1> 12/774 Test #12: vtkFiltersGeneral-HeaderTest > ................................................. Passed 0.87 sec > 1> Start 13: vtkImagingCore-HeaderTest > 1> 13/774 Test #13: vtkImagingCore-HeaderTest > .................................................... Passed 0.35 sec > 1> Start 14: vtkImagingFourier-HeaderTest > 1> 14/774 Test #14: vtkImagingFourier-HeaderTest > ................................................. Passed 0.11 sec > 1> Start 15: vtkFiltersStatistics-HeaderTest > 1> 15/774 Test #15: vtkFiltersStatistics-HeaderTest > .............................................. Passed 0.25 sec > 1> Start 16: vtkFiltersExtraction-HeaderTest > 1> 16/774 Test #16: vtkFiltersExtraction-HeaderTest > .............................................. Passed 0.25 sec > 1> Start 17: vtkInfovisCore-HeaderTest > 1> 17/774 Test #17: vtkInfovisCore-HeaderTest > .................................................... Passed 0.37 sec > 1> Start 18: vtkFiltersGeometry-HeaderTest > 1> 18/774 Test #18: vtkFiltersGeometry-HeaderTest > ................................................ Passed 0.33 sec > 1> Start 19: vtkFiltersSources-HeaderTest > 1> 19/774 Test #19: vtkFiltersSources-HeaderTest > ................................................. Passed 0.32 sec > 1> Start 20: vtkRenderingCore-HeaderTest > 1> 20/774 Test #20: vtkRenderingCore-HeaderTest > .................................................. Passed 1.29 sec > 1> Start 21: vtkRenderingFreeType-HeaderTest > 1> 21/774 Test #21: vtkRenderingFreeType-HeaderTest > .............................................. Passed 0.14 sec > 1> Start 22: vtkRenderingContext2D-HeaderTest > 1> 22/774 Test #22: vtkRenderingContext2D-HeaderTest > ............................................. Passed 0.25 sec > 1> Start 23: vtkChartsCore-HeaderTest > 1> 23/774 Test #23: vtkChartsCore-HeaderTest > ..................................................... Passed 0.48 sec > 1> Start 24: vtkIOCore-HeaderTest > 1> 24/774 Test #24: vtkIOCore-HeaderTest ......................................................... > Passed 0.22 sec > 1> Start 25: vtkIOLegacy-HeaderTest > 1> 25/774 Test #25: vtkIOLegacy-HeaderTest > ....................................................... Passed 0.24 > sec > 1> Start 26: vtkIOXMLParser-HeaderTest > 1> 26/774 Test #26: vtkIOXMLParser-HeaderTest > .................................................... Passed 0.11 sec > 1> Start 27: vtkIOXML-HeaderTest > 1> 27/774 Test #27: vtkIOXML-HeaderTest .......................................................... > Passed 0.34 sec > 1> Start 28: vtkIOInfovis-HeaderTest > 1> 28/774 Test #28: vtkIOInfovis-HeaderTest > ...................................................... Passed 0.20 > sec > 1> Start 29: vtkIOImage-HeaderTest > 1> 29/774 Test #29: vtkIOImage-HeaderTest ........................................................ > Passed 0.35 sec > 1> Start 30: vtkRenderingOpenGL2-HeaderTest > 1> 30/774 Test #30: vtkRenderingOpenGL2-HeaderTest > ............................................... Passed 0.77 sec > 1> Start 31: vtkRenderingContextOpenGL2-HeaderTest > 1> 31/774 Test #31: vtkRenderingContextOpenGL2-HeaderTest > ........................................ Passed 0.13 sec > 1> Start 32: vtkTestingRendering-HeaderTest > 1> 32/774 Test #32: vtkTestingRendering-HeaderTest > ............................................... Passed 0.11 sec > 1> Start 33: vtkImagingSources-HeaderTest > 1> 33/774 Test #33: vtkImagingSources-HeaderTest > ................................................. Passed 0.13 sec > 1> Start 34: vtkFiltersHybrid-HeaderTest > 1> 34/774 Test #34: vtkFiltersHybrid-HeaderTest > .................................................. Passed 0.28 sec > 1> Start 35: vtkFiltersModeling-HeaderTest > 1> 35/774 Test #35: vtkFiltersModeling-HeaderTest > ................................................ Passed 0.24 sec > 1> Start 36: vtkImagingColor-HeaderTest > 1> 36/774 Test #36: vtkImagingColor-HeaderTest > ................................................... Passed 0.12 sec > 1> Start 37: vtkImagingGeneral-HeaderTest > 1> 37/774 Test #37: vtkImagingGeneral-HeaderTest > ................................................. Passed 0.19 sec > 1> Start 38: vtkImagingHybrid-HeaderTest > 1> 38/774 Test #38: vtkImagingHybrid-HeaderTest > .................................................. Passed 0.21 sec > 1> Start 39: vtkInteractionStyle-HeaderTest > 1> 39/774 Test #39: vtkInteractionStyle-HeaderTest > ............................................... Passed 0.21 sec > 1> Start 40: vtkRenderingAnnotation-HeaderTest > 1> 40/774 Test #40: vtkRenderingAnnotation-HeaderTest > ............................................ Passed 0.47 sec > 1> Start 41: vtkRenderingVolume-HeaderTest > 1> 41/774 Test #41: vtkRenderingVolume-HeaderTest > ................................................ Passed 0.82 sec > 1> Start 42: vtkInteractionWidgets-HeaderTest > 1> 42/774 Test #42: vtkInteractionWidgets-HeaderTest > ............................................. Passed 1.41 sec > 1> Start 43: vtkViewsCore-HeaderTest > 1> 43/774 Test #43: vtkViewsCore-HeaderTest > ...................................................... Passed 0.14 > sec > 1> Start 44: vtkViewsContext2D-HeaderTest > 1> 44/774 Test #44: vtkViewsContext2D-HeaderTest > ................................................. Passed 0.10 sec > 1> Start 45: vtkChartsCoreCxx-TestContextScene > 1> 45/774 Test #45: vtkChartsCoreCxx-TestContextScene > ............................................***Exception: Other 0.01 sec > 1> Start 46: vtkChartsCoreCxx-TestControlPointsItem > 1> 46/774 Test #46: vtkChartsCoreCxx-TestControlPointsItem > .......................................***Exception: Other 0.01 sec > 1> Start 47: vtkChartsCoreCxx-TestControlPointsItemEvents > 1> 47/774 Test #47: vtkChartsCoreCxx-TestControlPointsItemEvents > .................................***Exception: Other 0.01 sec > 1> Start 48: vtkChartsCoreCxx-TestAreaPlot > 1> 48/774 Test #48: vtkChartsCoreCxx-TestAreaPlot > ................................................***Exception: Other 0.01 > sec > 1> Start 49: vtkChartsCoreCxx-TestAxes > 1> 49/774 Test #49: vtkChartsCoreCxx-TestAxes > ....................................................***Exception: Other > 0.01 sec > 1> Start 50: vtkChartsCoreCxx-TestBagPlot > 1> 50/774 Test #50: vtkChartsCoreCxx-TestBagPlot > .................................................***Exception: Other 0.01 > sec > 1> Start 51: vtkChartsCoreCxx-TestBarGraph > 1> 51/774 Test #51: vtkChartsCoreCxx-TestBarGraph > ................................................***Exception: Other 0.01 > sec > 1> Start 52: vtkChartsCoreCxx-TestBarGraphHorizontal > 1> 52/774 Test #52: vtkChartsCoreCxx-TestBarGraphHorizontal > ......................................***Exception: Other 0.01 sec > 1> Start 53: vtkChartsCoreCxx-TestBarGraphSelection > 1> 53/774 Test #53: vtkChartsCoreCxx-TestBarGraphSelection > .......................................***Exception: Other 0.01 sec > 1> Start 54: vtkChartsCoreCxx-TestBoxPlot > 1> 54/774 Test #54: vtkChartsCoreCxx-TestBoxPlot > .................................................***Exception: Other 0.01 > sec > 1> Start 55: vtkChartsCoreCxx-TestCategoryLegend > 1> 55/774 Test #55: vtkChartsCoreCxx-TestCategoryLegend > ..........................................***Exception: Other 0.01 sec > 1> Start 56: vtkChartsCoreCxx-TestColorTransferFunction > 1> 56/774 Test #56: vtkChartsCoreCxx-TestColorTransferFunction > ...................................***Exception: Other 0.01 sec > 1> Start 57: vtkChartsCoreCxx-TestChartDouble > 1> 57/774 Test #57: vtkChartsCoreCxx-TestChartDouble > .............................................***Exception: Other 0.01 sec > 1> Start 58: vtkChartsCoreCxx-TestChartDoubleColors > 1> 58/774 Test #58: vtkChartsCoreCxx-TestChartDoubleColors > .......................................***Exception: Other 0.01 sec > 1> Start 59: vtkChartsCoreCxx-TestChartMatrix > 1> 59/774 Test #59: vtkChartsCoreCxx-TestChartMatrix > .............................................***Exception: Other 0.01 sec > 1> Start 60: vtkChartsCoreCxx-TestChartTileScaling > 1> 60/774 Test #60: vtkChartsCoreCxx-TestChartTileScaling > ........................................***Exception: Other 0.01 sec > 1> Start 61: vtkChartsCoreCxx-TestChartUnicode > 1> 61/774 Test #61: vtkChartsCoreCxx-TestChartUnicode > ............................................***Exception: Other 0.01 sec > 1> Start 62: vtkChartsCoreCxx-TestChartsOn3D > 1> 62/774 Test #62: vtkChartsCoreCxx-TestChartsOn3D > ..............................................***Exception: Other 0.01 > sec > 1> Start 63: vtkChartsCoreCxx-TestChartXYInvertedAxis > 1> 63/774 Test #63: vtkChartsCoreCxx-TestChartXYInvertedAxis > .....................................***Exception: Other 0.01 sec > 1> Start 64: vtkChartsCoreCxx-TestChartXYZ > 1> 64/774 Test #64: vtkChartsCoreCxx-TestChartXYZ > ................................................***Exception: Other 0.01 > sec > 1> Start 65: vtkChartsCoreCxx-TestContext > 1> 65/774 Test #65: vtkChartsCoreCxx-TestContext > .................................................***Exception: Other 0.01 > sec > 1> Start 66: vtkChartsCoreCxx-TestContextArea > 1> 66/774 Test #66: vtkChartsCoreCxx-TestContextArea > .............................................***Exception: Other 0.01 sec > 1> Start 67: vtkChartsCoreCxx-TestContextAreaFixedAspect > 1> 67/774 Test #67: vtkChartsCoreCxx-TestContextAreaFixedAspect > ..................................***Exception: Other 0.01 sec > 1> Start 68: vtkChartsCoreCxx-TestContextAreaFixedMargins > 1> 68/774 Test #68: vtkChartsCoreCxx-TestContextAreaFixedMargins > .................................***Exception: Other 0.01 sec > 1> Start 69: vtkChartsCoreCxx-TestContextAreaFixedRect > 1> 69/774 Test #69: vtkChartsCoreCxx-TestContextAreaFixedRect > ....................................***Exception: Other 0.01 sec > 1> Start 70: vtkChartsCoreCxx-TestContextImage > 1> 70/774 Test #70: vtkChartsCoreCxx-TestContextImage > ............................................***Exception: Other 0.01 sec > 1> Start 71: vtkChartsCoreCxx-TestContextItemStacking > 1> 71/774 Test #71: vtkChartsCoreCxx-TestContextItemStacking > .....................................***Exception: Other 0.01 sec > 1> Start 72: vtkChartsCoreCxx-TestContextUnicode > 1> 72/774 Test #72: vtkChartsCoreCxx-TestContextUnicode > ..........................................***Exception: Other 0.01 sec > 1> Start 73: vtkChartsCoreCxx-TestControlPointsHandleItem > 1> 73/774 Test #73: vtkChartsCoreCxx-TestControlPointsHandleItem > .................................***Exception: Other 0.01 sec > 1> Start 74: vtkChartsCoreCxx-TestDiagram > 1> 74/774 Test #74: vtkChartsCoreCxx-TestDiagram > .................................................***Exception: Other 0.01 > sec > 1> Start 75: vtkChartsCoreCxx-TestFunctionalBagPlot > 1> 75/774 Test #75: vtkChartsCoreCxx-TestFunctionalBagPlot > .......................................***Exception: Other 0.01 sec > 1> Start 76: vtkChartsCoreCxx-TestHistogram2D > 1> 76/774 Test #76: vtkChartsCoreCxx-TestHistogram2D > .............................................***Exception: Other 0.01 sec > 1> Start 77: vtkChartsCoreCxx-TestInteractiveChartXYZ > 1> 77/774 Test #77: vtkChartsCoreCxx-TestInteractiveChartXYZ > .....................................***Exception: Other 0.01 sec > 1> Start 78: vtkChartsCoreCxx-TestLegendHiddenPlots > 1> 78/774 Test #78: vtkChartsCoreCxx-TestLegendHiddenPlots > .......................................***Exception: Other 0.01 sec > 1> Start 79: vtkChartsCoreCxx-TestLinePlot > 1> 79/774 Test #79: vtkChartsCoreCxx-TestLinePlot > ................................................***Exception: Other 0.01 > sec > 1> Start 80: vtkChartsCoreCxx-TestLinePlotDouble > 1> 80/774 Test #80: vtkChartsCoreCxx-TestLinePlotDouble > ..........................................***Exception: Other 0.01 sec > 1> Start 81: vtkChartsCoreCxx-TestLinePlotDouble2 > 1> 81/774 Test #81: vtkChartsCoreCxx-TestLinePlotDouble2 > .........................................***Exception: Other 0.01 sec > 1> Start 82: vtkChartsCoreCxx-TestLinePlot3D > 1> 82/774 Test #82: vtkChartsCoreCxx-TestLinePlot3D > ..............................................***Exception: Other 0.01 > sec > 1> Start 83: vtkChartsCoreCxx-TestLinePlotAxisFonts > 1> 83/774 Test #83: vtkChartsCoreCxx-TestLinePlotAxisFonts > .......................................***Exception: Other 0.01 sec > 1> Start 84: vtkChartsCoreCxx-TestLinePlot2 > 1> 84/774 Test #84: vtkChartsCoreCxx-TestLinePlot2 > ...............................................***Exception: Other 0.01 > sec > 1> Start 85: vtkChartsCoreCxx-TestLinePlotInteraction > 1> 85/774 Test #85: vtkChartsCoreCxx-TestLinePlotInteraction > .....................................***Exception: Other 0.01 sec > 1> Start 86: vtkChartsCoreCxx-TestLinePlotSelection > 1> 86/774 Test #86: vtkChartsCoreCxx-TestLinePlotSelection > .......................................***Exception: Other 0.01 sec > 1> Start 87: vtkChartsCoreCxx-TestLinePlotSelection2 > 1> 87/774 Test #87: vtkChartsCoreCxx-TestLinePlotSelection2 > ......................................***Exception: Other 0.01 sec > 1> Start 88: vtkChartsCoreCxx-TestMultipleChartRenderers > 1> 88/774 Test #88: vtkChartsCoreCxx-TestMultipleChartRenderers > ..................................***Exception: Other 0.01 sec > 1> Start 89: vtkChartsCoreCxx-TestMultipleRenderers > 1> 89/774 Test #89: vtkChartsCoreCxx-TestMultipleRenderers > .......................................***Exception: Other 0.01 sec > 1> Start 90: vtkChartsCoreCxx-TestMultipleScalarsToColors > 1> 90/774 Test #90: vtkChartsCoreCxx-TestMultipleScalarsToColors > .................................***Exception: Other 0.01 sec > 1> Start 91: vtkChartsCoreCxx-TestParallelCoordinates > 1> 91/774 Test #91: vtkChartsCoreCxx-TestParallelCoordinates > .....................................***Exception: Other 0.01 sec > 1> Start 92: vtkChartsCoreCxx-TestParallelCoordinatesDouble > 1> 92/774 Test #92: vtkChartsCoreCxx-TestParallelCoordinatesDouble > ...............................***Exception: Other 0.01 sec > 1> Start 93: vtkChartsCoreCxx-TestPieChart > 1> 93/774 Test #93: vtkChartsCoreCxx-TestPieChart > ................................................***Exception: Other 0.01 > sec > 1> Start 94: vtkChartsCoreCxx-TestPlotMatrix > 1> 94/774 Test #94: vtkChartsCoreCxx-TestPlotMatrix > ..............................................***Exception: Other 0.01 > sec > 1> Start 95: vtkChartsCoreCxx-TestPropItem > 1> 95/774 Test #95: vtkChartsCoreCxx-TestPropItem > ................................................***Exception: Other 0.01 > sec > 1> Start 96: vtkChartsCoreCxx-TestScalarsToColors > 1> 96/774 Test #96: vtkChartsCoreCxx-TestScalarsToColors > .........................................***Exception: Other 0.01 sec > 1> Start 97: vtkChartsCoreCxx-TestScatterPlot > 1> 97/774 Test #97: vtkChartsCoreCxx-TestScatterPlot > .............................................***Exception: Other 0.01 sec > 1> Start 98: vtkChartsCoreCxx-TestScatterPlotMatrix > 1> 98/774 Test #98: vtkChartsCoreCxx-TestScatterPlotMatrix > .......................................***Exception: Other 0.01 sec > 1> Start 99: vtkChartsCoreCxx-TestScatterPlotMatrixVehicles > 1> 99/774 Test #99: vtkChartsCoreCxx-TestScatterPlotMatrixVehicles > ...............................***Exception: Other 0.01 sec > 1> Start 100: vtkChartsCoreCxx-TestScatterPlotMatrixVisible > 1> 100/774 Test #100: vtkChartsCoreCxx-TestScatterPlotMatrixVisible > ................................***Exception: Other 0.01 sec > 1> Start 101: vtkChartsCoreCxx-TestScientificPlot > 1> 101/774 Test #101: vtkChartsCoreCxx-TestScientificPlot > ..........................................***Exception: Other 0.01 sec > 1> Start 102: vtkChartsCoreCxx-TestStackedBarGraph > 1> 102/774 Test #102: vtkChartsCoreCxx-TestStackedBarGraph > .........................................***Exception: Other 0.01 sec > 1> Start 103: vtkChartsCoreCxx-TestStackedPlot > 1> 103/774 Test #103: vtkChartsCoreCxx-TestStackedPlot > .............................................***Exception: Other 0.01 sec > 1> Start 104: vtkChartsCoreCxx-TestSurfacePlot > 1> 104/774 Test #104: vtkChartsCoreCxx-TestSurfacePlot > .............................................***Exception: Other 0.01 sec > 1> Start 105: vtkChartsCoreCxx-TestZoomAxis > 1> 105/774 Test #105: vtkChartsCoreCxx-TestZoomAxis > ................................................***Exception: Other 0.01 > sec > 1> Start 106: vtkCommonColorCxx-TestCategoricalColors > 1> 106/774 Test #106: vtkCommonColorCxx-TestCategoricalColors > ......................................***Exception: Other 0.01 sec > 1> Start 107: vtkCommonColorCxx-TestColorSeries > 1> 107/774 Test #107: vtkCommonColorCxx-TestColorSeries > ............................................***Exception: Other 0.01 sec > 1> Start 108: vtkCommonColorCxx-TestColorSeriesLookupTables > 1> 108/774 Test #108: vtkCommonColorCxx-TestColorSeriesLookupTables > ................................***Exception: Other 0.01 sec > 1> Start 109: vtkCommonColorCxx-TestNamedColors > 1> 109/774 Test #109: vtkCommonColorCxx-TestNamedColors > ............................................***Exception: Other 0.01 sec > 1> Start 110: vtkCommonComputationalGeometry > Cxx-UnitTestParametricSpline > 1> 110/774 Test #110: vtkCommonComputationalGeometryCxx-UnitTestParametricSpline > ...................***Exception: Other 0.01 sec > 1> Start 111: vtkCommonCoreCxx-UnitTestMath > 1> 111/774 Test #111: vtkCommonCoreCxx-UnitTestMath > ................................................***Exception: Other 0.01 > sec > 1> Start 112: vtkCommonCoreCxx-TestAngularPeriodicDataArray > 1> 112/774 Test #112: vtkCommonCoreCxx-TestAngularPeriodicDataArray > ................................***Exception: Other 0.01 sec > 1> Start 113: vtkCommonCoreCxx-TestArrayAPI > 1> 113/774 Test #113: vtkCommonCoreCxx-TestArrayAPI > ................................................***Exception: Other 0.01 > sec > 1> Start 114: vtkCommonCoreCxx-TestArrayAPIConvenience > 1> 114/774 Test #114: vtkCommonCoreCxx-TestArrayAPIConvenience > .....................................***Exception: Other 0.01 sec > 1> Start 115: vtkCommonCoreCxx-TestArrayAPIDense > 1> 115/774 Test #115: vtkCommonCoreCxx-TestArrayAPIDense > ...........................................***Exception: Other 0.01 sec > 1> Start 116: vtkCommonCoreCxx-TestArrayAPISparse > 1> 116/774 Test #116: vtkCommonCoreCxx-TestArrayAPISparse > ..........................................***Exception: Other 0.01 sec > 1> Start 117: vtkCommonCoreCxx-TestArrayBool > 1> 117/774 Test #117: vtkCommonCoreCxx-TestArrayBool > ...............................................***Exception: Other 0.01 > sec > 1> Start 118: vtkCommonCoreCxx-TestArrayDispatchers > 1> 118/774 Test #118: vtkCommonCoreCxx-TestArrayDispatchers > ........................................***Exception: Other 0.01 sec > 1> Start 119: vtkCommonCoreCxx-TestAtomic > 1> 119/774 Test #119: vtkCommonCoreCxx-TestAtomic > ..................................................***Exception: Other > 0.01 sec > 1> Start 120: vtkCommonCoreCxx-TestScalarsToColors > 1> 120/774 Test #120: vtkCommonCoreCxx-TestScalarsToColors > .........................................***Exception: Other 0.01 sec > 1> Start 121: vtkCommonCoreCxx-TestArrayExtents > 1> 121/774 Test #121: vtkCommonCoreCxx-TestArrayExtents > ............................................***Exception: Other 0.01 sec > 1> Start 122: vtkCommonCoreCxx-TestArrayInterpolationDense > 1> 122/774 Test #122: vtkCommonCoreCxx-TestArrayInterpolationDense > .................................***Exception: Other 0.01 sec > 1> Start 123: vtkCommonCoreCxx-TestArrayLookup > 1> 123/774 Test #123: vtkCommonCoreCxx-TestArrayLookup > .............................................***Exception: Other 0.01 sec > 1> Start 124: vtkCommonCoreCxx-TestArrayNullValues > 1> 124/774 Test #124: vtkCommonCoreCxx-TestArrayNullValues > .........................................***Exception: Other 0.01 sec > 1> Start 125: vtkCommonCoreCxx-TestArraySize > 1> 125/774 Test #125: vtkCommonCoreCxx-TestArraySize > ...............................................***Exception: Other 0.01 > sec > 1> Start 126: vtkCommonCoreCxx-TestArrayUniqueValueDetection > 1> 126/774 Test #126: vtkCommonCoreCxx-TestArrayUniqueValueDetection > ...............................***Exception: Other 0.01 sec > 1> Start 127: vtkCommonCoreCxx-TestArrayUserTypes > 1> 127/774 Test #127: vtkCommonCoreCxx-TestArrayUserTypes > ..........................................***Exception: Other 0.01 sec > 1> Start 128: vtkCommonCoreCxx-TestArrayVariants > 1> 128/774 Test #128: vtkCommonCoreCxx-TestArrayVariants > ...........................................***Exception: Other 0.01 sec > 1> Start 129: vtkCommonCoreCxx-TestCollection > 1> 129/774 Test #129: vtkCommonCoreCxx-TestCollection > ..............................................***Exception: Other 0.01 > sec > 1> Start 130: vtkCommonCoreCxx-TestConditionVariable > 1> 130/774 Test #130: vtkCommonCoreCxx-TestConditionVariable > .......................................***Exception: Other 0.01 sec > 1> Start 131: vtkCommonCoreCxx-TestDataArray > 1> 131/774 Test #131: vtkCommonCoreCxx-TestDataArray > ...............................................***Exception: Other 0.01 > sec > 1> Start 132: vtkCommonCoreCxx-TestDataArrayComponentNames > 1> 132/774 Test #132: vtkCommonCoreCxx-TestDataArrayComponentNames > .................................***Exception: Other 0.01 sec > 1> Start 133: vtkCommonCoreCxx-TestDataArrayIterators > 1> 133/774 Test #133: vtkCommonCoreCxx-TestDataArrayIterators > ......................................***Exception: Other 0.01 sec > 1> Start 134: vtkCommonCoreCxx-TestGarbageCollector > 1> 134/774 Test #134: vtkCommonCoreCxx-TestGarbageCollector > ........................................***Exception: Other 0.01 sec > 1> Start 135: vtkCommonCoreCxx-TestGenericDataArrayAPI > 1> 135/774 Test #135: vtkCommonCoreCxx-TestGenericDataArrayAPI > .....................................***Exception: Other 0.01 sec > 1> Start 136: vtkCommonCoreCxx-TestInformationKeyLookup > 1> 136/774 Test #136: vtkCommonCoreCxx-TestInformationKeyLookup > ....................................***Exception: Other 0.01 sec > 1> Start 137: vtkCommonCoreCxx-TestLookupTable > 1> 137/774 Test #137: vtkCommonCoreCxx-TestLookupTable > .............................................***Exception: Other 0.01 sec > 1> Start 138: vtkCommonCoreCxx-TestLookupTableThreaded > 1> 138/774 Test #138: vtkCommonCoreCxx-TestLookupTableThreaded > .....................................***Exception: Other 0.01 sec > 1> Start 139: vtkCommonCoreCxx-TestMath > 1> 139/774 Test #139: vtkCommonCoreCxx-TestMath > ....................................................***Exception: Other > 0.01 sec > 1> Start 140: vtkCommonCoreCxx-TestMersenneTwister > 1> 140/774 Test #140: vtkCommonCoreCxx-TestMersenneTwister > .........................................***Exception: Other 0.01 sec > 1> Start 141: vtkCommonCoreCxx-TestMinimalStandardRandomSequence > 1> 141/774 Test #141: vtkCommonCoreCxx-TestMinimalStandardRandomSequence > ...........................***Exception: Other 0.01 sec > 1> Start 142: vtkCommonCoreCxx-TestNew > 1> 142/774 Test #142: vtkCommonCoreCxx-TestNew > .....................................................***Exception: Other > 0.01 sec > 1> Start 143: vtkCommonCoreCxx-TestObjectFactory > 1> 143/774 Test #143: vtkCommonCoreCxx-TestObjectFactory > ...........................................***Exception: Other 0.01 sec > 1> Start 144: vtkCommonCoreCxx-TestObservers > 1> 144/774 Test #144: vtkCommonCoreCxx-TestObservers > ...............................................***Exception: Other 0.01 > sec > 1> Start 145: vtkCommonCoreCxx-TestObserversPerformance > 1> 145/774 Test #145: vtkCommonCoreCxx-TestObserversPerformance > ....................................***Exception: Other 0.01 sec > 1> Start 146: vtkCommonCoreCxx-TestOStreamWrapper > 1> 146/774 Test #146: vtkCommonCoreCxx-TestOStreamWrapper > ..........................................***Exception: Other 0.01 sec > 1> Start 147: vtkCommonCoreCxx-TestSMP > 1> 147/774 Test #147: vtkCommonCoreCxx-TestSMP > .....................................................***Exception: Other > 0.01 sec > 1> Start 148: vtkCommonCoreCxx-TestSmartPointer > 1> 148/774 Test #148: vtkCommonCoreCxx-TestSmartPointer > ............................................***Exception: Other 0.01 sec > 1> Start 149: vtkCommonCoreCxx-TestSortDataArray > 1> 149/774 Test #149: vtkCommonCoreCxx-TestSortDataArray > ...........................................***Exception: Other 0.01 sec > 1> Start 150: vtkCommonCoreCxx-TestSparseArrayValidation > 1> 150/774 Test #150: vtkCommonCoreCxx-TestSparseArrayValidation > ...................................***Exception: Other 0.01 sec > 1> Start 151: vtkCommonCoreCxx-TestSystemInformation > 1> 151/774 Test #151: vtkCommonCoreCxx-TestSystemInformation > .......................................***Exception: Other 0.01 sec > 1> Start 152: vtkCommonCoreCxx-TestTemplateMacro > 1> 152/774 Test #152: vtkCommonCoreCxx-TestTemplateMacro > ...........................................***Exception: Other 0.01 sec > 1> Start 153: vtkCommonCoreCxx-TestTimePointUtility > 1> 153/774 Test #153: vtkCommonCoreCxx-TestTimePointUtility > ........................................***Exception: Other 0.01 sec > 1> Start 154: vtkCommonCoreCxx-TestUnicodeStringAPI > 1> 154/774 Test #154: vtkCommonCoreCxx-TestUnicodeStringAPI > ........................................***Exception: Other 0.01 sec > 1> Start 155: vtkCommonCoreCxx-TestUnicodeStringArrayAPI > 1> 155/774 Test #155: vtkCommonCoreCxx-TestUnicodeStringArrayAPI > ...................................***Exception: Other 0.01 sec > 1> Start 156: vtkCommonCoreCxx-TestVariant > 1> 156/774 Test #156: vtkCommonCoreCxx-TestVariant > .................................................***Exception: Other 0.01 > sec > 1> Start 157: vtkCommonCoreCxx-TestVariantComparison > 1> 157/774 Test #157: vtkCommonCoreCxx-TestVariantComparison > .......................................***Exception: Other 0.01 sec > 1> Start 158: vtkCommonCoreCxx-TestWeakPointer > 1> 158/774 Test #158: vtkCommonCoreCxx-TestWeakPointer > .............................................***Exception: Other 0.01 sec > 1> Start 159: vtkCommonCoreCxx-TestXMLFileOutputWindow > 1> 159/774 Test #159: vtkCommonCoreCxx-TestXMLFileOutputWindow > .....................................***Exception: Other 0.01 sec > 1> Start 160: vtkCommonCoreCxx-UnitTestInformationKeys > 1> 160/774 Test #160: vtkCommonCoreCxx-UnitTestInformationKeys > .....................................***Exception: Other 0.01 sec > 1> Start 161: vtkCommonCoreCxx-otherArrays > 1> 161/774 Test #161: vtkCommonCoreCxx-otherArrays > .................................................***Exception: Other 0.01 > sec > 1> Start 162: vtkCommonCoreCxx-otherByteSwap > 1> 162/774 Test #162: vtkCommonCoreCxx-otherByteSwap > ...............................................***Exception: Other 0.01 > sec > 1> Start 163: vtkCommonCoreCxx-otherStringArray > 1> 163/774 Test #163: vtkCommonCoreCxx-otherStringArray > ............................................***Exception: Other 0.01 sec > 1> Start 164: vtkCommonCoreCxx-TestDataArray > API_vtkDataArrayTemplate_LEGACY > 1> 164/774 Test #164: vtkCommonCoreCxx-TestDataArray > API_vtkDataArrayTemplate_LEGACY ................***Exception: Other 0.01 > sec > 1> Start 165: vtkCommonCoreCxx-TestDataArrayAPI_vtkCharArray > 1> 165/774 Test #165: vtkCommonCoreCxx-TestDataArrayAPI_vtkCharArray > ...............................***Exception: Other 0.01 sec > 1> Start 166: vtkCommonCoreCxx-TestDataArrayAPI_vtkDoubleArray > 1> 166/774 Test #166: vtkCommonCoreCxx-TestDataArrayAPI_vtkDoubleArray > .............................***Exception: Other 0.01 sec > 1> Start 167: vtkCommonCoreCxx-TestDataArrayAPI_vtkFloatArray > 1> 167/774 Test #167: vtkCommonCoreCxx-TestDataArrayAPI_vtkFloatArray > ..............................***Exception: Other 0.01 sec > 1> Start 168: vtkCommonCoreCxx-TestDataArrayAPI_vtkIntArray > 1> 168/774 Test #168: vtkCommonCoreCxx-TestDataArrayAPI_vtkIntArray > ................................***Exception: Other 0.01 sec > 1> Start 169: vtkCommonCoreCxx-TestDataArrayAPI_vtkLongArray > 1> 169/774 Test #169: vtkCommonCoreCxx-TestDataArrayAPI_vtkLongArray > ...............................***Exception: Other 0.01 sec > 1> Start 170: vtkCommonCoreCxx-TestDataArrayAPI_vtkLongLongArray > 1> 170/774 Test #170: vtkCommonCoreCxx-TestDataArrayAPI_vtkLongLongArray > ...........................***Exception: Other 0.01 sec > 1> Start 171: vtkCommonCoreCxx-TestDataArrayAPI_vtkShortArray > 1> 171/774 Test #171: vtkCommonCoreCxx-TestDataArrayAPI_vtkShortArray > ..............................***Exception: Other 0.01 sec > 1> Start 172: vtkCommonCoreCxx-TestDataArray > API_vtkSignedCharArray > 1> 172/774 Test #172: vtkCommonCoreCxx-TestDataArrayAPI_vtkSignedCharArray > .........................***Exception: Other 0.01 sec > 1> Start 173: vtkCommonCoreCxx-TestDataArray > API_vtkUnsignedCharArray > 1> 173/774 Test #173: vtkCommonCoreCxx-TestDataArrayAPI_vtkUnsignedCharArray > .......................***Exception: Other 0.01 sec > 1> Start 174: vtkCommonCoreCxx-TestDataArray > API_vtkUnsignedIntArray > 1> 174/774 Test #174: vtkCommonCoreCxx-TestDataArrayAPI_vtkUnsignedIntArray > ........................***Exception: Other 0.01 sec > 1> Start 175: vtkCommonCoreCxx-TestDataArray > API_vtkUnsignedLongArray > 1> 175/774 Test #175: vtkCommonCoreCxx-TestDataArrayAPI_vtkUnsignedLongArray > .......................***Exception: Other 0.01 sec > 1> Start 176: vtkCommonCoreCxx-TestDataArray > API_vtkUnsignedLongLongArray > 1> 176/774 Test #176: vtkCommonCoreCxx-TestDataArrayAPI_vtkUnsignedLongLongArray > ...................***Exception: Other 0.01 sec > 1> Start 177: vtkCommonCoreCxx-TestDataArray > API_vtkUnsignedShortArray > 1> 177/774 Test #177: vtkCommonCoreCxx-TestDataArrayAPI_vtkUnsignedShortArray > ......................***Exception: Other 0.01 sec > 1> Start 178: vtkCommonCoreCxx-TestDataArrayAPI_vtkIdTypeArray > 1> 178/774 Test #178: vtkCommonCoreCxx-TestDataArrayAPI_vtkIdTypeArray > .............................***Exception: Other 0.01 sec > 1> Start 179: vtkCommonCoreCxx-TestDataArrayAPI_AoS_char > 1> 179/774 Test #179: vtkCommonCoreCxx-TestDataArrayAPI_AoS_char > ...................................***Exception: Other 0.01 sec > 1> Start 180: vtkCommonCoreCxx-TestDataArrayAPI_SoA_char > 1> 180/774 Test #180: vtkCommonCoreCxx-TestDataArrayAPI_SoA_char > ...................................***Exception: Other 0.01 sec > 1> Start 181: vtkCommonCoreCxx-TestDataArrayAPI_AoS_double > 1> 181/774 Test #181: vtkCommonCoreCxx-TestDataArrayAPI_AoS_double > .................................***Exception: Other 0.01 sec > 1> Start 182: vtkCommonCoreCxx-TestDataArrayAPI_SoA_double > 1> 182/774 Test #182: vtkCommonCoreCxx-TestDataArrayAPI_SoA_double > .................................***Exception: Other 0.01 sec > 1> Start 183: vtkCommonCoreCxx-TestDataArrayAPI_AoS_float > 1> 183/774 Test #183: vtkCommonCoreCxx-TestDataArrayAPI_AoS_float > ..................................***Exception: Other 0.01 sec > 1> Start 184: vtkCommonCoreCxx-TestDataArrayAPI_SoA_float > 1> 184/774 Test #184: vtkCommonCoreCxx-TestDataArrayAPI_SoA_float > ..................................***Exception: Other 0.01 sec > 1> Start 185: vtkCommonCoreCxx-TestDataArrayAPI_AoS_int > 1> 185/774 Test #185: vtkCommonCoreCxx-TestDataArrayAPI_AoS_int > ....................................***Exception: Other 0.01 sec > 1> Start 186: vtkCommonCoreCxx-TestDataArrayAPI_SoA_int > 1> 186/774 Test #186: vtkCommonCoreCxx-TestDataArrayAPI_SoA_int > ....................................***Exception: Other 0.01 sec > 1> Start 187: vtkCommonCoreCxx-TestDataArrayAPI_AoS_long > 1> 187/774 Test #187: vtkCommonCoreCxx-TestDataArrayAPI_AoS_long > ...................................***Exception: Other 0.01 sec > 1> Start 188: vtkCommonCoreCxx-TestDataArrayAPI_SoA_long > 1> 188/774 Test #188: vtkCommonCoreCxx-TestDataArrayAPI_SoA_long > ...................................***Exception: Other 0.01 sec > 1> Start 189: vtkCommonCoreCxx-TestDataArrayAPI_AoS_long_long > 1> 189/774 Test #189: vtkCommonCoreCxx-TestDataArrayAPI_AoS_long_long > ..............................***Exception: Other 0.01 sec > 1> Start 190: vtkCommonCoreCxx-TestDataArrayAPI_SoA_long_long > 1> 190/774 Test #190: vtkCommonCoreCxx-TestDataArrayAPI_SoA_long_long > ..............................***Exception: Other 0.01 sec > 1> Start 191: vtkCommonCoreCxx-TestDataArrayAPI_AoS_short > 1> 191/774 Test #191: vtkCommonCoreCxx-TestDataArrayAPI_AoS_short > ..................................***Exception: Other 0.01 sec > 1> Start 192: vtkCommonCoreCxx-TestDataArrayAPI_SoA_short > 1> 192/774 Test #192: vtkCommonCoreCxx-TestDataArrayAPI_SoA_short > ..................................***Exception: Other 0.01 sec > 1> Start 193: vtkCommonCoreCxx-TestDataArrayAPI_AoS_signed_char > 1> 193/774 Test #193: vtkCommonCoreCxx-TestDataArrayAPI_AoS_signed_char > ............................***Exception: Other 0.01 sec > 1> Start 194: vtkCommonCoreCxx-TestDataArrayAPI_SoA_signed_char > 1> 194/774 Test #194: vtkCommonCoreCxx-TestDataArrayAPI_SoA_signed_char > ............................***Exception: Other 0.01 sec > 1> Start 195: vtkCommonCoreCxx-TestDataArrayAPI_AoS_unsigned_char > 1> 195/774 Test #195: vtkCommonCoreCxx-TestDataArrayAPI_AoS_unsigned_char > ..........................***Exception: Other 0.01 sec > 1> Start 196: vtkCommonCoreCxx-TestDataArrayAPI_SoA_unsigned_char > 1> 196/774 Test #196: vtkCommonCoreCxx-TestDataArrayAPI_SoA_unsigned_char > ..........................***Exception: Other 0.01 sec > 1> Start 197: vtkCommonCoreCxx-TestDataArrayAPI_AoS_unsigned_int > 1> 197/774 Test #197: vtkCommonCoreCxx-TestDataArrayAPI_AoS_unsigned_int > ...........................***Exception: Other 0.01 sec > 1> Start 198: vtkCommonCoreCxx-TestDataArrayAPI_SoA_unsigned_int > 1> 198/774 Test #198: vtkCommonCoreCxx-TestDataArrayAPI_SoA_unsigned_int > ...........................***Exception: Other 0.01 sec > 1> Start 199: vtkCommonCoreCxx-TestDataArrayAPI_AoS_unsigned_long > 1> 199/774 Test #199: vtkCommonCoreCxx-TestDataArrayAPI_AoS_unsigned_long > ..........................***Exception: Other 0.01 sec > 1> Start 200: vtkCommonCoreCxx-TestDataArrayAPI_SoA_unsigned_long > 1> 200/774 Test #200: vtkCommonCoreCxx-TestDataArrayAPI_SoA_unsigned_long > ..........................***Exception: Other 0.01 sec > 1> Start 201: vtkCommonCoreCxx-TestDataArray > API_AoS_unsigned_long_long > 1> 201/774 Test #201: vtkCommonCoreCxx-TestDataArrayAPI_AoS_unsigned_long_long > .....................***Exception: Other 0.01 sec > 1> Start 202: vtkCommonCoreCxx-TestDataArray > API_SoA_unsigned_long_long > 1> 202/774 Test #202: vtkCommonCoreCxx-TestDataArrayAPI_SoA_unsigned_long_long > .....................***Exception: Other 0.01 sec > 1> Start 203: vtkCommonCoreCxx-TestDataArray > API_AoS_unsigned_short > 1> 203/774 Test #203: vtkCommonCoreCxx-TestDataArrayAPI_AoS_unsigned_short > .........................***Exception: Other 0.01 sec > 1> Start 204: vtkCommonCoreCxx-TestDataArray > API_SoA_unsigned_short > 1> 204/774 Test #204: vtkCommonCoreCxx-TestDataArrayAPI_SoA_unsigned_short > .........................***Exception: Other 0.01 sec > 1> Start 205: vtkCommonCoreCxx-TestDataArrayAPI_AoS_vtkIdType > 1> 205/774 Test #205: vtkCommonCoreCxx-TestDataArrayAPI_AoS_vtkIdType > ..............................***Exception: Other 0.01 sec > 1> Start 206: vtkCommonCoreCxx-TestDataArrayAPI_SoA_vtkIdType > 1> 206/774 Test #206: vtkCommonCoreCxx-TestDataArrayAPI_SoA_vtkIdType > ..............................***Exception: Other 0.01 sec > 1> Start 207: vtkFiltersGeneric-HeaderTest > 1> 207/774 Test #207: vtkFiltersGeneric-HeaderTest > ................................................. Passed 0.18 sec > 1> Start 208: vtkIOGeometry-HeaderTest > 1> 208/774 Test #208: vtkIOGeometry-HeaderTest > ..................................................... Passed 0.30 sec > 1> Start 209: vtkTestingGenericBridge-HeaderTest > 1> 209/774 Test #209: vtkTestingGenericBridge-HeaderTest > ........................................... Passed 0.19 sec > 1> Start 210: vtkCommonDataModelCxx-TestColor > 1> 210/774 Test #210: vtkCommonDataModelCxx-TestColor > ..............................................***Exception: Other 0.01 > sec > 1> Start 211: vtkCommonDataModelCxx-TestVector > 1> 211/774 Test #211: vtkCommonDataModelCxx-TestVector > .............................................***Exception: Other 0.01 sec > 1> Start 212: vtkCommonDataModelCxx-TestVectorOperators > 1> 212/774 Test #212: vtkCommonDataModelCxx-TestVectorOperators > ....................................***Exception: Other 0.01 sec > 1> Start 213: vtkCommonDataModelCxx-TestAMRBox > 1> 213/774 Test #213: vtkCommonDataModelCxx-TestAMRBox > .............................................***Exception: Other 0.01 sec > 1> Start 214: vtkCommonDataModelCxx-TestBiQuadraticQuad > 1> 214/774 Test #214: vtkCommonDataModelCxx-TestBiQuadraticQuad > ....................................***Exception: Other 0.01 sec > 1> Start 215: vtkCommonDataModelCxx-TestCompositeDataSets > 1> 215/774 Test #215: vtkCommonDataModelCxx-TestCompositeDataSets > ..................................***Exception: Other 0.01 sec > 1> Start 216: vtkCommonDataModelCxx-TestComputeBoundingSphere > 1> 216/774 Test #216: vtkCommonDataModelCxx-TestComputeBoundingSphere > ..............................***Exception: Other 0.01 sec > 1> Start 217: vtkCommonDataModelCxx-TestDataArrayDispatcher > 1> 217/774 Test #217: vtkCommonDataModelCxx-TestDataArrayDispatcher > ................................***Exception: Other 0.01 sec > 1> Start 218: vtkCommonDataModelCxx-TestDataObject > 1> 218/774 Test #218: vtkCommonDataModelCxx-TestDataObject > .........................................***Exception: Other 0.01 sec > 1> Start 219: vtkCommonDataModelCxx-TestDispatchers > 1> 219/774 Test #219: vtkCommonDataModelCxx-TestDispatchers > ........................................***Exception: Other 0.01 sec > 1> Start 220: vtkCommonDataModelCxx-TestGenericCell > 1> 220/774 Test #220: vtkCommonDataModelCxx-TestGenericCell > ........................................***Exception: Other 0.01 sec > 1> Start 221: vtkCommonDataModelCxx-TestGraph > 1> 221/774 Test #221: vtkCommonDataModelCxx-TestGraph > ..............................................***Exception: Other 0.01 > sec > 1> Start 222: vtkCommonDataModelCxx-TestGraph2 > 1> 222/774 Test #222: vtkCommonDataModelCxx-TestGraph2 > .............................................***Exception: Other 0.01 sec > 1> Start 223: vtkCommonDataModelCxx-TestGraphAttributes > 1> 223/774 Test #223: vtkCommonDataModelCxx-TestGraphAttributes > ....................................***Exception: Other 0.01 sec > 1> Start 224: vtkCommonDataModelCxx-TestHigherOrderCell > 1> 224/774 Test #224: vtkCommonDataModelCxx-TestHigherOrderCell > ....................................***Exception: Other 0.01 sec > 1> Start 225: vtkCommonDataModelCxx-TestImageDataFindCell > 1> 225/774 Test #225: vtkCommonDataModelCxx-TestImageDataFindCell > ..................................***Exception: Other 0.01 sec > 1> Start 226: vtkCommonDataModelCxx-TestImageDataInterpolation > 1> 226/774 Test #226: vtkCommonDataModelCxx-TestImageDataInterpolation > .............................***Exception: Other 0.01 sec > 1> Start 227: vtkCommonDataModelCxx-TestImageIterator > 1> 227/774 Test #227: vtkCommonDataModelCxx-TestImageIterator > ......................................***Exception: Other 0.01 sec > 1> Start 228: vtkCommonDataModelCxx-TestInterpolationDerivs > 1> 228/774 Test #228: vtkCommonDataModelCxx-TestInterpolationDerivs > ................................***Exception: Other 0.01 sec > 1> Start 229: vtkCommonDataModelCxx-TestInterpolationFunctions > 1> 229/774 Test #229: vtkCommonDataModelCxx-TestInterpolationFunctions > .............................***Exception: Other 0.01 sec > 1> Start 230: vtkCommonDataModelCxx-TestPath > 1> 230/774 Test #230: vtkCommonDataModelCxx-TestPath > ...............................................***Exception: Other 0.01 > sec > 1> Start 231: vtkCommonDataModelCxx-TestPentagonalPrism > 1> 231/774 Test #231: vtkCommonDataModelCxx-TestPentagonalPrism > ....................................***Exception: Other 0.01 sec > 1> Start 232: vtkCommonDataModelCxx-TestPixelExtent > 1> 232/774 Test #232: vtkCommonDataModelCxx-TestPixelExtent > ........................................***Exception: Other 0.01 sec > 1> Start 233: vtkCommonDataModelCxx-TestPointLocators > 1> 233/774 Test #233: vtkCommonDataModelCxx-TestPointLocators > ......................................***Exception: Other 0.01 sec > 1> Start 234: vtkCommonDataModelCxx-TestPolyDataRemoveCell > 1> 234/774 Test #234: vtkCommonDataModelCxx-TestPolyDataRemoveCell > .................................***Exception: Other 0.01 sec > 1> Start 235: vtkCommonDataModelCxx-TestPolygon > 1> 235/774 Test #235: vtkCommonDataModelCxx-TestPolygon > ............................................***Exception: Other 0.01 sec > 1> Start 236: vtkCommonDataModelCxx-TestPolyhedron0 > 1> 236/774 Test #236: vtkCommonDataModelCxx-TestPolyhedron0 > ........................................***Exception: Other 0.01 sec > 1> Start 237: vtkCommonDataModelCxx-TestPolyhedron1 > 1> 237/774 Test #237: vtkCommonDataModelCxx-TestPolyhedron1 > ........................................***Exception: Other 0.01 sec > 1> Start 238: vtkCommonDataModelCxx-TestPolyhedron3 > 1> 238/774 Test #238: vtkCommonDataModelCxx-TestPolyhedron3 > ........................................***Exception: Other 0.01 sec > 1> Start 239: vtkCommonDataModelCxx-TestPolyhedronConvexity > 1> 239/774 Test #239: vtkCommonDataModelCxx-TestPolyhedronConvexity > ................................***Exception: Other 0.01 sec > 1> Start 240: vtkCommonDataModelCxx-TestQuadraticPolygon > 1> 240/774 Test #240: vtkCommonDataModelCxx-TestQuadraticPolygon > ...................................***Exception: Other 0.01 sec > 1> Start 241: vtkCommonDataModelCxx-TestRect > 1> 241/774 Test #241: vtkCommonDataModelCxx-TestRect > ...............................................***Exception: Other 0.01 > sec > 1> Start 242: vtkCommonDataModelCxx-TestSelectionSubtract > 1> 242/774 Test #242: vtkCommonDataModelCxx-TestSelectionSubtract > ..................................***Exception: Other 0.01 sec > 1> Start 243: vtkCommonDataModelCxx-TestSortFieldData > 1> 243/774 Test #243: vtkCommonDataModelCxx-TestSortFieldData > ......................................***Exception: Other 0.01 sec > 1> Start 244: vtkCommonDataModelCxx-TestTable > 1> 244/774 Test #244: vtkCommonDataModelCxx-TestTable > ..............................................***Exception: Other 0.01 > sec > 1> Start 245: vtkCommonDataModelCxx-TestTreeBFSIterator > 1> 245/774 Test #245: vtkCommonDataModelCxx-TestTreeBFSIterator > ....................................***Exception: Other 0.01 sec > 1> Start 246: vtkCommonDataModelCxx-TestTreeDFSIterator > 1> 246/774 Test #246: vtkCommonDataModelCxx-TestTreeDFSIterator > ....................................***Exception: Other 0.01 sec > 1> Start 247: vtkCommonDataModelCxx-TestTriangle > 1> 247/774 Test #247: vtkCommonDataModelCxx-TestTriangle > ...........................................***Exception: Other 0.01 sec > 1> Start 248: vtkCommonDataModelCxx-TimePointLocators > 1> 248/774 Test #248: vtkCommonDataModelCxx-TimePointLocators > ......................................***Exception: Other 0.01 sec > 1> Start 249: vtkCommonDataModelCxx-otherCellArray > 1> 249/774 Test #249: vtkCommonDataModelCxx-otherCellArray > .........................................***Exception: Other 0.01 sec > 1> Start 250: vtkCommonDataModelCxx-otherCellBoundaries > 1> 250/774 Test #250: vtkCommonDataModelCxx-otherCellBoundaries > ....................................***Exception: Other 0.01 sec > 1> Start 251: vtkCommonDataModelCxx-otherCellPosition > 1> 251/774 Test #251: vtkCommonDataModelCxx-otherCellPosition > ......................................***Exception: Other 0.01 sec > 1> Start 252: vtkCommonDataModelCxx-otherCellTypes > 1> 252/774 Test #252: vtkCommonDataModelCxx-otherCellTypes > .........................................***Exception: Other 0.01 sec > 1> Start 253: vtkCommonDataModelCxx-otherColorTransferFunction > 1> 253/774 Test #253: vtkCommonDataModelCxx-otherColorTransferFunction > .............................***Exception: Other 0.01 sec > 1> Start 254: vtkCommonDataModelCxx-otherEmptyCell > 1> 254/774 Test #254: vtkCommonDataModelCxx-otherEmptyCell > .........................................***Exception: Other 0.01 sec > 1> Start 255: vtkCommonDataModelCxx-otherFieldData > 1> 255/774 Test #255: vtkCommonDataModelCxx-otherFieldData > .........................................***Exception: Other 0.01 sec > 1> Start 256: vtkCommonDataModelCxx-otherRectilinearGrid > 1> 256/774 Test #256: vtkCommonDataModelCxx-otherRectilinearGrid > ...................................***Exception: Other 0.01 sec > 1> Start 257: vtkCommonDataModelCxx-otherStructuredGrid > 1> 257/774 Test #257: vtkCommonDataModelCxx-otherStructuredGrid > ....................................***Exception: Other 0.01 sec > 1> Start 258: vtkCommonDataModelCxx-quadCellConsistency > 1> 258/774 Test #258: vtkCommonDataModelCxx-quadCellConsistency > ....................................***Exception: Other 0.01 sec > 1> Start 259: vtkCommonDataModelCxx-quadraticEvaluation > 1> 259/774 Test #259: vtkCommonDataModelCxx-quadraticEvaluation > ....................................***Exception: Other 0.01 sec > 1> Start 260: vtkCommonDataModelCxx-TestBoundingBox > 1> 260/774 Test #260: vtkCommonDataModelCxx-TestBoundingBox > ........................................***Exception: Other 0.01 sec > 1> Start 261: vtkCommonDataModelCxx-TestPlane > 1> 261/774 Test #261: vtkCommonDataModelCxx-TestPlane > ..............................................***Exception: Other 0.01 > sec > 1> Start 262: vtkCommonDataModelCxx-TestStaticCellLinks > 1> 262/774 Test #262: vtkCommonDataModelCxx-TestStaticCellLinks > ....................................***Exception: Other 0.01 sec > 1> Start 263: vtkCommonDataModelCxx-TestStructuredData > 1> 263/774 Test #263: vtkCommonDataModelCxx-TestStructuredData > .....................................***Exception: Other 0.01 sec > 1> Start 264: vtkCommonDataModelCxx-TestDataObjectTypes > 1> 264/774 Test #264: vtkCommonDataModelCxx-TestDataObjectTypes > ....................................***Exception: Other 0.01 sec > 1> Start 265: vtkCommonDataModelCxx-TestPoly > DataRemoveDeletedCells > 1> 265/774 Test #265: vtkCommonDataModelCxx-TestPolyDataRemoveDeletedCells > .........................***Exception: Other 0.01 sec > 1> Start 266: vtkCommonDataModelCxx-UnitTestCells > 1> 266/774 Test #266: vtkCommonDataModelCxx-UnitTestCells > ..........................................***Exception: Other 0.01 sec > 1> Start 267: vtkCommonDataModelCxx-UnitTestImplicitDataSet > 1> 267/774 Test #267: vtkCommonDataModelCxx-UnitTestImplicitDataSet > ................................***Exception: Other 0.01 sec > 1> Start 268: vtkCommonDataModelCxx-UnitTestImplicitVolume > 1> 268/774 Test #268: vtkCommonDataModelCxx-UnitTestImplicitVolume > .................................***Exception: Other 0.01 sec > 1> Start 269: vtkCommonDataModelCxx-UnitTestLine > 1> 269/774 Test #269: vtkCommonDataModelCxx-UnitTestLine > ...........................................***Exception: Other 0.01 sec > 1> Start 270: vtkCommonDataModelCxx-UnitTestPlanesIntersection > 1> 270/774 Test #270: vtkCommonDataModelCxx-UnitTestPlanesIntersection > .............................***Exception: Other 0.01 sec > 1> Start 271: vtkCommonDataModelCxx-quadraticIntersection > 1> 271/774 Test #271: vtkCommonDataModelCxx-quadraticIntersection > ..................................***Exception: Other 0.01 sec > 1> Start 272: vtkCommonDataModelCxx-TestCellIterators > 1> 272/774 Test #272: vtkCommonDataModelCxx-TestCellIterators > ......................................***Exception: Other 0.01 sec > 1> Start 273: vtkCommonDataModelCxx-TestCellLocator > 1> 273/774 Test #273: vtkCommonDataModelCxx-TestCellLocator > ........................................***Exception: Other 0.01 sec > 1> Start 274: vtkCommonDataModelCxx-TestMean > ValueCoordinatesInterpolation1 > 1> 274/774 Test #274: vtkCommonDataModelCxx-TestMeanValueCoordinatesInterpolation1 > .................***Exception: Other 0.01 sec > 1> Start 275: vtkCommonDataModelCxx-TestMean > ValueCoordinatesInterpolation2 > 1> 275/774 Test #275: vtkCommonDataModelCxx-TestMeanValueCoordinatesInterpolation2 > .................***Exception: Other 0.01 sec > 1> Start 276: vtkCommonDataModelCxx-TestSmoothErrorMetric > 1> 276/774 Test #276: vtkCommonDataModelCxx-TestSmoothErrorMetric > ..................................***Exception: Other 0.01 sec > 1> Start 277: vtkCommonDataModelCxx-TestQuadraticPolygonFilters > 1> 277/774 Test #277: vtkCommonDataModelCxx-TestQuadraticPolygonFilters > ............................***Exception: Other 0.01 sec > 1> Start 278: vtkCommonDataModelCxx-TestKdTreeRepresentation > 1> 278/774 Test #278: vtkCommonDataModelCxx-TestKdTreeRepresentation > ...............................***Exception: Other 0.01 sec > 1> Start 279: TestPolyhedron2 > 1> 279/774 Test #279: TestPolyhedron2 .............................. > ................................***Exception: Other 0.01 sec > 1> Start 280: vtkCommonExecutionModelCxx-TestCopyAttributeData > 1> 280/774 Test #280: vtkCommonExecutionModelCxx-TestCopyAttributeData > .............................***Exception: Other 0.01 sec > 1> Start 281: vtkCommonExecutionModelCxx-Tes > tImageDataToStructuredGrid > 1> 281/774 Test #281: vtkCommonExecutionModelCxx-TestImageDataToStructuredGrid > .....................***Exception: Other 0.01 sec > 1> Start 282: vtkCommonExecutionModelCxx-TestMetaData > 1> 282/774 Test #282: vtkCommonExecutionModelCxx-TestMetaData > ......................................***Exception: Other 0.01 sec > 1> Start 283: vtkCommonExecutionModelCxx-TestSetInputDataObject > 1> 283/774 Test #283: vtkCommonExecutionModelCxx-TestSetInputDataObject > ............................***Exception: Other 0.01 sec > 1> Start 284: vtkCommonExecutionModelCxx-TestTemporalSupport > 1> 284/774 Test #284: vtkCommonExecutionModelCxx-TestTemporalSupport > ...............................***Exception: Other 0.01 sec > 1> Start 285: vtkCommonExecutionModelCxx-Tes > tThreadedImageAlgorithmSplitExtent > 1> 285/774 Test #285: vtkCommonExecutionModelCxx-Tes > tThreadedImageAlgorithmSplitExtent .............***Exception: Other 0.01 > sec > 1> Start 286: vtkCommonExecutionModelCxx-TestTrivialConsumer > 1> 286/774 Test #286: vtkCommonExecutionModelCxx-TestTrivialConsumer > ...............................***Exception: Other 0.01 sec > 1> Start 287: vtkCommonExecutionModelCxx-UnitTestSimpleScalarTree > 1> 287/774 Test #287: vtkCommonExecutionModelCxx-UnitTestSimpleScalarTree > ..........................***Exception: Other 0.01 sec > 1> Start 288: vtkCommonMathCxx-TestAmoebaMinimizer > 1> 288/774 Test #288: vtkCommonMathCxx-TestAmoebaMinimizer > .........................................***Exception: Other 0.01 sec > 1> Start 289: vtkCommonMathCxx-TestMatrix3x3 > 1> 289/774 Test #289: vtkCommonMathCxx-TestMatrix3x3 > ...............................................***Exception: Other 0.01 > sec > 1> Start 290: vtkCommonMathCxx-TestPolynomialSolversUnivariate > 1> 290/774 Test #290: vtkCommonMathCxx-TestPolynomialSolversUnivariate > .............................***Exception: Other 0.01 sec > 1> Start 291: vtkCommonMathCxx-TestQuaternion > 1> 291/774 Test #291: vtkCommonMathCxx-TestQuaternion > ..............................................***Exception: Other 0.01 > sec > 1> Start 292: vtkCommonMiscCxx-TestPolygonBuilder > 1> 292/774 Test #292: vtkCommonMiscCxx-TestPolygonBuilder > ..........................................***Exception: Other 0.01 sec > 1> Start 293: vtkCommonMiscCxx-TestPolygonBuilder2 > 1> 293/774 Test #293: vtkCommonMiscCxx-TestPolygonBuilder2 > .........................................***Exception: Other 0.01 sec > 1> Start 294: vtkCommonMiscCxx-TestPolygonBuilder3 > 1> 294/774 Test #294: vtkCommonMiscCxx-TestPolygonBuilder3 > .........................................***Exception: Other 0.01 sec > 1> Start 295: vtkCommonMiscCxx-TestPolygonBuilder4 > 1> 295/774 Test #295: vtkCommonMiscCxx-TestPolygonBuilder4 > .........................................***Exception: Other 0.01 sec > 1> Start 296: vtkCommonMiscCxx-UnitTestFunctionParser > 1> 296/774 Test #296: vtkCommonMiscCxx-UnitTestFunctionParser > ......................................***Exception: Other 0.01 sec > 1> Start 297: vtkCommonSystemCxx-TestDirectory > 1> 297/774 Test #297: vtkCommonSystemCxx-TestDirectory > .............................................***Exception: Other 0.01 sec > 1> Start 298: vtkCommonSystemCxx-otherTimerLog > 1> 298/774 Test #298: vtkCommonSystemCxx-otherTimerLog > .............................................***Exception: Other 0.01 sec > 1> Start 299: vtkCommonTransformsCxx-TestTransform > 1> 299/774 Test #299: vtkCommonTransformsCxx-TestTransform > .........................................***Exception: Other 0.01 sec > 1> Start 300: vtkCommonTransformsCxx-TestLandmarkTransform > 1> 300/774 Test #300: vtkCommonTransformsCxx-TestLandmarkTransform > .................................***Exception: Other 0.01 sec > 1> Start 301: vtkImagingMath-HeaderTest > 1> 301/774 Test #301: vtkImagingMath-HeaderTest > .................................................... Passed 0.12 sec > 1> Start 302: vtkRenderingVolumeOpenGL2-HeaderTest > 1> 302/774 Test #302: vtkRenderingVolumeOpenGL2-HeaderTest > ......................................... Passed 0.13 sec > 1> Start 303: vtkFiltersCoreCxx-TestAppendFilter > 1> 303/774 Test #303: vtkFiltersCoreCxx-TestAppendFilter > ...........................................***Exception: Other 0.01 sec > 1> Start 304: vtkFiltersCoreCxx-TestAppendPolyData > 1> 304/774 Test #304: vtkFiltersCoreCxx-TestAppendPolyData > .........................................***Exception: Other 0.01 sec > 1> Start 305: vtkFiltersCoreCxx-TestAppendSelection > 1> 305/774 Test #305: vtkFiltersCoreCxx-TestAppendSelection > ........................................***Exception: Other 0.01 sec > 1> Start 306: vtkFiltersCoreCxx-TestArrayCalculator > 1> 306/774 Test #306: vtkFiltersCoreCxx-TestArrayCalculator > ........................................***Exception: Other 0.01 sec > 1> Start 307: vtkFiltersCoreCxx-TestAssignAttribute > 1> 307/774 Test #307: vtkFiltersCoreCxx-TestAssignAttribute > ........................................***Exception: Other 0.01 sec > 1> Start 308: vtkFiltersCoreCxx-TestBinCellDataFilter > 1> 308/774 Test #308: vtkFiltersCoreCxx-TestBinCellDataFilter > ......................................***Exception: Other 0.01 sec > 1> Start 309: vtkFiltersCoreCxx-TestCategori > calPointDataToCellData > 1> 309/774 Test #309: vtkFiltersCoreCxx-TestCategoricalPointDataToCellData > .........................***Exception: Other 0.01 sec > 1> Start 310: vtkFiltersCoreCxx-TestCellDataToPointData > 1> 310/774 Test #310: vtkFiltersCoreCxx-TestCellDataToPointData > ....................................***Exception: Other 0.01 sec > 1> Start 311: vtkFiltersCoreCxx-TestCenterOfMass > 1> 311/774 Test #311: vtkFiltersCoreCxx-TestCenterOfMass > ...........................................***Exception: Other 0.01 sec > 1> Start 312: vtkFiltersCoreCxx-TestCleanPolyData > 1> 312/774 Test #312: vtkFiltersCoreCxx-TestCleanPolyData > ..........................................***Exception: Other 0.01 sec > 1> Start 313: vtkFiltersCoreCxx-TestClipPolyData > 1> 313/774 Test #313: vtkFiltersCoreCxx-TestClipPolyData > ...........................................***Exception: Other 0.01 sec > 1> Start 314: vtkFiltersCoreCxx-TestConnectivityFilter > 1> 314/774 Test #314: vtkFiltersCoreCxx-TestConnectivityFilter > .....................................***Exception: Other 0.01 sec > 1> Start 315: vtkFiltersCoreCxx-TestCutter > 1> 315/774 Test #315: vtkFiltersCoreCxx-TestCutter > .................................................***Exception: Other 0.01 > sec > 1> Start 316: vtkFiltersCoreCxx-TestDecimatePolylineFilter > 1> 316/774 Test #316: vtkFiltersCoreCxx-TestDecimatePolylineFilter > .................................***Exception: Other 0.01 sec > 1> Start 317: vtkFiltersCoreCxx-TestDecimatePro > 1> 317/774 Test #317: vtkFiltersCoreCxx-TestDecimatePro > ............................................***Exception: Other 0.01 sec > 1> Start 318: vtkFiltersCoreCxx-TestDelaunay2D > 1> 318/774 Test #318: vtkFiltersCoreCxx-TestDelaunay2D > .............................................***Exception: Other 0.01 sec > 1> Start 319: vtkFiltersCoreCxx-TestDelaunay2DFindTriangle > 1> 319/774 Test #319: vtkFiltersCoreCxx-TestDelaunay2DFindTriangle > .................................***Exception: Other 0.01 sec > 1> Start 320: vtkFiltersCoreCxx-TestDelaunay2DMeshes > 1> 320/774 Test #320: vtkFiltersCoreCxx-TestDelaunay2DMeshes > .......................................***Exception: Other 0.01 sec > 1> Start 321: vtkFiltersCoreCxx-TestDelaunay3D > 1> 321/774 Test #321: vtkFiltersCoreCxx-TestDelaunay3D > .............................................***Exception: Other 0.01 sec > 1> Start 322: vtkFiltersCoreCxx-TestExecutionTimer > 1> 322/774 Test #322: vtkFiltersCoreCxx-TestExecutionTimer > .........................................***Exception: Other 0.01 sec > 1> Start 323: vtkFiltersCoreCxx-TestFeatureEdges > 1> 323/774 Test #323: vtkFiltersCoreCxx-TestFeatureEdges > ...........................................***Exception: Other 0.01 sec > 1> Start 324: vtkFiltersCoreCxx-TestFlyingEdges > 1> 324/774 Test #324: vtkFiltersCoreCxx-TestFlyingEdges > ............................................***Exception: Other 0.01 sec > 1> Start 325: vtkFiltersCoreCxx-TestGlyph3D > 1> 325/774 Test #325: vtkFiltersCoreCxx-TestGlyph3D > ................................................***Exception: Other 0.01 > sec > 1> Start 326: vtkFiltersCoreCxx-TestHedgeHog > 1> 326/774 Test #326: vtkFiltersCoreCxx-TestHedgeHog > ...............................................***Exception: Other 0.01 > sec > 1> Start 327: vtkFiltersCoreCxx-TestImplicitPolyDataDistance > 1> 327/774 Test #327: vtkFiltersCoreCxx-TestImplicitPolyDataDistance > ...............................***Exception: Other 0.01 sec > 1> Start 328: vtkFiltersCoreCxx-TestMaskPoints > 1> 328/774 Test #328: vtkFiltersCoreCxx-TestMaskPoints > .............................................***Exception: Other 0.01 sec > 1> Start 329: vtkFiltersCoreCxx-TestNamedComponents > 1> 329/774 Test #329: vtkFiltersCoreCxx-TestNamedComponents > ........................................***Exception: Other 0.01 sec > 1> Start 330: vtkFiltersCoreCxx-TestPolyDataConnectivityFilter > 1> 330/774 Test #330: vtkFiltersCoreCxx-TestPolyDataConnectivityFilter > .............................***Exception: Other 0.01 sec > 1> Start 331: vtkFiltersCoreCxx-TestProbeFilter > 1> 331/774 Test #331: vtkFiltersCoreCxx-TestProbeFilter > ............................................***Exception: Other 0.01 sec > 1> Start 332: vtkFiltersCoreCxx-TestProbeFilterImageInput > 1> 332/774 Test #332: vtkFiltersCoreCxx-TestProbeFilterImageInput > ..................................***Exception: Other 0.01 sec > 1> Start 333: vtkFiltersCoreCxx-TestProbeFilterOutputAttributes > 1> 333/774 Test #333: vtkFiltersCoreCxx-TestProbeFilterOutputAttributes > ............................***Exception: Other 0.01 sec > 1> Start 334: vtkFiltersCoreCxx-TestResampleToImage > 1> 334/774 Test #334: vtkFiltersCoreCxx-TestResampleToImage > ........................................***Exception: Other 0.01 sec > 1> Start 335: vtkFiltersCoreCxx-TestResampleWithDataSet > 1> 335/774 Test #335: vtkFiltersCoreCxx-TestResampleWithDataSet > ....................................***Exception: Other 0.01 sec > 1> Start 336: vtkFiltersCoreCxx-TestSmoothPolyDataFilter > 1> 336/774 Test #336: vtkFiltersCoreCxx-TestSmoothPolyDataFilter > ...................................***Exception: Other 0.01 sec > 1> Start 337: vtkFiltersCoreCxx-TestSMPPipelineContour > 1> 337/774 Test #337: vtkFiltersCoreCxx-TestSMPPipelineContour > .....................................***Exception: Other 0.01 sec > 1> Start 338: vtkFiltersCoreCxx-TestStripper > 1> 338/774 Test #338: vtkFiltersCoreCxx-TestStripper > ...............................................***Exception: Other 0.01 > sec > 1> Start 339: vtkFiltersCoreCxx-TestStructuredGridAppend > 1> 339/774 Test #339: vtkFiltersCoreCxx-TestStructuredGridAppend > ...................................***Exception: Other 0.01 sec > 1> Start 340: vtkFiltersCoreCxx-TestThreshold > 1> 340/774 Test #340: vtkFiltersCoreCxx-TestThreshold > ..............................................***Exception: Other 0.01 > sec > 1> Start 341: vtkFiltersCoreCxx-TestThresholdPoints > 1> 341/774 Test #341: vtkFiltersCoreCxx-TestThresholdPoints > ........................................***Exception: Other 0.01 sec > 1> Start 342: vtkFiltersCoreCxx-TestTransposeTable > 1> 342/774 Test #342: vtkFiltersCoreCxx-TestTransposeTable > .........................................***Exception: Other 0.01 sec > 1> Start 343: vtkFiltersCoreCxx-TestTubeFilter > 1> 343/774 Test #343: vtkFiltersCoreCxx-TestTubeFilter > .............................................***Exception: Other 0.01 sec > 1> Start 344: vtkFiltersCoreCxx-TestUnstruct > uredGridQuadricDecimation > 1> 344/774 Test #344: vtkFiltersCoreCxx-TestUnstructuredGridQuadricDecimation > ......................***Exception: Other 0.01 sec > 1> Start 345: vtkFiltersCoreCxx-UnitTestMaskPoints > 1> 345/774 Test #345: vtkFiltersCoreCxx-UnitTestMaskPoints > .........................................***Exception: Other 0.01 sec > 1> Start 346: vtkFiltersCoreCxx-UnitTestMergeFilter > 1> 346/774 Test #346: vtkFiltersCoreCxx-UnitTestMergeFilter > ........................................***Exception: Other 0.01 sec > 1> Start 347: vtkRenderingLabel-HeaderTest > 1> 347/774 Test #347: vtkRenderingLabel-HeaderTest > ................................................. Passed 0.20 sec > 1> Start 348: vtkFiltersGenericCxx-TestGenericStreamTracer > 1> 348/774 Test #348: vtkFiltersGenericCxx-TestGenericStreamTracer > .................................***Exception: Other 0.01 sec > 1> Start 349: vtkFiltersGenericCxx-TestGenericClip > 1> 349/774 Test #349: vtkFiltersGenericCxx-TestGenericClip > .........................................***Exception: Other 0.01 sec > 1> Start 350: vtkFiltersGenericCxx-TestGenericContourFilter > 1> 350/774 Test #350: vtkFiltersGenericCxx-TestGenericContourFilter > ................................***Exception: Other 0.01 sec > 1> Start 351: vtkFiltersGenericCxx-TestGenericCutter > 1> 351/774 Test #351: vtkFiltersGenericCxx-TestGenericCutter > .......................................***Exception: Other 0.01 sec > 1> Start 352: vtkFiltersGenericCxx-TestGenericDataSetTessellator > 1> 352/774 Test #352: vtkFiltersGenericCxx-TestGenericDataSetTessellator > ...........................***Exception: Other 0.01 sec > 1> Start 353: vtkFiltersGenericCxx-TestGenericGeometryFilter > 1> 353/774 Test #353: vtkFiltersGenericCxx-TestGenericGeometryFilter > ...............................***Exception: Other 0.01 sec > 1> Start 354: vtkFiltersGenericCxx-TestGenericGlyph3DFilter > 1> 354/774 Test #354: vtkFiltersGenericCxx-TestGenericGlyph3DFilter > ................................***Exception: Other 0.01 sec > 1> Start 355: vtkFiltersGenericCxx-TestGenericProbeFilter > 1> 355/774 Test #355: vtkFiltersGenericCxx-TestGenericProbeFilter > ..................................***Exception: Other 0.01 sec > 1> Start 356: vtkFiltersGenericCxx-otherCreation > 1> 356/774 Test #356: vtkFiltersGenericCxx-otherCreation > ...........................................***Exception: Other 0.01 sec > 1> Start 357: vtkFiltersGenericCxx-UnitTestGenericGeometryFilter > 1> 357/774 Test #357: vtkFiltersGenericCxx-UnitTestGenericGeometryFilter > ...........................***Exception: Other 0.01 sec > 1> Start 358: vtkFiltersGeometryCxx-TestExtr > actSurfaceNonLinearSubdivision > 1> 358/774 Test #358: vtkFiltersGeometryCxx-TestExtractSurfaceNonLinearSubdivision > .................***Exception: Other 0.01 sec > 1> Start 359: vtkFiltersGeometryCxx-TestDataSetSurfaceFieldData > 1> 359/774 Test #359: vtkFiltersGeometryCxx-TestDataSetSurfaceFieldData > ............................***Exception: Other 0.01 sec > 1> Start 360: vtkFiltersGeometryCxx-TestData > SetRegionSurfaceFilter > 1> 360/774 Test #360: vtkFiltersGeometryCxx-TestDataSetRegionSurfaceFilter > .........................***Exception: Other 0.01 sec > 1> Start 361: vtkFiltersGeometryCxx-TestImageDataToUniformGrid > 1> 361/774 Test #361: vtkFiltersGeometryCxx-TestImageDataToUniformGrid > .............................***Exception: Other 0.01 sec > 1> Start 362: vtkFiltersGeometryCxx-TestLine > arToQuadraticCellsFilter > 1> 362/774 Test #362: vtkFiltersGeometryCxx-TestLinearToQuadraticCellsFilter > .......................***Exception: Other 0.01 sec > 1> Start 363: vtkFiltersGeometryCxx-TestProjectSphereFilter > 1> 363/774 Test #363: vtkFiltersGeometryCxx-TestProjectSphereFilter > ................................***Exception: Other 0.01 sec > 1> Start 364: vtkFiltersGeometryCxx-TestStructuredAMRNeighbor > 1> 364/774 Test #364: vtkFiltersGeometryCxx-TestStructuredAMRNeighbor > ..............................***Exception: Other 0.01 sec > 1> Start 365: vtkFiltersGeometryCxx-TestUnif > ormGridGhostDataGenerator > 1> 365/774 Test #365: vtkFiltersGeometryCxx-TestUniformGridGhostDataGenerator > ......................***Exception: Other 0.01 sec > 1> Start 366: vtkFiltersGeometryCxx-TestUnst > ructuredGridGeometryFilter > 1> 366/774 Test #366: vtkFiltersGeometryCxx-TestUnstructuredGridGeometryFilter > .....................***Exception: Other 0.01 sec > 1> Start 367: vtkFiltersGeometryCxx-TestGeometryFilterCellData > 1> 367/774 Test #367: vtkFiltersGeometryCxx-TestGeometryFilterCellData > .............................***Exception: Other 0.01 sec > 1> Start 368: vtkFiltersGeometryCxx-TestStru > cturedAMRGridConnectivity > 1> 368/774 Test #368: vtkFiltersGeometryCxx-TestStructuredAMRGridConnectivity > ......................***Exception: Other 0.01 sec > 1> Start 369: vtkFiltersGeometryCxx-TestStru > cturedGridConnectivity > 1> 369/774 Test #369: vtkFiltersGeometryCxx-TestStructuredGridConnectivity > .........................***Exception: Other 0.01 sec > 1> Start 370: vtkFiltersGeometryCxx-TestStru > cturedGridGhostDataGenerator > 1> 370/774 Test #370: vtkFiltersGeometryCxx-TestStructuredGridGhostDataGenerator > ...................***Exception: Other 0.01 sec > 1> Start 371: vtkFiltersGeometryCxx-UnitTestDataSetSurfaceFilter > 1> 371/774 Test #371: vtkFiltersGeometryCxx-UnitTestDataSetSurfaceFilter > ...........................***Exception: Other 0.01 sec > 1> Start 372: vtkImagingStencil-HeaderTest > 1> 372/774 Test #372: vtkImagingStencil-HeaderTest > ................................................. Passed 0.12 sec > 1> Start 373: vtkFiltersHybridCxx-TemporalStatistics > 1> 373/774 Test #373: vtkFiltersHybridCxx-TemporalStatistics > .......................................***Exception: Other 0.01 sec > 1> Start 374: vtkFiltersHybridCxx-TestBSplineTransform > 1> 374/774 Test #374: vtkFiltersHybridCxx-TestBSplineTransform > .....................................***Exception: Other 0.01 sec > 1> Start 375: vtkFiltersHybridCxx-TestDepthSortPolyData > 1> 375/774 Test #375: vtkFiltersHybridCxx-TestDepthSortPolyData > ....................................***Exception: Other 0.01 sec > 1> Start 376: vtkFiltersHybridCxx-TestForceTime > 1> 376/774 Test #376: vtkFiltersHybridCxx-TestForceTime > ............................................***Exception: Other 0.01 sec > 1> Start 377: vtkFiltersHybridCxx-TestPolyDataSilhouette > 1> 377/774 Test #377: vtkFiltersHybridCxx-TestPolyDataSilhouette > ...................................***Exception: Other 0.01 sec > 1> Start 378: vtkFiltersHybridCxx-TestProcrustesAlignmentFilter > 1> 378/774 Test #378: vtkFiltersHybridCxx-TestProcrustesAlignmentFilter > ............................***Exception: Other 0.01 sec > 1> Start 379: vtkFiltersHybridCxx-TestTemporalCacheSimple > 1> 379/774 Test #379: vtkFiltersHybridCxx-TestTemporalCacheSimple > ..................................***Exception: Other 0.01 sec > 1> Start 380: vtkFiltersHybridCxx-TestTemporalCacheTemporal > 1> 380/774 Test #380: vtkFiltersHybridCxx-TestTemporalCacheTemporal > ................................***Exception: Other 0.01 sec > 1> Start 381: vtkFiltersHybridCxx-TestTemporalFractal > 1> 381/774 Test #381: vtkFiltersHybridCxx-TestTemporalFractal > ......................................***Exception: Other 0.01 sec > 1> Start 382: vtkFiltersImaging-HeaderTest > 1> 382/774 Test #382: vtkFiltersImaging-HeaderTest > ................................................. Passed 0.12 sec > 1> Start 383: vtkFiltersModelingCxx-TestButterflyScalars > 1> 383/774 Test #383: vtkFiltersModelingCxx-TestButterflyScalars > ...................................***Exception: Other 0.01 sec > 1> Start 384: vtkFiltersModelingCxx-TestNamedColorsIntegration > 1> 384/774 Test #384: vtkFiltersModelingCxx-TestNamedColorsIntegration > .............................***Exception: Other 0.01 sec -------------- next part -------------- An HTML attachment was scrubbed... URL: From kmilner at usc.edu Tue Feb 14 16:11:37 2017 From: kmilner at usc.edu (Kevin Milner) Date: Tue, 14 Feb 2017 13:11:37 -0800 Subject: [vtkusers] Issues with picking in VTK Java on Mac OS X In-Reply-To: References: <94b76fe5-cd64-f581-20c5-8d83e6bc93b7@usc.edu> <5d4ae6e5-a2ad-8d8b-588a-95e8ae0c7236@usc.edu> <6c6ec915-7314-c7cf-6307-e796c51432d2@usc.edu> <20170204003525.2097551751@mail.rogue-research.com> <20170207140228.911087348@mail.rogue-research.com> Message-ID: <13c57571-a66c-219c-4d4f-1f3f9332db83@usc.edu> Thanks to everyone for their help! So I finally have everything figured out. It turns out that Sebastien's fix (commit b6df993770cfcd9a69a48a2730415a992d698c5b) does indeed fix the problem with picking on retina displays. When I noticed a discrepancy between the reported click position and the JFrame size, I implemented a fix to what I thought was a bug, but actually defeated Sebastien's fix. So I can now confirm that the current git/master version works successfully on both retina and non-retina Macs. One note about the fix though is that it uses the "scale" field in GraphicsDevice, which is accessed via Java reflection, and does not exist in my linux distribution. This causes an exception to be dumped to the console every time I click in the 3D viewer. I just commented out the e.printStackTrace(); at line 382 of vtk.rendering.vtkInteractorForwarder to remove the excessive printing. You should probably fix that before the next release. Other possible ways to detect a retina display/scale factor which might not have the linux issue are discussed here: http://stackoverflow.com/questions/14716743/how-can-i-detect-whether-a-mac-has-a-retina-display-from-java Thanks much for the help! Kevin On 02/10/2017 06:05 PM, Sebastien Jourdain wrote: > Hi Kevin, > > I finally build VTK on my mac (macOS Sierra 10.12.3 - 16D32) > > I can run vtk.sample.Demo with the usual external window issue except > on that time the actual rendering window is half the size of the > actual JFrame. > > For the Jogl I get a segfault right away. > > $ java -cp > vtk-7.1.jar:/Users/seb/.m2/repository/org/jogamp/gluegen/gluegen-rt/2.3.2/gluegen-rt-2.3.2.jar:/Users/seb/.m2/repository/org/jogamp/jogl/jogl-all/2.3.2/jogl-all-2.3.2.jar > -Djava.library.path=$PWD/natives-Darwin-x86_64/ > vtk.sample.rendering.JoglConeRendering > # > # A fatal error has been detected by the Java Runtime Environment: > # > # SIGSEGV (0xb) at pc=0x000000012cdaeb99, pid=51716, tid=7171 > # > # JRE version: Java(TM) SE Runtime Environment (8.0_25-b17) (build > 1.8.0_25-b17) > # Java VM: Java HotSpot(TM) 64-Bit Server VM (25.25-b02 mixed mode > bsd-amd64 compressed oops) > # Problematic frame: > # C [libawt_lwawt.dylib+0x44b99] JNI_OnLoad+0x91 > # > # Failed to write core dump. Core dumps have been disabled. To enable > core dumping, try "ulimit -c unlimited" before starting Java again > # > # An error report file with more information is saved as: > # /Users/seb/Documents/code/VTK/install/hs_err_pid51716.log > # > # If you would like to submit a bug report, please visit: > # http://bugreport.sun.com/bugreport/crash.jsp > > # The crash happened outside the Java Virtual Machine in native code. > # See problematic frame for where to report the bug. > # > Abort trap: 6 > > I don't know if the issue come from jogl or VTK with macOS Sierra. > > Anyway, wanted to let you know, > > Seb > > On Tue, Feb 7, 2017 at 7:02 AM, Sean McBride > wrote: > > On Mon, 6 Feb 2017 14:10:03 -0800, Kevin Milner said: > > >Any ideas on how to get this working on new Macs? > > So you have 2 differences now: different OS version, different > screens (Retina vs not). You should try to eliminate one. You > can force a non-Retina to act like a retina with Quartz Debug: > > > > > and/or upgrade that Mac from 10.9 (which BTW doesn't get security > updates anymore) to something newer. > > Cheers, > > -- > ____________________________________________________________ > Sean McBride, B. Eng sean at rogue-research.com > > Rogue Research www.rogue-research.com > > Mac Software Developer Montr?al, Qu?bec, Canada > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From sebastien.jourdain at kitware.com Tue Feb 14 17:41:24 2017 From: sebastien.jourdain at kitware.com (Sebastien Jourdain) Date: Tue, 14 Feb 2017 15:41:24 -0700 Subject: [vtkusers] Issues with picking in VTK Java on Mac OS X In-Reply-To: <13c57571-a66c-219c-4d4f-1f3f9332db83@usc.edu> References: <94b76fe5-cd64-f581-20c5-8d83e6bc93b7@usc.edu> <5d4ae6e5-a2ad-8d8b-588a-95e8ae0c7236@usc.edu> <6c6ec915-7314-c7cf-6307-e796c51432d2@usc.edu> <20170204003525.2097551751@mail.rogue-research.com> <20170207140228.911087348@mail.rogue-research.com> <13c57571-a66c-219c-4d4f-1f3f9332db83@usc.edu> Message-ID: Thanks Kevin, could you send me the exact exception/stack trace that you are getting on linux? Thanks, Seb On Tue, Feb 14, 2017 at 2:11 PM, Kevin Milner wrote: > Thanks to everyone for their help! So I finally have everything figured > out. It turns out that Sebastien's fix (commit > b6df993770cfcd9a69a48a2730415a992d698c5b) does indeed fix the problem > with picking on retina displays. When I noticed a discrepancy between the > reported click position and the JFrame size, I implemented a fix to what I > thought was a bug, but actually defeated Sebastien's fix. So I can now > confirm that the current git/master version works successfully on both > retina and non-retina Macs. > > One note about the fix though is that it uses the "scale" field in > GraphicsDevice, which is accessed via Java reflection, and does not exist > in my linux distribution. This causes an exception to be dumped to the > console every time I click in the 3D viewer. I just commented out the > e.printStackTrace(); at line 382 of vtk.rendering.vtkInteractorForwarder > to remove the excessive printing. You should probably fix that before the > next release. Other possible ways to detect a retina display/scale factor > which might not have the linux issue are discussed here: > http://stackoverflow.com/questions/14716743/how-can-i- > detect-whether-a-mac-has-a-retina-display-from-java > > Thanks much for the help! > Kevin > > > On 02/10/2017 06:05 PM, Sebastien Jourdain wrote: > > Hi Kevin, > > I finally build VTK on my mac (macOS Sierra 10.12.3 - 16D32) > > I can run vtk.sample.Demo with the usual external window issue except on > that time the actual rendering window is half the size of the actual > JFrame. > > For the Jogl I get a segfault right away. > > $ java -cp vtk-7.1.jar:/Users/seb/.m2/repository/org/jogamp/gluegen/ > gluegen-rt/2.3.2/gluegen-rt-2.3.2.jar:/Users/seb/.m2/ > repository/org/jogamp/jogl/jogl-all/2.3.2/jogl-all-2.3.2.jar > -Djava.library.path=$PWD/natives-Darwin-x86_64/ vtk.sample.rendering. > JoglConeRendering > # > # A fatal error has been detected by the Java Runtime Environment: > # > # SIGSEGV (0xb) at pc=0x000000012cdaeb99, pid=51716, tid=7171 > # > # JRE version: Java(TM) SE Runtime Environment (8.0_25-b17) (build > 1.8.0_25-b17) > # Java VM: Java HotSpot(TM) 64-Bit Server VM (25.25-b02 mixed mode > bsd-amd64 compressed oops) > # Problematic frame: > # C [libawt_lwawt.dylib+0x44b99] JNI_OnLoad+0x91 > # > # Failed to write core dump. Core dumps have been disabled. To enable core > dumping, try "ulimit -c unlimited" before starting Java again > # > # An error report file with more information is saved as: > # /Users/seb/Documents/code/VTK/install/hs_err_pid51716.log > # > # If you would like to submit a bug report, please visit: > # http://bugreport.sun.com/bugreport/crash.jsp > > # The crash happened outside the Java Virtual Machine in native code. > # See problematic frame for where to report the bug. > # > Abort trap: 6 > > I don't know if the issue come from jogl or VTK with macOS Sierra. > > Anyway, wanted to let you know, > > Seb > > On Tue, Feb 7, 2017 at 7:02 AM, Sean McBride > wrote: > >> On Mon, 6 Feb 2017 14:10:03 -0800, Kevin Milner said: >> >> >Any ideas on how to get this working on new Macs? >> >> So you have 2 differences now: different OS version, different screens >> (Retina vs not). You should try to eliminate one. You can force a >> non-Retina to act like a retina with Quartz Debug: >> >> > raphicsAnimation/Conceptual/HighResolutionOSX/Testing/Testing.html >> >> > >> >> and/or upgrade that Mac from 10.9 (which BTW doesn't get security updates >> anymore) to something newer. >> >> Cheers, >> >> -- >> ____________________________________________________________ >> Sean McBride, B. Eng sean at rogue-research.com >> Rogue Research www.rogue-research.com >> >> Mac Software Developer Montr?al, Qu?bec, Canada >> >> >> > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From kmilner at usc.edu Tue Feb 14 17:51:09 2017 From: kmilner at usc.edu (Kevin Milner) Date: Tue, 14 Feb 2017 14:51:09 -0800 Subject: [vtkusers] Issues with picking in VTK Java on Mac OS X In-Reply-To: References: <94b76fe5-cd64-f581-20c5-8d83e6bc93b7@usc.edu> <5d4ae6e5-a2ad-8d8b-588a-95e8ae0c7236@usc.edu> <6c6ec915-7314-c7cf-6307-e796c51432d2@usc.edu> <20170204003525.2097551751@mail.rogue-research.com> <20170207140228.911087348@mail.rogue-research.com> <13c57571-a66c-219c-4d4f-1f3f9332db83@usc.edu> Message-ID: <18af9139-2842-f899-0822-8cd22700e38b@usc.edu> Sure, here it is: java.lang.NoSuchFieldException: scale at java.lang.Class.getDeclaredField(Class.java:2070) at vtk.rendering.vtkInteractorForwarder.getGraphicDeviceScale(vtkInteractorForwarder.java:372) at vtk.rendering.vtkInteractorForwarder.getDisplayScale(vtkInteractorForwarder.java:367) at vtk.rendering.vtkInteractorForwarder.(vtkInteractorForwarder.java:52) at vtk.rendering.vtkAbstractComponent.(vtkAbstractComponent.java:60) at vtk.rendering.jogl.vtkAbstractJoglComponent.(vtkAbstractJoglComponent.java:27) at vtk.rendering.jogl.vtkJoglPanelComponent.(vtkJoglPanelComponent.java:21) at vtk.rendering.jogl.vtkJoglPanelComponent.(vtkJoglPanelComponent.java:17) at vtk.rendering.jogl.vtkJoglPanelComponent.(vtkJoglPanelComponent.java:13) at org.scec.vtk.main.MainGUI.(MainGUI.java:152) at org.scec.vtk.main.MainSplashScreen.(MainSplashScreen.java:34) at org.scec.vtk.main.MainSplashScreen$1.run(MainSplashScreen.java:69) at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:311) at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:756) at java.awt.EventQueue.access$500(EventQueue.java:97) at java.awt.EventQueue$3.run(EventQueue.java:709) at java.awt.EventQueue$3.run(EventQueue.java:703) at java.security.AccessController.doPrivileged(Native Method) at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:80) at java.awt.EventQueue.dispatchEvent(EventQueue.java:726) at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:201) at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116) at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101) at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93) at java.awt.EventDispatchThread.run(EventDispatchThread.java:82) More details on my system: Xubuntu 16.06 64 bit, NVidia Quadro M2000M, NVidia driver version 367.57 java -version: openjdk version "1.8.0_121" OpenJDK Runtime Environment (build 1.8.0_121-8u121-b13-0ubuntu1.16.04.2-b13) OpenJDK 64-Bit Server VM (build 25.121-b13, mixed mode) Kevin On 02/14/2017 02:41 PM, Sebastien Jourdain wrote: > Thanks Kevin, > > could you send me the exact exception/stack trace that you are getting > on linux? > > Thanks, > > Seb > > On Tue, Feb 14, 2017 at 2:11 PM, Kevin Milner > wrote: > > Thanks to everyone for their help! So I finally have everything > figured out. It turns out that Sebastien's fix (commit > b6df993770cfcd9a69a48a2730415a992d698c5b) does indeed fix the > problem with picking on retina displays. When I noticed a > discrepancy between the reported click position and the JFrame > size, I implemented a fix to what I thought was a bug, but > actually defeated Sebastien's fix. So I can now confirm that the > current git/master version works successfully on both retina and > non-retina Macs. > > One note about the fix though is that it uses the "scale" field in > GraphicsDevice, which is accessed via Java reflection, and does > not exist in my linux distribution. This causes an exception to be > dumped to the console every time I click in the 3D viewer. I just > commented out the e.printStackTrace(); at line 382 of > vtk.rendering.vtkInteractorForwarder to remove the excessive > printing. You should probably fix that before the next release. > Other possible ways to detect a retina display/scale factor which > might not have the linux issue are discussed here: > http://stackoverflow.com/questions/14716743/how-can-i-detect-whether-a-mac-has-a-retina-display-from-java > > > Thanks much for the help! > Kevin > > > On 02/10/2017 06:05 PM, Sebastien Jourdain wrote: >> Hi Kevin, >> >> I finally build VTK on my mac (macOS Sierra 10.12.3 - 16D32) >> >> I can run vtk.sample.Demo with the usual external window issue >> except on that time the actual rendering window is half the size >> of the actual JFrame. >> >> For the Jogl I get a segfault right away. >> >> $ java -cp >> vtk-7.1.jar:/Users/seb/.m2/repository/org/jogamp/gluegen/gluegen-rt/2.3.2/gluegen-rt-2.3.2.jar:/Users/seb/.m2/repository/org/jogamp/jogl/jogl-all/2.3.2/jogl-all-2.3.2.jar >> -Djava.library.path=$PWD/natives-Darwin-x86_64/ >> vtk.sample.rendering.JoglConeRendering >> # >> # A fatal error has been detected by the Java Runtime Environment: >> # >> # SIGSEGV (0xb) at pc=0x000000012cdaeb99, pid=51716, tid=7171 >> # >> # JRE version: Java(TM) SE Runtime Environment (8.0_25-b17) >> (build 1.8.0_25-b17) >> # Java VM: Java HotSpot(TM) 64-Bit Server VM (25.25-b02 mixed >> mode bsd-amd64 compressed oops) >> # Problematic frame: >> # C [libawt_lwawt.dylib+0x44b99] JNI_OnLoad+0x91 >> # >> # Failed to write core dump. Core dumps have been disabled. To >> enable core dumping, try "ulimit -c unlimited" before starting >> Java again >> # >> # An error report file with more information is saved as: >> # /Users/seb/Documents/code/VTK/install/hs_err_pid51716.log >> # >> # If you would like to submit a bug report, please visit: >> # http://bugreport.sun.com/bugreport/crash.jsp >> >> # The crash happened outside the Java Virtual Machine in native code. >> # See problematic frame for where to report the bug. >> # >> Abort trap: 6 >> >> I don't know if the issue come from jogl or VTK with macOS Sierra. >> >> Anyway, wanted to let you know, >> >> Seb >> >> On Tue, Feb 7, 2017 at 7:02 AM, Sean McBride >> > wrote: >> >> On Mon, 6 Feb 2017 14:10:03 -0800, Kevin Milner said: >> >> >Any ideas on how to get this working on new Macs? >> >> So you have 2 differences now: different OS version, >> different screens (Retina vs not). You should try to >> eliminate one. You can force a non-Retina to act like a >> retina with Quartz Debug: >> >> > > >> >> and/or upgrade that Mac from 10.9 (which BTW doesn't get >> security updates anymore) to something newer. >> >> Cheers, >> >> -- >> ____________________________________________________________ >> Sean McBride, B. Eng sean at rogue-research.com >> >> Rogue Research www.rogue-research.com >> >> Mac Software Developer Montr?al, Qu?bec, Canada >> >> >> > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From enzo.matsumiya at gmail.com Tue Feb 14 19:16:06 2017 From: enzo.matsumiya at gmail.com (Enzo Matsumiya) Date: Tue, 14 Feb 2017 22:16:06 -0200 Subject: [vtkusers] Using MacBook trackpad freezes application In-Reply-To: References: <20170208191538.1755231222@mail.rogue-research.com> Message-ID: Sean, Actually I wasn't even using Paraview; I experienced the bug with this sample code: http://www.vtk.org/gitweb?p=VTK.git;a=blob;f=Examples/GUI/Qt/FourPaneViewer/QtVTKRenderWindows.cxx I don't have access to my MacBook right now, but I will try to reproduce using other examples. Thanks On Feb 8, 2017 17:15, "Sean McBride" wrote: On Fri, 3 Feb 2017 23:41:14 -0200, Enzo Matsumiya said: >Hi David, > >I tested both with Qt 5.7.0 and 5.7.1. Sorry I forgot to mention this. It would be useful to eliminate Paraview to know if it's a Paraview bug or VTK bug. Does it repro in one of the VTK example apps? Cheers, -- ____________________________________________________________ Sean McBride, B. Eng sean at rogue-research.com Rogue Research www.rogue-research.com Mac Software Developer Montr?al, Qu?bec, Canada -------------- next part -------------- An HTML attachment was scrubbed... URL: From jens.g.w.schmidt at gmx.de Wed Feb 15 05:35:52 2017 From: jens.g.w.schmidt at gmx.de (Jens Schmidt) Date: Wed, 15 Feb 2017 11:35:52 +0100 Subject: [vtkusers] Most VTK 7.1 Tests fail on Windows 7 Sp1 64 (with java) In-Reply-To: References: <9d178962-7985-ef5f-bca8-3bc68593bdb3@gmx.de> Message-ID: Dan, thx for the quick answer. Please find below the output of your command (read through!): === OUTPUT for ctest -N -V -R vtkChartsCoreCxx-TestContextScene === 1>------ Build started: Project: RUN_TESTS, Configuration: Release x64 ------ 1> UpdateCTestConfiguration from :C:/data/src-build/VTK-MASTER/DartConfiguration.tcl 1> Parse Config file:C:/data/src-build/VTK-MASTER/DartConfiguration.tcl 1> Add coverage exclude regular expressions. 1> Add coverage exclude: vtk.*TCLInit.cxx 1> Add coverage exclude: vtk[^\.]+(Java|Python|Tcl).cxx 1> Add coverage exclude: .*vtkOpenGLState.* 1> Add coverage exclude: .*Testing.Cxx.*cxx 1> Add coverage exclude: .*Testing.Cxx.*h 1> Add coverage exclude: .*moc_.*cxx 1> Add coverage exclude: .*/Rendering/OpenGL/vtkgl.* 1> Add coverage exclude: .*/Utilities/.* 1> Add coverage exclude: .*/ThirdParty/.* 1> Add coverage exclude: .*vtkOpenGLPolyDataMapper.* 1> SetCTestConfiguration:CMakeCommand:C:/Program Files (x86)/CMake/bin/cmake.exe 1> UpdateCTestConfiguration from :C:/data/src-build/VTK-MASTER/DartConfiguration.tcl 1> Parse Config file:C:/data/src-build/VTK-MASTER/DartConfiguration.tcl 1> Test project C:/data/src-build/VTK-MASTER 1> Constructing a list of tests 1> Done constructing a list of tests 1> 1> 45: Test command: NOT_AVAILABLE 1> Test #45: vtkChartsCoreCxx-TestContextScene 1> 1> Total Tests: 1 === OUTPUT END === So this didn't print an executable command. I tried again with JavaGCRegression: === OUTPUT for ctest -N -V -R JavaGCRegression === 1>------ Build started: Project: RUN_TESTS, Configuration: Release x64 ------ 1> UpdateCTestConfiguration from :C:/data/src-build/VTK-MASTER/DartConfiguration.tcl 1> Parse Config file:C:/data/src-build/VTK-MASTER/DartConfiguration.tcl 1> Add coverage exclude regular expressions. 1> Add coverage exclude: vtk.*TCLInit.cxx 1> Add coverage exclude: vtk[^\.]+(Java|Python|Tcl).cxx 1> Add coverage exclude: .*vtkOpenGLState.* 1> Add coverage exclude: .*Testing.Cxx.*cxx 1> Add coverage exclude: .*Testing.Cxx.*h 1> Add coverage exclude: .*moc_.*cxx 1> Add coverage exclude: .*/Rendering/OpenGL/vtkgl.* 1> Add coverage exclude: .*/Utilities/.* 1> Add coverage exclude: .*/ThirdParty/.* 1> Add coverage exclude: .*vtkOpenGLPolyDataMapper.* 1> SetCTestConfiguration:CMakeCommand:C:/Program Files (x86)/CMake/bin/cmake.exe 1> UpdateCTestConfiguration from :C:/data/src-build/VTK-MASTER/DartConfiguration.tcl 1> Parse Config file:C:/data/src-build/VTK-MASTER/DartConfiguration.tcl 1> Test project C:/data/src-build/VTK-MASTER 1> Constructing a list of tests 1> Done constructing a list of tests 1> 1> 745: Test command: "C:\Program Files\Java\jdk1.8.0_121\bin\java.exe" "-classpath" "C:/data/src-build/VTK-MASTER/bin/vtk.jar;C:/data/src-build/VTK-MASTER/Wrapping/Java" "vtk.test.ConcurrencyGC" "-T" "C:/data/src-build/VTK-MASTER/Testing/Temporary" 1> Test #745: JavaGCRegression 1> 1> Total Tests: 1 === OUTPUT END === This yielded a command. Try running it gives a rather long errlor list, mostly about UnsatisfiedLinkErrors (see below, no further text). I added tbb dlls and visual studio runtime dlls to the directory (C:/data/src-build/VTK-MASTER/bin\Release) but that did not change a thing. Cheer Jens === OUTPUT START === 1>------ Build started: Project: RUN_TESTS, Configuration: Release x64 ------ 1> Try to load: vtkCommonCoreJava 1> File does not exist: vtkCommonCoreJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkCommonCoreJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkCommonCoreJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkCommonCoreJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkCommonCoreJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkCommonCoreJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkCommonCoreJava.dll 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkCommonCoreJava.dll 1> Problem loading appropriate library 1> Try to load: vtkCommonMathJava 1> File does not exist: vtkCommonMathJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkCommonMathJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkCommonMathJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkCommonMathJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkCommonMathJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkCommonMathJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkCommonMathJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkCommonMathJava.dll 1> Problem loading appropriate library 1> Try to load: vtkCommonMiscJava 1> File does not exist: vtkCommonMiscJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkCommonMiscJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkCommonMiscJava.dll 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkCommonMiscJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkCommonMiscJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkCommonMiscJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkCommonMiscJava.dll 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkCommonMiscJava.dll 1> Problem loading appropriate library 1> Try to load: vtkCommonSystemJava 1> File does not exist: vtkCommonSystemJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkCommonSystemJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkCommonSystemJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkCommonSystemJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkCommonSystemJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkCommonSystemJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkCommonSystemJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkCommonSystemJava.dll 1> Problem loading appropriate library 1> Try to load: vtkCommonTransformsJava 1> File does not exist: vtkCommonTransformsJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkCommonTransformsJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkCommonTransformsJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkCommonTransformsJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkCommonTransformsJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkCommonTransformsJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkCommonTransformsJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkCommonTransformsJava.dll 1> Problem loading appropriate library 1> Try to load: vtkCommonDataModelJava 1> File does not exist: vtkCommonDataModelJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkCommonDataModelJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkCommonDataModelJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkCommonDataModelJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkCommonDataModelJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkCommonDataModelJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkCommonDataModelJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkCommonDataModelJava.dll 1> Problem loading appropriate library 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Try to load: vtkCommonColorJava 1> File does not exist: vtkCommonColorJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkCommonColorJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkCommonColorJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkCommonColorJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkCommonColorJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkCommonColorJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkCommonColorJava.dll 1> Problem loading appropriate library 1> Try to load: vtkCommonExecutionModelJava 1> File does not exist: vtkCommonExecutionModelJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkCommonExecutionModelJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkCommonExecutionModelJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkCommonExecutionModelJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkCommonColorJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkCommonExecutionModelJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkCommonExecutionModelJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkCommonExecutionModelJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkCommonExecutionModelJava.dll 1> Problem loading appropriate library 1> Try to load: vtkCommonComputationalGeometryJava 1> File does not exist: vtkCommonComputationalGeometryJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkCommonComputationalGeometryJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkCommonComputationalGeometryJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkCommonComputationalGeometryJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkCommonComputationalGeometryJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkCommonComputationalGeometryJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkCommonComputationalGeometryJava.dll 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkCommonComputationalGeometryJava.dll 1> Problem loading appropriate library 1> Try to load: vtkFiltersCoreJava 1> File does not exist: vtkFiltersCoreJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkFiltersCoreJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkFiltersCoreJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkFiltersCoreJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkFiltersCoreJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkFiltersCoreJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkFiltersCoreJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkFiltersCoreJava.dll 1> Problem loading appropriate library 1> Try to load: vtkFiltersGeneralJava 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> File does not exist: vtkFiltersGeneralJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkFiltersGeneralJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkFiltersGeneralJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkFiltersGeneralJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkFiltersGeneralJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkFiltersGeneralJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkFiltersGeneralJava.dll 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkFiltersGeneralJava.dll 1> Problem loading appropriate library 1> Try to load: vtkImagingCoreJava 1> File does not exist: vtkImagingCoreJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkImagingCoreJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkImagingCoreJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkImagingCoreJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkImagingCoreJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkImagingCoreJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkImagingCoreJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkImagingCoreJava.dll 1> Problem loading appropriate library 1> Try to load: vtkImagingFourierJava 1> File does not exist: vtkImagingFourierJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkImagingFourierJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkImagingFourierJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkImagingFourierJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkImagingFourierJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkImagingFourierJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkImagingFourierJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkImagingFourierJava.dll 1> Problem loading appropriate library 1> Try to load: vtkFiltersStatisticsJava 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> File does not exist: vtkFiltersStatisticsJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkFiltersStatisticsJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkFiltersStatisticsJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkFiltersStatisticsJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkFiltersStatisticsJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkFiltersStatisticsJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkFiltersStatisticsJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkFiltersStatisticsJava.dll 1> Problem loading appropriate library 1> Try to load: vtkFiltersExtractionJava 1> File does not exist: vtkFiltersExtractionJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkFiltersExtractionJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkFiltersExtractionJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkFiltersExtractionJava.dll 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkFiltersExtractionJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkFiltersExtractionJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkFiltersExtractionJava.dll 1> Problem loading appropriate library 1> Try to load: vtkInfovisCoreJava 1> File does not exist: vtkInfovisCoreJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkInfovisCoreJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkInfovisCoreJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkInfovisCoreJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkFiltersExtractionJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkInfovisCoreJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkInfovisCoreJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkInfovisCoreJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkInfovisCoreJava.dll 1> Problem loading appropriate library 1> Try to load: vtkFiltersGeometryJava 1> File does not exist: vtkFiltersGeometryJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkFiltersGeometryJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkFiltersGeometryJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkFiltersGeometryJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkFiltersGeometryJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkFiltersGeometryJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkFiltersGeometryJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkFiltersGeometryJava.dll 1> Problem loading appropriate library 1> Try to load: vtkFiltersSourcesJava 1> File does not exist: vtkFiltersSourcesJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkFiltersSourcesJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkFiltersSourcesJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkFiltersSourcesJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkFiltersSourcesJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkFiltersSourcesJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkFiltersSourcesJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkFiltersSourcesJava.dll 1> Problem loading appropriate library 1> Try to load: vtkRenderingCoreJava 1> File does not exist: vtkRenderingCoreJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkRenderingCoreJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkRenderingCoreJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkRenderingCoreJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkRenderingCoreJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkRenderingCoreJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkRenderingCoreJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkRenderingCoreJava.dll 1> Problem loading appropriate library 1> Try to load: vtkRenderingFreeTypeJava 1> File does not exist: vtkRenderingFreeTypeJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkRenderingFreeTypeJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkRenderingFreeTypeJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkRenderingFreeTypeJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkRenderingFreeTypeJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkRenderingFreeTypeJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkRenderingFreeTypeJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkRenderingFreeTypeJava.dll 1> Problem loading appropriate library 1> Try to load: vtkRenderingContext2DJava 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> File does not exist: vtkRenderingContext2DJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkRenderingContext2DJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkRenderingContext2DJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkRenderingContext2DJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkRenderingContext2DJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkRenderingContext2DJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkRenderingContext2DJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkRenderingContext2DJava.dll 1> Problem loading appropriate library 1> Try to load: vtkChartsCoreJava 1> File does not exist: vtkChartsCoreJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkChartsCoreJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkChartsCoreJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkChartsCoreJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkChartsCoreJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkChartsCoreJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkChartsCoreJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkChartsCoreJava.dll 1> Problem loading appropriate library 1> Try to load: vtkIOCoreJava 1> File does not exist: vtkIOCoreJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkIOCoreJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkIOCoreJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkIOCoreJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkIOCoreJava.dll: Can't find dependent libraries 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkIOCoreJava.dll 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkIOCoreJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkIOCoreJava.dll 1> Problem loading appropriate library 1> Try to load: vtkIOLegacyJava 1> File does not exist: vtkIOLegacyJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkIOLegacyJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkIOLegacyJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkIOLegacyJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkIOLegacyJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkIOLegacyJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkIOLegacyJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkIOLegacyJava.dll 1> Problem loading appropriate library 1> Try to load: vtkIOXMLParserJava 1> File does not exist: vtkIOXMLParserJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkIOXMLParserJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkIOXMLParserJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkIOXMLParserJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkIOXMLParserJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkIOXMLParserJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkIOXMLParserJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkIOXMLParserJava.dll 1> Problem loading appropriate library 1> Try to load: vtkIOXMLJava 1> File does not exist: vtkIOXMLJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkIOXMLJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkIOXMLJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkIOXMLJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkIOXMLJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkIOXMLJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkIOXMLJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkIOXMLJava.dll 1> Problem loading appropriate library 1> Try to load: vtkIOInfovisJava 1> File does not exist: vtkIOInfovisJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkIOInfovisJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkIOInfovisJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkIOInfovisJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkIOInfovisJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkIOInfovisJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkIOInfovisJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkIOInfovisJava.dll 1> Problem loading appropriate library 1> Try to load: vtkIOImageJava 1> File does not exist: vtkIOImageJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkIOImageJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkIOImageJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkIOImageJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkIOImageJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkIOImageJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkIOImageJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkIOImageJava.dll 1> Problem loading appropriate library 1> Try to load: vtkRenderingOpenGL2Java 1> File does not exist: vtkRenderingOpenGL2Java 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkRenderingOpenGL2Java.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkRenderingOpenGL2Java.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkRenderingOpenGL2Java.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkRenderingOpenGL2Java.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkRenderingOpenGL2Java.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkRenderingOpenGL2Java.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkRenderingOpenGL2Java.dll 1> Problem loading appropriate library 1> Try to load: vtkRenderingContextOpenGL2Java 1> File does not exist: vtkRenderingContextOpenGL2Java 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkRenderingContextOpenGL2Java.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkRenderingContextOpenGL2Java.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkRenderingContextOpenGL2Java.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkRenderingContextOpenGL2Java.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkRenderingContextOpenGL2Java.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkRenderingContextOpenGL2Java.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkRenderingContextOpenGL2Java.dll 1> Problem loading appropriate library 1> Try to load: vtkTestingRenderingJava 1> File does not exist: vtkTestingRenderingJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkTestingRenderingJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkTestingRenderingJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkTestingRenderingJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkTestingRenderingJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkTestingRenderingJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkTestingRenderingJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkTestingRenderingJava.dll 1> Problem loading appropriate library 1> Try to load: vtkImagingSourcesJava 1> File does not exist: vtkImagingSourcesJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkImagingSourcesJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkImagingSourcesJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkImagingSourcesJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkImagingSourcesJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkImagingSourcesJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkImagingSourcesJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkImagingSourcesJava.dll 1> Problem loading appropriate library 1> Try to load: vtkFiltersHybridJava 1> File does not exist: vtkFiltersHybridJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkFiltersHybridJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkFiltersHybridJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkFiltersHybridJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkFiltersHybridJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkFiltersHybridJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkFiltersHybridJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkFiltersHybridJava.dll 1> Problem loading appropriate library 1> Try to load: vtkFiltersModelingJava 1> File does not exist: vtkFiltersModelingJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkFiltersModelingJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkFiltersModelingJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkFiltersModelingJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkFiltersModelingJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkFiltersModelingJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkFiltersModelingJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkFiltersModelingJava.dll 1> Problem loading appropriate library 1> Try to load: vtkImagingColorJava 1> File does not exist: vtkImagingColorJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkImagingColorJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkImagingColorJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkImagingColorJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkImagingColorJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkImagingColorJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkImagingColorJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkImagingColorJava.dll 1> Problem loading appropriate library 1> Try to load: vtkImagingGeneralJava 1> File does not exist: vtkImagingGeneralJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkImagingGeneralJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkImagingGeneralJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkImagingGeneralJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkImagingGeneralJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkImagingGeneralJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkImagingGeneralJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkImagingGeneralJava.dll 1> Problem loading appropriate library 1> Try to load: vtkImagingHybridJava 1> File does not exist: vtkImagingHybridJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkImagingHybridJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkImagingHybridJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkImagingHybridJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkImagingHybridJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkImagingHybridJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkImagingHybridJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkImagingHybridJava.dll 1> Problem loading appropriate library 1> Try to load: vtkInteractionStyleJava 1> File does not exist: vtkInteractionStyleJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkInteractionStyleJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkInteractionStyleJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkInteractionStyleJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkInteractionStyleJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkInteractionStyleJava.dll: Can't find dependent libraries 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkInteractionStyleJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkInteractionStyleJava.dll 1> Problem loading appropriate library 1> Try to load: vtkRenderingAnnotationJava 1> File does not exist: vtkRenderingAnnotationJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkRenderingAnnotationJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkRenderingAnnotationJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkRenderingAnnotationJava.dll 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkRenderingAnnotationJava.dll: Can't find dependent libraries 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkRenderingAnnotationJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkRenderingAnnotationJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkRenderingAnnotationJava.dll 1> Problem loading appropriate library 1> Try to load: vtkRenderingVolumeJava 1> File does not exist: vtkRenderingVolumeJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkRenderingVolumeJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkRenderingVolumeJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkRenderingVolumeJava.dll 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkRenderingVolumeJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkRenderingVolumeJava.dll: Can't find dependent libraries 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkRenderingVolumeJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkRenderingVolumeJava.dll 1> Problem loading appropriate library 1> Try to load: vtkInteractionWidgetsJava 1> File does not exist: vtkInteractionWidgetsJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkInteractionWidgetsJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkInteractionWidgetsJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkInteractionWidgetsJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkInteractionWidgetsJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkInteractionWidgetsJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkInteractionWidgetsJava.dll 1> Problem loading appropriate library 1> Try to load: vtkViewsCoreJava 1> File does not exist: vtkViewsCoreJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkViewsCoreJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkViewsCoreJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkViewsCoreJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkViewsCoreJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkViewsCoreJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkViewsCoreJava.dll 1> Problem loading appropriate library 1> Try to load: vtkViewsContext2DJava 1> File does not exist: vtkViewsContext2DJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkViewsContext2DJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkViewsContext2DJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkViewsContext2DJava.dll 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkInteractionWidgetsJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkViewsCoreJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkViewsContext2DJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkViewsContext2DJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkViewsContext2DJava.dll 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkViewsContext2DJava.dll 1> Problem loading appropriate library 1> Try to load: vtkFiltersGenericJava 1> File does not exist: vtkFiltersGenericJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkFiltersGenericJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkFiltersGenericJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkFiltersGenericJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkFiltersGenericJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkFiltersGenericJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkFiltersGenericJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkFiltersGenericJava.dll 1> Problem loading appropriate library 1> Try to load: vtkIOGeometryJava 1> File does not exist: vtkIOGeometryJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkIOGeometryJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkIOGeometryJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkIOGeometryJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkIOGeometryJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkIOGeometryJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkIOGeometryJava.dll 1> Problem loading appropriate library 1> Try to load: vtkRenderingLabelJava 1> File does not exist: vtkRenderingLabelJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkRenderingLabelJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkRenderingLabelJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkRenderingLabelJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkIOGeometryJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkRenderingLabelJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkRenderingLabelJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkRenderingLabelJava.dll 1> Problem loading appropriate library 1> Try to load: vtkImagingStencilJava 1> File does not exist: vtkImagingStencilJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkImagingStencilJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkImagingStencilJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkImagingStencilJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkRenderingLabelJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkImagingStencilJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkImagingStencilJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkImagingStencilJava.dll 1> Problem loading appropriate library 1> Try to load: vtkFiltersImagingJava 1> File does not exist: vtkFiltersImagingJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkFiltersImagingJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkFiltersImagingJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkFiltersImagingJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkImagingStencilJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkFiltersImagingJava.dll: Can't find dependent libraries 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkFiltersImagingJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkFiltersImagingJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkFiltersImagingJava.dll 1> Problem loading appropriate library 1> Try to load: vtkParallelCoreJava 1> File does not exist: vtkParallelCoreJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkParallelCoreJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkParallelCoreJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkParallelCoreJava.dll 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkParallelCoreJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkParallelCoreJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkParallelCoreJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkParallelCoreJava.dll 1> Problem loading appropriate library 1> Try to load: vtkFiltersParallelJava 1> File does not exist: vtkFiltersParallelJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkFiltersParallelJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkFiltersParallelJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkFiltersParallelJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkFiltersParallelJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkFiltersParallelJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkFiltersParallelJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkFiltersParallelJava.dll 1> Problem loading appropriate library 1> Try to load: vtkParallelMPIJava 1> File does not exist: vtkParallelMPIJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkParallelMPIJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkParallelMPIJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkParallelMPIJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkParallelMPIJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkParallelMPIJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkParallelMPIJava.dll 1> Problem loading appropriate library 1> Try to load: vtkFiltersParallelGeometryJava 1> File does not exist: vtkFiltersParallelGeometryJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkFiltersParallelGeometryJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkFiltersParallelGeometryJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkFiltersParallelGeometryJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkParallelMPIJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkFiltersParallelGeometryJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkFiltersParallelGeometryJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkFiltersParallelGeometryJava.dll 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkFiltersParallelGeometryJava.dll 1> Problem loading appropriate library 1> Try to load: vtkIONetCDFJava 1> File does not exist: vtkIONetCDFJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkIONetCDFJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkIONetCDFJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkIONetCDFJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkIONetCDFJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkIONetCDFJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkIONetCDFJava.dll 1> Problem loading appropriate library 1> Try to load: vtkIOParallelJava 1> File does not exist: vtkIOParallelJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkIOParallelJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkIONetCDFJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkIOParallelJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkIOParallelJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkIOParallelJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkIOParallelJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkIOParallelJava.dll 1> Problem loading appropriate library 1> Try to load: vtkIOParallelXMLJava 1> File does not exist: vtkIOParallelXMLJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkIOParallelXMLJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkIOParallelXMLJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkIOParallelXMLJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkIOParallelJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkIOParallelXMLJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkIOParallelXMLJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkIOParallelXMLJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkIOParallelXMLJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Problem loading appropriate library 1> Try to load: vtkFiltersParallelImagingJava 1> File does not exist: vtkFiltersParallelImagingJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkFiltersParallelImagingJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkFiltersParallelImagingJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkFiltersParallelImagingJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkFiltersParallelImagingJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkFiltersParallelImagingJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkFiltersParallelImagingJava.dll 1> Problem loading appropriate library 1> Try to load: vtkFiltersParallelMPIJava 1> File does not exist: vtkFiltersParallelMPIJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkFiltersParallelMPIJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkFiltersParallelMPIJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkFiltersParallelMPIJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkFiltersParallelImagingJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkFiltersParallelMPIJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkFiltersParallelMPIJava.dll: Can't find dependent libraries 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkFiltersParallelMPIJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkFiltersParallelMPIJava.dll 1> Problem loading appropriate library 1> Try to load: vtkFiltersPointsJava 1> File does not exist: vtkFiltersPointsJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkFiltersPointsJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkFiltersPointsJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkFiltersPointsJava.dll 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkFiltersPointsJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkFiltersPointsJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkFiltersPointsJava.dll 1> Problem loading appropriate library 1> Try to load: vtkImagingMathJava 1> File does not exist: vtkImagingMathJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkImagingMathJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkImagingMathJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkImagingMathJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkFiltersPointsJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkImagingMathJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkImagingMathJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkImagingMathJava.dll 1> Problem loading appropriate library 1> Try to load: vtkRenderingVolumeOpenGL2Java 1> File does not exist: vtkRenderingVolumeOpenGL2Java 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkRenderingVolumeOpenGL2Java.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkRenderingVolumeOpenGL2Java.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkRenderingVolumeOpenGL2Java.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkImagingMathJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkRenderingVolumeOpenGL2Java.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkRenderingVolumeOpenGL2Java.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkRenderingVolumeOpenGL2Java.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkRenderingVolumeOpenGL2Java.dll 1> Problem loading appropriate library 1> Try to load: vtkFiltersSMPJava 1> File does not exist: vtkFiltersSMPJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkFiltersSMPJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkFiltersSMPJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkFiltersSMPJava.dll 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkFiltersSMPJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkFiltersSMPJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkFiltersSMPJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkFiltersSMPJava.dll 1> Problem loading appropriate library 1> Try to load: vtkFiltersSelectionJava 1> File does not exist: vtkFiltersSelectionJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkFiltersSelectionJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkFiltersSelectionJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkFiltersSelectionJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkFiltersSelectionJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkFiltersSelectionJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkFiltersSelectionJava.dll 1> Problem loading appropriate library 1> Try to load: vtkFiltersTextureJava 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkFiltersSelectionJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> File does not exist: vtkFiltersTextureJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkFiltersTextureJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkFiltersTextureJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkFiltersTextureJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkFiltersTextureJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkFiltersTextureJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkFiltersTextureJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkFiltersTextureJava.dll 1> Problem loading appropriate library 1> Try to load: vtkFiltersVerdictJava 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> File does not exist: vtkFiltersVerdictJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkFiltersVerdictJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkFiltersVerdictJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkFiltersVerdictJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkFiltersVerdictJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkFiltersVerdictJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkFiltersVerdictJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkFiltersVerdictJava.dll 1> Problem loading appropriate library 1> Try to load: vtkInfovisLayoutJava 1> File does not exist: vtkInfovisLayoutJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkInfovisLayoutJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkInfovisLayoutJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkInfovisLayoutJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkInfovisLayoutJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkInfovisLayoutJava.dll 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkInfovisLayoutJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkInfovisLayoutJava.dll 1> Problem loading appropriate library 1> Try to load: vtkGeovisCoreJava 1> File does not exist: vtkGeovisCoreJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkGeovisCoreJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkGeovisCoreJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkGeovisCoreJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkGeovisCoreJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkGeovisCoreJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkGeovisCoreJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkGeovisCoreJava.dll 1> Problem loading appropriate library 1> Try to load: vtkViewsInfovisJava 1> File does not exist: vtkViewsInfovisJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkViewsInfovisJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkViewsInfovisJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkViewsInfovisJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkViewsInfovisJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkViewsInfovisJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkViewsInfovisJava.dll 1> Problem loading appropriate library 1> Try to load: vtkViewsGeovisJava 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkViewsInfovisJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> File does not exist: vtkViewsGeovisJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkViewsGeovisJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkViewsGeovisJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkViewsGeovisJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkViewsGeovisJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkViewsGeovisJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkViewsGeovisJava.dll 1> Problem loading appropriate library 1> Try to load: vtkInteractionImageJava 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkViewsGeovisJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> File does not exist: vtkInteractionImageJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkInteractionImageJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkInteractionImageJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkInteractionImageJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkInteractionImageJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkInteractionImageJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkInteractionImageJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkInteractionImageJava.dll 1> Problem loading appropriate library 1> Try to load: vtkIOImportJava 1> File does not exist: vtkIOImportJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkIOImportJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkIOImportJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkIOImportJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkIOImportJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkIOImportJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkIOImportJava.dll 1> Problem loading appropriate library 1> Try to load: vtkIOMovieJava 1> File does not exist: vtkIOMovieJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkIOMovieJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkIOMovieJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkIOMovieJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkIOImportJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkIOMovieJava.dll: Can't find dependent libraries 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkIOMovieJava.dll 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkIOMovieJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkIOMovieJava.dll 1> Problem loading appropriate library 1> Try to load: vtkIOPLYJava 1> File does not exist: vtkIOPLYJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkIOPLYJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkIOPLYJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkIOPLYJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkIOPLYJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkIOPLYJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkIOPLYJava.dll 1> Problem loading appropriate library 1> Try to load: vtkRenderingParallelJava 1> File does not exist: vtkRenderingParallelJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkRenderingParallelJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkRenderingParallelJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkRenderingParallelJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkIOPLYJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkRenderingParallelJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkRenderingParallelJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkRenderingParallelJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkRenderingParallelJava.dll 1> Problem loading appropriate library 1> Try to load: vtkIOVideoJava 1> File does not exist: vtkIOVideoJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkIOVideoJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkIOVideoJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkIOVideoJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkIOVideoJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkIOVideoJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkIOVideoJava.dll 1> Problem loading appropriate library 1> Try to load: vtkImagingStatisticsJava 1> File does not exist: vtkImagingStatisticsJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkImagingStatisticsJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkImagingStatisticsJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkImagingStatisticsJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkIOVideoJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkImagingStatisticsJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkImagingStatisticsJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkImagingStatisticsJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkImagingStatisticsJava.dll 1> Problem loading appropriate library 1> Try to load: vtkRenderingImageJava 1> File does not exist: vtkRenderingImageJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkRenderingImageJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkRenderingImageJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkRenderingImageJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkRenderingImageJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkRenderingImageJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkRenderingImageJava.dll 1> Problem loading appropriate library 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkRenderingImageJava.dll: Can't find dependent libraries 1> Try to load: vtkImagingMorphologicalJava 1> File does not exist: vtkImagingMorphologicalJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkImagingMorphologicalJava.dll 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkImagingMorphologicalJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkImagingMorphologicalJava.dll 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkImagingMorphologicalJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkImagingMorphologicalJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkImagingMorphologicalJava.dll 1> Problem loading appropriate library 1> Try to load: vtkImagingOpenGL2Java 1> File does not exist: vtkImagingOpenGL2Java 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkImagingOpenGL2Java.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkImagingOpenGL2Java.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkImagingOpenGL2Java.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkImagingMorphologicalJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkImagingOpenGL2Java.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkImagingOpenGL2Java.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkImagingOpenGL2Java.dll 1> Problem loading appropriate library 1> Try to load: vtkRenderingLODJava 1> File does not exist: vtkRenderingLODJava 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkRenderingLODJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkRenderingLODJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkRenderingLODJava.dll 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkImagingOpenGL2Java.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Failed to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkRenderingLODJava.dll 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkRenderingLODJava.dll 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\Debug\vtkRenderingLODJava.dll 1> Problem loading appropriate library 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkRenderingLODJava.dll: Can't find dependent libraries 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) 1> at java.lang.Runtime.load0(Runtime.java:809) 1> at java.lang.Runtime.load(Runtime.java:797) 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> java.lang.UnsatisfiedLinkError: vtk.vtkTesting.VTKInit()J 1> at vtk.vtkTesting.VTKInit(Native Method) 1> at vtk.vtkObjectBase.(vtkObjectBase.java:47) 1> at vtk.vtkObject.(vtkObject.java:94) 1> at vtk.vtkTesting.(vtkTesting.java:134) 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:78) 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) 1> Test failed or was not run 1>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets(132,5): error MSB3073: The command ""C:\Program Files\Java\jdk1.8.0_121\bin\java.exe" "-classpath" "C:/data/src-build/VTK-MASTER/bin/vtk.jar;C:/data/src-build/VTK-MASTER/Wrapping/Java" "vtk.test.ConcurrencyGC" "-T" "C:/data/src-build/VTK-MASTER/Testing/Temporary" 1>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppCommon.targets(132,5): error MSB3073: :VCEnd" exited with code 1. === OUTPUT END === Am 14.02.2017 um 16:25 schrieb Dan Lipsa: > Jens, > Can you do 'ctest -N -V -R vtkChartsCoreCxx-TestContextScene' > and then run the command printed. This will give you more information about > what is going on. > Usually, when all tests fail like that there is some configuration problem. > > You can do that for other tests as well. > > Dan > > > On Tue, Feb 14, 2017 at 9:22 AM, Jens Schmidt > wrote: > >> Hi there, >> >> as the title says, most of the tests fail for VTK 7.1. Built with TBB and >> java wrapping. >> >> Cheers Jens >> >> >> Built with Windows 7 Sp1 64bit Visual Studio 2013 >> Log below here: >> >> 1>------ Build started: Project: RUN_TESTS, Configuration: Release x64 >> ------ >> 1> Test project C:/data/src-build/VTK-7.1.0 >> 1> Start 1: vtkkwiml.test >> 1> 1/774 Test #1: vtkkwiml.test .............................. >> .................................. Passed 0.01 sec >> 1> Start 2: vtkCommonCore-HeaderTest >> 1> 2/774 Test #2: vtkCommonCore-HeaderTest >> ..................................................... Passed 0.84 sec >> 1> Start 3: vtkCommonMath-HeaderTest >> 1> 3/774 Test #3: vtkCommonMath-HeaderTest >> ..................................................... Passed 0.17 sec >> 1> Start 4: vtkCommonMisc-HeaderTest >> 1> 4/774 Test #4: vtkCommonMisc-HeaderTest >> ..................................................... Passed 0.11 sec >> 1> Start 5: vtkCommonSystem-HeaderTest >> 1> 5/774 Test #5: vtkCommonSystem-HeaderTest >> ................................................... Passed 0.12 sec >> 1> Start 6: vtkCommonTransforms-HeaderTest >> 1> 6/774 Test #6: vtkCommonTransforms-HeaderTest >> ............................................... Passed 0.24 sec >> 1> Start 7: vtkCommonDataModel-HeaderTest >> 1> 7/774 Test #7: vtkCommonDataModel-HeaderTest >> ................................................ Passed 2.06 sec >> 1> Start 8: vtkCommonColor-HeaderTest >> 1> 8/774 Test #8: vtkCommonColor-HeaderTest >> .................................................... Passed 0.12 sec >> 1> Start 9: vtkCommonExecutionModel-HeaderTest >> 1> 9/774 Test #9: vtkCommonExecutionModel-HeaderTest >> ........................................... Passed 0.53 sec >> 1> Start 10: vtkCommonComputationalGeometry-HeaderTest >> 1> 10/774 Test #10: vtkCommonComputationalGeometry-HeaderTest >> .................................... Passed 0.27 sec >> 1> Start 11: vtkFiltersCore-HeaderTest >> 1> 11/774 Test #11: vtkFiltersCore-HeaderTest >> .................................................... Passed 0.86 sec >> 1> Start 12: vtkFiltersGeneral-HeaderTest >> 1> 12/774 Test #12: vtkFiltersGeneral-HeaderTest >> ................................................. Passed 0.87 sec >> 1> Start 13: vtkImagingCore-HeaderTest >> 1> 13/774 Test #13: vtkImagingCore-HeaderTest >> .................................................... Passed 0.35 sec >> 1> Start 14: vtkImagingFourier-HeaderTest >> 1> 14/774 Test #14: vtkImagingFourier-HeaderTest >> ................................................. Passed 0.11 sec >> 1> Start 15: vtkFiltersStatistics-HeaderTest >> 1> 15/774 Test #15: vtkFiltersStatistics-HeaderTest >> .............................................. Passed 0.25 sec >> 1> Start 16: vtkFiltersExtraction-HeaderTest >> 1> 16/774 Test #16: vtkFiltersExtraction-HeaderTest >> .............................................. Passed 0.25 sec >> 1> Start 17: vtkInfovisCore-HeaderTest >> 1> 17/774 Test #17: vtkInfovisCore-HeaderTest >> .................................................... Passed 0.37 sec >> 1> Start 18: vtkFiltersGeometry-HeaderTest >> 1> 18/774 Test #18: vtkFiltersGeometry-HeaderTest >> ................................................ Passed 0.33 sec >> 1> Start 19: vtkFiltersSources-HeaderTest >> 1> 19/774 Test #19: vtkFiltersSources-HeaderTest >> ................................................. Passed 0.32 sec >> 1> Start 20: vtkRenderingCore-HeaderTest >> 1> 20/774 Test #20: vtkRenderingCore-HeaderTest >> .................................................. Passed 1.29 sec >> 1> Start 21: vtkRenderingFreeType-HeaderTest >> 1> 21/774 Test #21: vtkRenderingFreeType-HeaderTest >> .............................................. Passed 0.14 sec >> 1> Start 22: vtkRenderingContext2D-HeaderTest >> 1> 22/774 Test #22: vtkRenderingContext2D-HeaderTest >> ............................................. Passed 0.25 sec >> 1> Start 23: vtkChartsCore-HeaderTest >> 1> 23/774 Test #23: vtkChartsCore-HeaderTest >> ..................................................... Passed 0.48 sec >> 1> Start 24: vtkIOCore-HeaderTest >> 1> 24/774 Test #24: vtkIOCore-HeaderTest ......................................................... >> Passed 0.22 sec >> 1> Start 25: vtkIOLegacy-HeaderTest >> 1> 25/774 Test #25: vtkIOLegacy-HeaderTest >> ....................................................... Passed 0.24 >> sec >> 1> Start 26: vtkIOXMLParser-HeaderTest >> 1> 26/774 Test #26: vtkIOXMLParser-HeaderTest >> .................................................... Passed 0.11 sec >> 1> Start 27: vtkIOXML-HeaderTest >> 1> 27/774 Test #27: vtkIOXML-HeaderTest .......................................................... >> Passed 0.34 sec >> 1> Start 28: vtkIOInfovis-HeaderTest >> 1> 28/774 Test #28: vtkIOInfovis-HeaderTest >> ...................................................... Passed 0.20 >> sec >> 1> Start 29: vtkIOImage-HeaderTest >> 1> 29/774 Test #29: vtkIOImage-HeaderTest ........................................................ >> Passed 0.35 sec >> 1> Start 30: vtkRenderingOpenGL2-HeaderTest >> 1> 30/774 Test #30: vtkRenderingOpenGL2-HeaderTest >> ............................................... Passed 0.77 sec >> 1> Start 31: vtkRenderingContextOpenGL2-HeaderTest >> 1> 31/774 Test #31: vtkRenderingContextOpenGL2-HeaderTest >> ........................................ Passed 0.13 sec >> 1> Start 32: vtkTestingRendering-HeaderTest >> 1> 32/774 Test #32: vtkTestingRendering-HeaderTest >> ............................................... Passed 0.11 sec >> 1> Start 33: vtkImagingSources-HeaderTest >> 1> 33/774 Test #33: vtkImagingSources-HeaderTest >> ................................................. Passed 0.13 sec >> 1> Start 34: vtkFiltersHybrid-HeaderTest >> 1> 34/774 Test #34: vtkFiltersHybrid-HeaderTest >> .................................................. Passed 0.28 sec >> 1> Start 35: vtkFiltersModeling-HeaderTest >> 1> 35/774 Test #35: vtkFiltersModeling-HeaderTest >> ................................................ Passed 0.24 sec >> 1> Start 36: vtkImagingColor-HeaderTest >> 1> 36/774 Test #36: vtkImagingColor-HeaderTest >> ................................................... Passed 0.12 sec >> 1> Start 37: vtkImagingGeneral-HeaderTest >> 1> 37/774 Test #37: vtkImagingGeneral-HeaderTest >> ................................................. Passed 0.19 sec >> 1> Start 38: vtkImagingHybrid-HeaderTest >> 1> 38/774 Test #38: vtkImagingHybrid-HeaderTest >> .................................................. Passed 0.21 sec >> 1> Start 39: vtkInteractionStyle-HeaderTest >> 1> 39/774 Test #39: vtkInteractionStyle-HeaderTest >> ............................................... Passed 0.21 sec >> 1> Start 40: vtkRenderingAnnotation-HeaderTest >> 1> 40/774 Test #40: vtkRenderingAnnotation-HeaderTest >> ............................................ Passed 0.47 sec >> 1> Start 41: vtkRenderingVolume-HeaderTest >> 1> 41/774 Test #41: vtkRenderingVolume-HeaderTest >> ................................................ Passed 0.82 sec >> 1> Start 42: vtkInteractionWidgets-HeaderTest >> 1> 42/774 Test #42: vtkInteractionWidgets-HeaderTest >> ............................................. Passed 1.41 sec >> 1> Start 43: vtkViewsCore-HeaderTest >> 1> 43/774 Test #43: vtkViewsCore-HeaderTest >> ...................................................... Passed 0.14 >> sec >> 1> Start 44: vtkViewsContext2D-HeaderTest >> 1> 44/774 Test #44: vtkViewsContext2D-HeaderTest >> ................................................. Passed 0.10 sec >> 1> Start 45: vtkChartsCoreCxx-TestContextScene >> 1> 45/774 Test #45: vtkChartsCoreCxx-TestContextScene >> ............................................***Exception: Other 0.01 sec >> 1> Start 46: vtkChartsCoreCxx-TestControlPointsItem >> 1> 46/774 Test #46: vtkChartsCoreCxx-TestControlPointsItem >> .......................................***Exception: Other 0.01 sec >> 1> Start 47: vtkChartsCoreCxx-TestControlPointsItemEvents >> 1> 47/774 Test #47: vtkChartsCoreCxx-TestControlPointsItemEvents >> .................................***Exception: Other 0.01 sec >> 1> Start 48: vtkChartsCoreCxx-TestAreaPlot >> 1> 48/774 Test #48: vtkChartsCoreCxx-TestAreaPlot >> ................................................***Exception: Other 0.01 >> sec >> 1> Start 49: vtkChartsCoreCxx-TestAxes >> 1> 49/774 Test #49: vtkChartsCoreCxx-TestAxes >> ....................................................***Exception: Other >> 0.01 sec >> 1> Start 50: vtkChartsCoreCxx-TestBagPlot >> 1> 50/774 Test #50: vtkChartsCoreCxx-TestBagPlot >> .................................................***Exception: Other 0.01 >> sec >> 1> Start 51: vtkChartsCoreCxx-TestBarGraph >> 1> 51/774 Test #51: vtkChartsCoreCxx-TestBarGraph >> ................................................***Exception: Other 0.01 >> sec >> 1> Start 52: vtkChartsCoreCxx-TestBarGraphHorizontal >> 1> 52/774 Test #52: vtkChartsCoreCxx-TestBarGraphHorizontal >> ......................................***Exception: Other 0.01 sec >> 1> Start 53: vtkChartsCoreCxx-TestBarGraphSelection >> 1> 53/774 Test #53: vtkChartsCoreCxx-TestBarGraphSelection >> .......................................***Exception: Other 0.01 sec >> 1> Start 54: vtkChartsCoreCxx-TestBoxPlot >> 1> 54/774 Test #54: vtkChartsCoreCxx-TestBoxPlot >> .................................................***Exception: Other 0.01 >> sec >> 1> Start 55: vtkChartsCoreCxx-TestCategoryLegend >> 1> 55/774 Test #55: vtkChartsCoreCxx-TestCategoryLegend >> ..........................................***Exception: Other 0.01 sec >> 1> Start 56: vtkChartsCoreCxx-TestColorTransferFunction >> 1> 56/774 Test #56: vtkChartsCoreCxx-TestColorTransferFunction >> ...................................***Exception: Other 0.01 sec >> 1> Start 57: vtkChartsCoreCxx-TestChartDouble >> 1> 57/774 Test #57: vtkChartsCoreCxx-TestChartDouble >> .............................................***Exception: Other 0.01 sec >> 1> Start 58: vtkChartsCoreCxx-TestChartDoubleColors >> 1> 58/774 Test #58: vtkChartsCoreCxx-TestChartDoubleColors >> .......................................***Exception: Other 0.01 sec >> 1> Start 59: vtkChartsCoreCxx-TestChartMatrix >> 1> 59/774 Test #59: vtkChartsCoreCxx-TestChartMatrix >> .............................................***Exception: Other 0.01 sec >> 1> Start 60: vtkChartsCoreCxx-TestChartTileScaling >> 1> 60/774 Test #60: vtkChartsCoreCxx-TestChartTileScaling >> ........................................***Exception: Other 0.01 sec >> 1> Start 61: vtkChartsCoreCxx-TestChartUnicode >> 1> 61/774 Test #61: vtkChartsCoreCxx-TestChartUnicode >> ............................................***Exception: Other 0.01 sec >> 1> Start 62: vtkChartsCoreCxx-TestChartsOn3D >> 1> 62/774 Test #62: vtkChartsCoreCxx-TestChartsOn3D >> ..............................................***Exception: Other 0.01 >> sec >> 1> Start 63: vtkChartsCoreCxx-TestChartXYInvertedAxis >> 1> 63/774 Test #63: vtkChartsCoreCxx-TestChartXYInvertedAxis >> .....................................***Exception: Other 0.01 sec >> 1> Start 64: vtkChartsCoreCxx-TestChartXYZ >> 1> 64/774 Test #64: vtkChartsCoreCxx-TestChartXYZ >> ................................................***Exception: Other 0.01 >> sec >> 1> Start 65: vtkChartsCoreCxx-TestContext >> 1> 65/774 Test #65: vtkChartsCoreCxx-TestContext >> .................................................***Exception: Other 0.01 >> sec >> 1> Start 66: vtkChartsCoreCxx-TestContextArea >> 1> 66/774 Test #66: vtkChartsCoreCxx-TestContextArea >> .............................................***Exception: Other 0.01 sec >> 1> Start 67: vtkChartsCoreCxx-TestContextAreaFixedAspect >> 1> 67/774 Test #67: vtkChartsCoreCxx-TestContextAreaFixedAspect >> ..................................***Exception: Other 0.01 sec >> 1> Start 68: vtkChartsCoreCxx-TestContextAreaFixedMargins >> 1> 68/774 Test #68: vtkChartsCoreCxx-TestContextAreaFixedMargins >> .................................***Exception: Other 0.01 sec >> 1> Start 69: vtkChartsCoreCxx-TestContextAreaFixedRect >> 1> 69/774 Test #69: vtkChartsCoreCxx-TestContextAreaFixedRect >> ....................................***Exception: Other 0.01 sec >> 1> Start 70: vtkChartsCoreCxx-TestContextImage >> 1> 70/774 Test #70: vtkChartsCoreCxx-TestContextImage >> ............................................***Exception: Other 0.01 sec >> 1> Start 71: vtkChartsCoreCxx-TestContextItemStacking >> 1> 71/774 Test #71: vtkChartsCoreCxx-TestContextItemStacking >> .....................................***Exception: Other 0.01 sec >> 1> Start 72: vtkChartsCoreCxx-TestContextUnicode >> 1> 72/774 Test #72: vtkChartsCoreCxx-TestContextUnicode >> ..........................................***Exception: Other 0.01 sec >> 1> Start 73: vtkChartsCoreCxx-TestControlPointsHandleItem >> 1> 73/774 Test #73: vtkChartsCoreCxx-TestControlPointsHandleItem >> .................................***Exception: Other 0.01 sec >> 1> Start 74: vtkChartsCoreCxx-TestDiagram >> 1> 74/774 Test #74: vtkChartsCoreCxx-TestDiagram >> .................................................***Exception: Other 0.01 >> sec >> 1> Start 75: vtkChartsCoreCxx-TestFunctionalBagPlot >> 1> 75/774 Test #75: vtkChartsCoreCxx-TestFunctionalBagPlot >> .......................................***Exception: Other 0.01 sec >> 1> Start 76: vtkChartsCoreCxx-TestHistogram2D >> 1> 76/774 Test #76: vtkChartsCoreCxx-TestHistogram2D >> .............................................***Exception: Other 0.01 sec >> 1> Start 77: vtkChartsCoreCxx-TestInteractiveChartXYZ >> 1> 77/774 Test #77: vtkChartsCoreCxx-TestInteractiveChartXYZ >> .....................................***Exception: Other 0.01 sec >> 1> Start 78: vtkChartsCoreCxx-TestLegendHiddenPlots >> 1> 78/774 Test #78: vtkChartsCoreCxx-TestLegendHiddenPlots >> .......................................***Exception: Other 0.01 sec >> 1> Start 79: vtkChartsCoreCxx-TestLinePlot >> 1> 79/774 Test #79: vtkChartsCoreCxx-TestLinePlot >> ................................................***Exception: Other 0.01 >> sec >> 1> Start 80: vtkChartsCoreCxx-TestLinePlotDouble >> 1> 80/774 Test #80: vtkChartsCoreCxx-TestLinePlotDouble >> ..........................................***Exception: Other 0.01 sec >> 1> Start 81: vtkChartsCoreCxx-TestLinePlotDouble2 >> 1> 81/774 Test #81: vtkChartsCoreCxx-TestLinePlotDouble2 >> .........................................***Exception: Other 0.01 sec >> 1> Start 82: vtkChartsCoreCxx-TestLinePlot3D >> 1> 82/774 Test #82: vtkChartsCoreCxx-TestLinePlot3D >> ..............................................***Exception: Other 0.01 >> sec >> 1> Start 83: vtkChartsCoreCxx-TestLinePlotAxisFonts >> 1> 83/774 Test #83: vtkChartsCoreCxx-TestLinePlotAxisFonts >> .......................................***Exception: Other 0.01 sec >> 1> Start 84: vtkChartsCoreCxx-TestLinePlot2 >> 1> 84/774 Test #84: vtkChartsCoreCxx-TestLinePlot2 >> ...............................................***Exception: Other 0.01 >> sec >> 1> Start 85: vtkChartsCoreCxx-TestLinePlotInteraction >> 1> 85/774 Test #85: vtkChartsCoreCxx-TestLinePlotInteraction >> .....................................***Exception: Other 0.01 sec >> 1> Start 86: vtkChartsCoreCxx-TestLinePlotSelection >> 1> 86/774 Test #86: vtkChartsCoreCxx-TestLinePlotSelection >> .......................................***Exception: Other 0.01 sec >> 1> Start 87: vtkChartsCoreCxx-TestLinePlotSelection2 >> 1> 87/774 Test #87: vtkChartsCoreCxx-TestLinePlotSelection2 >> ......................................***Exception: Other 0.01 sec >> 1> Start 88: vtkChartsCoreCxx-TestMultipleChartRenderers >> 1> 88/774 Test #88: vtkChartsCoreCxx-TestMultipleChartRenderers >> ..................................***Exception: Other 0.01 sec >> 1> Start 89: vtkChartsCoreCxx-TestMultipleRenderers >> 1> 89/774 Test #89: vtkChartsCoreCxx-TestMultipleRenderers >> .......................................***Exception: Other 0.01 sec >> 1> Start 90: vtkChartsCoreCxx-TestMultipleScalarsToColors >> 1> 90/774 Test #90: vtkChartsCoreCxx-TestMultipleScalarsToColors >> .................................***Exception: Other 0.01 sec >> 1> Start 91: vtkChartsCoreCxx-TestParallelCoordinates >> 1> 91/774 Test #91: vtkChartsCoreCxx-TestParallelCoordinates >> .....................................***Exception: Other 0.01 sec >> 1> Start 92: vtkChartsCoreCxx-TestParallelCoordinatesDouble >> 1> 92/774 Test #92: vtkChartsCoreCxx-TestParallelCoordinatesDouble >> ...............................***Exception: Other 0.01 sec >> 1> Start 93: vtkChartsCoreCxx-TestPieChart >> 1> 93/774 Test #93: vtkChartsCoreCxx-TestPieChart >> ................................................***Exception: Other 0.01 >> sec >> 1> Start 94: vtkChartsCoreCxx-TestPlotMatrix >> 1> 94/774 Test #94: vtkChartsCoreCxx-TestPlotMatrix >> ..............................................***Exception: Other 0.01 >> sec >> 1> Start 95: vtkChartsCoreCxx-TestPropItem >> 1> 95/774 Test #95: vtkChartsCoreCxx-TestPropItem >> ................................................***Exception: Other 0.01 >> sec >> 1> Start 96: vtkChartsCoreCxx-TestScalarsToColors >> 1> 96/774 Test #96: vtkChartsCoreCxx-TestScalarsToColors >> .........................................***Exception: Other 0.01 sec >> 1> Start 97: vtkChartsCoreCxx-TestScatterPlot >> 1> 97/774 Test #97: vtkChartsCoreCxx-TestScatterPlot >> .............................................***Exception: Other 0.01 sec >> 1> Start 98: vtkChartsCoreCxx-TestScatterPlotMatrix >> 1> 98/774 Test #98: vtkChartsCoreCxx-TestScatterPlotMatrix >> .......................................***Exception: Other 0.01 sec >> 1> Start 99: vtkChartsCoreCxx-TestScatterPlotMatrixVehicles >> 1> 99/774 Test #99: vtkChartsCoreCxx-TestScatterPlotMatrixVehicles >> ...............................***Exception: Other 0.01 sec >> 1> Start 100: vtkChartsCoreCxx-TestScatterPlotMatrixVisible >> 1> 100/774 Test #100: vtkChartsCoreCxx-TestScatterPlotMatrixVisible >> ................................***Exception: Other 0.01 sec >> 1> Start 101: vtkChartsCoreCxx-TestScientificPlot >> 1> 101/774 Test #101: vtkChartsCoreCxx-TestScientificPlot >> ..........................................***Exception: Other 0.01 sec >> 1> Start 102: vtkChartsCoreCxx-TestStackedBarGraph >> 1> 102/774 Test #102: vtkChartsCoreCxx-TestStackedBarGraph >> .........................................***Exception: Other 0.01 sec >> 1> Start 103: vtkChartsCoreCxx-TestStackedPlot >> 1> 103/774 Test #103: vtkChartsCoreCxx-TestStackedPlot >> .............................................***Exception: Other 0.01 sec >> 1> Start 104: vtkChartsCoreCxx-TestSurfacePlot >> 1> 104/774 Test #104: vtkChartsCoreCxx-TestSurfacePlot >> .............................................***Exception: Other 0.01 sec >> 1> Start 105: vtkChartsCoreCxx-TestZoomAxis >> 1> 105/774 Test #105: vtkChartsCoreCxx-TestZoomAxis >> ................................................***Exception: Other 0.01 >> sec >> 1> Start 106: vtkCommonColorCxx-TestCategoricalColors >> 1> 106/774 Test #106: vtkCommonColorCxx-TestCategoricalColors >> ......................................***Exception: Other 0.01 sec >> 1> Start 107: vtkCommonColorCxx-TestColorSeries >> 1> 107/774 Test #107: vtkCommonColorCxx-TestColorSeries >> ............................................***Exception: Other 0.01 sec >> 1> Start 108: vtkCommonColorCxx-TestColorSeriesLookupTables >> 1> 108/774 Test #108: vtkCommonColorCxx-TestColorSeriesLookupTables >> ................................***Exception: Other 0.01 sec >> 1> Start 109: vtkCommonColorCxx-TestNamedColors >> 1> 109/774 Test #109: vtkCommonColorCxx-TestNamedColors >> ............................................***Exception: Other 0.01 sec >> 1> Start 110: vtkCommonComputationalGeometry >> Cxx-UnitTestParametricSpline >> 1> 110/774 Test #110: vtkCommonComputationalGeometryCxx-UnitTestParametricSpline >> ...................***Exception: Other 0.01 sec >> 1> Start 111: vtkCommonCoreCxx-UnitTestMath >> 1> 111/774 Test #111: vtkCommonCoreCxx-UnitTestMath >> ................................................***Exception: Other 0.01 >> sec >> 1> Start 112: vtkCommonCoreCxx-TestAngularPeriodicDataArray >> 1> 112/774 Test #112: vtkCommonCoreCxx-TestAngularPeriodicDataArray >> ................................***Exception: Other 0.01 sec >> 1> Start 113: vtkCommonCoreCxx-TestArrayAPI >> 1> 113/774 Test #113: vtkCommonCoreCxx-TestArrayAPI >> ................................................***Exception: Other 0.01 >> sec >> 1> Start 114: vtkCommonCoreCxx-TestArrayAPIConvenience >> 1> 114/774 Test #114: vtkCommonCoreCxx-TestArrayAPIConvenience >> .....................................***Exception: Other 0.01 sec >> 1> Start 115: vtkCommonCoreCxx-TestArrayAPIDense >> 1> 115/774 Test #115: vtkCommonCoreCxx-TestArrayAPIDense >> ...........................................***Exception: Other 0.01 sec >> 1> Start 116: vtkCommonCoreCxx-TestArrayAPISparse >> 1> 116/774 Test #116: vtkCommonCoreCxx-TestArrayAPISparse >> ..........................................***Exception: Other 0.01 sec >> 1> Start 117: vtkCommonCoreCxx-TestArrayBool >> 1> 117/774 Test #117: vtkCommonCoreCxx-TestArrayBool >> ...............................................***Exception: Other 0.01 >> sec >> 1> Start 118: vtkCommonCoreCxx-TestArrayDispatchers >> 1> 118/774 Test #118: vtkCommonCoreCxx-TestArrayDispatchers >> ........................................***Exception: Other 0.01 sec >> 1> Start 119: vtkCommonCoreCxx-TestAtomic >> 1> 119/774 Test #119: vtkCommonCoreCxx-TestAtomic >> ..................................................***Exception: Other >> 0.01 sec >> 1> Start 120: vtkCommonCoreCxx-TestScalarsToColors >> 1> 120/774 Test #120: vtkCommonCoreCxx-TestScalarsToColors >> .........................................***Exception: Other 0.01 sec >> 1> Start 121: vtkCommonCoreCxx-TestArrayExtents >> 1> 121/774 Test #121: vtkCommonCoreCxx-TestArrayExtents >> ............................................***Exception: Other 0.01 sec >> 1> Start 122: vtkCommonCoreCxx-TestArrayInterpolationDense >> 1> 122/774 Test #122: vtkCommonCoreCxx-TestArrayInterpolationDense >> .................................***Exception: Other 0.01 sec >> 1> Start 123: vtkCommonCoreCxx-TestArrayLookup >> 1> 123/774 Test #123: vtkCommonCoreCxx-TestArrayLookup >> .............................................***Exception: Other 0.01 sec >> 1> Start 124: vtkCommonCoreCxx-TestArrayNullValues >> 1> 124/774 Test #124: vtkCommonCoreCxx-TestArrayNullValues >> .........................................***Exception: Other 0.01 sec >> 1> Start 125: vtkCommonCoreCxx-TestArraySize >> 1> 125/774 Test #125: vtkCommonCoreCxx-TestArraySize >> ...............................................***Exception: Other 0.01 >> sec >> 1> Start 126: vtkCommonCoreCxx-TestArrayUniqueValueDetection >> 1> 126/774 Test #126: vtkCommonCoreCxx-TestArrayUniqueValueDetection >> ...............................***Exception: Other 0.01 sec >> 1> Start 127: vtkCommonCoreCxx-TestArrayUserTypes >> 1> 127/774 Test #127: vtkCommonCoreCxx-TestArrayUserTypes >> ..........................................***Exception: Other 0.01 sec >> 1> Start 128: vtkCommonCoreCxx-TestArrayVariants >> 1> 128/774 Test #128: vtkCommonCoreCxx-TestArrayVariants >> ...........................................***Exception: Other 0.01 sec >> 1> Start 129: vtkCommonCoreCxx-TestCollection >> 1> 129/774 Test #129: vtkCommonCoreCxx-TestCollection >> ..............................................***Exception: Other 0.01 >> sec >> 1> Start 130: vtkCommonCoreCxx-TestConditionVariable >> 1> 130/774 Test #130: vtkCommonCoreCxx-TestConditionVariable >> .......................................***Exception: Other 0.01 sec >> 1> Start 131: vtkCommonCoreCxx-TestDataArray >> 1> 131/774 Test #131: vtkCommonCoreCxx-TestDataArray >> ...............................................***Exception: Other 0.01 >> sec >> 1> Start 132: vtkCommonCoreCxx-TestDataArrayComponentNames >> 1> 132/774 Test #132: vtkCommonCoreCxx-TestDataArrayComponentNames >> .................................***Exception: Other 0.01 sec >> 1> Start 133: vtkCommonCoreCxx-TestDataArrayIterators >> 1> 133/774 Test #133: vtkCommonCoreCxx-TestDataArrayIterators >> ......................................***Exception: Other 0.01 sec >> 1> Start 134: vtkCommonCoreCxx-TestGarbageCollector >> 1> 134/774 Test #134: vtkCommonCoreCxx-TestGarbageCollector >> ........................................***Exception: Other 0.01 sec >> 1> Start 135: vtkCommonCoreCxx-TestGenericDataArrayAPI >> 1> 135/774 Test #135: vtkCommonCoreCxx-TestGenericDataArrayAPI >> .....................................***Exception: Other 0.01 sec >> 1> Start 136: vtkCommonCoreCxx-TestInformationKeyLookup >> 1> 136/774 Test #136: vtkCommonCoreCxx-TestInformationKeyLookup >> ....................................***Exception: Other 0.01 sec >> 1> Start 137: vtkCommonCoreCxx-TestLookupTable >> 1> 137/774 Test #137: vtkCommonCoreCxx-TestLookupTable >> .............................................***Exception: Other 0.01 sec >> 1> Start 138: vtkCommonCoreCxx-TestLookupTableThreaded >> 1> 138/774 Test #138: vtkCommonCoreCxx-TestLookupTableThreaded >> .....................................***Exception: Other 0.01 sec >> 1> Start 139: vtkCommonCoreCxx-TestMath >> 1> 139/774 Test #139: vtkCommonCoreCxx-TestMath >> ....................................................***Exception: Other >> 0.01 sec >> 1> Start 140: vtkCommonCoreCxx-TestMersenneTwister >> 1> 140/774 Test #140: vtkCommonCoreCxx-TestMersenneTwister >> .........................................***Exception: Other 0.01 sec >> 1> Start 141: vtkCommonCoreCxx-TestMinimalStandardRandomSequence >> 1> 141/774 Test #141: vtkCommonCoreCxx-TestMinimalStandardRandomSequence >> ...........................***Exception: Other 0.01 sec >> 1> Start 142: vtkCommonCoreCxx-TestNew >> 1> 142/774 Test #142: vtkCommonCoreCxx-TestNew >> .....................................................***Exception: Other >> 0.01 sec >> 1> Start 143: vtkCommonCoreCxx-TestObjectFactory >> 1> 143/774 Test #143: vtkCommonCoreCxx-TestObjectFactory >> ...........................................***Exception: Other 0.01 sec >> 1> Start 144: vtkCommonCoreCxx-TestObservers >> 1> 144/774 Test #144: vtkCommonCoreCxx-TestObservers >> ...............................................***Exception: Other 0.01 >> sec >> 1> Start 145: vtkCommonCoreCxx-TestObserversPerformance >> 1> 145/774 Test #145: vtkCommonCoreCxx-TestObserversPerformance >> ....................................***Exception: Other 0.01 sec >> 1> Start 146: vtkCommonCoreCxx-TestOStreamWrapper >> 1> 146/774 Test #146: vtkCommonCoreCxx-TestOStreamWrapper >> ..........................................***Exception: Other 0.01 sec >> 1> Start 147: vtkCommonCoreCxx-TestSMP >> 1> 147/774 Test #147: vtkCommonCoreCxx-TestSMP >> .....................................................***Exception: Other >> 0.01 sec >> 1> Start 148: vtkCommonCoreCxx-TestSmartPointer >> 1> 148/774 Test #148: vtkCommonCoreCxx-TestSmartPointer >> ............................................***Exception: Other 0.01 sec >> 1> Start 149: vtkCommonCoreCxx-TestSortDataArray >> 1> 149/774 Test #149: vtkCommonCoreCxx-TestSortDataArray >> ...........................................***Exception: Other 0.01 sec >> 1> Start 150: vtkCommonCoreCxx-TestSparseArrayValidation >> 1> 150/774 Test #150: vtkCommonCoreCxx-TestSparseArrayValidation >> ...................................***Exception: Other 0.01 sec >> 1> Start 151: vtkCommonCoreCxx-TestSystemInformation >> 1> 151/774 Test #151: vtkCommonCoreCxx-TestSystemInformation >> .......................................***Exception: Other 0.01 sec >> 1> Start 152: vtkCommonCoreCxx-TestTemplateMacro >> 1> 152/774 Test #152: vtkCommonCoreCxx-TestTemplateMacro >> ...........................................***Exception: Other 0.01 sec >> 1> Start 153: vtkCommonCoreCxx-TestTimePointUtility >> 1> 153/774 Test #153: vtkCommonCoreCxx-TestTimePointUtility >> ........................................***Exception: Other 0.01 sec >> 1> Start 154: vtkCommonCoreCxx-TestUnicodeStringAPI >> 1> 154/774 Test #154: vtkCommonCoreCxx-TestUnicodeStringAPI >> ........................................***Exception: Other 0.01 sec >> 1> Start 155: vtkCommonCoreCxx-TestUnicodeStringArrayAPI >> 1> 155/774 Test #155: vtkCommonCoreCxx-TestUnicodeStringArrayAPI >> ...................................***Exception: Other 0.01 sec >> 1> Start 156: vtkCommonCoreCxx-TestVariant >> 1> 156/774 Test #156: vtkCommonCoreCxx-TestVariant >> .................................................***Exception: Other 0.01 >> sec >> 1> Start 157: vtkCommonCoreCxx-TestVariantComparison >> 1> 157/774 Test #157: vtkCommonCoreCxx-TestVariantComparison >> .......................................***Exception: Other 0.01 sec >> 1> Start 158: vtkCommonCoreCxx-TestWeakPointer >> 1> 158/774 Test #158: vtkCommonCoreCxx-TestWeakPointer >> .............................................***Exception: Other 0.01 sec >> 1> Start 159: vtkCommonCoreCxx-TestXMLFileOutputWindow >> 1> 159/774 Test #159: vtkCommonCoreCxx-TestXMLFileOutputWindow >> .....................................***Exception: Other 0.01 sec >> 1> Start 160: vtkCommonCoreCxx-UnitTestInformationKeys >> 1> 160/774 Test #160: vtkCommonCoreCxx-UnitTestInformationKeys >> .....................................***Exception: Other 0.01 sec >> 1> Start 161: vtkCommonCoreCxx-otherArrays >> 1> 161/774 Test #161: vtkCommonCoreCxx-otherArrays >> .................................................***Exception: Other 0.01 >> sec >> 1> Start 162: vtkCommonCoreCxx-otherByteSwap >> 1> 162/774 Test #162: vtkCommonCoreCxx-otherByteSwap >> ...............................................***Exception: Other 0.01 >> sec >> 1> Start 163: vtkCommonCoreCxx-otherStringArray >> 1> 163/774 Test #163: vtkCommonCoreCxx-otherStringArray >> ............................................***Exception: Other 0.01 sec >> 1> Start 164: vtkCommonCoreCxx-TestDataArray >> API_vtkDataArrayTemplate_LEGACY >> 1> 164/774 Test #164: vtkCommonCoreCxx-TestDataArray >> API_vtkDataArrayTemplate_LEGACY ................***Exception: Other 0.01 >> sec >> 1> Start 165: vtkCommonCoreCxx-TestDataArrayAPI_vtkCharArray >> 1> 165/774 Test #165: vtkCommonCoreCxx-TestDataArrayAPI_vtkCharArray >> ...............................***Exception: Other 0.01 sec >> 1> Start 166: vtkCommonCoreCxx-TestDataArrayAPI_vtkDoubleArray >> 1> 166/774 Test #166: vtkCommonCoreCxx-TestDataArrayAPI_vtkDoubleArray >> .............................***Exception: Other 0.01 sec >> 1> Start 167: vtkCommonCoreCxx-TestDataArrayAPI_vtkFloatArray >> 1> 167/774 Test #167: vtkCommonCoreCxx-TestDataArrayAPI_vtkFloatArray >> ..............................***Exception: Other 0.01 sec >> 1> Start 168: vtkCommonCoreCxx-TestDataArrayAPI_vtkIntArray >> 1> 168/774 Test #168: vtkCommonCoreCxx-TestDataArrayAPI_vtkIntArray >> ................................***Exception: Other 0.01 sec >> 1> Start 169: vtkCommonCoreCxx-TestDataArrayAPI_vtkLongArray >> 1> 169/774 Test #169: vtkCommonCoreCxx-TestDataArrayAPI_vtkLongArray >> ...............................***Exception: Other 0.01 sec >> 1> Start 170: vtkCommonCoreCxx-TestDataArrayAPI_vtkLongLongArray >> 1> 170/774 Test #170: vtkCommonCoreCxx-TestDataArrayAPI_vtkLongLongArray >> ...........................***Exception: Other 0.01 sec >> 1> Start 171: vtkCommonCoreCxx-TestDataArrayAPI_vtkShortArray >> 1> 171/774 Test #171: vtkCommonCoreCxx-TestDataArrayAPI_vtkShortArray >> ..............................***Exception: Other 0.01 sec >> 1> Start 172: vtkCommonCoreCxx-TestDataArray >> API_vtkSignedCharArray >> 1> 172/774 Test #172: vtkCommonCoreCxx-TestDataArrayAPI_vtkSignedCharArray >> .........................***Exception: Other 0.01 sec >> 1> Start 173: vtkCommonCoreCxx-TestDataArray >> API_vtkUnsignedCharArray >> 1> 173/774 Test #173: vtkCommonCoreCxx-TestDataArrayAPI_vtkUnsignedCharArray >> .......................***Exception: Other 0.01 sec >> 1> Start 174: vtkCommonCoreCxx-TestDataArray >> API_vtkUnsignedIntArray >> 1> 174/774 Test #174: vtkCommonCoreCxx-TestDataArrayAPI_vtkUnsignedIntArray >> ........................***Exception: Other 0.01 sec >> 1> Start 175: vtkCommonCoreCxx-TestDataArray >> API_vtkUnsignedLongArray >> 1> 175/774 Test #175: vtkCommonCoreCxx-TestDataArrayAPI_vtkUnsignedLongArray >> .......................***Exception: Other 0.01 sec >> 1> Start 176: vtkCommonCoreCxx-TestDataArray >> API_vtkUnsignedLongLongArray >> 1> 176/774 Test #176: vtkCommonCoreCxx-TestDataArrayAPI_vtkUnsignedLongLongArray >> ...................***Exception: Other 0.01 sec >> 1> Start 177: vtkCommonCoreCxx-TestDataArray >> API_vtkUnsignedShortArray >> 1> 177/774 Test #177: vtkCommonCoreCxx-TestDataArrayAPI_vtkUnsignedShortArray >> ......................***Exception: Other 0.01 sec >> 1> Start 178: vtkCommonCoreCxx-TestDataArrayAPI_vtkIdTypeArray >> 1> 178/774 Test #178: vtkCommonCoreCxx-TestDataArrayAPI_vtkIdTypeArray >> .............................***Exception: Other 0.01 sec >> 1> Start 179: vtkCommonCoreCxx-TestDataArrayAPI_AoS_char >> 1> 179/774 Test #179: vtkCommonCoreCxx-TestDataArrayAPI_AoS_char >> ...................................***Exception: Other 0.01 sec >> 1> Start 180: vtkCommonCoreCxx-TestDataArrayAPI_SoA_char >> 1> 180/774 Test #180: vtkCommonCoreCxx-TestDataArrayAPI_SoA_char >> ...................................***Exception: Other 0.01 sec >> 1> Start 181: vtkCommonCoreCxx-TestDataArrayAPI_AoS_double >> 1> 181/774 Test #181: vtkCommonCoreCxx-TestDataArrayAPI_AoS_double >> .................................***Exception: Other 0.01 sec >> 1> Start 182: vtkCommonCoreCxx-TestDataArrayAPI_SoA_double >> 1> 182/774 Test #182: vtkCommonCoreCxx-TestDataArrayAPI_SoA_double >> .................................***Exception: Other 0.01 sec >> 1> Start 183: vtkCommonCoreCxx-TestDataArrayAPI_AoS_float >> 1> 183/774 Test #183: vtkCommonCoreCxx-TestDataArrayAPI_AoS_float >> ..................................***Exception: Other 0.01 sec >> 1> Start 184: vtkCommonCoreCxx-TestDataArrayAPI_SoA_float >> 1> 184/774 Test #184: vtkCommonCoreCxx-TestDataArrayAPI_SoA_float >> ..................................***Exception: Other 0.01 sec >> 1> Start 185: vtkCommonCoreCxx-TestDataArrayAPI_AoS_int >> 1> 185/774 Test #185: vtkCommonCoreCxx-TestDataArrayAPI_AoS_int >> ....................................***Exception: Other 0.01 sec >> 1> Start 186: vtkCommonCoreCxx-TestDataArrayAPI_SoA_int >> 1> 186/774 Test #186: vtkCommonCoreCxx-TestDataArrayAPI_SoA_int >> ....................................***Exception: Other 0.01 sec >> 1> Start 187: vtkCommonCoreCxx-TestDataArrayAPI_AoS_long >> 1> 187/774 Test #187: vtkCommonCoreCxx-TestDataArrayAPI_AoS_long >> ...................................***Exception: Other 0.01 sec >> 1> Start 188: vtkCommonCoreCxx-TestDataArrayAPI_SoA_long >> 1> 188/774 Test #188: vtkCommonCoreCxx-TestDataArrayAPI_SoA_long >> ...................................***Exception: Other 0.01 sec >> 1> Start 189: vtkCommonCoreCxx-TestDataArrayAPI_AoS_long_long >> 1> 189/774 Test #189: vtkCommonCoreCxx-TestDataArrayAPI_AoS_long_long >> ..............................***Exception: Other 0.01 sec >> 1> Start 190: vtkCommonCoreCxx-TestDataArrayAPI_SoA_long_long >> 1> 190/774 Test #190: vtkCommonCoreCxx-TestDataArrayAPI_SoA_long_long >> ..............................***Exception: Other 0.01 sec >> 1> Start 191: vtkCommonCoreCxx-TestDataArrayAPI_AoS_short >> 1> 191/774 Test #191: vtkCommonCoreCxx-TestDataArrayAPI_AoS_short >> ..................................***Exception: Other 0.01 sec >> 1> Start 192: vtkCommonCoreCxx-TestDataArrayAPI_SoA_short >> 1> 192/774 Test #192: vtkCommonCoreCxx-TestDataArrayAPI_SoA_short >> ..................................***Exception: Other 0.01 sec >> 1> Start 193: vtkCommonCoreCxx-TestDataArrayAPI_AoS_signed_char >> 1> 193/774 Test #193: vtkCommonCoreCxx-TestDataArrayAPI_AoS_signed_char >> ............................***Exception: Other 0.01 sec >> 1> Start 194: vtkCommonCoreCxx-TestDataArrayAPI_SoA_signed_char >> 1> 194/774 Test #194: vtkCommonCoreCxx-TestDataArrayAPI_SoA_signed_char >> ............................***Exception: Other 0.01 sec >> 1> Start 195: vtkCommonCoreCxx-TestDataArrayAPI_AoS_unsigned_char >> 1> 195/774 Test #195: vtkCommonCoreCxx-TestDataArrayAPI_AoS_unsigned_char >> ..........................***Exception: Other 0.01 sec >> 1> Start 196: vtkCommonCoreCxx-TestDataArrayAPI_SoA_unsigned_char >> 1> 196/774 Test #196: vtkCommonCoreCxx-TestDataArrayAPI_SoA_unsigned_char >> ..........................***Exception: Other 0.01 sec >> 1> Start 197: vtkCommonCoreCxx-TestDataArrayAPI_AoS_unsigned_int >> 1> 197/774 Test #197: vtkCommonCoreCxx-TestDataArrayAPI_AoS_unsigned_int >> ...........................***Exception: Other 0.01 sec >> 1> Start 198: vtkCommonCoreCxx-TestDataArrayAPI_SoA_unsigned_int >> 1> 198/774 Test #198: vtkCommonCoreCxx-TestDataArrayAPI_SoA_unsigned_int >> ...........................***Exception: Other 0.01 sec >> 1> Start 199: vtkCommonCoreCxx-TestDataArrayAPI_AoS_unsigned_long >> 1> 199/774 Test #199: vtkCommonCoreCxx-TestDataArrayAPI_AoS_unsigned_long >> ..........................***Exception: Other 0.01 sec >> 1> Start 200: vtkCommonCoreCxx-TestDataArrayAPI_SoA_unsigned_long >> 1> 200/774 Test #200: vtkCommonCoreCxx-TestDataArrayAPI_SoA_unsigned_long >> ..........................***Exception: Other 0.01 sec >> 1> Start 201: vtkCommonCoreCxx-TestDataArray >> API_AoS_unsigned_long_long >> 1> 201/774 Test #201: vtkCommonCoreCxx-TestDataArrayAPI_AoS_unsigned_long_long >> .....................***Exception: Other 0.01 sec >> 1> Start 202: vtkCommonCoreCxx-TestDataArray >> API_SoA_unsigned_long_long >> 1> 202/774 Test #202: vtkCommonCoreCxx-TestDataArrayAPI_SoA_unsigned_long_long >> .....................***Exception: Other 0.01 sec >> 1> Start 203: vtkCommonCoreCxx-TestDataArray >> API_AoS_unsigned_short >> 1> 203/774 Test #203: vtkCommonCoreCxx-TestDataArrayAPI_AoS_unsigned_short >> .........................***Exception: Other 0.01 sec >> 1> Start 204: vtkCommonCoreCxx-TestDataArray >> API_SoA_unsigned_short >> 1> 204/774 Test #204: vtkCommonCoreCxx-TestDataArrayAPI_SoA_unsigned_short >> .........................***Exception: Other 0.01 sec >> 1> Start 205: vtkCommonCoreCxx-TestDataArrayAPI_AoS_vtkIdType >> 1> 205/774 Test #205: vtkCommonCoreCxx-TestDataArrayAPI_AoS_vtkIdType >> ..............................***Exception: Other 0.01 sec >> 1> Start 206: vtkCommonCoreCxx-TestDataArrayAPI_SoA_vtkIdType >> 1> 206/774 Test #206: vtkCommonCoreCxx-TestDataArrayAPI_SoA_vtkIdType >> ..............................***Exception: Other 0.01 sec >> 1> Start 207: vtkFiltersGeneric-HeaderTest >> 1> 207/774 Test #207: vtkFiltersGeneric-HeaderTest >> ................................................. Passed 0.18 sec >> 1> Start 208: vtkIOGeometry-HeaderTest >> 1> 208/774 Test #208: vtkIOGeometry-HeaderTest >> ..................................................... Passed 0.30 sec >> 1> Start 209: vtkTestingGenericBridge-HeaderTest >> 1> 209/774 Test #209: vtkTestingGenericBridge-HeaderTest >> ........................................... Passed 0.19 sec >> 1> Start 210: vtkCommonDataModelCxx-TestColor >> 1> 210/774 Test #210: vtkCommonDataModelCxx-TestColor >> ..............................................***Exception: Other 0.01 >> sec >> 1> Start 211: vtkCommonDataModelCxx-TestVector >> 1> 211/774 Test #211: vtkCommonDataModelCxx-TestVector >> .............................................***Exception: Other 0.01 sec >> 1> Start 212: vtkCommonDataModelCxx-TestVectorOperators >> 1> 212/774 Test #212: vtkCommonDataModelCxx-TestVectorOperators >> ....................................***Exception: Other 0.01 sec >> 1> Start 213: vtkCommonDataModelCxx-TestAMRBox >> 1> 213/774 Test #213: vtkCommonDataModelCxx-TestAMRBox >> .............................................***Exception: Other 0.01 sec >> 1> Start 214: vtkCommonDataModelCxx-TestBiQuadraticQuad >> 1> 214/774 Test #214: vtkCommonDataModelCxx-TestBiQuadraticQuad >> ....................................***Exception: Other 0.01 sec >> 1> Start 215: vtkCommonDataModelCxx-TestCompositeDataSets >> 1> 215/774 Test #215: vtkCommonDataModelCxx-TestCompositeDataSets >> ..................................***Exception: Other 0.01 sec >> 1> Start 216: vtkCommonDataModelCxx-TestComputeBoundingSphere >> 1> 216/774 Test #216: vtkCommonDataModelCxx-TestComputeBoundingSphere >> ..............................***Exception: Other 0.01 sec >> 1> Start 217: vtkCommonDataModelCxx-TestDataArrayDispatcher >> 1> 217/774 Test #217: vtkCommonDataModelCxx-TestDataArrayDispatcher >> ................................***Exception: Other 0.01 sec >> 1> Start 218: vtkCommonDataModelCxx-TestDataObject >> 1> 218/774 Test #218: vtkCommonDataModelCxx-TestDataObject >> .........................................***Exception: Other 0.01 sec >> 1> Start 219: vtkCommonDataModelCxx-TestDispatchers >> 1> 219/774 Test #219: vtkCommonDataModelCxx-TestDispatchers >> ........................................***Exception: Other 0.01 sec >> 1> Start 220: vtkCommonDataModelCxx-TestGenericCell >> 1> 220/774 Test #220: vtkCommonDataModelCxx-TestGenericCell >> ........................................***Exception: Other 0.01 sec >> 1> Start 221: vtkCommonDataModelCxx-TestGraph >> 1> 221/774 Test #221: vtkCommonDataModelCxx-TestGraph >> ..............................................***Exception: Other 0.01 >> sec >> 1> Start 222: vtkCommonDataModelCxx-TestGraph2 >> 1> 222/774 Test #222: vtkCommonDataModelCxx-TestGraph2 >> .............................................***Exception: Other 0.01 sec >> 1> Start 223: vtkCommonDataModelCxx-TestGraphAttributes >> 1> 223/774 Test #223: vtkCommonDataModelCxx-TestGraphAttributes >> ....................................***Exception: Other 0.01 sec >> 1> Start 224: vtkCommonDataModelCxx-TestHigherOrderCell >> 1> 224/774 Test #224: vtkCommonDataModelCxx-TestHigherOrderCell >> ....................................***Exception: Other 0.01 sec >> 1> Start 225: vtkCommonDataModelCxx-TestImageDataFindCell >> 1> 225/774 Test #225: vtkCommonDataModelCxx-TestImageDataFindCell >> ..................................***Exception: Other 0.01 sec >> 1> Start 226: vtkCommonDataModelCxx-TestImageDataInterpolation >> 1> 226/774 Test #226: vtkCommonDataModelCxx-TestImageDataInterpolation >> .............................***Exception: Other 0.01 sec >> 1> Start 227: vtkCommonDataModelCxx-TestImageIterator >> 1> 227/774 Test #227: vtkCommonDataModelCxx-TestImageIterator >> ......................................***Exception: Other 0.01 sec >> 1> Start 228: vtkCommonDataModelCxx-TestInterpolationDerivs >> 1> 228/774 Test #228: vtkCommonDataModelCxx-TestInterpolationDerivs >> ................................***Exception: Other 0.01 sec >> 1> Start 229: vtkCommonDataModelCxx-TestInterpolationFunctions >> 1> 229/774 Test #229: vtkCommonDataModelCxx-TestInterpolationFunctions >> .............................***Exception: Other 0.01 sec >> 1> Start 230: vtkCommonDataModelCxx-TestPath >> 1> 230/774 Test #230: vtkCommonDataModelCxx-TestPath >> ...............................................***Exception: Other 0.01 >> sec >> 1> Start 231: vtkCommonDataModelCxx-TestPentagonalPrism >> 1> 231/774 Test #231: vtkCommonDataModelCxx-TestPentagonalPrism >> ....................................***Exception: Other 0.01 sec >> 1> Start 232: vtkCommonDataModelCxx-TestPixelExtent >> 1> 232/774 Test #232: vtkCommonDataModelCxx-TestPixelExtent >> ........................................***Exception: Other 0.01 sec >> 1> Start 233: vtkCommonDataModelCxx-TestPointLocators >> 1> 233/774 Test #233: vtkCommonDataModelCxx-TestPointLocators >> ......................................***Exception: Other 0.01 sec >> 1> Start 234: vtkCommonDataModelCxx-TestPolyDataRemoveCell >> 1> 234/774 Test #234: vtkCommonDataModelCxx-TestPolyDataRemoveCell >> .................................***Exception: Other 0.01 sec >> 1> Start 235: vtkCommonDataModelCxx-TestPolygon >> 1> 235/774 Test #235: vtkCommonDataModelCxx-TestPolygon >> ............................................***Exception: Other 0.01 sec >> 1> Start 236: vtkCommonDataModelCxx-TestPolyhedron0 >> 1> 236/774 Test #236: vtkCommonDataModelCxx-TestPolyhedron0 >> ........................................***Exception: Other 0.01 sec >> 1> Start 237: vtkCommonDataModelCxx-TestPolyhedron1 >> 1> 237/774 Test #237: vtkCommonDataModelCxx-TestPolyhedron1 >> ........................................***Exception: Other 0.01 sec >> 1> Start 238: vtkCommonDataModelCxx-TestPolyhedron3 >> 1> 238/774 Test #238: vtkCommonDataModelCxx-TestPolyhedron3 >> ........................................***Exception: Other 0.01 sec >> 1> Start 239: vtkCommonDataModelCxx-TestPolyhedronConvexity >> 1> 239/774 Test #239: vtkCommonDataModelCxx-TestPolyhedronConvexity >> ................................***Exception: Other 0.01 sec >> 1> Start 240: vtkCommonDataModelCxx-TestQuadraticPolygon >> 1> 240/774 Test #240: vtkCommonDataModelCxx-TestQuadraticPolygon >> ...................................***Exception: Other 0.01 sec >> 1> Start 241: vtkCommonDataModelCxx-TestRect >> 1> 241/774 Test #241: vtkCommonDataModelCxx-TestRect >> ...............................................***Exception: Other 0.01 >> sec >> 1> Start 242: vtkCommonDataModelCxx-TestSelectionSubtract >> 1> 242/774 Test #242: vtkCommonDataModelCxx-TestSelectionSubtract >> ..................................***Exception: Other 0.01 sec >> 1> Start 243: vtkCommonDataModelCxx-TestSortFieldData >> 1> 243/774 Test #243: vtkCommonDataModelCxx-TestSortFieldData >> ......................................***Exception: Other 0.01 sec >> 1> Start 244: vtkCommonDataModelCxx-TestTable >> 1> 244/774 Test #244: vtkCommonDataModelCxx-TestTable >> ..............................................***Exception: Other 0.01 >> sec >> 1> Start 245: vtkCommonDataModelCxx-TestTreeBFSIterator >> 1> 245/774 Test #245: vtkCommonDataModelCxx-TestTreeBFSIterator >> ....................................***Exception: Other 0.01 sec >> 1> Start 246: vtkCommonDataModelCxx-TestTreeDFSIterator >> 1> 246/774 Test #246: vtkCommonDataModelCxx-TestTreeDFSIterator >> ....................................***Exception: Other 0.01 sec >> 1> Start 247: vtkCommonDataModelCxx-TestTriangle >> 1> 247/774 Test #247: vtkCommonDataModelCxx-TestTriangle >> ...........................................***Exception: Other 0.01 sec >> 1> Start 248: vtkCommonDataModelCxx-TimePointLocators >> 1> 248/774 Test #248: vtkCommonDataModelCxx-TimePointLocators >> ......................................***Exception: Other 0.01 sec >> 1> Start 249: vtkCommonDataModelCxx-otherCellArray >> 1> 249/774 Test #249: vtkCommonDataModelCxx-otherCellArray >> .........................................***Exception: Other 0.01 sec >> 1> Start 250: vtkCommonDataModelCxx-otherCellBoundaries >> 1> 250/774 Test #250: vtkCommonDataModelCxx-otherCellBoundaries >> ....................................***Exception: Other 0.01 sec >> 1> Start 251: vtkCommonDataModelCxx-otherCellPosition >> 1> 251/774 Test #251: vtkCommonDataModelCxx-otherCellPosition >> ......................................***Exception: Other 0.01 sec >> 1> Start 252: vtkCommonDataModelCxx-otherCellTypes >> 1> 252/774 Test #252: vtkCommonDataModelCxx-otherCellTypes >> .........................................***Exception: Other 0.01 sec >> 1> Start 253: vtkCommonDataModelCxx-otherColorTransferFunction >> 1> 253/774 Test #253: vtkCommonDataModelCxx-otherColorTransferFunction >> .............................***Exception: Other 0.01 sec >> 1> Start 254: vtkCommonDataModelCxx-otherEmptyCell >> 1> 254/774 Test #254: vtkCommonDataModelCxx-otherEmptyCell >> .........................................***Exception: Other 0.01 sec >> 1> Start 255: vtkCommonDataModelCxx-otherFieldData >> 1> 255/774 Test #255: vtkCommonDataModelCxx-otherFieldData >> .........................................***Exception: Other 0.01 sec >> 1> Start 256: vtkCommonDataModelCxx-otherRectilinearGrid >> 1> 256/774 Test #256: vtkCommonDataModelCxx-otherRectilinearGrid >> ...................................***Exception: Other 0.01 sec >> 1> Start 257: vtkCommonDataModelCxx-otherStructuredGrid >> 1> 257/774 Test #257: vtkCommonDataModelCxx-otherStructuredGrid >> ....................................***Exception: Other 0.01 sec >> 1> Start 258: vtkCommonDataModelCxx-quadCellConsistency >> 1> 258/774 Test #258: vtkCommonDataModelCxx-quadCellConsistency >> ....................................***Exception: Other 0.01 sec >> 1> Start 259: vtkCommonDataModelCxx-quadraticEvaluation >> 1> 259/774 Test #259: vtkCommonDataModelCxx-quadraticEvaluation >> ....................................***Exception: Other 0.01 sec >> 1> Start 260: vtkCommonDataModelCxx-TestBoundingBox >> 1> 260/774 Test #260: vtkCommonDataModelCxx-TestBoundingBox >> ........................................***Exception: Other 0.01 sec >> 1> Start 261: vtkCommonDataModelCxx-TestPlane >> 1> 261/774 Test #261: vtkCommonDataModelCxx-TestPlane >> ..............................................***Exception: Other 0.01 >> sec >> 1> Start 262: vtkCommonDataModelCxx-TestStaticCellLinks >> 1> 262/774 Test #262: vtkCommonDataModelCxx-TestStaticCellLinks >> ....................................***Exception: Other 0.01 sec >> 1> Start 263: vtkCommonDataModelCxx-TestStructuredData >> 1> 263/774 Test #263: vtkCommonDataModelCxx-TestStructuredData >> .....................................***Exception: Other 0.01 sec >> 1> Start 264: vtkCommonDataModelCxx-TestDataObjectTypes >> 1> 264/774 Test #264: vtkCommonDataModelCxx-TestDataObjectTypes >> ....................................***Exception: Other 0.01 sec >> 1> Start 265: vtkCommonDataModelCxx-TestPoly >> DataRemoveDeletedCells >> 1> 265/774 Test #265: vtkCommonDataModelCxx-TestPolyDataRemoveDeletedCells >> .........................***Exception: Other 0.01 sec >> 1> Start 266: vtkCommonDataModelCxx-UnitTestCells >> 1> 266/774 Test #266: vtkCommonDataModelCxx-UnitTestCells >> ..........................................***Exception: Other 0.01 sec >> 1> Start 267: vtkCommonDataModelCxx-UnitTestImplicitDataSet >> 1> 267/774 Test #267: vtkCommonDataModelCxx-UnitTestImplicitDataSet >> ................................***Exception: Other 0.01 sec >> 1> Start 268: vtkCommonDataModelCxx-UnitTestImplicitVolume >> 1> 268/774 Test #268: vtkCommonDataModelCxx-UnitTestImplicitVolume >> .................................***Exception: Other 0.01 sec >> 1> Start 269: vtkCommonDataModelCxx-UnitTestLine >> 1> 269/774 Test #269: vtkCommonDataModelCxx-UnitTestLine >> ...........................................***Exception: Other 0.01 sec >> 1> Start 270: vtkCommonDataModelCxx-UnitTestPlanesIntersection >> 1> 270/774 Test #270: vtkCommonDataModelCxx-UnitTestPlanesIntersection >> .............................***Exception: Other 0.01 sec >> 1> Start 271: vtkCommonDataModelCxx-quadraticIntersection >> 1> 271/774 Test #271: vtkCommonDataModelCxx-quadraticIntersection >> ..................................***Exception: Other 0.01 sec >> 1> Start 272: vtkCommonDataModelCxx-TestCellIterators >> 1> 272/774 Test #272: vtkCommonDataModelCxx-TestCellIterators >> ......................................***Exception: Other 0.01 sec >> 1> Start 273: vtkCommonDataModelCxx-TestCellLocator >> 1> 273/774 Test #273: vtkCommonDataModelCxx-TestCellLocator >> ........................................***Exception: Other 0.01 sec >> 1> Start 274: vtkCommonDataModelCxx-TestMean >> ValueCoordinatesInterpolation1 >> 1> 274/774 Test #274: vtkCommonDataModelCxx-TestMeanValueCoordinatesInterpolation1 >> .................***Exception: Other 0.01 sec >> 1> Start 275: vtkCommonDataModelCxx-TestMean >> ValueCoordinatesInterpolation2 >> 1> 275/774 Test #275: vtkCommonDataModelCxx-TestMeanValueCoordinatesInterpolation2 >> .................***Exception: Other 0.01 sec >> 1> Start 276: vtkCommonDataModelCxx-TestSmoothErrorMetric >> 1> 276/774 Test #276: vtkCommonDataModelCxx-TestSmoothErrorMetric >> ..................................***Exception: Other 0.01 sec >> 1> Start 277: vtkCommonDataModelCxx-TestQuadraticPolygonFilters >> 1> 277/774 Test #277: vtkCommonDataModelCxx-TestQuadraticPolygonFilters >> ............................***Exception: Other 0.01 sec >> 1> Start 278: vtkCommonDataModelCxx-TestKdTreeRepresentation >> 1> 278/774 Test #278: vtkCommonDataModelCxx-TestKdTreeRepresentation >> ...............................***Exception: Other 0.01 sec >> 1> Start 279: TestPolyhedron2 >> 1> 279/774 Test #279: TestPolyhedron2 .............................. >> ................................***Exception: Other 0.01 sec >> 1> Start 280: vtkCommonExecutionModelCxx-TestCopyAttributeData >> 1> 280/774 Test #280: vtkCommonExecutionModelCxx-TestCopyAttributeData >> .............................***Exception: Other 0.01 sec >> 1> Start 281: vtkCommonExecutionModelCxx-Tes >> tImageDataToStructuredGrid >> 1> 281/774 Test #281: vtkCommonExecutionModelCxx-TestImageDataToStructuredGrid >> .....................***Exception: Other 0.01 sec >> 1> Start 282: vtkCommonExecutionModelCxx-TestMetaData >> 1> 282/774 Test #282: vtkCommonExecutionModelCxx-TestMetaData >> ......................................***Exception: Other 0.01 sec >> 1> Start 283: vtkCommonExecutionModelCxx-TestSetInputDataObject >> 1> 283/774 Test #283: vtkCommonExecutionModelCxx-TestSetInputDataObject >> ............................***Exception: Other 0.01 sec >> 1> Start 284: vtkCommonExecutionModelCxx-TestTemporalSupport >> 1> 284/774 Test #284: vtkCommonExecutionModelCxx-TestTemporalSupport >> ...............................***Exception: Other 0.01 sec >> 1> Start 285: vtkCommonExecutionModelCxx-Tes >> tThreadedImageAlgorithmSplitExtent >> 1> 285/774 Test #285: vtkCommonExecutionModelCxx-Tes >> tThreadedImageAlgorithmSplitExtent .............***Exception: Other 0.01 >> sec >> 1> Start 286: vtkCommonExecutionModelCxx-TestTrivialConsumer >> 1> 286/774 Test #286: vtkCommonExecutionModelCxx-TestTrivialConsumer >> ...............................***Exception: Other 0.01 sec >> 1> Start 287: vtkCommonExecutionModelCxx-UnitTestSimpleScalarTree >> 1> 287/774 Test #287: vtkCommonExecutionModelCxx-UnitTestSimpleScalarTree >> ..........................***Exception: Other 0.01 sec >> 1> Start 288: vtkCommonMathCxx-TestAmoebaMinimizer >> 1> 288/774 Test #288: vtkCommonMathCxx-TestAmoebaMinimizer >> .........................................***Exception: Other 0.01 sec >> 1> Start 289: vtkCommonMathCxx-TestMatrix3x3 >> 1> 289/774 Test #289: vtkCommonMathCxx-TestMatrix3x3 >> ...............................................***Exception: Other 0.01 >> sec >> 1> Start 290: vtkCommonMathCxx-TestPolynomialSolversUnivariate >> 1> 290/774 Test #290: vtkCommonMathCxx-TestPolynomialSolversUnivariate >> .............................***Exception: Other 0.01 sec >> 1> Start 291: vtkCommonMathCxx-TestQuaternion >> 1> 291/774 Test #291: vtkCommonMathCxx-TestQuaternion >> ..............................................***Exception: Other 0.01 >> sec >> 1> Start 292: vtkCommonMiscCxx-TestPolygonBuilder >> 1> 292/774 Test #292: vtkCommonMiscCxx-TestPolygonBuilder >> ..........................................***Exception: Other 0.01 sec >> 1> Start 293: vtkCommonMiscCxx-TestPolygonBuilder2 >> 1> 293/774 Test #293: vtkCommonMiscCxx-TestPolygonBuilder2 >> .........................................***Exception: Other 0.01 sec >> 1> Start 294: vtkCommonMiscCxx-TestPolygonBuilder3 >> 1> 294/774 Test #294: vtkCommonMiscCxx-TestPolygonBuilder3 >> .........................................***Exception: Other 0.01 sec >> 1> Start 295: vtkCommonMiscCxx-TestPolygonBuilder4 >> 1> 295/774 Test #295: vtkCommonMiscCxx-TestPolygonBuilder4 >> .........................................***Exception: Other 0.01 sec >> 1> Start 296: vtkCommonMiscCxx-UnitTestFunctionParser >> 1> 296/774 Test #296: vtkCommonMiscCxx-UnitTestFunctionParser >> ......................................***Exception: Other 0.01 sec >> 1> Start 297: vtkCommonSystemCxx-TestDirectory >> 1> 297/774 Test #297: vtkCommonSystemCxx-TestDirectory >> .............................................***Exception: Other 0.01 sec >> 1> Start 298: vtkCommonSystemCxx-otherTimerLog >> 1> 298/774 Test #298: vtkCommonSystemCxx-otherTimerLog >> .............................................***Exception: Other 0.01 sec >> 1> Start 299: vtkCommonTransformsCxx-TestTransform >> 1> 299/774 Test #299: vtkCommonTransformsCxx-TestTransform >> .........................................***Exception: Other 0.01 sec >> 1> Start 300: vtkCommonTransformsCxx-TestLandmarkTransform >> 1> 300/774 Test #300: vtkCommonTransformsCxx-TestLandmarkTransform >> .................................***Exception: Other 0.01 sec >> 1> Start 301: vtkImagingMath-HeaderTest >> 1> 301/774 Test #301: vtkImagingMath-HeaderTest >> .................................................... Passed 0.12 sec >> 1> Start 302: vtkRenderingVolumeOpenGL2-HeaderTest >> 1> 302/774 Test #302: vtkRenderingVolumeOpenGL2-HeaderTest >> ......................................... Passed 0.13 sec >> 1> Start 303: vtkFiltersCoreCxx-TestAppendFilter >> 1> 303/774 Test #303: vtkFiltersCoreCxx-TestAppendFilter >> ...........................................***Exception: Other 0.01 sec >> 1> Start 304: vtkFiltersCoreCxx-TestAppendPolyData >> 1> 304/774 Test #304: vtkFiltersCoreCxx-TestAppendPolyData >> .........................................***Exception: Other 0.01 sec >> 1> Start 305: vtkFiltersCoreCxx-TestAppendSelection >> 1> 305/774 Test #305: vtkFiltersCoreCxx-TestAppendSelection >> ........................................***Exception: Other 0.01 sec >> 1> Start 306: vtkFiltersCoreCxx-TestArrayCalculator >> 1> 306/774 Test #306: vtkFiltersCoreCxx-TestArrayCalculator >> ........................................***Exception: Other 0.01 sec >> 1> Start 307: vtkFiltersCoreCxx-TestAssignAttribute >> 1> 307/774 Test #307: vtkFiltersCoreCxx-TestAssignAttribute >> ........................................***Exception: Other 0.01 sec >> 1> Start 308: vtkFiltersCoreCxx-TestBinCellDataFilter >> 1> 308/774 Test #308: vtkFiltersCoreCxx-TestBinCellDataFilter >> ......................................***Exception: Other 0.01 sec >> 1> Start 309: vtkFiltersCoreCxx-TestCategori >> calPointDataToCellData >> 1> 309/774 Test #309: vtkFiltersCoreCxx-TestCategoricalPointDataToCellData >> .........................***Exception: Other 0.01 sec >> 1> Start 310: vtkFiltersCoreCxx-TestCellDataToPointData >> 1> 310/774 Test #310: vtkFiltersCoreCxx-TestCellDataToPointData >> ....................................***Exception: Other 0.01 sec >> 1> Start 311: vtkFiltersCoreCxx-TestCenterOfMass >> 1> 311/774 Test #311: vtkFiltersCoreCxx-TestCenterOfMass >> ...........................................***Exception: Other 0.01 sec >> 1> Start 312: vtkFiltersCoreCxx-TestCleanPolyData >> 1> 312/774 Test #312: vtkFiltersCoreCxx-TestCleanPolyData >> ..........................................***Exception: Other 0.01 sec >> 1> Start 313: vtkFiltersCoreCxx-TestClipPolyData >> 1> 313/774 Test #313: vtkFiltersCoreCxx-TestClipPolyData >> ...........................................***Exception: Other 0.01 sec >> 1> Start 314: vtkFiltersCoreCxx-TestConnectivityFilter >> 1> 314/774 Test #314: vtkFiltersCoreCxx-TestConnectivityFilter >> .....................................***Exception: Other 0.01 sec >> 1> Start 315: vtkFiltersCoreCxx-TestCutter >> 1> 315/774 Test #315: vtkFiltersCoreCxx-TestCutter >> .................................................***Exception: Other 0.01 >> sec >> 1> Start 316: vtkFiltersCoreCxx-TestDecimatePolylineFilter >> 1> 316/774 Test #316: vtkFiltersCoreCxx-TestDecimatePolylineFilter >> .................................***Exception: Other 0.01 sec >> 1> Start 317: vtkFiltersCoreCxx-TestDecimatePro >> 1> 317/774 Test #317: vtkFiltersCoreCxx-TestDecimatePro >> ............................................***Exception: Other 0.01 sec >> 1> Start 318: vtkFiltersCoreCxx-TestDelaunay2D >> 1> 318/774 Test #318: vtkFiltersCoreCxx-TestDelaunay2D >> .............................................***Exception: Other 0.01 sec >> 1> Start 319: vtkFiltersCoreCxx-TestDelaunay2DFindTriangle >> 1> 319/774 Test #319: vtkFiltersCoreCxx-TestDelaunay2DFindTriangle >> .................................***Exception: Other 0.01 sec >> 1> Start 320: vtkFiltersCoreCxx-TestDelaunay2DMeshes >> 1> 320/774 Test #320: vtkFiltersCoreCxx-TestDelaunay2DMeshes >> .......................................***Exception: Other 0.01 sec >> 1> Start 321: vtkFiltersCoreCxx-TestDelaunay3D >> 1> 321/774 Test #321: vtkFiltersCoreCxx-TestDelaunay3D >> .............................................***Exception: Other 0.01 sec >> 1> Start 322: vtkFiltersCoreCxx-TestExecutionTimer >> 1> 322/774 Test #322: vtkFiltersCoreCxx-TestExecutionTimer >> .........................................***Exception: Other 0.01 sec >> 1> Start 323: vtkFiltersCoreCxx-TestFeatureEdges >> 1> 323/774 Test #323: vtkFiltersCoreCxx-TestFeatureEdges >> ...........................................***Exception: Other 0.01 sec >> 1> Start 324: vtkFiltersCoreCxx-TestFlyingEdges >> 1> 324/774 Test #324: vtkFiltersCoreCxx-TestFlyingEdges >> ............................................***Exception: Other 0.01 sec >> 1> Start 325: vtkFiltersCoreCxx-TestGlyph3D >> 1> 325/774 Test #325: vtkFiltersCoreCxx-TestGlyph3D >> ................................................***Exception: Other 0.01 >> sec >> 1> Start 326: vtkFiltersCoreCxx-TestHedgeHog >> 1> 326/774 Test #326: vtkFiltersCoreCxx-TestHedgeHog >> ...............................................***Exception: Other 0.01 >> sec >> 1> Start 327: vtkFiltersCoreCxx-TestImplicitPolyDataDistance >> 1> 327/774 Test #327: vtkFiltersCoreCxx-TestImplicitPolyDataDistance >> ...............................***Exception: Other 0.01 sec >> 1> Start 328: vtkFiltersCoreCxx-TestMaskPoints >> 1> 328/774 Test #328: vtkFiltersCoreCxx-TestMaskPoints >> .............................................***Exception: Other 0.01 sec >> 1> Start 329: vtkFiltersCoreCxx-TestNamedComponents >> 1> 329/774 Test #329: vtkFiltersCoreCxx-TestNamedComponents >> ........................................***Exception: Other 0.01 sec >> 1> Start 330: vtkFiltersCoreCxx-TestPolyDataConnectivityFilter >> 1> 330/774 Test #330: vtkFiltersCoreCxx-TestPolyDataConnectivityFilter >> .............................***Exception: Other 0.01 sec >> 1> Start 331: vtkFiltersCoreCxx-TestProbeFilter >> 1> 331/774 Test #331: vtkFiltersCoreCxx-TestProbeFilter >> ............................................***Exception: Other 0.01 sec >> 1> Start 332: vtkFiltersCoreCxx-TestProbeFilterImageInput >> 1> 332/774 Test #332: vtkFiltersCoreCxx-TestProbeFilterImageInput >> ..................................***Exception: Other 0.01 sec >> 1> Start 333: vtkFiltersCoreCxx-TestProbeFilterOutputAttributes >> 1> 333/774 Test #333: vtkFiltersCoreCxx-TestProbeFilterOutputAttributes >> ............................***Exception: Other 0.01 sec >> 1> Start 334: vtkFiltersCoreCxx-TestResampleToImage >> 1> 334/774 Test #334: vtkFiltersCoreCxx-TestResampleToImage >> ........................................***Exception: Other 0.01 sec >> 1> Start 335: vtkFiltersCoreCxx-TestResampleWithDataSet >> 1> 335/774 Test #335: vtkFiltersCoreCxx-TestResampleWithDataSet >> ....................................***Exception: Other 0.01 sec >> 1> Start 336: vtkFiltersCoreCxx-TestSmoothPolyDataFilter >> 1> 336/774 Test #336: vtkFiltersCoreCxx-TestSmoothPolyDataFilter >> ...................................***Exception: Other 0.01 sec >> 1> Start 337: vtkFiltersCoreCxx-TestSMPPipelineContour >> 1> 337/774 Test #337: vtkFiltersCoreCxx-TestSMPPipelineContour >> .....................................***Exception: Other 0.01 sec >> 1> Start 338: vtkFiltersCoreCxx-TestStripper >> 1> 338/774 Test #338: vtkFiltersCoreCxx-TestStripper >> ...............................................***Exception: Other 0.01 >> sec >> 1> Start 339: vtkFiltersCoreCxx-TestStructuredGridAppend >> 1> 339/774 Test #339: vtkFiltersCoreCxx-TestStructuredGridAppend >> ...................................***Exception: Other 0.01 sec >> 1> Start 340: vtkFiltersCoreCxx-TestThreshold >> 1> 340/774 Test #340: vtkFiltersCoreCxx-TestThreshold >> ..............................................***Exception: Other 0.01 >> sec >> 1> Start 341: vtkFiltersCoreCxx-TestThresholdPoints >> 1> 341/774 Test #341: vtkFiltersCoreCxx-TestThresholdPoints >> ........................................***Exception: Other 0.01 sec >> 1> Start 342: vtkFiltersCoreCxx-TestTransposeTable >> 1> 342/774 Test #342: vtkFiltersCoreCxx-TestTransposeTable >> .........................................***Exception: Other 0.01 sec >> 1> Start 343: vtkFiltersCoreCxx-TestTubeFilter >> 1> 343/774 Test #343: vtkFiltersCoreCxx-TestTubeFilter >> .............................................***Exception: Other 0.01 sec >> 1> Start 344: vtkFiltersCoreCxx-TestUnstruct >> uredGridQuadricDecimation >> 1> 344/774 Test #344: vtkFiltersCoreCxx-TestUnstructuredGridQuadricDecimation >> ......................***Exception: Other 0.01 sec >> 1> Start 345: vtkFiltersCoreCxx-UnitTestMaskPoints >> 1> 345/774 Test #345: vtkFiltersCoreCxx-UnitTestMaskPoints >> .........................................***Exception: Other 0.01 sec >> 1> Start 346: vtkFiltersCoreCxx-UnitTestMergeFilter >> 1> 346/774 Test #346: vtkFiltersCoreCxx-UnitTestMergeFilter >> ........................................***Exception: Other 0.01 sec >> 1> Start 347: vtkRenderingLabel-HeaderTest >> 1> 347/774 Test #347: vtkRenderingLabel-HeaderTest >> ................................................. Passed 0.20 sec >> 1> Start 348: vtkFiltersGenericCxx-TestGenericStreamTracer >> 1> 348/774 Test #348: vtkFiltersGenericCxx-TestGenericStreamTracer >> .................................***Exception: Other 0.01 sec >> 1> Start 349: vtkFiltersGenericCxx-TestGenericClip >> 1> 349/774 Test #349: vtkFiltersGenericCxx-TestGenericClip >> .........................................***Exception: Other 0.01 sec >> 1> Start 350: vtkFiltersGenericCxx-TestGenericContourFilter >> 1> 350/774 Test #350: vtkFiltersGenericCxx-TestGenericContourFilter >> ................................***Exception: Other 0.01 sec >> 1> Start 351: vtkFiltersGenericCxx-TestGenericCutter >> 1> 351/774 Test #351: vtkFiltersGenericCxx-TestGenericCutter >> .......................................***Exception: Other 0.01 sec >> 1> Start 352: vtkFiltersGenericCxx-TestGenericDataSetTessellator >> 1> 352/774 Test #352: vtkFiltersGenericCxx-TestGenericDataSetTessellator >> ...........................***Exception: Other 0.01 sec >> 1> Start 353: vtkFiltersGenericCxx-TestGenericGeometryFilter >> 1> 353/774 Test #353: vtkFiltersGenericCxx-TestGenericGeometryFilter >> ...............................***Exception: Other 0.01 sec >> 1> Start 354: vtkFiltersGenericCxx-TestGenericGlyph3DFilter >> 1> 354/774 Test #354: vtkFiltersGenericCxx-TestGenericGlyph3DFilter >> ................................***Exception: Other 0.01 sec >> 1> Start 355: vtkFiltersGenericCxx-TestGenericProbeFilter >> 1> 355/774 Test #355: vtkFiltersGenericCxx-TestGenericProbeFilter >> ..................................***Exception: Other 0.01 sec >> 1> Start 356: vtkFiltersGenericCxx-otherCreation >> 1> 356/774 Test #356: vtkFiltersGenericCxx-otherCreation >> ...........................................***Exception: Other 0.01 sec >> 1> Start 357: vtkFiltersGenericCxx-UnitTestGenericGeometryFilter >> 1> 357/774 Test #357: vtkFiltersGenericCxx-UnitTestGenericGeometryFilter >> ...........................***Exception: Other 0.01 sec >> 1> Start 358: vtkFiltersGeometryCxx-TestExtr >> actSurfaceNonLinearSubdivision >> 1> 358/774 Test #358: vtkFiltersGeometryCxx-TestExtractSurfaceNonLinearSubdivision >> .................***Exception: Other 0.01 sec >> 1> Start 359: vtkFiltersGeometryCxx-TestDataSetSurfaceFieldData >> 1> 359/774 Test #359: vtkFiltersGeometryCxx-TestDataSetSurfaceFieldData >> ............................***Exception: Other 0.01 sec >> 1> Start 360: vtkFiltersGeometryCxx-TestData >> SetRegionSurfaceFilter >> 1> 360/774 Test #360: vtkFiltersGeometryCxx-TestDataSetRegionSurfaceFilter >> .........................***Exception: Other 0.01 sec >> 1> Start 361: vtkFiltersGeometryCxx-TestImageDataToUniformGrid >> 1> 361/774 Test #361: vtkFiltersGeometryCxx-TestImageDataToUniformGrid >> .............................***Exception: Other 0.01 sec >> 1> Start 362: vtkFiltersGeometryCxx-TestLine >> arToQuadraticCellsFilter >> 1> 362/774 Test #362: vtkFiltersGeometryCxx-TestLinearToQuadraticCellsFilter >> .......................***Exception: Other 0.01 sec >> 1> Start 363: vtkFiltersGeometryCxx-TestProjectSphereFilter >> 1> 363/774 Test #363: vtkFiltersGeometryCxx-TestProjectSphereFilter >> ................................***Exception: Other 0.01 sec >> 1> Start 364: vtkFiltersGeometryCxx-TestStructuredAMRNeighbor >> 1> 364/774 Test #364: vtkFiltersGeometryCxx-TestStructuredAMRNeighbor >> ..............................***Exception: Other 0.01 sec >> 1> Start 365: vtkFiltersGeometryCxx-TestUnif >> ormGridGhostDataGenerator >> 1> 365/774 Test #365: vtkFiltersGeometryCxx-TestUniformGridGhostDataGenerator >> ......................***Exception: Other 0.01 sec >> 1> Start 366: vtkFiltersGeometryCxx-TestUnst >> ructuredGridGeometryFilter >> 1> 366/774 Test #366: vtkFiltersGeometryCxx-TestUnstructuredGridGeometryFilter >> .....................***Exception: Other 0.01 sec >> 1> Start 367: vtkFiltersGeometryCxx-TestGeometryFilterCellData >> 1> 367/774 Test #367: vtkFiltersGeometryCxx-TestGeometryFilterCellData >> .............................***Exception: Other 0.01 sec >> 1> Start 368: vtkFiltersGeometryCxx-TestStru >> cturedAMRGridConnectivity >> 1> 368/774 Test #368: vtkFiltersGeometryCxx-TestStructuredAMRGridConnectivity >> ......................***Exception: Other 0.01 sec >> 1> Start 369: vtkFiltersGeometryCxx-TestStru >> cturedGridConnectivity >> 1> 369/774 Test #369: vtkFiltersGeometryCxx-TestStructuredGridConnectivity >> .........................***Exception: Other 0.01 sec >> 1> Start 370: vtkFiltersGeometryCxx-TestStru >> cturedGridGhostDataGenerator >> 1> 370/774 Test #370: vtkFiltersGeometryCxx-TestStructuredGridGhostDataGenerator >> ...................***Exception: Other 0.01 sec >> 1> Start 371: vtkFiltersGeometryCxx-UnitTestDataSetSurfaceFilter >> 1> 371/774 Test #371: vtkFiltersGeometryCxx-UnitTestDataSetSurfaceFilter >> ...........................***Exception: Other 0.01 sec >> 1> Start 372: vtkImagingStencil-HeaderTest >> 1> 372/774 Test #372: vtkImagingStencil-HeaderTest >> ................................................. Passed 0.12 sec >> 1> Start 373: vtkFiltersHybridCxx-TemporalStatistics >> 1> 373/774 Test #373: vtkFiltersHybridCxx-TemporalStatistics >> .......................................***Exception: Other 0.01 sec >> 1> Start 374: vtkFiltersHybridCxx-TestBSplineTransform >> 1> 374/774 Test #374: vtkFiltersHybridCxx-TestBSplineTransform >> .....................................***Exception: Other 0.01 sec >> 1> Start 375: vtkFiltersHybridCxx-TestDepthSortPolyData >> 1> 375/774 Test #375: vtkFiltersHybridCxx-TestDepthSortPolyData >> ....................................***Exception: Other 0.01 sec >> 1> Start 376: vtkFiltersHybridCxx-TestForceTime >> 1> 376/774 Test #376: vtkFiltersHybridCxx-TestForceTime >> ............................................***Exception: Other 0.01 sec >> 1> Start 377: vtkFiltersHybridCxx-TestPolyDataSilhouette >> 1> 377/774 Test #377: vtkFiltersHybridCxx-TestPolyDataSilhouette >> ...................................***Exception: Other 0.01 sec >> 1> Start 378: vtkFiltersHybridCxx-TestProcrustesAlignmentFilter >> 1> 378/774 Test #378: vtkFiltersHybridCxx-TestProcrustesAlignmentFilter >> ............................***Exception: Other 0.01 sec >> 1> Start 379: vtkFiltersHybridCxx-TestTemporalCacheSimple >> 1> 379/774 Test #379: vtkFiltersHybridCxx-TestTemporalCacheSimple >> ..................................***Exception: Other 0.01 sec >> 1> Start 380: vtkFiltersHybridCxx-TestTemporalCacheTemporal >> 1> 380/774 Test #380: vtkFiltersHybridCxx-TestTemporalCacheTemporal >> ................................***Exception: Other 0.01 sec >> 1> Start 381: vtkFiltersHybridCxx-TestTemporalFractal >> 1> 381/774 Test #381: vtkFiltersHybridCxx-TestTemporalFractal >> ......................................***Exception: Other 0.01 sec >> 1> Start 382: vtkFiltersImaging-HeaderTest >> 1> 382/774 Test #382: vtkFiltersImaging-HeaderTest >> ................................................. Passed 0.12 sec >> 1> Start 383: vtkFiltersModelingCxx-TestButterflyScalars >> 1> 383/774 Test #383: vtkFiltersModelingCxx-TestButterflyScalars >> ...................................***Exception: Other 0.01 sec >> 1> Start 384: vtkFiltersModelingCxx-TestNamedColorsIntegration >> 1> 384/774 Test #384: vtkFiltersModelingCxx-TestNamedColorsIntegration >> .............................***Exception: Other 0.01 sec > From dan.lipsa at kitware.com Wed Feb 15 09:24:37 2017 From: dan.lipsa at kitware.com (Dan Lipsa) Date: Wed, 15 Feb 2017 09:24:37 -0500 Subject: [vtkusers] Most VTK 7.1 Tests fail on Windows 7 Sp1 64 (with java) In-Reply-To: References: <9d178962-7985-ef5f-bca8-3bc68593bdb3@gmx.de> Message-ID: Jens, I am not a Java specialist but it seems that those vtkXXXJava.dll do not exist. We you able to build VTK without errors? Are those dlls there? Maybe a Java expert can chime in. Thanks, Dan On Wed, Feb 15, 2017 at 5:35 AM, Jens Schmidt wrote: > Dan, > thx for the quick answer. Please find below the output of your command > (read through!): > > === OUTPUT for ctest -N -V -R vtkChartsCoreCxx-TestContextScene === > 1>------ Build started: Project: RUN_TESTS, Configuration: Release x64 > ------ > 1> UpdateCTestConfiguration from :C:/data/src-build/VTK-MASTER/ > DartConfiguration.tcl > 1> Parse Config file:C:/data/src-build/VTK-MASTER/DartConfiguration.tcl > 1> Add coverage exclude regular expressions. > 1> Add coverage exclude: vtk.*TCLInit.cxx > 1> Add coverage exclude: vtk[^\.]+(Java|Python|Tcl).cxx > 1> Add coverage exclude: .*vtkOpenGLState.* > 1> Add coverage exclude: .*Testing.Cxx.*cxx > 1> Add coverage exclude: .*Testing.Cxx.*h > 1> Add coverage exclude: .*moc_.*cxx > 1> Add coverage exclude: .*/Rendering/OpenGL/vtkgl.* > 1> Add coverage exclude: .*/Utilities/.* > 1> Add coverage exclude: .*/ThirdParty/.* > 1> Add coverage exclude: .*vtkOpenGLPolyDataMapper.* > 1> SetCTestConfiguration:CMakeCommand:C:/Program Files > (x86)/CMake/bin/cmake.exe > 1> UpdateCTestConfiguration from :C:/data/src-build/VTK-MASTER/ > DartConfiguration.tcl > 1> Parse Config file:C:/data/src-build/VTK-MASTER/DartConfiguration.tcl > 1> Test project C:/data/src-build/VTK-MASTER > 1> Constructing a list of tests > 1> Done constructing a list of tests > 1> > 1> 45: Test command: NOT_AVAILABLE > 1> Test #45: vtkChartsCoreCxx-TestContextScene > 1> > 1> Total Tests: 1 > === OUTPUT END === > > > So this didn't print an executable command. I tried again with > JavaGCRegression: > > > === OUTPUT for ctest -N -V -R JavaGCRegression === > 1>------ Build started: Project: RUN_TESTS, Configuration: Release x64 > ------ > 1> UpdateCTestConfiguration from :C:/data/src-build/VTK-MASTER/ > DartConfiguration.tcl > 1> Parse Config file:C:/data/src-build/VTK-MASTER/DartConfiguration.tcl > 1> Add coverage exclude regular expressions. > 1> Add coverage exclude: vtk.*TCLInit.cxx > 1> Add coverage exclude: vtk[^\.]+(Java|Python|Tcl).cxx > 1> Add coverage exclude: .*vtkOpenGLState.* > 1> Add coverage exclude: .*Testing.Cxx.*cxx > 1> Add coverage exclude: .*Testing.Cxx.*h > 1> Add coverage exclude: .*moc_.*cxx > 1> Add coverage exclude: .*/Rendering/OpenGL/vtkgl.* > 1> Add coverage exclude: .*/Utilities/.* > 1> Add coverage exclude: .*/ThirdParty/.* > 1> Add coverage exclude: .*vtkOpenGLPolyDataMapper.* > 1> SetCTestConfiguration:CMakeCommand:C:/Program Files > (x86)/CMake/bin/cmake.exe > 1> UpdateCTestConfiguration from :C:/data/src-build/VTK-MASTER/ > DartConfiguration.tcl > 1> Parse Config file:C:/data/src-build/VTK-MASTER/DartConfiguration.tcl > 1> Test project C:/data/src-build/VTK-MASTER > 1> Constructing a list of tests > 1> Done constructing a list of tests > 1> > 1> 745: Test command: "C:\Program Files\Java\jdk1.8.0_121\bin\java.exe" > "-classpath" "C:/data/src-build/VTK-MASTER/bin/vtk.jar;C:/data/src-build/VTK-MASTER/Wrapping/Java" > "vtk.test.ConcurrencyGC" "-T" "C:/data/src-build/VTK-MASTER/ > Testing/Temporary" > 1> Test #745: JavaGCRegression > 1> > 1> Total Tests: 1 > === OUTPUT END === > > > This yielded a command. Try running it gives a rather long errlor list, > mostly about UnsatisfiedLinkErrors (see below, no further text). > I added tbb dlls and visual studio runtime dlls to the directory > (C:/data/src-build/VTK-MASTER/bin\Release) but that did not change a > thing. > > Cheer Jens > > > === OUTPUT START === > 1>------ Build started: Project: RUN_TESTS, Configuration: Release x64 > ------ > 1> Try to load: vtkCommonCoreJava > 1> File does not exist: vtkCommonCoreJava > 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkCommonCoreJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkCommonCoreJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkCommonCoreJava.dll > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkCommonCoreJava.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkCommonCoreJava.dll: Can't find dependent libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkCommonCoreJava.dll > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkCommonCoreJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkCommonMathJava > 1> File does not exist: vtkCommonMathJava > 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkCommonMathJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkCommonMathJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkCommonMathJava.dll > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkCommonMathJava.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkCommonMathJava.dll: Can't find dependent libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkCommonMathJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkCommonMathJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkCommonMiscJava > 1> File does not exist: vtkCommonMiscJava > 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkCommonMiscJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkCommonMiscJava.dll > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkCommonMiscJava.dll > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkCommonMiscJava.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkCommonMiscJava.dll: Can't find dependent libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkCommonMiscJava.dll > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkCommonMiscJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkCommonSystemJava > 1> File does not exist: vtkCommonSystemJava > 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkCommonSystemJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkCommonSystemJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkCommonSystemJava.dll > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkCommonSystemJava.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkCommonSystemJava.dll: Can't find dependent libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkCommonSystemJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkCommonSystemJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkCommonTransformsJava > 1> File does not exist: vtkCommonTransformsJava > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\vtkCommonTransformsJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkCommonTransformsJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkCommonTransformsJava.dll > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkCommonTransformsJava.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkCommonTransformsJava.dll: Can't find dependent libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkCommonTransformsJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkCommonTransformsJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkCommonDataModelJava > 1> File does not exist: vtkCommonDataModelJava > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\vtkCommonDataModelJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkCommonDataModelJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkCommonDataModelJava.dll > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkCommonDataModelJava.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkCommonDataModelJava.dll: Can't find dependent libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkCommonDataModelJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkCommonDataModelJava.dll > 1> Problem loading appropriate library > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> Try to load: vtkCommonColorJava > 1> File does not exist: vtkCommonColorJava > 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkCommonColorJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkCommonColorJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkCommonColorJava.dll > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkCommonColorJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkCommonColorJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkCommonColorJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkCommonExecutionModelJava > 1> File does not exist: vtkCommonExecutionModelJava > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\vtkCommonExecutionModelJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkCommonExecutionModelJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkCommonExecutionModelJava.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkCommonColorJava.dll: Can't find dependent libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkCommonExecutionModelJava.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkCommonExecutionModelJava.dll: Can't find dependent libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkCommonExecutionModelJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkCommonExecutionModelJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkCommonComputationalGeometryJava > 1> File does not exist: vtkCommonComputationalGeometryJava > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\vtkCommonComputationalGeometryJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkCommonComputationalGeometryJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkCommonComputationalGeometryJava.dll > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkCommonComputationalGeometryJava.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkCommonComputationalGeometryJava.dll: Can't find dependent > libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkCommonComputationalGeometryJava.dll > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkCommonComputationalGeometryJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkFiltersCoreJava > 1> File does not exist: vtkFiltersCoreJava > 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkFiltersCoreJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkFiltersCoreJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkFiltersCoreJava.dll > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkFiltersCoreJava.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkFiltersCoreJava.dll: Can't find dependent libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkFiltersCoreJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkFiltersCoreJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkFiltersGeneralJava > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> File does not exist: vtkFiltersGeneralJava > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\vtkFiltersGeneralJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkFiltersGeneralJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkFiltersGeneralJava.dll > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkFiltersGeneralJava.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkFiltersGeneralJava.dll: Can't find dependent libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkFiltersGeneralJava.dll > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkFiltersGeneralJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkImagingCoreJava > 1> File does not exist: vtkImagingCoreJava > 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkImagingCoreJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkImagingCoreJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkImagingCoreJava.dll > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkImagingCoreJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkImagingCoreJava.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkImagingCoreJava.dll: Can't find dependent libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkImagingCoreJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkImagingFourierJava > 1> File does not exist: vtkImagingFourierJava > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\vtkImagingFourierJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkImagingFourierJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkImagingFourierJava.dll > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkImagingFourierJava.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkImagingFourierJava.dll: Can't find dependent libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkImagingFourierJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkImagingFourierJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkFiltersStatisticsJava > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> File does not exist: vtkFiltersStatisticsJava > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\vtkFiltersStatisticsJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkFiltersStatisticsJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkFiltersStatisticsJava.dll > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkFiltersStatisticsJava.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkFiltersStatisticsJava.dll: Can't find dependent libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkFiltersStatisticsJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkFiltersStatisticsJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkFiltersExtractionJava > 1> File does not exist: vtkFiltersExtractionJava > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\vtkFiltersExtractionJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkFiltersExtractionJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkFiltersExtractionJava.dll > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkFiltersExtractionJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkFiltersExtractionJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkFiltersExtractionJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkInfovisCoreJava > 1> File does not exist: vtkInfovisCoreJava > 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkInfovisCoreJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkInfovisCoreJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkInfovisCoreJava.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkFiltersExtractionJava.dll: Can't find dependent libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkInfovisCoreJava.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkInfovisCoreJava.dll: Can't find dependent libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkInfovisCoreJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkInfovisCoreJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkFiltersGeometryJava > 1> File does not exist: vtkFiltersGeometryJava > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\vtkFiltersGeometryJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkFiltersGeometryJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkFiltersGeometryJava.dll > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkFiltersGeometryJava.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkFiltersGeometryJava.dll: Can't find dependent libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkFiltersGeometryJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkFiltersGeometryJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkFiltersSourcesJava > 1> File does not exist: vtkFiltersSourcesJava > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\vtkFiltersSourcesJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkFiltersSourcesJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkFiltersSourcesJava.dll > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkFiltersSourcesJava.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkFiltersSourcesJava.dll: Can't find dependent libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkFiltersSourcesJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkFiltersSourcesJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkRenderingCoreJava > 1> File does not exist: vtkRenderingCoreJava > 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkRenderingCoreJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkRenderingCoreJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkRenderingCoreJava.dll > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkRenderingCoreJava.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkRenderingCoreJava.dll: Can't find dependent libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkRenderingCoreJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkRenderingCoreJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkRenderingFreeTypeJava > 1> File does not exist: vtkRenderingFreeTypeJava > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\vtkRenderingFreeTypeJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkRenderingFreeTypeJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkRenderingFreeTypeJava.dll > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkRenderingFreeTypeJava.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkRenderingFreeTypeJava.dll: Can't find dependent libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkRenderingFreeTypeJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkRenderingFreeTypeJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkRenderingContext2DJava > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> File does not exist: vtkRenderingContext2DJava > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\vtkRenderingContext2DJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkRenderingContext2DJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkRenderingContext2DJava.dll > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkRenderingContext2DJava.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkRenderingContext2DJava.dll: Can't find dependent libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkRenderingContext2DJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkRenderingContext2DJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkChartsCoreJava > 1> File does not exist: vtkChartsCoreJava > 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkChartsCoreJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkChartsCoreJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkChartsCoreJava.dll > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkChartsCoreJava.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkChartsCoreJava.dll: Can't find dependent libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkChartsCoreJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkChartsCoreJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkIOCoreJava > 1> File does not exist: vtkIOCoreJava > 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkIOCoreJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkIOCoreJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkIOCoreJava.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkIOCoreJava.dll: > Can't find dependent libraries > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkIOCoreJava.dll > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkIOCoreJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkIOCoreJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkIOLegacyJava > 1> File does not exist: vtkIOLegacyJava > 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkIOLegacyJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkIOLegacyJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkIOLegacyJava.dll > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkIOLegacyJava.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkIOLegacyJava.dll: Can't find dependent libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkIOLegacyJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkIOLegacyJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkIOXMLParserJava > 1> File does not exist: vtkIOXMLParserJava > 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkIOXMLParserJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkIOXMLParserJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkIOXMLParserJava.dll > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkIOXMLParserJava.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkIOXMLParserJava.dll: Can't find dependent libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkIOXMLParserJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkIOXMLParserJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkIOXMLJava > 1> File does not exist: vtkIOXMLJava > 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkIOXMLJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkIOXMLJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkIOXMLJava.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkIOXMLJava.dll: > Can't find dependent libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkIOXMLJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkIOXMLJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkIOXMLJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkIOInfovisJava > 1> File does not exist: vtkIOInfovisJava > 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkIOInfovisJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkIOInfovisJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkIOInfovisJava.dll > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkIOInfovisJava.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkIOInfovisJava.dll: Can't find dependent libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkIOInfovisJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkIOInfovisJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkIOImageJava > 1> File does not exist: vtkIOImageJava > 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkIOImageJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkIOImageJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkIOImageJava.dll > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkIOImageJava.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkIOImageJava.dll: > Can't find dependent libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkIOImageJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkIOImageJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkRenderingOpenGL2Java > 1> File does not exist: vtkRenderingOpenGL2Java > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\vtkRenderingOpenGL2Java.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkRenderingOpenGL2Java.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkRenderingOpenGL2Java.dll > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkRenderingOpenGL2Java.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkRenderingOpenGL2Java.dll: Can't find dependent libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkRenderingOpenGL2Java.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkRenderingOpenGL2Java.dll > 1> Problem loading appropriate library > 1> Try to load: vtkRenderingContextOpenGL2Java > 1> File does not exist: vtkRenderingContextOpenGL2Java > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\vtkRenderingContextOpenGL2Java.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkRenderingContextOpenGL2Java.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkRenderingContextOpenGL2Java.dll > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkRenderingContextOpenGL2Java.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkRenderingContextOpenGL2Java.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkRenderingContextOpenGL2Java.dll: Can't find dependent > libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkRenderingContextOpenGL2Java.dll > 1> Problem loading appropriate library > 1> Try to load: vtkTestingRenderingJava > 1> File does not exist: vtkTestingRenderingJava > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\vtkTestingRenderingJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkTestingRenderingJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkTestingRenderingJava.dll > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkTestingRenderingJava.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkTestingRenderingJava.dll: Can't find dependent libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkTestingRenderingJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkTestingRenderingJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkImagingSourcesJava > 1> File does not exist: vtkImagingSourcesJava > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\vtkImagingSourcesJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkImagingSourcesJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkImagingSourcesJava.dll > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkImagingSourcesJava.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkImagingSourcesJava.dll: Can't find dependent libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkImagingSourcesJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkImagingSourcesJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkFiltersHybridJava > 1> File does not exist: vtkFiltersHybridJava > 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkFiltersHybridJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkFiltersHybridJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkFiltersHybridJava.dll > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkFiltersHybridJava.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkFiltersHybridJava.dll: Can't find dependent libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkFiltersHybridJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkFiltersHybridJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkFiltersModelingJava > 1> File does not exist: vtkFiltersModelingJava > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\vtkFiltersModelingJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkFiltersModelingJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkFiltersModelingJava.dll > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkFiltersModelingJava.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkFiltersModelingJava.dll: Can't find dependent libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkFiltersModelingJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkFiltersModelingJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkImagingColorJava > 1> File does not exist: vtkImagingColorJava > 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkImagingColorJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkImagingColorJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkImagingColorJava.dll > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkImagingColorJava.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkImagingColorJava.dll: Can't find dependent libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkImagingColorJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkImagingColorJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkImagingGeneralJava > 1> File does not exist: vtkImagingGeneralJava > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\vtkImagingGeneralJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkImagingGeneralJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkImagingGeneralJava.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkImagingGeneralJava.dll: Can't find dependent libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkImagingGeneralJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkImagingGeneralJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkImagingGeneralJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkImagingHybridJava > 1> File does not exist: vtkImagingHybridJava > 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkImagingHybridJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkImagingHybridJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkImagingHybridJava.dll > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkImagingHybridJava.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkImagingHybridJava.dll: Can't find dependent libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkImagingHybridJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkImagingHybridJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkInteractionStyleJava > 1> File does not exist: vtkInteractionStyleJava > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\vtkInteractionStyleJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkInteractionStyleJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkInteractionStyleJava.dll > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkInteractionStyleJava.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkInteractionStyleJava.dll: Can't find dependent libraries > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkInteractionStyleJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkInteractionStyleJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkRenderingAnnotationJava > 1> File does not exist: vtkRenderingAnnotationJava > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\vtkRenderingAnnotationJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkRenderingAnnotationJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkRenderingAnnotationJava.dll > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkRenderingAnnotationJava.dll: Can't find dependent libraries > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkRenderingAnnotationJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkRenderingAnnotationJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkRenderingAnnotationJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkRenderingVolumeJava > 1> File does not exist: vtkRenderingVolumeJava > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\vtkRenderingVolumeJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkRenderingVolumeJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkRenderingVolumeJava.dll > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkRenderingVolumeJava.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkRenderingVolumeJava.dll: Can't find dependent libraries > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkRenderingVolumeJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkRenderingVolumeJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkInteractionWidgetsJava > 1> File does not exist: vtkInteractionWidgetsJava > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\vtkInteractionWidgetsJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkInteractionWidgetsJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkInteractionWidgetsJava.dll > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkInteractionWidgetsJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkInteractionWidgetsJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkInteractionWidgetsJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkViewsCoreJava > 1> File does not exist: vtkViewsCoreJava > 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkViewsCoreJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkViewsCoreJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkViewsCoreJava.dll > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkViewsCoreJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkViewsCoreJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkViewsCoreJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkViewsContext2DJava > 1> File does not exist: vtkViewsContext2DJava > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\vtkViewsContext2DJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkViewsContext2DJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkViewsContext2DJava.dll > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkInteractionWidgetsJava.dll: Can't find dependent libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkViewsCoreJava.dll: Can't find dependent libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkViewsContext2DJava.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkViewsContext2DJava.dll: Can't find dependent libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkViewsContext2DJava.dll > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkViewsContext2DJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkFiltersGenericJava > 1> File does not exist: vtkFiltersGenericJava > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\vtkFiltersGenericJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkFiltersGenericJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkFiltersGenericJava.dll > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkFiltersGenericJava.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkFiltersGenericJava.dll: Can't find dependent libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkFiltersGenericJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkFiltersGenericJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkIOGeometryJava > 1> File does not exist: vtkIOGeometryJava > 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkIOGeometryJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkIOGeometryJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkIOGeometryJava.dll > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkIOGeometryJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkIOGeometryJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkIOGeometryJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkRenderingLabelJava > 1> File does not exist: vtkRenderingLabelJava > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\vtkRenderingLabelJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkRenderingLabelJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkRenderingLabelJava.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkIOGeometryJava.dll: Can't find dependent libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkRenderingLabelJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkRenderingLabelJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkRenderingLabelJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkImagingStencilJava > 1> File does not exist: vtkImagingStencilJava > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\vtkImagingStencilJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkImagingStencilJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkImagingStencilJava.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkRenderingLabelJava.dll: Can't find dependent libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkImagingStencilJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkImagingStencilJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkImagingStencilJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkFiltersImagingJava > 1> File does not exist: vtkFiltersImagingJava > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\vtkFiltersImagingJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkFiltersImagingJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkFiltersImagingJava.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkImagingStencilJava.dll: Can't find dependent libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkFiltersImagingJava.dll: Can't find dependent libraries > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkFiltersImagingJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkFiltersImagingJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkFiltersImagingJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkParallelCoreJava > 1> File does not exist: vtkParallelCoreJava > 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkParallelCoreJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkParallelCoreJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkParallelCoreJava.dll > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkParallelCoreJava.dll: Can't find dependent libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkParallelCoreJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkParallelCoreJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkParallelCoreJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkFiltersParallelJava > 1> File does not exist: vtkFiltersParallelJava > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\vtkFiltersParallelJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkFiltersParallelJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkFiltersParallelJava.dll > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkFiltersParallelJava.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkFiltersParallelJava.dll: Can't find dependent libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkFiltersParallelJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkFiltersParallelJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkParallelMPIJava > 1> File does not exist: vtkParallelMPIJava > 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkParallelMPIJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkParallelMPIJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkParallelMPIJava.dll > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkParallelMPIJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkParallelMPIJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkParallelMPIJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkFiltersParallelGeometryJava > 1> File does not exist: vtkFiltersParallelGeometryJava > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\vtkFiltersParallelGeometryJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkFiltersParallelGeometryJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkFiltersParallelGeometryJava.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkParallelMPIJava.dll: Can't find dependent libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkFiltersParallelGeometryJava.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkFiltersParallelGeometryJava.dll: Can't find dependent > libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkFiltersParallelGeometryJava.dll > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkFiltersParallelGeometryJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkIONetCDFJava > 1> File does not exist: vtkIONetCDFJava > 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkIONetCDFJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkIONetCDFJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkIONetCDFJava.dll > 1> Failed to load: C:/data/src-build/VTK-MASTER/b > in\Release\vtkIONetCDFJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkIONetCDFJava.dll > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\Debug\vtkIONetCDFJava.dll > 1> Problem loading appropriate library > 1> Try to load: vtkIOParallelJava > 1> File does not exist: vtkIOParallelJava > 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkIOParallelJava.dll > 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b > in\Release\vtkIONetCDFJava.dll: Can't find dependent libraries > 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) > 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) > 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) > 1> at java.lang.Runtime.load0(Runtime.java:809) > 1> at java.lang.Runtime.load(Runtime.java:797) > 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) > 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) > 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) > 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) > 1> File does not exist: C:/data/src-build/VTK-MASTER/b > in\vtkIOParallelJava.dll > 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtk... > > [Message clipped] -------------- next part -------------- An HTML attachment was scrubbed... URL: From zmanvortex at gmail.com Wed Feb 15 10:03:58 2017 From: zmanvortex at gmail.com (zmantorn) Date: Wed, 15 Feb 2017 08:03:58 -0700 (MST) Subject: [vtkusers] vtkGPUVolumeRayCastMapper: Updateing ImageData after first Rendering? In-Reply-To: <1487085319680-5742181.post@n5.nabble.com> References: <1486972453592-5742153.post@n5.nabble.com> <1487085319680-5742181.post@n5.nabble.com> Message-ID: <1487171038576-5742191.post@n5.nabble.com> I have a large .NET multi document interface project that utilizes many "document windows" embedded in the main application. Each of these document windows has a .NET windows forms panel object and utilizes VTK through C++/CLI. I am not using a .NET picturebox object but rather a .NET windows forms panel object. I pass the handle pointer for the panel object as the parentid to the VTK renderwindow object. I also create VTK observers for all of the interaction (left mouse down/up, mouse move, etc..) in each panel and do custom interaction by subclassing a VTK user interactor ( I forget the name of the VTK user interactor). This works flawlessly and I do not get flicker. As I activate each "document" window by clicking in it or on the title bar the interaction works just for the activated document. The rendering speed is also very good considering I am using .NET functionality with VTK. -- View this message in context: http://vtk.1045678.n5.nabble.com/vtkGPUVolumeRayCastMapper-Updateing-ImageData-after-first-Rendering-tp5742153p5742191.html Sent from the VTK - Users mailing list archive at Nabble.com. From Wiggerl at Linhuber.info Wed Feb 15 10:40:03 2017 From: Wiggerl at Linhuber.info (Willy) Date: Wed, 15 Feb 2017 08:40:03 -0700 (MST) Subject: [vtkusers] vtkGPUVolumeRayCastMapper: Updateing ImageData after first Rendering? In-Reply-To: <1487171038576-5742191.post@n5.nabble.com> References: <1486972453592-5742153.post@n5.nabble.com> <1487085319680-5742181.post@n5.nabble.com> <1487171038576-5742191.post@n5.nabble.com> Message-ID: <1487173203410-5742192.post@n5.nabble.com> That sounds like a good solution, i will try the same. Thanks for that hint. The start-Method of the interactor would block your GUI. Do you start it in a Thread? -- View this message in context: http://vtk.1045678.n5.nabble.com/vtkGPUVolumeRayCastMapper-Updateing-ImageData-after-first-Rendering-tp5742153p5742192.html Sent from the VTK - Users mailing list archive at Nabble.com. From jens.g.w.schmidt at gmx.de Wed Feb 15 10:52:59 2017 From: jens.g.w.schmidt at gmx.de (Jens Schmidt) Date: Wed, 15 Feb 2017 16:52:59 +0100 Subject: [vtkusers] Most VTK 7.1 Tests fail on Windows 7 Sp1 64 (with java) In-Reply-To: References: <9d178962-7985-ef5f-bca8-3bc68593bdb3@gmx.de> Message-ID: Dan, yes that was my first guess too, thats why i copied the tbb and runtime dlls in the first place. The vtkXXXJava.dlls do exist in that folder (see dirlisting at the end). Yes i was able to build without errors. VTK seems to work except the rendering examples for java (swt, awt). Hence why i ran the testsuite and discovered the failing tests. Thank you for looking into the matter. Dear Mr. Javaexpert, please chime in ;-) Cheers Jens === OUTPUT of 'dir' in the Release Folder (without tbb and runtime) === vtkalglib.dll vtkChartsCore.dll vtkChartsCoreCxxTests.exe vtkChartsCoreJava.dll vtkCommonColor.dll vtkCommonColorCxxTests.exe vtkCommonColorJava.dll vtkCommonComputationalGeometry.dll vtkCommonComputationalGeometryCxxTests.exe vtkCommonComputationalGeometryJava.dll vtkCommonCore.dll vtkCommonCoreCxxTests.exe vtkCommonCoreJava.dll vtkCommonDataModel.dll vtkCommonDataModelCxxTests.exe vtkCommonDataModelJava.dll vtkCommonExecutionModel.dll vtkCommonExecutionModelCxxTests.exe vtkCommonExecutionModelJava.dll vtkCommonMath.dll vtkCommonMathCxxTests.exe vtkCommonMathJava.dll vtkCommonMisc.dll vtkCommonMiscCxxTests.exe vtkCommonMiscJava.dll vtkCommonSystem.dll vtkCommonSystemCxxTests.exe vtkCommonSystemJava.dll vtkCommonTransforms.dll vtkCommonTransformsCxxTests.exe vtkCommonTransformsJava.dll vtkDICOMParser.dll vtkEncodeString.exe vtkexoIIc.dll vtkexpat.dll vtkFiltersCore.dll vtkFiltersCoreJava.dll vtkFiltersExtraction.dll vtkFiltersExtractionJava.dll vtkFiltersGeneral.dll vtkFiltersGeneralJava.dll vtkFiltersGeneric.dll vtkFiltersGenericCxxTests.exe vtkFiltersGenericJava.dll vtkFiltersGeometry.dll vtkFiltersGeometryCxxTests.exe vtkFiltersGeometryJava.dll vtkFiltersHybrid.dll vtkFiltersHybridCxxTests.exe vtkFiltersHybridJava.dll vtkFiltersImaging.dll vtkFiltersImagingJava.dll vtkFiltersModeling.dll vtkFiltersModelingCxxTests.exe vtkFiltersModelingJava.dll vtkFiltersParallel.dll vtkFiltersParallelGeometry.dll vtkFiltersParallelGeometryCxxTests-MPI.exe vtkFiltersParallelGeometryJava.dll vtkFiltersParallelImaging.dll vtkFiltersParallelImagingJava.dll vtkFiltersParallelJava.dll vtkFiltersParallelMPI.dll vtkFiltersParallelMPICxxTests-MPI.exe vtkFiltersParallelMPIJava.dll vtkFiltersPoints.dll vtkFiltersPointsCxxTests.exe vtkFiltersPointsJava.dll vtkFiltersSelection.dll vtkFiltersSelectionCxxTests.exe vtkFiltersSelectionJava.dll vtkFiltersSMP.dll vtkFiltersSMPCxxTests.exe vtkFiltersSMPJava.dll vtkFiltersSources.dll vtkFiltersSourcesCxxTests.exe vtkFiltersSourcesJava.dll vtkFiltersStatistics.dll vtkFiltersStatisticsCxxTests.exe vtkFiltersStatisticsJava.dll vtkFiltersTexture.dll vtkFiltersTextureJava.dll vtkFiltersVerdict.dll vtkFiltersVerdictCxxTests.exe vtkFiltersVerdictJava.dll vtkfreetype.dll vtkGeovisCore.dll vtkGeovisCoreCxxTests.exe vtkGeovisCoreJava.dll vtkgl2ps.dll vtkglew.dll vtkH5detect.exe vtkH5make_libsettings.exe vtkHashSource.exe vtkhdf5.dll vtkhdf5_hl.dll vtkImagingColor.dll vtkImagingColorJava.dll vtkImagingCore.dll vtkImagingCoreCxxTests.exe vtkImagingCoreJava.dll vtkImagingFourier.dll vtkImagingFourierJava.dll vtkImagingGeneral.dll vtkImagingGeneralJava.dll vtkImagingHybrid.dll vtkImagingHybridCxxTests.exe vtkImagingHybridJava.dll vtkImagingMath.dll vtkImagingMathJava.dll vtkImagingMorphological.dll vtkImagingMorphologicalCxxTests.exe vtkImagingMorphologicalJava.dll vtkImagingOpenGL2.dll vtkImagingOpenGL2CxxTests.exe vtkImagingOpenGL2Java.dll vtkImagingSources.dll vtkImagingSourcesJava.dll vtkImagingStatistics.dll vtkImagingStatisticsJava.dll vtkImagingStencil.dll vtkImagingStencilJava.dll vtkInfovisCore.dll vtkInfovisCoreCxxTests.exe vtkInfovisCoreJava.dll vtkInfovisLayout.dll vtkInfovisLayoutCxxTests.exe vtkInfovisLayoutJava.dll vtkInteractionImage.dll vtkInteractionImageJava.dll vtkInteractionStyle.dll vtkInteractionStyleJava.dll vtkInteractionWidgets.dll vtkInteractionWidgetsJava.dll vtkIOCore.dll vtkIOCoreCxxTests.exe vtkIOCoreJava.dll vtkIOExport.dll vtkIOExportCxxTests.exe vtkIOExportJava.dll vtkIOExportOpenGL2.dll vtkIOExportOpenGL2Java.dll vtkIOGeometry.dll vtkIOGeometryJava.dll vtkIOImage.dll vtkIOImageCxxTests.exe vtkIOImageJava.dll vtkIOImport.dll vtkIOImportCxxTests.exe vtkIOImportJava.dll vtkIOInfovis.dll vtkIOInfovisCxxTests.exe vtkIOInfovisJava.dll vtkIOLegacy.dll vtkIOLegacyJava.dll vtkIOMovie.dll vtkIOMovieCxxTests.exe vtkIOMovieJava.dll vtkIONetCDF.dll vtkIONetCDFJava.dll vtkIOParallel.dll vtkIOParallelCxxTests.exe vtkIOParallelJava.dll vtkIOParallelXML.dll vtkIOParallelXMLJava.dll vtkIOPLY.dll vtkIOPLYCxxTests.exe vtkIOPLYJava.dll vtkIOVideo.dll vtkIOVideoJava.dll vtkIOXML.dll vtkIOXMLJava.dll vtkIOXMLParser.dll vtkIOXMLParserJava.dll VTKJavaExecutable.exe vtkjpeg.dll vtkjsoncpp.dll vtklibxml2.dll vtklz4.dll vtkmetaio.dll vtkNetCDF.dll vtkNetCDF_cxx.dll vtkoggtheora.dll vtkParallelCore-TestSocketCommunicator.exe vtkParallelCore.dll vtkParallelCoreCxxTests.exe vtkParallelCoreJava.dll vtkParallelMPI.dll vtkParallelMPICxxTests-MPI.exe vtkParallelMPIJava.dll vtkParseJava.exe vtkpng.dll vtkproj4.dll vtkRenderingAnnotation.dll vtkRenderingAnnotationCxxTests.exe vtkRenderingAnnotationJava.dll vtkRenderingContext2D.dll vtkRenderingContext2DCxxTests.exe vtkRenderingContext2DJava.dll vtkRenderingContextOpenGL2.dll vtkRenderingContextOpenGL2Java.dll vtkRenderingCore.dll vtkRenderingCoreJava.dll vtkRenderingFreeType.dll vtkRenderingFreeTypeCxxTests.exe vtkRenderingFreeTypeJava.dll vtkRenderingGL2PSOpenGL2.dll vtkRenderingGL2PSOpenGL2CxxTests.exe vtkRenderingGL2PSOpenGL2Java.dll vtkRenderingImage.dll vtkRenderingImageCxxTests.exe vtkRenderingImageJava.dll vtkRenderingLabel.dll vtkRenderingLabelCxxTests.exe vtkRenderingLabelJava.dll vtkRenderingLOD.dll vtkRenderingLODCxxTests.exe vtkRenderingLODJava.dll vtkRenderingOpenGL2.dll vtkRenderingOpenGL2CxxTests.exe vtkRenderingOpenGL2Java.dll vtkRenderingParallel-TestClientServerRendering.exe vtkRenderingParallel.dll vtkRenderingParallelCxxTests-MPI.exe vtkRenderingParallelCxxTests.exe vtkRenderingParallelJava.dll vtkRenderingVolume.dll vtkRenderingVolumeCxxTests.exe vtkRenderingVolumeJava.dll vtkRenderingVolumeOpenGL2.dll vtkRenderingVolumeOpenGL2Java.dll vtksys.dll vtkTestingGenericBridge.dll vtkTestingRendering.dll vtkTestingRenderingJava.dll vtktiff.dll vtkverdict.dll vtkViewsContext2D.dll vtkViewsContext2DJava.dll vtkViewsCore.dll vtkViewsCoreJava.dll vtkViewsGeovis.dll vtkViewsGeovisJava.dll vtkViewsInfovis.dll vtkViewsInfovisJava.dll vtkWrapHierarchy.exe vtkWrapJava.exe vtkWrappingJava.dll vtkWrapPython.exe vtkWrapPythonInit.exe vtkWrapTcl.exe vtkWrapTclInit.exe vtkzlib.dll === OUTPUT END === Am 15.02.2017 um 15:24 schrieb Dan Lipsa: > Jens, > I am not a Java specialist but it seems that those vtkXXXJava.dll do not > exist. We you able to build VTK without errors? Are those dlls there? > Maybe a Java expert can chime in. > > Thanks, > Dan > > > On Wed, Feb 15, 2017 at 5:35 AM, Jens Schmidt > wrote: > >> Dan, >> thx for the quick answer. Please find below the output of your command >> (read through!): >> >> === OUTPUT for ctest -N -V -R vtkChartsCoreCxx-TestContextScene === >> 1>------ Build started: Project: RUN_TESTS, Configuration: Release x64 >> ------ >> 1> UpdateCTestConfiguration from :C:/data/src-build/VTK-MASTER/ >> DartConfiguration.tcl >> 1> Parse Config file:C:/data/src-build/VTK-MASTER/DartConfiguration.tcl >> 1> Add coverage exclude regular expressions. >> 1> Add coverage exclude: vtk.*TCLInit.cxx >> 1> Add coverage exclude: vtk[^\.]+(Java|Python|Tcl).cxx >> 1> Add coverage exclude: .*vtkOpenGLState.* >> 1> Add coverage exclude: .*Testing.Cxx.*cxx >> 1> Add coverage exclude: .*Testing.Cxx.*h >> 1> Add coverage exclude: .*moc_.*cxx >> 1> Add coverage exclude: .*/Rendering/OpenGL/vtkgl.* >> 1> Add coverage exclude: .*/Utilities/.* >> 1> Add coverage exclude: .*/ThirdParty/.* >> 1> Add coverage exclude: .*vtkOpenGLPolyDataMapper.* >> 1> SetCTestConfiguration:CMakeCommand:C:/Program Files >> (x86)/CMake/bin/cmake.exe >> 1> UpdateCTestConfiguration from :C:/data/src-build/VTK-MASTER/ >> DartConfiguration.tcl >> 1> Parse Config file:C:/data/src-build/VTK-MASTER/DartConfiguration.tcl >> 1> Test project C:/data/src-build/VTK-MASTER >> 1> Constructing a list of tests >> 1> Done constructing a list of tests >> 1> >> 1> 45: Test command: NOT_AVAILABLE >> 1> Test #45: vtkChartsCoreCxx-TestContextScene >> 1> >> 1> Total Tests: 1 >> === OUTPUT END === >> >> >> So this didn't print an executable command. I tried again with >> JavaGCRegression: >> >> >> === OUTPUT for ctest -N -V -R JavaGCRegression === >> 1>------ Build started: Project: RUN_TESTS, Configuration: Release x64 >> ------ >> 1> UpdateCTestConfiguration from :C:/data/src-build/VTK-MASTER/ >> DartConfiguration.tcl >> 1> Parse Config file:C:/data/src-build/VTK-MASTER/DartConfiguration.tcl >> 1> Add coverage exclude regular expressions. >> 1> Add coverage exclude: vtk.*TCLInit.cxx >> 1> Add coverage exclude: vtk[^\.]+(Java|Python|Tcl).cxx >> 1> Add coverage exclude: .*vtkOpenGLState.* >> 1> Add coverage exclude: .*Testing.Cxx.*cxx >> 1> Add coverage exclude: .*Testing.Cxx.*h >> 1> Add coverage exclude: .*moc_.*cxx >> 1> Add coverage exclude: .*/Rendering/OpenGL/vtkgl.* >> 1> Add coverage exclude: .*/Utilities/.* >> 1> Add coverage exclude: .*/ThirdParty/.* >> 1> Add coverage exclude: .*vtkOpenGLPolyDataMapper.* >> 1> SetCTestConfiguration:CMakeCommand:C:/Program Files >> (x86)/CMake/bin/cmake.exe >> 1> UpdateCTestConfiguration from :C:/data/src-build/VTK-MASTER/ >> DartConfiguration.tcl >> 1> Parse Config file:C:/data/src-build/VTK-MASTER/DartConfiguration.tcl >> 1> Test project C:/data/src-build/VTK-MASTER >> 1> Constructing a list of tests >> 1> Done constructing a list of tests >> 1> >> 1> 745: Test command: "C:\Program Files\Java\jdk1.8.0_121\bin\java.exe" >> "-classpath" "C:/data/src-build/VTK-MASTER/bin/vtk.jar;C:/data/src-build/VTK-MASTER/Wrapping/Java" >> "vtk.test.ConcurrencyGC" "-T" "C:/data/src-build/VTK-MASTER/ >> Testing/Temporary" >> 1> Test #745: JavaGCRegression >> 1> >> 1> Total Tests: 1 >> === OUTPUT END === >> >> >> This yielded a command. Try running it gives a rather long errlor list, >> mostly about UnsatisfiedLinkErrors (see below, no further text). >> I added tbb dlls and visual studio runtime dlls to the directory >> (C:/data/src-build/VTK-MASTER/bin\Release) but that did not change a >> thing. >> >> Cheer Jens >> >> >> === OUTPUT START === >> 1>------ Build started: Project: RUN_TESTS, Configuration: Release x64 >> ------ >> 1> Try to load: vtkCommonCoreJava >> 1> File does not exist: vtkCommonCoreJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkCommonCoreJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkCommonCoreJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkCommonCoreJava.dll >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkCommonCoreJava.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkCommonCoreJava.dll: Can't find dependent libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkCommonCoreJava.dll >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkCommonCoreJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkCommonMathJava >> 1> File does not exist: vtkCommonMathJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkCommonMathJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkCommonMathJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkCommonMathJava.dll >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkCommonMathJava.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkCommonMathJava.dll: Can't find dependent libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkCommonMathJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkCommonMathJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkCommonMiscJava >> 1> File does not exist: vtkCommonMiscJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkCommonMiscJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkCommonMiscJava.dll >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkCommonMiscJava.dll >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkCommonMiscJava.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkCommonMiscJava.dll: Can't find dependent libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkCommonMiscJava.dll >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkCommonMiscJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkCommonSystemJava >> 1> File does not exist: vtkCommonSystemJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkCommonSystemJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkCommonSystemJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkCommonSystemJava.dll >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkCommonSystemJava.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkCommonSystemJava.dll: Can't find dependent libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkCommonSystemJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkCommonSystemJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkCommonTransformsJava >> 1> File does not exist: vtkCommonTransformsJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\vtkCommonTransformsJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkCommonTransformsJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkCommonTransformsJava.dll >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkCommonTransformsJava.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkCommonTransformsJava.dll: Can't find dependent libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkCommonTransformsJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkCommonTransformsJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkCommonDataModelJava >> 1> File does not exist: vtkCommonDataModelJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\vtkCommonDataModelJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkCommonDataModelJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkCommonDataModelJava.dll >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkCommonDataModelJava.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkCommonDataModelJava.dll: Can't find dependent libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkCommonDataModelJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkCommonDataModelJava.dll >> 1> Problem loading appropriate library >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> Try to load: vtkCommonColorJava >> 1> File does not exist: vtkCommonColorJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkCommonColorJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkCommonColorJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkCommonColorJava.dll >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkCommonColorJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkCommonColorJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkCommonColorJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkCommonExecutionModelJava >> 1> File does not exist: vtkCommonExecutionModelJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\vtkCommonExecutionModelJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkCommonExecutionModelJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkCommonExecutionModelJava.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkCommonColorJava.dll: Can't find dependent libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkCommonExecutionModelJava.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkCommonExecutionModelJava.dll: Can't find dependent libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkCommonExecutionModelJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkCommonExecutionModelJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkCommonComputationalGeometryJava >> 1> File does not exist: vtkCommonComputationalGeometryJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\vtkCommonComputationalGeometryJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkCommonComputationalGeometryJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkCommonComputationalGeometryJava.dll >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkCommonComputationalGeometryJava.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkCommonComputationalGeometryJava.dll: Can't find dependent >> libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkCommonComputationalGeometryJava.dll >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkCommonComputationalGeometryJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkFiltersCoreJava >> 1> File does not exist: vtkFiltersCoreJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkFiltersCoreJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkFiltersCoreJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkFiltersCoreJava.dll >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkFiltersCoreJava.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkFiltersCoreJava.dll: Can't find dependent libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkFiltersCoreJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkFiltersCoreJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkFiltersGeneralJava >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> File does not exist: vtkFiltersGeneralJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\vtkFiltersGeneralJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkFiltersGeneralJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkFiltersGeneralJava.dll >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkFiltersGeneralJava.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkFiltersGeneralJava.dll: Can't find dependent libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkFiltersGeneralJava.dll >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkFiltersGeneralJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkImagingCoreJava >> 1> File does not exist: vtkImagingCoreJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkImagingCoreJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkImagingCoreJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkImagingCoreJava.dll >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkImagingCoreJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkImagingCoreJava.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkImagingCoreJava.dll: Can't find dependent libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkImagingCoreJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkImagingFourierJava >> 1> File does not exist: vtkImagingFourierJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\vtkImagingFourierJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkImagingFourierJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkImagingFourierJava.dll >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkImagingFourierJava.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkImagingFourierJava.dll: Can't find dependent libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkImagingFourierJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkImagingFourierJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkFiltersStatisticsJava >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> File does not exist: vtkFiltersStatisticsJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\vtkFiltersStatisticsJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkFiltersStatisticsJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkFiltersStatisticsJava.dll >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkFiltersStatisticsJava.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkFiltersStatisticsJava.dll: Can't find dependent libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkFiltersStatisticsJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkFiltersStatisticsJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkFiltersExtractionJava >> 1> File does not exist: vtkFiltersExtractionJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\vtkFiltersExtractionJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkFiltersExtractionJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkFiltersExtractionJava.dll >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkFiltersExtractionJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkFiltersExtractionJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkFiltersExtractionJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkInfovisCoreJava >> 1> File does not exist: vtkInfovisCoreJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkInfovisCoreJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkInfovisCoreJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkInfovisCoreJava.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkFiltersExtractionJava.dll: Can't find dependent libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkInfovisCoreJava.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkInfovisCoreJava.dll: Can't find dependent libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkInfovisCoreJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkInfovisCoreJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkFiltersGeometryJava >> 1> File does not exist: vtkFiltersGeometryJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\vtkFiltersGeometryJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkFiltersGeometryJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkFiltersGeometryJava.dll >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkFiltersGeometryJava.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkFiltersGeometryJava.dll: Can't find dependent libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkFiltersGeometryJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkFiltersGeometryJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkFiltersSourcesJava >> 1> File does not exist: vtkFiltersSourcesJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\vtkFiltersSourcesJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkFiltersSourcesJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkFiltersSourcesJava.dll >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkFiltersSourcesJava.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkFiltersSourcesJava.dll: Can't find dependent libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkFiltersSourcesJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkFiltersSourcesJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkRenderingCoreJava >> 1> File does not exist: vtkRenderingCoreJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkRenderingCoreJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkRenderingCoreJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkRenderingCoreJava.dll >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkRenderingCoreJava.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkRenderingCoreJava.dll: Can't find dependent libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkRenderingCoreJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkRenderingCoreJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkRenderingFreeTypeJava >> 1> File does not exist: vtkRenderingFreeTypeJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\vtkRenderingFreeTypeJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkRenderingFreeTypeJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkRenderingFreeTypeJava.dll >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkRenderingFreeTypeJava.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkRenderingFreeTypeJava.dll: Can't find dependent libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkRenderingFreeTypeJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkRenderingFreeTypeJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkRenderingContext2DJava >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> File does not exist: vtkRenderingContext2DJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\vtkRenderingContext2DJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkRenderingContext2DJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkRenderingContext2DJava.dll >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkRenderingContext2DJava.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkRenderingContext2DJava.dll: Can't find dependent libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkRenderingContext2DJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkRenderingContext2DJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkChartsCoreJava >> 1> File does not exist: vtkChartsCoreJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkChartsCoreJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkChartsCoreJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkChartsCoreJava.dll >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkChartsCoreJava.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkChartsCoreJava.dll: Can't find dependent libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkChartsCoreJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkChartsCoreJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkIOCoreJava >> 1> File does not exist: vtkIOCoreJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkIOCoreJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkIOCoreJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkIOCoreJava.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkIOCoreJava.dll: >> Can't find dependent libraries >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkIOCoreJava.dll >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkIOCoreJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkIOCoreJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkIOLegacyJava >> 1> File does not exist: vtkIOLegacyJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkIOLegacyJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkIOLegacyJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkIOLegacyJava.dll >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkIOLegacyJava.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkIOLegacyJava.dll: Can't find dependent libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkIOLegacyJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkIOLegacyJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkIOXMLParserJava >> 1> File does not exist: vtkIOXMLParserJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkIOXMLParserJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkIOXMLParserJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkIOXMLParserJava.dll >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkIOXMLParserJava.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkIOXMLParserJava.dll: Can't find dependent libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkIOXMLParserJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkIOXMLParserJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkIOXMLJava >> 1> File does not exist: vtkIOXMLJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkIOXMLJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/bin\vtkIOXMLJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtkIOXMLJava.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkIOXMLJava.dll: >> Can't find dependent libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkIOXMLJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkIOXMLJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkIOXMLJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkIOInfovisJava >> 1> File does not exist: vtkIOInfovisJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkIOInfovisJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkIOInfovisJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkIOInfovisJava.dll >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkIOInfovisJava.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkIOInfovisJava.dll: Can't find dependent libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkIOInfovisJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkIOInfovisJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkIOImageJava >> 1> File does not exist: vtkIOImageJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkIOImageJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkIOImageJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkIOImageJava.dll >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkIOImageJava.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\bin\Release\vtkIOImageJava.dll: >> Can't find dependent libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Debug\vtkIOImageJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkIOImageJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkRenderingOpenGL2Java >> 1> File does not exist: vtkRenderingOpenGL2Java >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\vtkRenderingOpenGL2Java.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkRenderingOpenGL2Java.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkRenderingOpenGL2Java.dll >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkRenderingOpenGL2Java.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkRenderingOpenGL2Java.dll: Can't find dependent libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkRenderingOpenGL2Java.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkRenderingOpenGL2Java.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkRenderingContextOpenGL2Java >> 1> File does not exist: vtkRenderingContextOpenGL2Java >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\vtkRenderingContextOpenGL2Java.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkRenderingContextOpenGL2Java.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkRenderingContextOpenGL2Java.dll >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkRenderingContextOpenGL2Java.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkRenderingContextOpenGL2Java.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkRenderingContextOpenGL2Java.dll: Can't find dependent >> libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkRenderingContextOpenGL2Java.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkTestingRenderingJava >> 1> File does not exist: vtkTestingRenderingJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\vtkTestingRenderingJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkTestingRenderingJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkTestingRenderingJava.dll >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkTestingRenderingJava.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkTestingRenderingJava.dll: Can't find dependent libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkTestingRenderingJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkTestingRenderingJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkImagingSourcesJava >> 1> File does not exist: vtkImagingSourcesJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\vtkImagingSourcesJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkImagingSourcesJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkImagingSourcesJava.dll >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkImagingSourcesJava.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkImagingSourcesJava.dll: Can't find dependent libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkImagingSourcesJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkImagingSourcesJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkFiltersHybridJava >> 1> File does not exist: vtkFiltersHybridJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkFiltersHybridJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkFiltersHybridJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkFiltersHybridJava.dll >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkFiltersHybridJava.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkFiltersHybridJava.dll: Can't find dependent libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkFiltersHybridJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkFiltersHybridJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkFiltersModelingJava >> 1> File does not exist: vtkFiltersModelingJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\vtkFiltersModelingJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkFiltersModelingJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkFiltersModelingJava.dll >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkFiltersModelingJava.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkFiltersModelingJava.dll: Can't find dependent libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkFiltersModelingJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkFiltersModelingJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkImagingColorJava >> 1> File does not exist: vtkImagingColorJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkImagingColorJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkImagingColorJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkImagingColorJava.dll >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkImagingColorJava.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkImagingColorJava.dll: Can't find dependent libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkImagingColorJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkImagingColorJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkImagingGeneralJava >> 1> File does not exist: vtkImagingGeneralJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\vtkImagingGeneralJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkImagingGeneralJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkImagingGeneralJava.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkImagingGeneralJava.dll: Can't find dependent libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkImagingGeneralJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkImagingGeneralJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkImagingGeneralJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkImagingHybridJava >> 1> File does not exist: vtkImagingHybridJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkImagingHybridJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkImagingHybridJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkImagingHybridJava.dll >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkImagingHybridJava.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkImagingHybridJava.dll: Can't find dependent libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkImagingHybridJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkImagingHybridJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkInteractionStyleJava >> 1> File does not exist: vtkInteractionStyleJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\vtkInteractionStyleJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkInteractionStyleJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkInteractionStyleJava.dll >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkInteractionStyleJava.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkInteractionStyleJava.dll: Can't find dependent libraries >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkInteractionStyleJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkInteractionStyleJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkRenderingAnnotationJava >> 1> File does not exist: vtkRenderingAnnotationJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\vtkRenderingAnnotationJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkRenderingAnnotationJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkRenderingAnnotationJava.dll >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkRenderingAnnotationJava.dll: Can't find dependent libraries >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkRenderingAnnotationJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkRenderingAnnotationJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkRenderingAnnotationJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkRenderingVolumeJava >> 1> File does not exist: vtkRenderingVolumeJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\vtkRenderingVolumeJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkRenderingVolumeJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkRenderingVolumeJava.dll >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkRenderingVolumeJava.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkRenderingVolumeJava.dll: Can't find dependent libraries >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkRenderingVolumeJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkRenderingVolumeJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkInteractionWidgetsJava >> 1> File does not exist: vtkInteractionWidgetsJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\vtkInteractionWidgetsJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkInteractionWidgetsJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkInteractionWidgetsJava.dll >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkInteractionWidgetsJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkInteractionWidgetsJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkInteractionWidgetsJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkViewsCoreJava >> 1> File does not exist: vtkViewsCoreJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkViewsCoreJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkViewsCoreJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkViewsCoreJava.dll >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkViewsCoreJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkViewsCoreJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkViewsCoreJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkViewsContext2DJava >> 1> File does not exist: vtkViewsContext2DJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\vtkViewsContext2DJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkViewsContext2DJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkViewsContext2DJava.dll >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkInteractionWidgetsJava.dll: Can't find dependent libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkViewsCoreJava.dll: Can't find dependent libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkViewsContext2DJava.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkViewsContext2DJava.dll: Can't find dependent libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkViewsContext2DJava.dll >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkViewsContext2DJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkFiltersGenericJava >> 1> File does not exist: vtkFiltersGenericJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\vtkFiltersGenericJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkFiltersGenericJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkFiltersGenericJava.dll >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkFiltersGenericJava.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkFiltersGenericJava.dll: Can't find dependent libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkFiltersGenericJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkFiltersGenericJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkIOGeometryJava >> 1> File does not exist: vtkIOGeometryJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkIOGeometryJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkIOGeometryJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkIOGeometryJava.dll >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkIOGeometryJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkIOGeometryJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkIOGeometryJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkRenderingLabelJava >> 1> File does not exist: vtkRenderingLabelJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\vtkRenderingLabelJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkRenderingLabelJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkRenderingLabelJava.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkIOGeometryJava.dll: Can't find dependent libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkRenderingLabelJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkRenderingLabelJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkRenderingLabelJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkImagingStencilJava >> 1> File does not exist: vtkImagingStencilJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\vtkImagingStencilJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkImagingStencilJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkImagingStencilJava.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkRenderingLabelJava.dll: Can't find dependent libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkImagingStencilJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkImagingStencilJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkImagingStencilJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkFiltersImagingJava >> 1> File does not exist: vtkFiltersImagingJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\vtkFiltersImagingJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkFiltersImagingJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkFiltersImagingJava.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkImagingStencilJava.dll: Can't find dependent libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkFiltersImagingJava.dll: Can't find dependent libraries >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkFiltersImagingJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkFiltersImagingJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkFiltersImagingJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkParallelCoreJava >> 1> File does not exist: vtkParallelCoreJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkParallelCoreJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkParallelCoreJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkParallelCoreJava.dll >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkParallelCoreJava.dll: Can't find dependent libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkParallelCoreJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkParallelCoreJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkParallelCoreJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkFiltersParallelJava >> 1> File does not exist: vtkFiltersParallelJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\vtkFiltersParallelJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkFiltersParallelJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkFiltersParallelJava.dll >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkFiltersParallelJava.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkFiltersParallelJava.dll: Can't find dependent libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkFiltersParallelJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkFiltersParallelJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkParallelMPIJava >> 1> File does not exist: vtkParallelMPIJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkParallelMPIJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkParallelMPIJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkParallelMPIJava.dll >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkParallelMPIJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkParallelMPIJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkParallelMPIJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkFiltersParallelGeometryJava >> 1> File does not exist: vtkFiltersParallelGeometryJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\vtkFiltersParallelGeometryJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkFiltersParallelGeometryJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkFiltersParallelGeometryJava.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkParallelMPIJava.dll: Can't find dependent libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkFiltersParallelGeometryJava.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkFiltersParallelGeometryJava.dll: Can't find dependent >> libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkFiltersParallelGeometryJava.dll >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkFiltersParallelGeometryJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkIONetCDFJava >> 1> File does not exist: vtkIONetCDFJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkIONetCDFJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkIONetCDFJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkIONetCDFJava.dll >> 1> Failed to load: C:/data/src-build/VTK-MASTER/b >> in\Release\vtkIONetCDFJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkIONetCDFJava.dll >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\Debug\vtkIONetCDFJava.dll >> 1> Problem loading appropriate library >> 1> Try to load: vtkIOParallelJava >> 1> File does not exist: vtkIOParallelJava >> 1> Try to load: C:/data/src-build/VTK-MASTER/bin\vtkIOParallelJava.dll >> 1> java.lang.UnsatisfiedLinkError: C:\data\src-build\VTK-MASTER\b >> in\Release\vtkIONetCDFJava.dll: Can't find dependent libraries >> 1> at java.lang.ClassLoader$NativeLibrary.load(Native Method) >> 1> at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1941) >> 1> at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1824) >> 1> at java.lang.Runtime.load0(Runtime.java:809) >> 1> at java.lang.Runtime.load(Runtime.java:797) >> 1> at vtk.vtkJavaTesting.LoadLib(vtkJavaTesting.java:32) >> 1> at vtk.vtkJavaTesting.LoadLibrary(vtkJavaTesting.java:54) >> 1> at vtk.vtkJavaTesting.Initialize(vtkJavaTesting.java:76) >> 1> at vtk.test.ConcurrencyGC.main(ConcurrencyGC.java:24) >> 1> File does not exist: C:/data/src-build/VTK-MASTER/b >> in\vtkIOParallelJava.dll >> 1> Try to load: C:/data/src-build/VTK-MASTER/bin\Release\vtk... >> >> [Message clipped] > From zmanvortex at gmail.com Wed Feb 15 11:04:12 2017 From: zmanvortex at gmail.com (zmantorn) Date: Wed, 15 Feb 2017 09:04:12 -0700 (MST) Subject: [vtkusers] vtkGPUVolumeRayCastMapper: Updateing ImageData after first Rendering? In-Reply-To: <1487173203410-5742192.post@n5.nabble.com> References: <1486972453592-5742153.post@n5.nabble.com> <1487085319680-5742181.post@n5.nabble.com> <1487171038576-5742191.post@n5.nabble.com> <1487173203410-5742192.post@n5.nabble.com> Message-ID: <1487174652057-5742194.post@n5.nabble.com> Since the interactor is tied to the renderwindow object and the renderwindow object is tied to only the .NET panel object the GUI is not interrupted for any interaction except with the panel object. Here is my initialization code for a "document window". The vtkPanel object is the .NET Windows Forms Panel object. * m_renwin->SetParentId(panelVtk->Handle.ToPointer()); m_renwin->SetNumberOfLayers(5); // change to 5 layers m_iren = vtkRenderWindowInteractor::New(); m_iren->SetDesiredUpdateRate(2.0); m_iren->SetRenderWindow(m_renwin); m_renwin->SetInteractor(m_iren); m_iren->Initialize(); if (m_iren->GetInitialized() != 0) m_iren->UpdateSize(panelVtk->Width, panelVtk->Height); m_interactorstyle = vtkInteractorStyleUser::New(); m_interactorstyle->SetMouseWheelMotionFactor(10.0); m_interactorstyle->SetAutoAdjustCameraClippingRange(0); m_iren->SetInteractorStyle(m_interactorstyle); m_picker = vtkWorldPointPicker::New(); m_iren->SetPicker(m_picker); m_backgroundrenderer = vtkRenderer::New(); m_backgroundrenderer->SetLayer(0); m_backgroundrenderer->InteractiveOn(); m_backgroundrenderer->SetActiveCamera(m_camera); m_backgroundrenderer->SetBackground(0.0, 0.0, 0.0); m_maprenderer = vtkRenderer::New(); m_maprenderer->SetLayer(1); m_maprenderer->SetActiveCamera(m_camera); m_radarrenderer = vtkRenderer::New(); m_radarrenderer->SetLayer(2); m_radarrenderer->SetActiveCamera(m_camera); m_radarrenderer->SetBackground(1.0, 1.0, 1.0); m_radarrenderer->AutomaticLightCreationOff(); m_overlayrenderer = vtkRenderer::New(); m_overlayrenderer->SetLayer(3); m_overlayrenderer->SetActiveCamera(m_camera); m_legendrenderer = vtkRenderer::New(); m_legendrenderer->SetLayer(4); m_legendrenderer->SetActiveCamera(m_camera); m_renwin->AddRenderer(m_backgroundrenderer); m_renwin->AddRenderer(m_maprenderer); //radarrenderer->ResetCamera(); m_renwin->AddRenderer(m_radarrenderer); m_renwin->AddRenderer(m_overlayrenderer); m_renwin->AddRenderer(m_legendrenderer); m_horizClipPlane = vtkPlane::New(); //Selection actor m_selectionActor = vtkActor::New(); m_selectionGlobeSource = vtkGlobeSource::New(); // Conus Background m_lowResBackgroundActor = vtkActor::New(); m_highResBackgroundActor = vtkActor::New(); // County Lines m_countyLinesActor = vtkLODActor::New(); m_countyLinesClipPlane = vtkPlane::New(); m_countyLinesClipPlaneCollection = vtkPlaneCollection::New(); m_countyLinesClipPlaneCollection->AddItem(m_horizClipPlane); m_countyLinesClipPlaneCollection->AddItem(m_countyLinesClipPlane); // County Texts m_countyTextActors = vtkPropCollection::New(); //Light m_light = vtkLight::New(); m_light->SetLightTypeToCameraLight(); //m_light->SetDiffuseColor(1,0,0); //m_light->SetAmbientColor(0,1,0); //m_light->SetSpecularColor(0,0,1); m_light->SetIntensity(.85); //callbacks setOnLeftMouseDownDelegate(); setOnLeftMouseReleaseDelegate(); setOnMiddleMouseDownDelegate(); setOnMiddleMouseReleaseDelegate(); setOnRightMouseDownDelegate(); setOnRightMouseReleaseDelegate(); setOnKeyPressDelegate(); setOnRenderDelegate(); setOnMouseMoveDelegate();* Here is the implementation of setOnMouseMoveDelegate: *void SwisVtkRadarWindow::setOnMouseMoveDelegate() { vtkDotNetCommand* cmd = vtkDotNetCommand::New(); cmd->SetCallback(gcnew vtkDotNetCallback(this, &SwisVtkRadarWindows::SwisVtkRadarWindow::onVtkMouseMove)); vtkRenderWindowInteractor* iren = vtkRenderWindowInteractor::SafeDownCast(m_renwin->GetInteractor()); m_interactorstyle->AddObserver(vtkCommand::MouseMoveEvent, cmd); cmd->Delete(); }* Here is a clip of the onVtkMouseMove function in my "document" window: *void SwisVtkRadarWindow::onVtkMouseMove(unsigned long eventId, System::Object^ clientData) { switch (m_interact_state) { case 0: { switch (m_interactorstyle->GetState()) { case 1: //VTKIS_ROTATE this->rotate(); break; case 2: //VTKIS_PAN this->pan(); break; case 4: //VTKIS_DOLLY this->dolly(); break; } } * Do a search for the vtkDotNetCommand and vtkDotNetCallback code. I can't remember where I got it. Hope this helps. -- View this message in context: http://vtk.1045678.n5.nabble.com/vtkGPUVolumeRayCastMapper-Updateing-ImageData-after-first-Rendering-tp5742153p5742194.html Sent from the VTK - Users mailing list archive at Nabble.com. From peer9802 at gmail.com Wed Feb 15 15:30:23 2017 From: peer9802 at gmail.com (Eric Petersen) Date: Wed, 15 Feb 2017 14:30:23 -0600 Subject: [vtkusers] Issue getting vtkIntersectionPolyDataFilter working using Python Message-ID: Hello, I'm new to VTK and am trying to find the intersection of a plane and tube, using Python 3.5 and VTK 7.1, by following the "IntersectionPolyDataFilter" example. My goal for this exercise is to obtain where the tube centerline intersects the plane though ultimately would like to determine where the tube intersects with an imported STL file (or where multiple STL files intersect). My Python code is located below. I don't get any errors when I run the script; however, the filter does not report any intersecting points or lines. I also don't see an intersection line in the rendering window (just the plane and tube/cylinder). I'm likely missing something obvious here. Can anyone help me out? import vtk from vtk.util.colors import * #create a plane source planeSource = vtk.vtkPlaneSource() planeSource.SetOrigin((-1,-1,-1)) planeSource.SetPoint1((1,-1,-1)) planeSource.SetPoint2((-1,1,-1)) planeSource.Update() polygonMapper = vtk.vtkPolyDataMapper() polygonMapper.SetInputConnection(planeSource.GetOutputPort()) polygonMapper.Update() actor = vtk.vtkActor() actor.SetMapper(polygonMapper) actor.GetProperty().SetColor(white) actor.GetProperty().SetOpacity(.5) #create a tube using two points. Simplified example of what trying to do. centerlinePoints = [] centerlinePoints.append((0,0,-5)) centerlinePoints.append((0,0,5)) points = vtk.vtkPoints() for i in range(0,len(centerlinePoints)): p = centerlinePoints[i] points.InsertPoint(i, p[0], p[1], p[2]) spline = vtk.vtkParametricSpline() spline.SetPoints(points) functionSource = vtk.vtkParametricFunctionSource() functionSource.SetParametricFunction(spline) functionSource.SetUResolution(20) functionSource.Update() #tubePolyData = functionSource.GetOutput() # Create the tubes tuber = vtk.vtkTubeFilter() tuber.SetInputConnection(functionSource.GetOutputPort()) tuber.SetNumberOfSides(20) tuber.SetVaryRadiusToVaryRadiusOff() tuber.SetRadius(.5) tuber.CappingOn() tuber.Update() tubeMapper = vtk.vtkPolyDataMapper() tubeMapper.SetInputConnection(tuber.GetOutputPort()) tubeMapper.Update() tubeActor = vtk.vtkActor() tubeActor.SetMapper(tubeMapper) tubeActor.GetProperty().SetColor(blue) tubeActor.GetProperty().SetOpacity(.5) isect = vtk.vtkIntersectionPolyDataFilter() isect.ComputeIntersectionPointArrayOn() isect.SetInputConnection(0,tuber.GetOutputPort()) isect.SetInputConnection(1,planeSource.GetOutputPort()) isect.Update() print(isect.GetNumberOfIntersectionPoints()) print(isect.GetNumberOfIntersectionLines()) intersectMapper = vtk.vtkPolyDataMapper() intersectMapper.SetInputConnection(isect.GetOutputPort()) intersectMapper.ScalarVisibilityOn() intersectActor = vtk.vtkActor() intersectActor.GetProperty().SetColor(red) intersectActor.GetProperty().SetOpacity(1) intersectActor.SetMapper(intersectMapper) renderer = vtk.vtkRenderer() renWin = vtk.vtkRenderWindow() renWin.AddRenderer(renderer) #renderer.AddActor(tubeActor) #renderer.AddActor(actor) #renderer.AddActor(intersectActor) renderer.AddViewProp(tubeActor) renderer.AddViewProp(actor) renderer.AddViewProp(intersectActor) # Create a renderwindowinteractor iren = vtk.vtkRenderWindowInteractor() iren.SetInteractorStyle(vtk.vtkInteractorStyleTrackballCamera()) iren.SetRenderWindow(renWin) # Enable user interface interactor iren.Initialize() renWin.Render() iren.Start() -------------- next part -------------- An HTML attachment was scrubbed... URL: From sean at rogue-research.com Wed Feb 15 17:02:24 2017 From: sean at rogue-research.com (Sean McBride) Date: Wed, 15 Feb 2017 17:02:24 -0500 Subject: [vtkusers] Using MacBook trackpad freezes application In-Reply-To: References: <20170208191538.1755231222@mail.rogue-research.com> Message-ID: <20170215220224.1142025261@mail.rogue-research.com> On Tue, 14 Feb 2017 22:16:06 -0200, Enzo Matsumiya said: >Actually I wasn't even using Paraview; I experienced the bug with this >sample code: > >http://www.vtk.org/gitweb?p=VTK.git;a=blob;f=Examples/GUI/Qt/ >FourPaneViewer/QtVTKRenderWindows.cxx Ah, if ParaView is not involved, then we should have a bug in the VTK project, instead of in the ParaView project. Feel like creating one? >I don't have access to my MacBook right now, but I will try to reproduce >using other examples. Great. Qt is a big chunk of code too, if it could be eliminated that would help. Perhaps try one of the basic C++ VTK examples... Cheers, -- ____________________________________________________________ Sean McBride, B. Eng sean at rogue-research.com Rogue Research www.rogue-research.com Mac Software Developer Montr?al, Qu?bec, Canada From tharun160190 at gmail.com Wed Feb 15 21:15:31 2017 From: tharun160190 at gmail.com (Tharun) Date: Wed, 15 Feb 2017 19:15:31 -0700 (MST) Subject: [vtkusers] Color actor based on scalars of points on mesh (not vertices) Message-ID: <1487211331635-5742197.post@n5.nabble.com> I have scalar values associated with points on mesh and not vertices. Is there a way to color the mesh? Thanks in advance! -- View this message in context: http://vtk.1045678.n5.nabble.com/Color-actor-based-on-scalars-of-points-on-mesh-not-vertices-tp5742197.html Sent from the VTK - Users mailing list archive at Nabble.com. From daviddoria at gmail.com Wed Feb 15 21:22:17 2017 From: daviddoria at gmail.com (David Doria) Date: Wed, 15 Feb 2017 20:22:17 -0600 Subject: [vtkusers] Color actor based on scalars of points on mesh (not vertices) In-Reply-To: <1487211331635-5742197.post@n5.nabble.com> References: <1487211331635-5742197.post@n5.nabble.com> Message-ID: On Wed, Feb 15, 2017 at 8:15 PM, Tharun wrote: > I have scalar values associated with points on mesh and not vertices. Is > there a way to color the mesh? > > Thanks in advance! > Is this what you're looking for? http://www.vtk.org/Wiki/VTK/Examples/Cxx/PolyData/TriangleColoredPoints David -------------- next part -------------- An HTML attachment was scrubbed... URL: From tharun160190 at gmail.com Wed Feb 15 21:28:00 2017 From: tharun160190 at gmail.com (Tharun) Date: Wed, 15 Feb 2017 19:28:00 -0700 (MST) Subject: [vtkusers] Color actor based on scalars of points on mesh (not vertices) In-Reply-To: References: <1487211331635-5742197.post@n5.nabble.com> Message-ID: <1487212080401-5742199.post@n5.nabble.com> Thank you for the prompt reply. Unfortunately no. I have scalar values associated with points(not vertices) on the mesh. Where as in your example, color or scalar value is associated with vertices. -- View this message in context: http://vtk.1045678.n5.nabble.com/Color-actor-based-on-scalars-of-points-on-mesh-not-vertices-tp5742197p5742199.html Sent from the VTK - Users mailing list archive at Nabble.com. From girish.lande at agiliad.com Thu Feb 16 01:32:31 2017 From: girish.lande at agiliad.com (Girish Lande) Date: Thu, 16 Feb 2017 12:02:31 +0530 Subject: [vtkusers] set camera orientation to match with vtkImagePlaneWidget Message-ID: Hi All, I have vtkImagePlaneWidget which is randomly placed in world space. I have its plane normal direction. I am trying to set camera orientation such that my view normal is perpendicular to Imageplanewidget and I could see imageplanewidget without tilt. I couldnt find direct method to set Camera orientation. Is there any way to accomplish this? -- thanks & regards, Girish -------------- next part -------------- An HTML attachment was scrubbed... URL: From tjlp at netease.com Thu Feb 16 02:41:21 2017 From: tjlp at netease.com (Liu_tj) Date: Thu, 16 Feb 2017 15:41:21 +0800 (CST) Subject: [vtkusers] Issue of multiple vtkHandleWidget moving to the same position Message-ID: <6a145e7b.5.15a45de4fc6.Coremail.tjlp@netease.com> Hi, I want to draw some points on 3D model. Each point needs one vtkHandleWidget object. I use vtkInteractorStyle object which listens the LeftButtonPressEvent. When I press left mouse button on the 3D model, I will update the world position of vtkHandleWidget object. My issue is: If all the vtkHandleWidget objects share the same vtkInteractorStyle object, then all the vtkHandleWidget objects will move to the position of last left mouse button press. If one new vtkInteractorStyle object is created for each vtkHandleWidget object, then the vtkHandleWidget objects can display at their right positions. Where am I wrong? Thanks Liu Peng -------------- next part -------------- An HTML attachment was scrubbed... URL: From tharun160190 at gmail.com Thu Feb 16 03:20:52 2017 From: tharun160190 at gmail.com (Tharun) Date: Thu, 16 Feb 2017 01:20:52 -0700 (MST) Subject: [vtkusers] Reading Point Clouds from a .ply file In-Reply-To: References: Message-ID: <1487233252146-5742203.post@n5.nabble.com> Have a look at previous post http://vtk.1045678.n5.nabble.com/PLY-Reader-vtkPLYReader-cxx-needs-Point-Cloud-Loading-implementation-td5741944.html Seems a patch is already provided. -- View this message in context: http://vtk.1045678.n5.nabble.com/Reading-Point-Clouds-from-a-ply-file-tp5742178p5742203.html Sent from the VTK - Users mailing list archive at Nabble.com. From pkorir at ebi.ac.uk Thu Feb 16 04:42:17 2017 From: pkorir at ebi.ac.uk (Paul Korir) Date: Thu, 16 Feb 2017 09:42:17 +0000 Subject: [vtkusers] VTK 7.0 vtkXMLPolyDataWriter output version issues In-Reply-To: References: <8e92335e-0f95-674b-f9b9-7df1f55effc9@ebi.ac.uk> Message-ID: <48a8af7a-f437-fdc4-24d2-262b0ea436a8@ebi.ac.uk> Hi Dan, We're investigating whether the problem is with the reader (VTKLoader.js) and seem to making some progress (some files read while others fail). I'll get back to you if anything emerges. Regards, Paul On 13/02/2017 22:23, Dan Lipsa wrote: > Paul, > Do you have an example data + script where this is happening? It > should not be a difference in how the binary data is encoded between > VTK and ParaView. > > Thanks, > Dan -- Paul K. Korir, PhD Scientific Programmer EMBL-EBI 01223494422 From cory.quammen at kitware.com Thu Feb 16 09:03:42 2017 From: cory.quammen at kitware.com (Cory Quammen) Date: Thu, 16 Feb 2017 09:03:42 -0500 Subject: [vtkusers] Color actor based on scalars of points on mesh (not vertices) In-Reply-To: <1487212080401-5742199.post@n5.nabble.com> References: <1487211331635-5742197.post@n5.nabble.com> <1487212080401-5742199.post@n5.nabble.com> Message-ID: Okay, I'm curious. What is the difference between points on the mesh and vertices? On Wed, Feb 15, 2017 at 9:28 PM, Tharun wrote: > Thank you for the prompt reply. > > Unfortunately no. I have scalar values associated with points(not vertices) > on the mesh. Where as in your example, color or scalar value is associated > with vertices. > > > > -- > View this message in context: http://vtk.1045678.n5.nabble.com/Color-actor-based-on-scalars-of-points-on-mesh-not-vertices-tp5742197p5742199.html > Sent from the VTK - Users mailing list archive at Nabble.com. > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers -- Cory Quammen Staff R&D Engineer Kitware, Inc. From tharun160190 at gmail.com Thu Feb 16 09:40:51 2017 From: tharun160190 at gmail.com (Tharun) Date: Thu, 16 Feb 2017 07:40:51 -0700 (MST) Subject: [vtkusers] Color actor based on scalars of points on mesh (not vertices) In-Reply-To: References: <1487211331635-5742197.post@n5.nabble.com> <1487212080401-5742199.post@n5.nabble.com> Message-ID: sorry for not being clear. The polydata consists of triangles. I mean those points are inside triangles of mesh not the vertices of triangles. Hope I am clear. Regards, P Tharun Kumar On Thu, Feb 16, 2017 at 11:04 PM, Cory Quammen-2 [via VTK] < ml-node+s1045678n5742205h31 at n5.nabble.com> wrote: > Okay, I'm curious. What is the difference between points on the mesh > and vertices? > > On Wed, Feb 15, 2017 at 9:28 PM, Tharun <[hidden email] > > wrote: > > > Thank you for the prompt reply. > > > > Unfortunately no. I have scalar values associated with points(not > vertices) > > on the mesh. Where as in your example, color or scalar value is > associated > > with vertices. > > > > > > > > -- > > View this message in context: http://vtk.1045678.n5.nabble. > com/Color-actor-based-on-scalars-of-points-on-mesh-not- > vertices-tp5742197p5742199.html > > Sent from the VTK - Users mailing list archive at Nabble.com. > > _______________________________________________ > > Powered by www.kitware.com > > > > Visit other Kitware open-source projects at http://www.kitware.com/ > opensource/opensource.html > > > > Please keep messages on-topic and check the VTK FAQ at: > http://www.vtk.org/Wiki/VTK_FAQ > > > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > > > Follow this link to subscribe/unsubscribe: > > http://public.kitware.com/mailman/listinfo/vtkusers > > > > -- > Cory Quammen > Staff R&D Engineer > Kitware, Inc. > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at http://www.kitware.com/ > opensource/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: > http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers > > > ------------------------------ > If you reply to this email, your message will be added to the discussion > below: > http://vtk.1045678.n5.nabble.com/Color-actor-based-on- > scalars-of-points-on-mesh-not-vertices-tp5742197p5742205.html > To unsubscribe from Color actor based on scalars of points on mesh (not > vertices), click here > > . > NAML > > -- View this message in context: http://vtk.1045678.n5.nabble.com/Color-actor-based-on-scalars-of-points-on-mesh-not-vertices-tp5742197p5742206.html Sent from the VTK - Users mailing list archive at Nabble.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From pdavid at scconsultants.com Thu Feb 16 08:31:15 2017 From: pdavid at scconsultants.com (Philippe PhD. David) Date: Thu, 16 Feb 2017 14:31:15 +0100 Subject: [vtkusers] exporting scene to vrml format Message-ID: <5926e8a3-b66c-adcf-1186-e289c222690a@scconsultants.com> hello, I am currently trying to export a scene using vtkVRMLExporter() from my vtk application. My scene is built from a set of geometries which are then moved/rotated internally to my application (with user input) using vtkAssembly::SetPosition(...) and vtkAssembly::SetOrientation(...) Unfortunately, the exported scene reports only the initial position/orientation of my differents objects. Any suggestions on how to take into accounts those move/orientation in the exported scene ? Also the view type (surface, wireframe, mesh, opacity) is not correctly exported. thanks in advance for help Philippe // my function to export the scene bool VisualisationVtk::Visualisation::SaveVRML(String^ Filename) { vtkVRMLExporter *Exporter; Exporter= vtkVRMLExporter::New(); Exporter->SetRenderWindow(Window); pin_ptr wch = PtrToStringChars(Filename); char file[256]; size_t convertedChars = 0; size_t sizeInBytes = ((Filename->Length + 1) * 2); wcstombs_s (&convertedChars,file, sizeInBytes,wch, sizeInBytes); Exporter->SetFileName(file); draw(); // loops on all objects and hide/view update surface/mesh view move/rotate upon users requests Exporter->Write(); Exporter->Delete(); return true; } -- --- L'absence de virus dans ce courrier ?lectronique a ?t? v?rifi?e par le logiciel antivirus Avast. https://www.avast.com/antivirus -------------- next part -------------- An HTML attachment was scrubbed... URL: From cory.quammen at kitware.com Thu Feb 16 09:50:04 2017 From: cory.quammen at kitware.com (Cory Quammen) Date: Thu, 16 Feb 2017 09:50:04 -0500 Subject: [vtkusers] Color actor based on scalars of points on mesh (not vertices) In-Reply-To: References: <1487211331635-5742197.post@n5.nabble.com> <1487212080401-5742199.post@n5.nabble.com> Message-ID: I see, thanks for the explanation. In VTK, we call that kind of data cell-associated data, or just cell data. In the vtkMapper you use, you'll want to call mapper->SetScalarModeToUseCellData(); It may be helpful to consult this example: http://www.vtk.org/Wiki/VTK/Examples/Cxx/Visualization/AssignColorsFromLUT - Cory On Thu, Feb 16, 2017 at 9:40 AM, Tharun wrote: > sorry for not being clear. > > The polydata consists of triangles. I mean those points are inside triangles > of mesh not the vertices of triangles. > > Hope I am clear. > > Regards, > P Tharun Kumar > > On Thu, Feb 16, 2017 at 11:04 PM, Cory Quammen-2 [via VTK] <[hidden email]> > wrote: >> >> Okay, I'm curious. What is the difference between points on the mesh >> and vertices? >> >> On Wed, Feb 15, 2017 at 9:28 PM, Tharun <[hidden email]> wrote: >> >> > Thank you for the prompt reply. >> > >> > Unfortunately no. I have scalar values associated with points(not >> > vertices) >> > on the mesh. Where as in your example, color or scalar value is >> > associated >> > with vertices. >> > >> > >> > >> > -- >> > View this message in context: >> > http://vtk.1045678.n5.nabble.com/Color-actor-based-on-scalars-of-points-on-mesh-not-vertices-tp5742197p5742199.html >> > Sent from the VTK - Users mailing list archive at Nabble.com. >> > _______________________________________________ >> >> > Powered by www.kitware.com >> > >> > Visit other Kitware open-source projects at >> > http://www.kitware.com/opensource/opensource.html >> > >> > Please keep messages on-topic and check the VTK FAQ at: >> > http://www.vtk.org/Wiki/VTK_FAQ >> > >> > Search the list archives at: http://markmail.org/search/?q=vtkusers >> > >> > Follow this link to subscribe/unsubscribe: >> > http://public.kitware.com/mailman/listinfo/vtkusers > > > > -- > Cory Quammen > Staff R&D Engineer > Kitware, Inc. > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: > http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers > > > ________________________________ > If you reply to this email, your message will be added to the discussion > below: > http://vtk.1045678.n5.nabble.com/Color-actor-based-on-scalars-of-points-on-mesh-not-vertices-tp5742197p5742205.html > To unsubscribe from Color actor based on scalars of points on mesh (not > vertices), click here. > NAML > > > ________________________________ > View this message in context: Re: Color actor based on scalars of points on > mesh (not vertices) > > Sent from the VTK - Users mailing list archive at Nabble.com. > > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: > http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers > -- Cory Quammen Staff R&D Engineer Kitware, Inc. From tharun160190 at gmail.com Thu Feb 16 10:05:33 2017 From: tharun160190 at gmail.com (Tharun) Date: Thu, 16 Feb 2017 08:05:33 -0700 (MST) Subject: [vtkusers] Color actor based on scalars of points on mesh (not vertices) In-Reply-To: References: <1487211331635-5742197.post@n5.nabble.com> <1487212080401-5742199.post@n5.nabble.com> Message-ID: Thanks for the heads up. But i have 0 ~ many points in each triangle (cell) not just one and a scalar is associated with each point. Really appreciate the follow up. Regards, P Tharun Kumar On Thu, Feb 16, 2017 at 11:50 PM, Cory Quammen-2 [via VTK] < ml-node+s1045678n5742208h24 at n5.nabble.com> wrote: > I see, thanks for the explanation. In VTK, we call that kind of data > cell-associated data, or just cell data. > > In the vtkMapper you use, you'll want to call > > mapper->SetScalarModeToUseCellData(); > > It may be helpful to consult this example: > http://www.vtk.org/Wiki/VTK/Examples/Cxx/Visualization/AssignColorsFromLUT > > - Cory > > On Thu, Feb 16, 2017 at 9:40 AM, Tharun <[hidden email] > > wrote: > > > sorry for not being clear. > > > > The polydata consists of triangles. I mean those points are inside > triangles > > of mesh not the vertices of triangles. > > > > Hope I am clear. > > > > Regards, > > P Tharun Kumar > > > > On Thu, Feb 16, 2017 at 11:04 PM, Cory Quammen-2 [via VTK] <[hidden > email]> > > wrote: > >> > >> Okay, I'm curious. What is the difference between points on the mesh > >> and vertices? > >> > >> On Wed, Feb 15, 2017 at 9:28 PM, Tharun <[hidden email]> wrote: > >> > >> > Thank you for the prompt reply. > >> > > >> > Unfortunately no. I have scalar values associated with points(not > >> > vertices) > >> > on the mesh. Where as in your example, color or scalar value is > >> > associated > >> > with vertices. > >> > > >> > > >> > > >> > -- > >> > View this message in context: > >> > http://vtk.1045678.n5.nabble.com/Color-actor-based-on- > scalars-of-points-on-mesh-not-vertices-tp5742197p5742199.html > >> > Sent from the VTK - Users mailing list archive at Nabble.com. > >> > _______________________________________________ > >> > >> > Powered by www.kitware.com > >> > > >> > Visit other Kitware open-source projects at > >> > http://www.kitware.com/opensource/opensource.html > >> > > >> > Please keep messages on-topic and check the VTK FAQ at: > >> > http://www.vtk.org/Wiki/VTK_FAQ > >> > > >> > Search the list archives at: http://markmail.org/search/?q=vtkusers > >> > > >> > Follow this link to subscribe/unsubscribe: > >> > http://public.kitware.com/mailman/listinfo/vtkusers > > > > > > > > -- > > Cory Quammen > > Staff R&D Engineer > > Kitware, Inc. > > _______________________________________________ > > Powered by www.kitware.com > > > > Visit other Kitware open-source projects at > > http://www.kitware.com/opensource/opensource.html > > > > Please keep messages on-topic and check the VTK FAQ at: > > http://www.vtk.org/Wiki/VTK_FAQ > > > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > > > Follow this link to subscribe/unsubscribe: > > http://public.kitware.com/mailman/listinfo/vtkusers > > > > > > ________________________________ > > If you reply to this email, your message will be added to the discussion > > below: > > http://vtk.1045678.n5.nabble.com/Color-actor-based-on- > scalars-of-points-on-mesh-not-vertices-tp5742197p5742205.html > > To unsubscribe from Color actor based on scalars of points on mesh (not > > vertices), click here. > > NAML > > > > > > ________________________________ > > View this message in context: Re: Color actor based on scalars of points > on > > mesh (not vertices) > > > > Sent from the VTK - Users mailing list archive at Nabble.com. > > > > _______________________________________________ > > Powered by www.kitware.com > > > > Visit other Kitware open-source projects at > > http://www.kitware.com/opensource/opensource.html > > > > Please keep messages on-topic and check the VTK FAQ at: > > http://www.vtk.org/Wiki/VTK_FAQ > > > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > > > Follow this link to subscribe/unsubscribe: > > http://public.kitware.com/mailman/listinfo/vtkusers > > > > > > -- > Cory Quammen > Staff R&D Engineer > Kitware, Inc. > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at http://www.kitware.com/ > opensource/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: > http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers > > > ------------------------------ > If you reply to this email, your message will be added to the discussion > below: > http://vtk.1045678.n5.nabble.com/Color-actor-based-on- > scalars-of-points-on-mesh-not-vertices-tp5742197p5742208.html > To unsubscribe from Color actor based on scalars of points on mesh (not > vertices), click here > > . > NAML > > -- View this message in context: http://vtk.1045678.n5.nabble.com/Color-actor-based-on-scalars-of-points-on-mesh-not-vertices-tp5742197p5742209.html Sent from the VTK - Users mailing list archive at Nabble.com. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bill.lorensen at gmail.com Thu Feb 16 10:23:19 2017 From: bill.lorensen at gmail.com (Bill Lorensen) Date: Thu, 16 Feb 2017 10:23:19 -0500 Subject: [vtkusers] Color actor based on scalars of points on mesh (not vertices) In-Reply-To: References: <1487211331635-5742197.post@n5.nabble.com> <1487212080401-5742199.post@n5.nabble.com> Message-ID: Can you describe what you expect to see? On Feb 16, 2017 10:05 AM, "Tharun" wrote: > Thanks for the heads up. > > But i have 0 ~ many points in each triangle (cell) not just one and a > scalar is associated with each point. > > Really appreciate the follow up. > > Regards, > P Tharun Kumar > > On Thu, Feb 16, 2017 at 11:50 PM, Cory Quammen-2 [via VTK] <[hidden email] > > wrote: > >> I see, thanks for the explanation. In VTK, we call that kind of data >> cell-associated data, or just cell data. >> >> In the vtkMapper you use, you'll want to call >> >> mapper->SetScalarModeToUseCellData(); >> >> It may be helpful to consult this example: >> http://www.vtk.org/Wiki/VTK/Examples/Cxx/Visualization/Assig >> nColorsFromLUT >> >> - Cory >> >> On Thu, Feb 16, 2017 at 9:40 AM, Tharun <[hidden email] >> > wrote: >> >> > sorry for not being clear. >> > >> > The polydata consists of triangles. I mean those points are inside >> triangles >> > of mesh not the vertices of triangles. >> > >> > Hope I am clear. >> > >> > Regards, >> > P Tharun Kumar >> > >> > On Thu, Feb 16, 2017 at 11:04 PM, Cory Quammen-2 [via VTK] <[hidden >> email]> >> > wrote: >> >> >> >> >> Okay, I'm curious. What is the difference between points on the mesh >> >> and vertices? >> >> >> >> On Wed, Feb 15, 2017 at 9:28 PM, Tharun <[hidden email]> wrote: >> >> >> >> > Thank you for the prompt reply. >> >> > >> >> > Unfortunately no. I have scalar values associated with points(not >> >> > vertices) >> >> > on the mesh. Where as in your example, color or scalar value is >> >> > associated >> >> > with vertices. >> >> > >> >> > >> >> > >> >> > -- >> >> > View this message in context: >> >> > http://vtk.1045678.n5.nabble.com/Color-actor-based-on-scalar >> s-of-points-on-mesh-not-vertices-tp5742197p5742199.html >> >> > Sent from the VTK - Users mailing list archive at Nabble.com. >> >> > _______________________________________________ >> >> >> >> > Powered by www.kitware.com >> >> > >> >> > Visit other Kitware open-source projects at >> >> > http://www.kitware.com/opensource/opensource.html >> >> > >> >> > Please keep messages on-topic and check the VTK FAQ at: >> >> > http://www.vtk.org/Wiki/VTK_FAQ >> >> > >> >> > Search the list archives at: http://markmail.org/search/?q=vtkusers >> >> > >> >> > Follow this link to subscribe/unsubscribe: >> >> > http://public.kitware.com/mailman/listinfo/vtkusers >> > >> > >> > >> > -- >> > Cory Quammen >> > Staff R&D Engineer >> > Kitware, Inc. >> > _______________________________________________ >> > Powered by www.kitware.com >> > >> > Visit other Kitware open-source projects at >> > http://www.kitware.com/opensource/opensource.html >> > >> > Please keep messages on-topic and check the VTK FAQ at: >> > http://www.vtk.org/Wiki/VTK_FAQ >> > >> > Search the list archives at: http://markmail.org/search/?q=vtkusers >> > >> > Follow this link to subscribe/unsubscribe: >> > http://public.kitware.com/mailman/listinfo/vtkusers >> > >> > >> > ________________________________ >> > If you reply to this email, your message will be added to the >> discussion >> > below: >> > http://vtk.1045678.n5.nabble.com/Color-actor-based-on-scalar >> s-of-points-on-mesh-not-vertices-tp5742197p5742205.html >> > To unsubscribe from Color actor based on scalars of points on mesh (not >> > vertices), click here. >> > NAML >> > >> > >> > ________________________________ >> > View this message in context: Re: Color actor based on scalars of >> points on >> > mesh (not vertices) >> > >> > Sent from the VTK - Users mailing list archive at Nabble.com. >> >> > >> > _______________________________________________ >> > Powered by www.kitware.com >> > >> > Visit other Kitware open-source projects at >> > http://www.kitware.com/opensource/opensource.html >> > >> > Please keep messages on-topic and check the VTK FAQ at: >> > http://www.vtk.org/Wiki/VTK_FAQ >> > >> > Search the list archives at: http://markmail.org/search/?q=vtkusers >> > >> > Follow this link to subscribe/unsubscribe: >> > http://public.kitware.com/mailman/listinfo/vtkusers >> > >> > > > -- > Cory Quammen > Staff R&D Engineer > Kitware, Inc. > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at http://www.kitware.com/opensou > rce/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: > http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers > > > ------------------------------ > If you reply to this email, your message will be added to the discussion > below: > http://vtk.1045678.n5.nabble.com/Color-actor-based-on-scalar > s-of-points-on-mesh-not-vertices-tp5742197p5742208.html > To unsubscribe from Color actor based on scalars of points on mesh (not > vertices), click here. > NAML > > > > ------------------------------ > View this message in context: Re: Color actor based on scalars of points > on mesh (not vertices) > > Sent from the VTK - Users mailing list archive > at Nabble.com. > > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at http://www.kitware.com/ > opensource/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: > http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From dave.demarle at kitware.com Thu Feb 16 10:31:24 2017 From: dave.demarle at kitware.com (David E DeMarle) Date: Thu, 16 Feb 2017 10:31:24 -0500 Subject: [vtkusers] Color actor based on scalars of points on mesh (not vertices) In-Reply-To: References: <1487211331635-5742197.post@n5.nabble.com> <1487212080401-5742199.post@n5.nabble.com> Message-ID: VTK doesn't support arbitrarily placed values within cells as a first class concept. So I would use two meshes: one containing just the extra points the other with for the usual mesh. Take a look at our Gauss points implementation. Here we store the extra points in the field data and have dedicated filters that work with and eventually extract them onto a separate mesh for display. David E DeMarle Kitware, Inc. R&D Engineer 21 Corporate Drive Clifton Park, NY 12065-8662 Phone: 518-881-4909 <(518)%20881-4909> On Thu, Feb 16, 2017 at 10:23 AM, Bill Lorensen wrote: > Can you describe what you expect to see? > > On Feb 16, 2017 10:05 AM, "Tharun" wrote: > >> Thanks for the heads up. >> >> But i have 0 ~ many points in each triangle (cell) not just one and a >> scalar is associated with each point. >> >> Really appreciate the follow up. >> >> Regards, >> P Tharun Kumar >> >> On Thu, Feb 16, 2017 at 11:50 PM, Cory Quammen-2 [via VTK] <[hidden >> email] > wrote: >> >>> I see, thanks for the explanation. In VTK, we call that kind of data >>> cell-associated data, or just cell data. >>> >>> In the vtkMapper you use, you'll want to call >>> >>> mapper->SetScalarModeToUseCellData(); >>> >>> It may be helpful to consult this example: >>> http://www.vtk.org/Wiki/VTK/Examples/Cxx/Visualization/Assig >>> nColorsFromLUT >>> >>> - Cory >>> >>> On Thu, Feb 16, 2017 at 9:40 AM, Tharun <[hidden email] >>> > wrote: >>> >>> > sorry for not being clear. >>> > >>> > The polydata consists of triangles. I mean those points are inside >>> triangles >>> > of mesh not the vertices of triangles. >>> > >>> > Hope I am clear. >>> > >>> > Regards, >>> > P Tharun Kumar >>> > >>> > On Thu, Feb 16, 2017 at 11:04 PM, Cory Quammen-2 [via VTK] <[hidden >>> email]> >>> > wrote: >>> >>> >> >>> >> Okay, I'm curious. What is the difference between points on the mesh >>> >> and vertices? >>> >> >>> >> On Wed, Feb 15, 2017 at 9:28 PM, Tharun <[hidden email]> wrote: >>> >> >>> >> > Thank you for the prompt reply. >>> >> > >>> >> > Unfortunately no. I have scalar values associated with points(not >>> >> > vertices) >>> >> > on the mesh. Where as in your example, color or scalar value is >>> >> > associated >>> >> > with vertices. >>> >> > >>> >> > >>> >> > >>> >> > -- >>> >> > View this message in context: >>> >> > http://vtk.1045678.n5.nabble.com/Color-actor-based-on-scalar >>> s-of-points-on-mesh-not-vertices-tp5742197p5742199.html >>> >> > Sent from the VTK - Users mailing list archive at Nabble.com. >>> >> > _______________________________________________ >>> >> >>> >> > Powered by www.kitware.com >>> >> > >>> >> > Visit other Kitware open-source projects at >>> >> > http://www.kitware.com/opensource/opensource.html >>> >> > >>> >> > Please keep messages on-topic and check the VTK FAQ at: >>> >> > http://www.vtk.org/Wiki/VTK_FAQ >>> >> > >>> >> > Search the list archives at: http://markmail.org/search/?q=vtkusers >>> >> > >>> >> > Follow this link to subscribe/unsubscribe: >>> >> > http://public.kitware.com/mailman/listinfo/vtkusers >>> > >>> > >>> > >>> > -- >>> > Cory Quammen >>> > Staff R&D Engineer >>> > Kitware, Inc. >>> > _______________________________________________ >>> > Powered by www.kitware.com >>> > >>> > Visit other Kitware open-source projects at >>> > http://www.kitware.com/opensource/opensource.html >>> > >>> > Please keep messages on-topic and check the VTK FAQ at: >>> > http://www.vtk.org/Wiki/VTK_FAQ >>> > >>> > Search the list archives at: http://markmail.org/search/?q=vtkusers >>> > >>> > Follow this link to subscribe/unsubscribe: >>> > http://public.kitware.com/mailman/listinfo/vtkusers >>> > >>> > >>> > ________________________________ >>> > If you reply to this email, your message will be added to the >>> discussion >>> > below: >>> > http://vtk.1045678.n5.nabble.com/Color-actor-based-on-scalar >>> s-of-points-on-mesh-not-vertices-tp5742197p5742205.html >>> > To unsubscribe from Color actor based on scalars of points on mesh >>> (not >>> > vertices), click here. >>> > NAML >>> > >>> > >>> > ________________________________ >>> > View this message in context: Re: Color actor based on scalars of >>> points on >>> > mesh (not vertices) >>> > >>> > Sent from the VTK - Users mailing list archive at Nabble.com. >>> >>> > >>> > _______________________________________________ >>> > Powered by www.kitware.com >>> > >>> > Visit other Kitware open-source projects at >>> > http://www.kitware.com/opensource/opensource.html >>> > >>> > Please keep messages on-topic and check the VTK FAQ at: >>> > http://www.vtk.org/Wiki/VTK_FAQ >>> > >>> > Search the list archives at: http://markmail.org/search/?q=vtkusers >>> > >>> > Follow this link to subscribe/unsubscribe: >>> > http://public.kitware.com/mailman/listinfo/vtkusers >>> > >>> >> >> >> -- >> Cory Quammen >> Staff R&D Engineer >> Kitware, Inc. >> _______________________________________________ >> Powered by www.kitware.com >> >> Visit other Kitware open-source projects at >> http://www.kitware.com/opensource/opensource.html >> >> Please keep messages on-topic and check the VTK FAQ at: >> http://www.vtk.org/Wiki/VTK_FAQ >> >> Search the list archives at: http://markmail.org/search/?q=vtkusers >> >> Follow this link to subscribe/unsubscribe: >> http://public.kitware.com/mailman/listinfo/vtkusers >> >> >> ------------------------------ >> If you reply to this email, your message will be added to the discussion >> below: >> http://vtk.1045678.n5.nabble.com/Color-actor-based-on-scalar >> s-of-points-on-mesh-not-vertices-tp5742197p5742208.html >> To unsubscribe from Color actor based on scalars of points on mesh (not >> vertices), click here. >> NAML >> >> >> >> ------------------------------ >> View this message in context: Re: Color actor based on scalars of points >> on mesh (not vertices) >> >> Sent from the VTK - Users mailing list archive >> at Nabble.com. >> >> _______________________________________________ >> Powered by www.kitware.com >> >> Visit other Kitware open-source projects at >> http://www.kitware.com/opensource/opensource.html >> >> Please keep messages on-topic and check the VTK FAQ at: >> http://www.vtk.org/Wiki/VTK_FAQ >> >> Search the list archives at: http://markmail.org/search/?q=vtkusers >> >> Follow this link to subscribe/unsubscribe: >> http://public.kitware.com/mailman/listinfo/vtkusers >> >> > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at http://www.kitware.com/opensou > rce/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: > http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From rickfrank at me.com Thu Feb 16 17:58:22 2017 From: rickfrank at me.com (Richard Frank) Date: Thu, 16 Feb 2017 22:58:22 +0000 (GMT) Subject: [vtkusers] Chinese or Russian Text Message-ID: <305cecc6-f589-4a83-bea0-08199aa37a1d@me.com> Hi, We are trying to add unicode to our vtk render windows and we haven't been able to get it to work. I modified the DrawText.cxx example with the following // Setup the text and add it to the renderer ? vtkSmartPointer textActor = ??? vtkSmartPointer::New(); ? std::string testString = u8"I have a red car."; ? textActor->SetInput (testString.c_str()); ? textActor->SetPosition2 ( 10, 40 ); ? textActor->GetTextProperty()->SetFontSize ( 24 ); ? textActor->GetTextProperty()->SetColor ( 1.0, 0.0, 0.0 ); ? renderer->AddActor2D ( textActor ); ? ? // Setup the text and add it to the renderer ? vtkSmartPointer textActor2 = ?? ?? vtkSmartPointer::New(); ? std::string testString2 = u8"??????????"; ? textActor2->SetInput(testString2.c_str()); ? textActor2->SetPosition(10, 80); ? textActor2->GetTextProperty()->SetFontFamilyAsString("Microsoft YaHei"); ? textActor2->GetTextProperty()->SetFontFile("D:\\Projects\\DrawText\\msyhl.ttc"); ? textActor2->GetTextProperty()->SetFontSize(24); ? textActor2->GetTextProperty()->SetColor(0.0, 0.0, 1.0); ? renderer->AddActor2D(textActor2); ? // Render and interact ? renderWindow->Render(); but nothing draws for the chinese text. Is there anything else needed? Or is it a bug? I can make my DrawText.cxx, Cmake and font file available. Thanks Rick Frank -------------- next part -------------- An HTML attachment was scrubbed... URL: From b.schober at stemmer-imaging.de Fri Feb 17 02:50:03 2017 From: b.schober at stemmer-imaging.de (Schober Beatrix [STEMMER IMAGING GmbH]) Date: Fri, 17 Feb 2017 07:50:03 +0000 Subject: [vtkusers] Scaling with VtkTransform and VtkLookupTable Message-ID: Good morning! I am a bit confused about following behaviour. I tried to find an answer / solution, but spent already more than a day with that. Maybe the behaviour is correct, I just misunderstand it? I have a point cloud (VtkPolyData), using a VtkTransform Filter to scale the z-values. As I want the points to be displayed colored, I use the vtkLookupTable as well as the ScalarBarWidget to display the lookup table. Before scaling my z-range is 98 - 255, after scaling (2*) the range is 196 - 510. If I do not change the VtkLookupTable's table range (it is still 98 - 255), the colors are mapped correctly from 196 to 510. If I change the table range to 196 - 510 and the mapper's scalar range to 196 - 510, in order to get a correct valued ScalarBarWidget (range 196 - 510), only colors from 196 to 255 are mapped, everything else not. (The picker shows the correctly scaled point data.) My questions: Why is the mapping wrong if I update the scalar range / lookup table range? How can I achieve a correctly scaled ScalarBarWidget (196 - 510)? Thank you very much in advance for your support! Bea -------------- next part -------------- An HTML attachment was scrubbed... URL: From Wiggerl at Linhuber.info Fri Feb 17 03:02:02 2017 From: Wiggerl at Linhuber.info (Willy) Date: Fri, 17 Feb 2017 01:02:02 -0700 (MST) Subject: [vtkusers] vtkGPUVolumeRayCastMapper: Updateing ImageData after first Rendering? In-Reply-To: <1487174652057-5742194.post@n5.nabble.com> References: <1486972453592-5742153.post@n5.nabble.com> <1487085319680-5742181.post@n5.nabble.com> <1487171038576-5742191.post@n5.nabble.com> <1487173203410-5742192.post@n5.nabble.com> <1487174652057-5742194.post@n5.nabble.com> Message-ID: <1487318522256-5742217.post@n5.nabble.com> Thanks alot for your code, the Interactor works and it's faster than my solution. I could not found vtkDotNetCommand or vtkDotNetCallback, but that's ok i don't need them yet. The Modified-Method works now too. I dont know why. i changed vtkVolumeMapper::SetInputData to SetInputConnection and i of course use the interactor now. Maybe one of these two changes fixed that somehow. I just have one more question. If i i am using my 3GB Testdata it takes 1 Minute 29 seconds until i see the first rendered image (after that it's fast enough) and that does not contain the time it takes to read the data from the HD. That would be about 34 MB per second. Even a 20 years old HD would be faster. Can that really be normal? -- View this message in context: http://vtk.1045678.n5.nabble.com/vtkGPUVolumeRayCastMapper-Updateing-ImageData-after-first-Rendering-tp5742153p5742217.html Sent from the VTK - Users mailing list archive at Nabble.com. From jimmigoo at gmail.com Fri Feb 17 03:07:11 2017 From: jimmigoo at gmail.com (jimmigoo) Date: Fri, 17 Feb 2017 01:07:11 -0700 (MST) Subject: [vtkusers] Chinese or Russian Text In-Reply-To: <305cecc6-f589-4a83-bea0-08199aa37a1d@me.com> References: <305cecc6-f589-4a83-bea0-08199aa37a1d@me.com> Message-ID: <1487318831903-5742218.post@n5.nabble.com> Hi Rick, try to set Font Family as VTK_FONT_FILE, and try to use the attached ttf files to show Russian (Europe.ttf) characters m_pvtkTextActor->GetTextProperty()->SetFontFamily(VTK_FONT_FILE); m_pvtkTextActor->GetTextProperty()->SetFontFile(l_strFontFile.c_str()); Europe.ttf Hope it helps Regards, jimmigoo -- View this message in context: http://vtk.1045678.n5.nabble.com/Chinese-or-Russian-Text-tp5742212p5742218.html Sent from the VTK - Users mailing list archive at Nabble.com. From jimmigoo at gmail.com Fri Feb 17 03:09:34 2017 From: jimmigoo at gmail.com (jimmigoo) Date: Fri, 17 Feb 2017 01:09:34 -0700 (MST) Subject: [vtkusers] Chinese or Russian Text In-Reply-To: <1487318831903-5742218.post@n5.nabble.com> References: <305cecc6-f589-4a83-bea0-08199aa37a1d@me.com> <1487318831903-5742218.post@n5.nabble.com> Message-ID: <1487318974351-5742219.post@n5.nabble.com> If Russian characters works, do the same thing for Chinese characters, trying to find a ttf file containing CJK (Chinese, Janapese and Korean) charset handled by VTK. Regards, jimmigoo -- View this message in context: http://vtk.1045678.n5.nabble.com/Chinese-or-Russian-Text-tp5742212p5742219.html Sent from the VTK - Users mailing list archive at Nabble.com. From guillaume.jacquenot at gmail.com Fri Feb 17 06:08:26 2017 From: guillaume.jacquenot at gmail.com (Guillaume Jacquenot) Date: Fri, 17 Feb 2017 12:08:26 +0100 Subject: [vtkusers] Trouble compiling VTK 7.1.0 with MSVC 2015 Message-ID: Hello, I have tried to compile VTK 7.1 with MSVC2015 in release mode. Below is CMake command line that reproduces the bug. I have faced two compilation issues with vtkNetCDF First, compilation stopped because of a missing include file required in https://gitlab.kitware.com/vtk/vtk/blob/master/ThirdParty/netcdf/vtknetcdf/libsrc/lookup3.c#L58 I had to comment the following specific Windows include instruction to continue // #include /* attempt to define endianness */ Second, in file ThirdParty\netcdf\vtknetcdf\libsrc4\nc4hdf.c, I have an error for line 3666 error C2177: constant too big https://gitlab.kitware.com/vtk/vtk/blob/master/ThirdParty/netcdf/vtknetcdf/libsrc4/nc4hdf.c#L3666 I also commented the lines, and compilation continues The comment on the next line seems gave me the idea to also comment the non compiling lines https://gitlab.kitware.com/vtk/vtk/blob/master/ThirdParty/netcdf/vtknetcdf/libsrc4/nc4hdf.c#L3674 I have checked the master branch and no evolution has been made to the code since release 7.1.0 My CMake command line is cmake ^ -DCTEST_USE_LAUNCHERS:BOOL=OFF ^ -DVTK_USE_LARGE_DATA:BOOL=OFF ^ -DVTK_WRAP_PYTHON:BOOL=OFF ^ -DVTK_WRAP_JAVA:BOOL=OFF ^ -DVTK_WRAP_TCL:BOOL=OFF ^ -DVTK_USE_SYSTEM_LIBRARIES:BOOL=OFF ^ -DVTK_Group_MPI:BOOL=OFF ^ -DVTK_Group_Qt:STRING=OFF ^ -DVTK_DEBUG_LEAKS:BOOL=OFF ^ -DVTK_ENABLE_KITS:BOOL=OFF ^ -DCMAKE_CXX_MP_FLAG:BOOL=OFF ^ -DVTK_LINKER_FATAL_WARNINGS:BOOL=ON ^ -DBUILD_EXAMPLES:BOOL=OFF ^ -DBUILD_TESTING:BOOL=OFF ^ -DNETCFD_ENABLE_CXX:BOOL=OFF ^ -DBUILD_SHARED_LIBS:BOOL=OFF ^ -DCMAKE_BUILD_TYPE:STRING=Release ^ -DCMAKE_INSTALL_PREFIX:PATH="C:/Program Files/VTK_7_1_0_MSVC14_64" ^ -G"Visual Studio 14 Win64" ^ ..\VTK_7_1_0_SRC Guillaume Jacquenot -------------- next part -------------- An HTML attachment was scrubbed... URL: From nicolas.cedilnik at inria.fr Fri Feb 17 08:38:41 2017 From: nicolas.cedilnik at inria.fr (Nicolas Cedilnik) Date: Fri, 17 Feb 2017 14:38:41 +0100 Subject: [vtkusers] How to explicitely get the different regions with ConnectivityFilter? Message-ID: <4ce68661-cead-eedc-2d53-451f9398ac6f@inria.fr> Hello, I have an unstructured grid with several point data arrays and would like to extract the connected regions and their associated data into separate files. I can do that with paraview but I'm struggling to get it done using python vtk bindings. So far I've managed to extract the cells corresponding to the the largest region: rd = vtk.vtkGenericDataObjectReader() rd.SetFileName(my_input_vtk_file) rd.Update() ug = rd.GetOutput() f = vtk.vtkConnectivityFilter() f.SetInputData(ug) f.SetExtractionModeToLargestRegion() f.Update() out = f.GetOutput() ug.GetNumberOfCells() # 28396, the original number of cells out.GetNumberOfCells() # 27740, less cells, looks good from which I can work something out, but I have two problems with this approach: - I'd like to know the indices of the other connected regions - the `ug` input only has 1 point data array, I believe this is a known limitation I've found a SetExtractionModeToAllRegions method but I don't understand how to deal with it: f.SetExtractionModeToAllRegions() b = f.GetOutput() b.GetNumberOfCells() # 28396, same as input b.GetCellData().GetNumberOfArrays() # 0, I would have expected an array where the cells where labeled by region number... All in all, I have two questions: - How do I use the filter to get the cells labeled by region? - (less important) Is it possible to read different point data arrays with vtk python bindings? Thanks in advance for your help and advices on how to use vtk properly -- Nicolas From david.gobbi at gmail.com Fri Feb 17 08:50:47 2017 From: david.gobbi at gmail.com (David Gobbi) Date: Fri, 17 Feb 2017 06:50:47 -0700 Subject: [vtkusers] Trouble compiling VTK 7.1.0 with MSVC 2015 In-Reply-To: References: Message-ID: Hi Guillaume, The problem that you are seeing is a configuration problem, so do not try to fix it by changing the code. I suspect that cmake did not find the Windows SDK. Are you running cmake on the command line? You can help cmake find the proper header files by setting up the command line for the compiler: https://msdn.microsoft.com/en-us/library/f2ccy3wt.aspx Cheers, - David On Fri, Feb 17, 2017 at 4:08 AM, Guillaume Jacquenot < guillaume.jacquenot at gmail.com> wrote: > Hello, > > I have tried to compile VTK 7.1 with MSVC2015 in release mode. Below is > CMake command line that reproduces the bug. > > I have faced two compilation issues with vtkNetCDF > > First, compilation stopped because of a missing include file required in > https://gitlab.kitware.com/vtk/vtk/blob/master/ > ThirdParty/netcdf/vtknetcdf/libsrc/lookup3.c#L58 > > I had to comment the following specific Windows include instruction to > continue > // #include /* attempt to define endianness */ > > Second, in file ThirdParty\netcdf\vtknetcdf\libsrc4\nc4hdf.c, I have an > error for line 3666 > error C2177: constant too big > https://gitlab.kitware.com/vtk/vtk/blob/master/ > ThirdParty/netcdf/vtknetcdf/libsrc4/nc4hdf.c#L3666 > I also commented the lines, and compilation continues > > The comment on the next line seems gave me the idea to also comment the > non compiling lines > > https://gitlab.kitware.com/vtk/vtk/blob/master/ > ThirdParty/netcdf/vtknetcdf/libsrc4/nc4hdf.c#L3674 > > I have checked the master branch and no evolution has been made to the > code since release 7.1.0 > > > My CMake command line is > > cmake ^ > -DCTEST_USE_LAUNCHERS:BOOL=OFF ^ > -DVTK_USE_LARGE_DATA:BOOL=OFF ^ > -DVTK_WRAP_PYTHON:BOOL=OFF ^ > -DVTK_WRAP_JAVA:BOOL=OFF ^ > -DVTK_WRAP_TCL:BOOL=OFF ^ > -DVTK_USE_SYSTEM_LIBRARIES:BOOL=OFF ^ > -DVTK_Group_MPI:BOOL=OFF ^ > -DVTK_Group_Qt:STRING=OFF ^ > -DVTK_DEBUG_LEAKS:BOOL=OFF ^ > -DVTK_ENABLE_KITS:BOOL=OFF ^ > -DCMAKE_CXX_MP_FLAG:BOOL=OFF ^ > -DVTK_LINKER_FATAL_WARNINGS:BOOL=ON ^ > -DBUILD_EXAMPLES:BOOL=OFF ^ > -DBUILD_TESTING:BOOL=OFF ^ > -DNETCFD_ENABLE_CXX:BOOL=OFF ^ > -DBUILD_SHARED_LIBS:BOOL=OFF ^ > -DCMAKE_BUILD_TYPE:STRING=Release ^ > -DCMAKE_INSTALL_PREFIX:PATH="C:/Program Files/VTK_7_1_0_MSVC14_64" ^ > -G"Visual Studio 14 Win64" ^ > ..\VTK_7_1_0_SRC > > Guillaume Jacquenot > -------------- next part -------------- An HTML attachment was scrubbed... URL: From dhoppes at mbfbioscience.com Fri Feb 17 08:44:12 2017 From: dhoppes at mbfbioscience.com (Doug Hoppes) Date: Fri, 17 Feb 2017 13:44:12 +0000 Subject: [vtkusers] Combining vtkvolumes Message-ID: <46CB11F12B9DC24D860D4082451B318A36D25147@exchange3.microbrightfield.com> Hey all, Is there a way to combine two vtkvolumes into a single volume? Doug -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.gobbi at gmail.com Fri Feb 17 08:56:39 2017 From: david.gobbi at gmail.com (David Gobbi) Date: Fri, 17 Feb 2017 06:56:39 -0700 Subject: [vtkusers] Scaling with VtkTransform and VtkLookupTable In-Reply-To: References: Message-ID: Hi Bea, There is something missing from your explanation: how are you setting the scalars for your points? The lookup table maps scalars to colors, and scalars are not changed by vtkTransformFilter. - David On Fri, Feb 17, 2017 at 12:50 AM, Schober Beatrix [STEMMER IMAGING GmbH] < b.schober at stemmer-imaging.de> wrote: > Good morning! > > > > I am a bit confused about following behaviour. I tried to find an answer / > solution, but spent already more than a day with that. Maybe the behaviour > is correct, I just misunderstand it? > > > > I have a point cloud (VtkPolyData), using a VtkTransform Filter to scale > the z-values. As I want the points to be displayed colored, I use the > vtkLookupTable as well as the ScalarBarWidget to display the lookup table. > > Before scaling my z-range is 98 ? 255, after scaling (2*) the range is 196 > ? 510. > > > > If I do not change the VtkLookupTable?s table range (it is still 98 ? > 255), the colors are mapped correctly from 196 to 510. If I change the > table range to 196 ? 510 and the mapper?s scalar range to 196 ? 510, in > order to get a correct valued ScalarBarWidget (range 196 ? 510), only > colors from 196 to 255 are mapped, everything else not. (The picker shows > the correctly scaled point data.) > > > > My questions: Why is the mapping wrong if I update the scalar range / > lookup table range? How can I achieve a correctly scaled ScalarBarWidget > (196 ? 510)? > > > > Thank you very much in advance for your support! > > > > Bea > -------------- next part -------------- An HTML attachment was scrubbed... URL: From aashish.chaudhary at kitware.com Fri Feb 17 09:00:58 2017 From: aashish.chaudhary at kitware.com (Aashish Chaudhary) Date: Fri, 17 Feb 2017 14:00:58 +0000 Subject: [vtkusers] Combining vtkvolumes In-Reply-To: <46CB11F12B9DC24D860D4082451B318A36D25147@exchange3.microbrightfield.com> References: <46CB11F12B9DC24D860D4082451B318A36D25147@exchange3.microbrightfield.com> Message-ID: I am no aware of any filter but you can write a short program to achieve this. What is the use case here? On Fri, Feb 17, 2017 at 8:55 AM Doug Hoppes wrote: > Hey all, > > > > Is there a way to combine two vtkvolumes into a single > volume? > > > > Doug > > > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: > http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers > -------------- next part -------------- An HTML attachment was scrubbed... URL: From dhoppes at mbfbioscience.com Fri Feb 17 09:06:15 2017 From: dhoppes at mbfbioscience.com (Doug Hoppes) Date: Fri, 17 Feb 2017 14:06:15 +0000 Subject: [vtkusers] Combining vtkvolumes In-Reply-To: References: <46CB11F12B9DC24D860D4082451B318A36D25147@exchange3.microbrightfield.com> Message-ID: <46CB11F12B9DC24D860D4082451B318A36D252B6@exchange3.microbrightfield.com> Consider the case where I have Volume 1 at 0,0,0 and showing a skull Volume 2 at 10,10,10 and showing an eye Volume 3 at 0,0,0 and showing the inside of the skull. I would like to show all of the images at the same time and, potentially, show different transparencies for each image. From: Aashish Chaudhary [mailto:aashish.chaudhary at kitware.com] Sent: Friday, February 17, 2017 9:01 AM To: Doug Hoppes; vtkusers at vtk.org Subject: Re: [vtkusers] Combining vtkvolumes I am no aware of any filter but you can write a short program to achieve this. What is the use case here? On Fri, Feb 17, 2017 at 8:55 AM Doug Hoppes > wrote: Hey all, Is there a way to combine two vtkvolumes into a single volume? Doug _______________________________________________ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages on-topic and check the VTK FAQ at: http://www.vtk.org/Wiki/VTK_FAQ Search the list archives at: http://markmail.org/search/?q=vtkusers Follow this link to subscribe/unsubscribe: http://public.kitware.com/mailman/listinfo/vtkusers -------------- next part -------------- An HTML attachment was scrubbed... URL: From b.schober at stemmer-imaging.de Fri Feb 17 09:31:14 2017 From: b.schober at stemmer-imaging.de (Schober Beatrix [STEMMER IMAGING GmbH]) Date: Fri, 17 Feb 2017 14:31:14 +0000 Subject: [vtkusers] Scaling with VtkTransform and VtkLookupTable In-Reply-To: References: Message-ID: <2f6c590397a748aa9c907d945c90d287@SIMAIL13.stemmer.local> Hi David, I do have x, y and z values (e.g. as txt file or as a grayscale image): vtkPoints = vtkSmartPointer::New(); vtkCells = vtkSmartPointer::New(); vtkDepths = vtkSmartPointer::New(); void addPoint(double x, double y, double z) { vtkIdType id = vtkPoints->InsertNextPoint(x, y, z); vtkDepths->InsertNextValue(z); vtkCells->InsertNextCell(1); vtkCells->InsertCellPoint(id); vtkCells->Modified(); vtkPoints->Modified(); vtkDepths->Modified(); } vtkDepths->SetName("DepthArray"); vtkPolyData->SetPoints(m_vtkPoints); vtkPolyData->SetVerts(m_vtkCells); vtkPolyData->GetPointData()->SetScalars(m_vtkDepths); vtkPolyData->GetPointData()->SetActiveScalars("DepthArray"); Regards, Bea Von: David Gobbi [mailto:david.gobbi at gmail.com] Gesendet: Freitag, 17. Februar 2017 14:57 An: Schober Beatrix [STEMMER IMAGING GmbH] Cc: vtkusers at vtk.org Betreff: Re: [vtkusers] Scaling with VtkTransform and VtkLookupTable Hi Bea, There is something missing from your explanation: how are you setting the scalars for your points? The lookup table maps scalars to colors, and scalars are not changed by vtkTransformFilter. - David On Fri, Feb 17, 2017 at 12:50 AM, Schober Beatrix [STEMMER IMAGING GmbH] > wrote: Good morning! I am a bit confused about following behaviour. I tried to find an answer / solution, but spent already more than a day with that. Maybe the behaviour is correct, I just misunderstand it? I have a point cloud (VtkPolyData), using a VtkTransform Filter to scale the z-values. As I want the points to be displayed colored, I use the vtkLookupTable as well as the ScalarBarWidget to display the lookup table. Before scaling my z-range is 98 ? 255, after scaling (2*) the range is 196 ? 510. If I do not change the VtkLookupTable?s table range (it is still 98 ? 255), the colors are mapped correctly from 196 to 510. If I change the table range to 196 ? 510 and the mapper?s scalar range to 196 ? 510, in order to get a correct valued ScalarBarWidget (range 196 ? 510), only colors from 196 to 255 are mapped, everything else not. (The picker shows the correctly scaled point data.) My questions: Why is the mapping wrong if I update the scalar range / lookup table range? How can I achieve a correctly scaled ScalarBarWidget (196 ? 510)? Thank you very much in advance for your support! Bea -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.gobbi at gmail.com Fri Feb 17 09:46:57 2017 From: david.gobbi at gmail.com (David Gobbi) Date: Fri, 17 Feb 2017 07:46:57 -0700 Subject: [vtkusers] Scaling with VtkTransform and VtkLookupTable In-Reply-To: <2f6c590397a748aa9c907d945c90d287@SIMAIL13.stemmer.local> References: <2f6c590397a748aa9c907d945c90d287@SIMAIL13.stemmer.local> Message-ID: Hi Bea, Then the answer is simple: vtkTransformFilter does not change the "DepthArray" because the transform only operates on point coordinates. It does not operate on the scalars that are associated with those points. - David On Fri, Feb 17, 2017 at 7:31 AM, Schober Beatrix [STEMMER IMAGING GmbH] < b.schober at stemmer-imaging.de> wrote: > Hi David, > > > > I do have x, y and z values (e.g. as txt file or as a grayscale image): > > > > vtkPoints = vtkSmartPointer::New(); > > vtkCells = vtkSmartPointer::New(); > > vtkDepths = vtkSmartPointer::New(); > > > > > > void addPoint(double x, double y, double z) > > { > > vtkIdType id = vtkPoints->InsertNextPoint(x, y, z); > > vtkDepths->InsertNextValue(z); > > vtkCells->InsertNextCell(1); > > vtkCells->InsertCellPoint(id); > > vtkCells->Modified(); > > vtkPoints->Modified(); > > vtkDepths->Modified(); > > } > > > > > > vtkDepths->SetName("DepthArray"); > > vtkPolyData->SetPoints(m_vtkPoints); > > vtkPolyData->SetVerts(m_vtkCells); > > vtkPolyData->GetPointData()->SetScalars(m_vtkDepths); > > vtkPolyData->GetPointData()->SetActiveScalars("DepthArray"); > > > > Regards, > > > > Bea > > > > > > > > *Von:* David Gobbi [mailto:david.gobbi at gmail.com] > *Gesendet:* Freitag, 17. Februar 2017 14:57 > *An:* Schober Beatrix [STEMMER IMAGING GmbH] > > *Cc:* vtkusers at vtk.org > *Betreff:* Re: [vtkusers] Scaling with VtkTransform and VtkLookupTable > > > > Hi Bea, > > > > There is something missing from your explanation: how are you setting the > scalars for your points? The lookup table maps scalars to colors, and > scalars are not changed by vtkTransformFilter. > > > > - David > > > > > > On Fri, Feb 17, 2017 at 12:50 AM, Schober Beatrix [STEMMER IMAGING GmbH] < > b.schober at stemmer-imaging.de> wrote: > > Good morning! > > > > I am a bit confused about following behaviour. I tried to find an answer / > solution, but spent already more than a day with that. Maybe the behaviour > is correct, I just misunderstand it? > > > > I have a point cloud (VtkPolyData), using a VtkTransform Filter to scale > the z-values. As I want the points to be displayed colored, I use the > vtkLookupTable as well as the ScalarBarWidget to display the lookup table. > > Before scaling my z-range is 98 ? 255, after scaling (2*) the range is 196 > ? 510. > > > > If I do not change the VtkLookupTable?s table range (it is still 98 ? > 255), the colors are mapped correctly from 196 to 510. If I change the > table range to 196 ? 510 and the mapper?s scalar range to 196 ? 510, in > order to get a correct valued ScalarBarWidget (range 196 ? 510), only > colors from 196 to 255 are mapped, everything else not. (The picker shows > the correctly scaled point data.) > > > > My questions: Why is the mapping wrong if I update the scalar range / > lookup table range? How can I achieve a correctly scaled ScalarBarWidget > (196 ? 510)? > > > > Thank you very much in advance for your support! > > > > Bea > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From w.h.greene at gmail.com Fri Feb 17 10:42:48 2017 From: w.h.greene at gmail.com (Bill Greene) Date: Fri, 17 Feb 2017 10:42:48 -0500 Subject: [vtkusers] writing time-dependent data Message-ID: I have been trying to write time-dependent data to an XML file using vtkXMLUnstructuredGridWriter. I found an example, http://www.vtk.org/Wiki/VTK/Examples/Cxx/Broken/IO/ExodusIIWriter, that uses vtkTimeSourceExample to write time-dependent data to an Exodus II file. Despite the word "Broken" in the URL, this appears to work correctly. But when I modify it to use vtkXMLUnstructuredGridWriter instead of vtkExodusIIWriter, only the model data is written. Can someone tell me if vtkXMLUnstructuredGridWriter is supposed to handle time-dependent data, or if not, how to write an XML file with time-dependent data? I am using vtk 7.1.0. Thanks, Bill Greene From ananta.satriadi at gmail.com Fri Feb 17 20:22:49 2017 From: ananta.satriadi at gmail.com (kadek) Date: Fri, 17 Feb 2017 18:22:49 -0700 (MST) Subject: [vtkusers] Spliting polydata using OBBDicer and store each piece as invidual file. Message-ID: <1487380969861-5742235.post@n5.nabble.com> Hi I have been trying to split up an isosurface mesh and store it into chunks. I know OBBDicer can do the splitting work, but I could not find the way to access each piece. There is one example of storing multiple polydata based on scalar values: http://www.vtk.org/gitweb?p=VTK.git;a=blob;f=Examples/Medical/Cxx/GenerateModelsFromLabels.cxx But I did not manage to adapt that example to my problem. Is there any way to access each piece generated by OBBDicer? Any help will be much appreciated. Regards, Kadek -- View this message in context: http://vtk.1045678.n5.nabble.com/Spliting-polydata-using-OBBDicer-and-store-each-piece-as-invidual-file-tp5742235.html Sent from the VTK - Users mailing list archive at Nabble.com. From bill.lorensen at gmail.com Fri Feb 17 20:56:41 2017 From: bill.lorensen at gmail.com (Bill Lorensen) Date: Fri, 17 Feb 2017 20:56:41 -0500 Subject: [vtkusers] Spliting polydata using OBBDicer and store each piece as invidual file. In-Reply-To: <1487380969861-5742235.post@n5.nabble.com> References: <1487380969861-5742235.post@n5.nabble.com> Message-ID: Use vtkThreshold. On Fri, Feb 17, 2017 at 8:22 PM, kadek wrote: > Hi I have been trying to split up an isosurface mesh and store it into > chunks. > I know OBBDicer can do the splitting work, but I could not find the way to > access each piece. > > There is one example of storing multiple polydata based on scalar values: > http://www.vtk.org/gitweb?p=VTK.git;a=blob;f=Examples/Medical/Cxx/GenerateModelsFromLabels.cxx > > But I did not manage to adapt that example to my problem. > Is there any way to access each piece generated by OBBDicer? > > Any help will be much appreciated. > > Regards, > Kadek > > > > -- > View this message in context: http://vtk.1045678.n5.nabble.com/Spliting-polydata-using-OBBDicer-and-store-each-piece-as-invidual-file-tp5742235.html > Sent from the VTK - Users mailing list archive at Nabble.com. > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers -- Unpaid intern in BillsBasement at noware dot com From ananta.satriadi at gmail.com Fri Feb 17 21:13:38 2017 From: ananta.satriadi at gmail.com (kadek) Date: Fri, 17 Feb 2017 19:13:38 -0700 (MST) Subject: [vtkusers] Spliting polydata using OBBDicer and store each piece as invidual file. In-Reply-To: References: <1487380969861-5742235.post@n5.nabble.com> Message-ID: <1487384018741-5742237.post@n5.nabble.com> Hi Bill, thank you for your reply. How exactly does it work? It is where I stuck. vtkOBBDicer dice = new vtkOBBDicer(); dice.SetInputConnection(normal.GetOutputPort()); dice.SetNumberOfPieces(8); dice.SetDiceModeToSpecifiedNumberOfPieces(); dice.Update(); vtkThreshold th = new vtkThreshold(); th.SetInputConnection(dice.GetOutputPort()); th.SetInputArrayToProcess(0, 0, 0, 0, "vtkOBBDicer_GroupIds"); // Missing something here th.Update(); vtkPolyData piece1 = ? vtkPolyData piece2 = ? vtkPolyData piece3 = ? vtkPolyData piece4 = ? I dont know how the vtkThreshold is splitting up (or accessing) each piece from the dicer. Any idea? Cheers, Kadek -- View this message in context: http://vtk.1045678.n5.nabble.com/Spliting-polydata-using-OBBDicer-and-store-each-piece-as-invidual-file-tp5742235p5742237.html Sent from the VTK - Users mailing list archive at Nabble.com. From bill.lorensen at gmail.com Fri Feb 17 22:41:21 2017 From: bill.lorensen at gmail.com (Bill Lorensen) Date: Fri, 17 Feb 2017 22:41:21 -0500 Subject: [vtkusers] Spliting polydata using OBBDicer and store each piece as invidual file. In-Reply-To: <1487384018741-5742237.post@n5.nabble.com> References: <1487380969861-5742235.post@n5.nabble.com> <1487384018741-5742237.post@n5.nabble.com> Message-ID: Here . is a c++ example that splits polygonal meshes On Fri, Feb 17, 2017 at 9:13 PM, kadek wrote: > Hi Bill, thank you for your reply. > How exactly does it work? > It is where I stuck. > > vtkOBBDicer dice = new vtkOBBDicer(); > dice.SetInputConnection(normal.GetOutputPort()); > dice.SetNumberOfPieces(8); > dice.SetDiceModeToSpecifiedNumberOfPieces(); > dice.Update(); > > vtkThreshold th = new vtkThreshold(); > th.SetInputConnection(dice.GetOutputPort()); > th.SetInputArrayToProcess(0, 0, 0, 0, "vtkOBBDicer_GroupIds"); > // Missing something here > th.Update(); > > vtkPolyData piece1 = ? > vtkPolyData piece2 = ? > vtkPolyData piece3 = ? > vtkPolyData piece4 = ? > > I dont know how the vtkThreshold is splitting up (or accessing) each piece > from the dicer. > Any idea? > > Cheers, > Kadek > > > > -- > View this message in context: http://vtk.1045678.n5.nabble.com/Spliting-polydata-using-OBBDicer-and-store-each-piece-as-invidual-file-tp5742235p5742237.html > Sent from the VTK - Users mailing list archive at Nabble.com. > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers -- Unpaid intern in BillsBasement at noware dot com -------------- next part -------------- A non-text attachment was scrubbed... Name: SplitPolyData.cxx Type: application/octet-stream Size: 1890 bytes Desc: not available URL: From ananta.satriadi at gmail.com Sat Feb 18 01:06:10 2017 From: ananta.satriadi at gmail.com (kadek) Date: Fri, 17 Feb 2017 23:06:10 -0700 (MST) Subject: [vtkusers] Spliting polydata using OBBDicer and store each piece as invidual file. In-Reply-To: References: <1487380969861-5742235.post@n5.nabble.com> <1487384018741-5742237.post@n5.nabble.com> Message-ID: <1487397970336-5742239.post@n5.nabble.com> Thank you so much! Cheers Kadek -- View this message in context: http://vtk.1045678.n5.nabble.com/Spliting-polydata-using-OBBDicer-and-store-each-piece-as-invidual-file-tp5742235p5742239.html Sent from the VTK - Users mailing list archive at Nabble.com. From julia.ute.fischer at gmail.com Sun Feb 19 17:43:09 2017 From: julia.ute.fischer at gmail.com (Julia Fischer) Date: Sun, 19 Feb 2017 23:43:09 +0100 Subject: [vtkusers] archive Message-ID: -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- ? z?W????`????6? e?j:?,?z+:??9 at Ya?g???~Cr?H F??????}?p?{? ?`3?|!|? S-??/[??r?s {u? ? R???% |t?q=??+ B?????0 ??&#???m???P????n??k????{????????????????p ?? ???@?????x??2??;Z??l? ::???.?M_HU???yu????p4??H1/?Xd]|p?????????? p4?mnAAne???2??.?f???dW????Ce?#F????S?????W??F?3G$`???;??D?).??O 6t?6SdBy??????9_)a?;? ?6Y?rB0???W ??Y hbB??W??!`b?5?P???P?????#?J ??,???'U????e rU?????????.?J???`v^8?"???4?????oo?w>T +???s???w3C???=h??????;???,? x?f=?T!???R4??n??????9??G??q?G?$[???? 4-?V?d?#???0Le?.??????EW???l~z8?4],]??q???f?8??Z? .FuMI7&????+?PCa!???? ?????????0??AR9???C?? ??yeH?H???Cn?A/???M`?,&? ?|?g?;?g8? ??n??vZ?t-?? T?'wY??????N???$U???Nk??z?j??2r \67???????P?? h&{G?TW??????ZE?????3?j??3??W?F@?W??[??Kr??P )???yO?'' ?*?&?Fe?? ?????*?\? # ???? j?Th?d? KS?v ? C"????k??a?o? ?@Y?I?????????L???i???e#?m?H?h\9???ym??6???? `?^????"(j?=?`?????>pbOz?r/??9?:??["%4hr??u3?? (??G}[??~z?k????]??;???{?So?Z?B?D??K?r????6?|)p?? 1??:2??M"C?UXB??#????TzuW??HuQ?p???Y????Hkdf? ?N ??]??????|?L .?f????O?`???.9.M???y???ND0?)S??^??OmC>5D#?B?[?tnr?N??????HRH??J?f?>??H?b?????p????n?=?Wd?????'?34>?%? ????+???>??R???1?.C?e??G0??)?;h? ?*?`a????"?H&???Ch???jW?u:z?}}:e?&|-?G=(Z????Z6X?X????K????#SZ??????a"?H??U?rd??/H???2??E??-&??v? ?W? ?OI{?????>T?n?!b5?.? E?aP???????[zI~???Gc??F?????????Q5?  b???H?~X?4?i?T- ^????h????6????+9??- ?+,???}?????? K????O??p?K*???c?W???J?_????O?u?z??v??/??_???A???r???}????nf?[b??\??J?????hZ??Ng?h??????b?gY])I?1?????E???@#7?M???????y#k|y?C{F?w??5?\o????Sg??? ????0p?fN?? ?????????y??$:?_E:???G????jw85p??|\?F&??vm?_WVN?Px?9?HN?H^??? M??0??5?w??Be?tf?Y?u?d???K,??&??? ??K?6?LbY? ????/pnc~???.?j $??d??( ? &?#??)b???'S?{ ??hxjy???=`??tZj??~1/'?S????c?6???O??/??:4??^Z(???W????;?8????3?R?L ?Y?b??? ?T:?\E??3??VN?m??k??8?@?>4?|??0l]?,?0????? -N ???? ?????? ???? ?|'??|??@??2?y??????? ???? ?F~????}[ ? ~?3o?nS??????q???,5??d?????D??V???X?k L?!3?ef?&K?k!?A??????/|p?X???: ???????)UQD???d??????? ???e7eb???]mZ??H^?f??]?????1??$f?u?u??e?4[?6??k&v??E?????f??$??-s?m???|OG%sJ???DU|?T??bq.?r??q??6o?A?mAes?f??????hp??. ?t? ?ey???e?????}?& 7)\??Ho?j?? uS ??SeNn%?SMXf;??|l???,^7|R? F?c??Qx/???r?la??w??J??k|#??x??? B Hc??J6?????CX??V?l?.??:-?D&F3???v*qKB1?9?o ??,?x?$??? [ ??????????=??p?,???J???z???'???&????"?B???????p?Kb??8 w???`???CL?Uv?? ?[? ???{+?;-??,?????b_O?~????^&k???????L?TCM?_?4??`R???)??dHS?{~?u>?9?????R????M??^!?ue? r??^???<-??,M???*? ????qz\??A???f??u ?????"A?_K0U?????G??Y.???????E?'7,???y?a?u?ju?]jc?C??9??D\ j?? R?+??q}??]*l???x??#??,"?n??JP)) k?>P???G???X??Z?x4??=J| ~O??\?? ?F??#???'?????'?J??TZ?7??? S=Ej?r?o?T?? ????????>?F?K???r???l?='??? s?-\?19???U????G???#???\2?>?C???^3])???dzU ??r3??????R?Sm\?m??6???;D?L??#?r!?ZP??? ?W?'CU??mC??a?4>~ Ip?w??,???? ?k??!??!?j?)F45??5???sv??$g~?Xwo?[X-y????????Xo??]U? [:??? ?:0? ??fN?????????I???? rKC?"?Wyp?{?$???nZs? ????y????f?????????.p9???????9???????n j???????#?V@?7??}O???Q=k?????V?]?l??"?L?K???/%r?v???I`e?mzBQ?*? u??u??Y?x??H??o>e??5??I3?B;???.N?]???????? ;?#????53P'??~?{??9??R???P?????????f?T?????Z?????c???) ?r????Zk~M???? ?M??X??Z????p??BB4?? ]%?D?J^?%???p ]?;u??????NN???)????%V????|?dWmY??[yBR??S???L??? 5?U*/N?o????????3&???P^G ???8?v,?R [??&??- .S2s-?^EtY3D?@@?V??W???????????Y???_???-?]Zb? *?{?ux73'? ???q????3??*L???a?^FE0\????bB?{$[>k?G??a?N ?Yu]?,? z?? ?Wv?????C|A?T?i1rG]????O2?*^m>??]??????[+[?MMF?????&?9?~6??? ?W?H5 ?????VH+}#???~???s?:TZ????"s?????V??D??(q??&?3??/I Hello vtkusers, I know how to change the caption just setting the text by an user interface field as QLabel or QTextfield by callback function. However, now I am trying to make a vtkCaptionRepresentation that allows the user to change the Caption dynamically (e.g. mouse selection and using keyboard to edit). Thank you very much for any help, Luis -------------- next part -------------- An HTML attachment was scrubbed... URL: From Wiggerl at Linhuber.info Mon Feb 20 07:59:03 2017 From: Wiggerl at Linhuber.info (Willy) Date: Mon, 20 Feb 2017 05:59:03 -0700 (MST) Subject: [vtkusers] vtkGPUVolumeRayCastMapper: Updateing ImageData after first Rendering? In-Reply-To: <1487318522256-5742217.post@n5.nabble.com> References: <1486972453592-5742153.post@n5.nabble.com> <1487085319680-5742181.post@n5.nabble.com> <1487171038576-5742191.post@n5.nabble.com> <1487173203410-5742192.post@n5.nabble.com> <1487174652057-5742194.post@n5.nabble.com> <1487318522256-5742217.post@n5.nabble.com> Message-ID: <1487595543329-5742247.post@n5.nabble.com> I found a bit information about the 1m 29 s wait time. The first call of vtkOpenGLGPUVolumeRayCastMapper::GPURender calls vtkVolumeTexture::LoadVolume and that calls vtkDataArray::GetRange and that method loops through my 3GB scalar data and calls each time min and max (to get the min and max value of all values). Can i prevent vtk from doing that? Why does vtk even calculate that? Does vtk maybe want to scale the greyvalues bewenn min and max? Maybe i can disable that somehow? Moreover i tested a application named ParaView (ParaView uses vtk too). ParaView does not wait 1m29s. It seems like it is not neccessary to calculate min and max. -- View this message in context: http://vtk.1045678.n5.nabble.com/vtkGPUVolumeRayCastMapper-Updateing-ImageData-after-first-Rendering-tp5742153p5742247.html Sent from the VTK - Users mailing list archive at Nabble.com. From quentan at gmail.com Mon Feb 20 08:17:00 2017 From: quentan at gmail.com (Quentan Qi) Date: Mon, 20 Feb 2017 13:17:00 +0000 Subject: [vtkusers] =?utf-8?q?How_to_pass_uniform_and_attribute_from_host_?= =?utf-8?q?to_shader_by_vtk=E2=80=99s_python_wrapping=2E?= Message-ID: <708286D9-6E0A-4A03-8746-DE1F2D78856E@gmail.com> Hi, I want to ask how to pass uniform and attribute from host to shader by vtk?s python wrapping. I follow this instruction to implement this result , but don?t know how to pass uniform variables from host to fragment shader. Could anybody tell me how to do this? Cheers, Quentan Shader02.py import vtk import time timer = [time.clock()] resolution = [600, 480] file = open('Shader02.vert', 'r') vert = file.read() file.close() file = open('Shader02.frag', 'r') frag = file.read() file.close() # Plane. Is there better way to show ShaderToy's effect without use vtkPlaneSource? plane = vtk.vtkPlaneSource() plane.SetNormal([0, 0, 1]) plane.SetResolution(100, 100) plane.SetOrigin(-1, -1, 0) plane.SetPoint1(1, -1, 1) plane.SetPoint2(-1, 1, 0) mapper = vtk.vtkPolyDataMapper() mapper.SetInputConnection(plane.GetOutputPort()) actor = vtk.vtkActor() actor.SetMapper(mapper) actor.GetProperty().SetOpacity(1) # Handle the rendering and interaction ren = vtk.vtkRenderer() renWin = vtk.vtkRenderWindow() renWin.AddRenderer(ren) iren = vtk.vtkRenderWindowInteractor() iren.SetRenderWindow(renWin) resolutionUniform = vtk.vtkUniformVariables() resolutionUniform.SetUniformi('iResolution', 2, resolution) timeUniform = vtk.vtkUniformVariables() timeUniform.SetUniformf('iGlobalTime', 1, timer) # Now let's get down to shader-business... # First we make a ShaderProgram2 and set it up on a date with the RenderWindow pgm = vtk.vtkShaderProgram2() pgm.SetContext(renWin) # For both the vertex and fragment shader, we need to make a Shader2 # Also set them up with the RenderWindow, by asking the ShaderProgram2 for # an introduction shaderv = vtk.vtkShader2() shaderv.SetType(vtk.VTK_SHADER_TYPE_VERTEX) shaderv.SetSourceCode(vert) shaderv.SetContext(pgm.GetContext()) shaderf = vtk.vtkShader2() shaderf.SetType(vtk.VTK_SHADER_TYPE_FRAGMENT) shaderf.SetSourceCode(frag) shaderf.SetContext(pgm.GetContext()) shaderf.SetUniformVariables(resolutionUniform) # is this correct? # print shaderf.GetUniformVariables() shaderf.SetUniformVariables(timeUniform) # print shaderf.GetUniformVariables() # Now we add the shaders to the program pgm.GetShaders().AddItem(shaderv) pgm.GetShaders().AddItem(shaderf) # And tell the actor property that it should totally use this cool program openGLproperty = actor.GetProperty() openGLproperty.SetPropProgram(pgm) openGLproperty.ShadingOn() # openGLproperty.AddShaderVariable('iGlobalTime', 1, timer) # is this correct? # openGLproperty.AddShaderVariable('iResolution', 2, resolution) # Add the actor and set a nice bg color ren.AddActor(actor) ren.SetBackground(0.3, 0, 0.4) ren.SetBackground2(0.1, 0, 0.2) ren.SetGradientBackground(1) renWin.SetSize(resolution) iren.Initialize() ren.GetActiveCamera().SetPosition(0, -1, 0) ren.GetActiveCamera().SetViewUp(0, 0, 1) ren.ResetCamera() renWin.Render() iren.Start() Shader02.vert void propFuncVS(void) { gl_Position = vec4((gl_Vertex.xy), 0.0, 1.0); } Shader02.frag // ShaderToy: The Blob // https://www.shadertoy.com/view/XsXGRS uniform float iGlobalTime; // not work. uniform or varying? uniform vec2 iResolution; // float iGlobalTime = 1.0; // vec2 iResolution = vec2(600, 480); // This works, but not from host #ifdef GL_ES precision highp float; #endif #define AA 4. #define CI vec3(.3,.5,.6) #define CO vec3(.2) #define CM vec3(.0) #define CE vec3(.8,.7,.5) float metaball(vec2 p, float r) { return r / dot(p, p); } vec3 samplef(in vec2 uv) { #if 1 float t0 = sin(iGlobalTime * 1.9) * .46; float t1 = sin(iGlobalTime * 2.4) * .49; float t2 = cos(iGlobalTime * 1.4) * .57; float r = metaball(uv + vec2(t0, t2), .33) * metaball(uv - vec2(t0, t1), .27) * metaball(uv + vec2(t1, t2), .59); #else float r = length(uv); // test for time-independent #endif vec3 c = (r > .4 && r < .7) ? (vec3(step(.1, r*r*r)) * CE) : (r < .9 ? (r < .7 ? CO: CM) : CI); return c; } void propFuncFS(void) { vec2 uv = (gl_FragCoord.xy / iResolution.xy * 2. - 1.) * vec2(iResolution.x / iResolution.y, 1) * 1.25; vec3 col = vec3(0); #ifdef AA // Antialiasing via supersampling float e = 1. / min(iResolution.y , iResolution.x); for (float i = -AA; i < AA; ++i) { for (float j = -AA; j < AA; ++j) { col += samplef(uv + vec2(i, j) * (e/AA)) / (4.*AA*AA); } } #else col += sample(uv); #endif /* AA */ gl_FragColor = vec4(clamp(col, 0., 1.), 1); } -------------- next part -------------- An HTML attachment was scrubbed... URL: From ken.martin at kitware.com Mon Feb 20 08:34:07 2017 From: ken.martin at kitware.com (Ken Martin) Date: Mon, 20 Feb 2017 08:34:07 -0500 Subject: [vtkusers] =?utf-8?q?How_to_pass_uniform_and_attribute_from_host_?= =?utf-8?q?to_shader_by_vtk=E2=80=99s_python_wrapping=2E?= In-Reply-To: <708286D9-6E0A-4A03-8746-DE1F2D78856E@gmail.com> References: <708286D9-6E0A-4A03-8746-DE1F2D78856E@gmail.com> Message-ID: If using the new OpenGL rendering backend end see http://www.vtk.org/Wiki/Shader_In_VTK On Mon, Feb 20, 2017 at 8:17 AM, Quentan Qi wrote: > Hi, > > I want to ask how to pass uniform and attribute from host to shader by > vtk?s python wrapping. > > I follow this instruction to implement this result, but don?t know how to > pass uniform variables from host to fragment shader. > > Could anybody tell me how to do this? > > Cheers, > Quentan > ------------------------------ > > - Shader02.py > > import vtkimport time > timer = [time.clock()]resolution = [600, 480] > file = open('Shader02.vert', 'r')vert = file.read() > file.close() > file = open('Shader02.frag', 'r')frag = file.read() > file.close() > # Plane. Is there better way to show ShaderToy's effect without use vtkPlaneSource?plane = vtk.vtkPlaneSource() > plane.SetNormal([0, 0, 1]) > plane.SetResolution(100, 100) > plane.SetOrigin(-1, -1, 0) > plane.SetPoint1(1, -1, 1) > plane.SetPoint2(-1, 1, 0) > mapper = vtk.vtkPolyDataMapper() > mapper.SetInputConnection(plane.GetOutputPort()) > actor = vtk.vtkActor() > actor.SetMapper(mapper) > actor.GetProperty().SetOpacity(1) > # Handle the rendering and interactionren = vtk.vtkRenderer()renWin = vtk.vtkRenderWindow() > renWin.AddRenderer(ren)iren = vtk.vtkRenderWindowInteractor() > iren.SetRenderWindow(renWin) > resolutionUniform = vtk.vtkUniformVariables() > resolutionUniform.SetUniformi('iResolution', 2, resolution) > timeUniform = vtk.vtkUniformVariables() > timeUniform.SetUniformf('iGlobalTime', 1, timer) > # Now let's get down to shader-business...# First we make a ShaderProgram2 and set it up on a date with the RenderWindowpgm = vtk.vtkShaderProgram2() > pgm.SetContext(renWin) > # For both the vertex and fragment shader, we need to make a Shader2# Also set them up with the RenderWindow, by asking the ShaderProgram2 for# an introductionshaderv = vtk.vtkShader2() > shaderv.SetType(vtk.VTK_SHADER_TYPE_VERTEX) > shaderv.SetSourceCode(vert) > shaderv.SetContext(pgm.GetContext()) > shaderf = vtk.vtkShader2() > shaderf.SetType(vtk.VTK_SHADER_TYPE_FRAGMENT) > shaderf.SetSourceCode(frag) > shaderf.SetContext(pgm.GetContext()) > shaderf.SetUniformVariables(resolutionUniform) # is this correct?# print shaderf.GetUniformVariables() > shaderf.SetUniformVariables(timeUniform)# print shaderf.GetUniformVariables() > # Now we add the shaders to the program > pgm.GetShaders().AddItem(shaderv) > pgm.GetShaders().AddItem(shaderf) > # And tell the actor property that it should totally use this cool programopenGLproperty = actor.GetProperty() > openGLproperty.SetPropProgram(pgm) > openGLproperty.ShadingOn() > # openGLproperty.AddShaderVariable('iGlobalTime', 1, timer) # is this correct?# openGLproperty.AddShaderVariable('iResolution', 2, resolution) > # Add the actor and set a nice bg color > ren.AddActor(actor) > ren.SetBackground(0.3, 0, 0.4) > ren.SetBackground2(0.1, 0, 0.2) > ren.SetGradientBackground(1) > renWin.SetSize(resolution) > > iren.Initialize() > ren.GetActiveCamera().SetPosition(0, -1, 0) > ren.GetActiveCamera().SetViewUp(0, 0, 1) > ren.ResetCamera() > renWin.Render() > iren.Start() > > > - Shader02.vert > > void propFuncVS(void) { > gl_Position = vec4((gl_Vertex.xy), 0.0, 1.0); > } > > > - Shader02.frag > > // ShaderToy: The Blob// https://www.shadertoy.com/view/XsXGRS > uniform float iGlobalTime; // not work. uniform or varying?uniform vec2 iResolution;// float iGlobalTime = 1.0;// vec2 iResolution = vec2(600, 480); // This works, but not from host > #ifdef GL_ESprecision highp float;#endif > #define AA 4. > #define CI vec3(.3,.5,.6)#define CO vec3(.2)#define CM vec3(.0)#define CE vec3(.8,.7,.5) > float metaball(vec2 p, float r) > { > return r / dot(p, p); > } > vec3 samplef(in vec2 uv) > {#if 1 > float t0 = sin(iGlobalTime * 1.9) * .46; > float t1 = sin(iGlobalTime * 2.4) * .49; > float t2 = cos(iGlobalTime * 1.4) * .57; > > float r = metaball(uv + vec2(t0, t2), .33) * > metaball(uv - vec2(t0, t1), .27) * > metaball(uv + vec2(t1, t2), .59); > #else > float r = length(uv); // test for time-independent > #endif > vec3 c = (r > .4 && r < .7) > ? (vec3(step(.1, r*r*r)) * CE) > : (r < .9 ? (r < .7 ? CO: CM) : CI); > > return c; > } > void propFuncFS(void) > { > vec2 uv = (gl_FragCoord.xy / iResolution.xy * 2. - 1.) > * vec2(iResolution.x / iResolution.y, 1) * 1.25; > > vec3 col = vec3(0); > #ifdef AA > // Antialiasing via supersampling > float e = 1. / min(iResolution.y , iResolution.x); > for (float i = -AA; i < AA; ++i) { > for (float j = -AA; j < AA; ++j) { > col += samplef(uv + vec2(i, j) * (e/AA)) / (4.*AA*AA); > } > }#else > col += sample(uv);#endif /* AA */ > > gl_FragColor = vec4(clamp(col, 0., 1.), 1); > } > > > > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at http://www.kitware.com/ > opensource/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: > http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers > > -- Ken Martin PhD Chairman & CFO Kitware Inc. 28 Corporate Drive Clifton Park NY 12065 518 371 3971 This communication, including all attachments, contains confidential and legally privileged information, and it is intended only for the use of the addressee. Access to this email by anyone else is unauthorized. If you are not the intended recipient, any disclosure, copying, distribution or any action taken in reliance on it is prohibited and may be unlawful. If you received this communication in error please notify us immediately and destroy the original message. Thank you. -------------- next part -------------- An HTML attachment was scrubbed... URL: From quentan at gmail.com Mon Feb 20 10:14:10 2017 From: quentan at gmail.com (Quentan Qi) Date: Mon, 20 Feb 2017 15:14:10 +0000 Subject: [vtkusers] =?utf-8?q?How_to_pass_uniform_and_attribute_from_host_?= =?utf-8?q?to_shader_by_vtk=E2=80=99s_python_wrapping=2E?= In-Reply-To: References: <708286D9-6E0A-4A03-8746-DE1F2D78856E@gmail.com> Message-ID: <9A5B3B70-2A9E-4A7C-B535-E1C4C7ED0B04@gmail.com> Thanks Ken. I am using vtk 7.1.0 But the python wrapping of `vtkOpenGLPolyDataMapper` has no attribute `AddShaderReplacement`. Is there any way to do this with python wrapping? Cheers, Quentan > On 20 Feb 2017, at 13:34, Ken Martin wrote: > > If using the new OpenGL rendering backend end see > > http://www.vtk.org/Wiki/Shader_In_VTK > > > On Mon, Feb 20, 2017 at 8:17 AM, Quentan Qi > wrote: > Hi, > > I want to ask how to pass uniform and attribute from host to shader by vtk?s python wrapping. > > I follow this instruction <> to implement this result <>, but don?t know how to pass uniform variables from host to fragment shader. > > Could anybody tell me how to do this? > > Cheers, > Quentan > > Shader02.py > import vtk > import time > > timer = [time.clock()] > resolution = [600, 480] > > file = open('Shader02.vert', 'r') > vert = file.read() > file.close() > > file = open('Shader02.frag', 'r') > frag = file.read() > file.close() > > # Plane. Is there better way to show ShaderToy's effect without use vtkPlaneSource? > plane = vtk.vtkPlaneSource() > plane.SetNormal([0, 0, 1]) > plane.SetResolution(100, 100) > plane.SetOrigin(-1, -1, 0) > plane.SetPoint1(1, -1, 1) > plane.SetPoint2(-1, 1, 0) > > mapper = vtk.vtkPolyDataMapper() > mapper.SetInputConnection(plane.GetOutputPort()) > > actor = vtk.vtkActor() > actor.SetMapper(mapper) > actor.GetProperty().SetOpacity(1) > > # Handle the rendering and interaction > ren = vtk.vtkRenderer() > renWin = vtk.vtkRenderWindow() > renWin.AddRenderer(ren) > iren = vtk.vtkRenderWindowInteractor() > iren.SetRenderWindow(renWin) > > resolutionUniform = vtk.vtkUniformVariables() > resolutionUniform.SetUniformi('iResolution', 2, resolution) > > timeUniform = vtk.vtkUniformVariables() > timeUniform.SetUniformf('iGlobalTime', 1, timer) > > # Now let's get down to shader-business... > # First we make a ShaderProgram2 and set it up on a date with the RenderWindow > pgm = vtk.vtkShaderProgram2() > pgm.SetContext(renWin) > > # For both the vertex and fragment shader, we need to make a Shader2 > # Also set them up with the RenderWindow, by asking the ShaderProgram2 for > # an introduction > shaderv = vtk.vtkShader2() > shaderv.SetType(vtk.VTK_SHADER_TYPE_VERTEX) > shaderv.SetSourceCode(vert) > shaderv.SetContext(pgm.GetContext()) > > shaderf = vtk.vtkShader2() > shaderf.SetType(vtk.VTK_SHADER_TYPE_FRAGMENT) > shaderf.SetSourceCode(frag) > shaderf.SetContext(pgm.GetContext()) > shaderf.SetUniformVariables(resolutionUniform) # is this correct? > # print shaderf.GetUniformVariables() > shaderf.SetUniformVariables(timeUniform) > # print shaderf.GetUniformVariables() > > # Now we add the shaders to the program > pgm.GetShaders().AddItem(shaderv) > pgm.GetShaders().AddItem(shaderf) > > # And tell the actor property that it should totally use this cool program > openGLproperty = actor.GetProperty() > openGLproperty.SetPropProgram(pgm) > openGLproperty.ShadingOn() > > # openGLproperty.AddShaderVariable('iGlobalTime', 1, timer) # is this correct? > # openGLproperty.AddShaderVariable('iResolution', 2, resolution) > > # Add the actor and set a nice bg color > ren.AddActor(actor) > ren.SetBackground(0.3, 0, 0.4) > ren.SetBackground2(0.1, 0, 0.2) > ren.SetGradientBackground(1) > renWin.SetSize(resolution) > > iren.Initialize() > ren.GetActiveCamera().SetPosition(0, -1, 0) > ren.GetActiveCamera().SetViewUp(0, 0, 1) > ren.ResetCamera() > renWin.Render() > iren.Start() > Shader02.vert > void propFuncVS(void) { > gl_Position = vec4((gl_Vertex.xy), 0.0, 1.0); > } > Shader02.frag > // ShaderToy: The Blob > // https://www.shadertoy.com/view/XsXGRS > > uniform float iGlobalTime; // not work. uniform or varying? > uniform vec2 iResolution; > // float iGlobalTime = 1.0; > // vec2 iResolution = vec2(600, 480); // This works, but not from host > > #ifdef GL_ES > precision highp float; > #endif > > #define AA 4. > > #define CI vec3(.3,.5,.6) > #define CO vec3(.2) > #define CM vec3(.0) > #define CE vec3(.8,.7,.5) > > float metaball(vec2 p, float r) > { > return r / dot(p, p); > } > > vec3 samplef(in vec2 uv) > { > #if 1 > float t0 = sin(iGlobalTime * 1.9) * .46; > float t1 = sin(iGlobalTime * 2.4) * .49; > float t2 = cos(iGlobalTime * 1.4) * .57; > > float r = metaball(uv + vec2(t0, t2), .33) * > metaball(uv - vec2(t0, t1), .27) * > metaball(uv + vec2(t1, t2), .59); > > #else > float r = length(uv); // test for time-independent > > #endif > vec3 c = (r > .4 && r < .7) > ? (vec3(step(.1, r*r*r)) * CE) > : (r < .9 ? (r < .7 ? CO: CM) : CI); > > return c; > } > > void propFuncFS(void) > { > vec2 uv = (gl_FragCoord.xy / iResolution.xy * 2. - 1.) > * vec2(iResolution.x / iResolution.y, 1) * 1.25; > > vec3 col = vec3(0); > > #ifdef AA > // Antialiasing via supersampling > float e = 1. / min(iResolution.y , iResolution.x); > for (float i = -AA; i < AA; ++i) { > for (float j = -AA; j < AA; ++j) { > col += samplef(uv + vec2(i, j) * (e/AA)) / (4.*AA*AA); > } > } > #else > col += sample(uv); > #endif /* AA */ > > gl_FragColor = vec4(clamp(col, 0., 1.), 1); > } > > > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers > > > > > -- > Ken Martin PhD > Chairman & CFO > Kitware Inc. > 28 Corporate Drive > Clifton Park NY 12065 > 518 371 3971 > > This communication, including all attachments, contains confidential and legally privileged information, and it is intended only for the use of the addressee. Access to this email by anyone else is unauthorized. If you are not the intended recipient, any disclosure, copying, distribution or any action taken in reliance on it is prohibited and may be unlawful. If you received this communication in error please notify us immediately and destroy the original message. Thank you. -------------- next part -------------- An HTML attachment was scrubbed... URL: From ken.martin at kitware.com Mon Feb 20 10:18:05 2017 From: ken.martin at kitware.com (Ken Martin) Date: Mon, 20 Feb 2017 10:18:05 -0500 Subject: [vtkusers] =?utf-8?q?How_to_pass_uniform_and_attribute_from_host_?= =?utf-8?q?to_shader_by_vtk=E2=80=99s_python_wrapping=2E?= In-Reply-To: <9A5B3B70-2A9E-4A7C-B535-E1C4C7ED0B04@gmail.com> References: <708286D9-6E0A-4A03-8746-DE1F2D78856E@gmail.com> <9A5B3B70-2A9E-4A7C-B535-E1C4C7ED0B04@gmail.com> Message-ID: Ahh, I am not sure about from Python. Sounds like it isn't. On Mon, Feb 20, 2017 at 10:14 AM, Quentan Qi wrote: > Thanks Ken. > > I am using vtk 7.1.0 > > But the python wrapping of `vtkOpenGLPolyDataMapper` has no attribute > `AddShaderReplacement`. Is there any way to do this with python wrapping? > > Cheers, > Quentan > > > On 20 Feb 2017, at 13:34, Ken Martin wrote: > > If using the new OpenGL rendering backend end see > > http://www.vtk.org/Wiki/Shader_In_VTK > > > On Mon, Feb 20, 2017 at 8:17 AM, Quentan Qi wrote: > >> Hi, >> >> I want to ask how to pass uniform and attribute from host to shader by >> vtk?s python wrapping. >> >> I follow this instruction to implement this result, but don?t know how >> to pass uniform variables from host to fragment shader. >> >> Could anybody tell me how to do this? >> >> Cheers, >> Quentan >> ------------------------------ >> >> - Shader02.py >> >> import vtkimport time >> timer = [time.clock()]resolution = [600, 480] >> file = open('Shader02.vert', 'r')vert = file.read() >> file.close() >> file = open('Shader02.frag', 'r')frag = file.read() >> file.close() >> # Plane. Is there better way to show ShaderToy's effect without use vtkPlaneSource?plane = vtk.vtkPlaneSource() >> plane.SetNormal([0, 0, 1]) >> plane.SetResolution(100, 100) >> plane.SetOrigin(-1, -1, 0) >> plane.SetPoint1(1, -1, 1) >> plane.SetPoint2(-1, 1, 0) >> mapper = vtk.vtkPolyDataMapper() >> mapper.SetInputConnection(plane.GetOutputPort()) >> actor = vtk.vtkActor() >> actor.SetMapper(mapper) >> actor.GetProperty().SetOpacity(1) >> # Handle the rendering and interactionren = vtk.vtkRenderer()renWin = vtk.vtkRenderWindow() >> renWin.AddRenderer(ren)iren = vtk.vtkRenderWindowInteractor() >> iren.SetRenderWindow(renWin) >> resolutionUniform = vtk.vtkUniformVariables() >> resolutionUniform.SetUniformi('iResolution', 2, resolution) >> timeUniform = vtk.vtkUniformVariables() >> timeUniform.SetUniformf('iGlobalTime', 1, timer) >> # Now let's get down to shader-business...# First we make a ShaderProgram2 and set it up on a date with the RenderWindowpgm = vtk.vtkShaderProgram2() >> pgm.SetContext(renWin) >> # For both the vertex and fragment shader, we need to make a Shader2# Also set them up with the RenderWindow, by asking the ShaderProgram2 for# an introductionshaderv = vtk.vtkShader2() >> shaderv.SetType(vtk.VTK_SHADER_TYPE_VERTEX) >> shaderv.SetSourceCode(vert) >> shaderv.SetContext(pgm.GetContext()) >> shaderf = vtk.vtkShader2() >> shaderf.SetType(vtk.VTK_SHADER_TYPE_FRAGMENT) >> shaderf.SetSourceCode(frag) >> shaderf.SetContext(pgm.GetContext()) >> shaderf.SetUniformVariables(resolutionUniform) # is this correct?# print shaderf.GetUniformVariables() >> shaderf.SetUniformVariables(timeUniform)# print shaderf.GetUniformVariables() >> # Now we add the shaders to the program >> pgm.GetShaders().AddItem(shaderv) >> pgm.GetShaders().AddItem(shaderf) >> # And tell the actor property that it should totally use this cool programopenGLproperty = actor.GetProperty() >> openGLproperty.SetPropProgram(pgm) >> openGLproperty.ShadingOn() >> # openGLproperty.AddShaderVariable('iGlobalTime', 1, timer) # is this correct?# openGLproperty.AddShaderVariable('iResolution', 2, resolution) >> # Add the actor and set a nice bg color >> ren.AddActor(actor) >> ren.SetBackground(0.3, 0, 0.4) >> ren.SetBackground2(0.1, 0, 0.2) >> ren.SetGradientBackground(1) >> renWin.SetSize(resolution) >> >> iren.Initialize() >> ren.GetActiveCamera().SetPosition(0, -1, 0) >> ren.GetActiveCamera().SetViewUp(0, 0, 1) >> ren.ResetCamera() >> renWin.Render() >> iren.Start() >> >> >> - Shader02.vert >> >> void propFuncVS(void) { >> gl_Position = vec4((gl_Vertex.xy), 0.0, 1.0); >> } >> >> >> - Shader02.frag >> >> // ShaderToy: The Blob// https://www.shadertoy.com/view/XsXGRS >> uniform float iGlobalTime; // not work. uniform or varying?uniform vec2 iResolution;// float iGlobalTime = 1.0;// vec2 iResolution = vec2(600, 480); // This works, but not from host >> #ifdef GL_ESprecision highp float;#endif >> #define AA 4. >> #define CI vec3(.3,.5,.6)#define CO vec3(.2)#define CM vec3(.0)#define CE vec3(.8,.7,.5) >> float metaball(vec2 p, float r) >> { >> return r / dot(p, p); >> } >> vec3 samplef(in vec2 uv) >> {#if 1 >> float t0 = sin(iGlobalTime * 1.9) * .46; >> float t1 = sin(iGlobalTime * 2.4) * .49; >> float t2 = cos(iGlobalTime * 1.4) * .57; >> >> float r = metaball(uv + vec2(t0, t2), .33) * >> metaball(uv - vec2(t0, t1), .27) * >> metaball(uv + vec2(t1, t2), .59); >> #else >> float r = length(uv); // test for time-independent >> #endif >> vec3 c = (r > .4 && r < .7) >> ? (vec3(step(.1, r*r*r)) * CE) >> : (r < .9 ? (r < .7 ? CO: CM) : CI); >> >> return c; >> } >> void propFuncFS(void) >> { >> vec2 uv = (gl_FragCoord.xy / iResolution.xy * 2. - 1.) >> * vec2(iResolution.x / iResolution.y, 1) * 1.25; >> >> vec3 col = vec3(0); >> #ifdef AA >> // Antialiasing via supersampling >> float e = 1. / min(iResolution.y , iResolution.x); >> for (float i = -AA; i < AA; ++i) { >> for (float j = -AA; j < AA; ++j) { >> col += samplef(uv + vec2(i, j) * (e/AA)) / (4.*AA*AA); >> } >> }#else >> col += sample(uv);#endif /* AA */ >> >> gl_FragColor = vec4(clamp(col, 0., 1.), 1); >> } >> >> >> >> _______________________________________________ >> Powered by www.kitware.com >> >> Visit other Kitware open-source projects at >> http://www.kitware.com/opensource/opensource.html >> >> Please keep messages on-topic and check the VTK FAQ at: >> http://www.vtk.org/Wiki/VTK_FAQ >> >> Search the list archives at: http://markmail.org/search/?q=vtkusers >> >> Follow this link to subscribe/unsubscribe: >> http://public.kitware.com/mailman/listinfo/vtkusers >> >> > > > -- > Ken Martin PhD > Chairman & CFO > Kitware Inc. > 28 Corporate Drive > Clifton Park NY 12065 > 518 371 3971 <(518)%20371-3971> > > This communication, including all attachments, contains confidential and > legally privileged information, and it is intended only for the use of the > addressee. Access to this email by anyone else is unauthorized. If you are > not the intended recipient, any disclosure, copying, distribution or any > action taken in reliance on it is prohibited and may be unlawful. If you > received this communication in error please notify us immediately and > destroy the original message. Thank you. > > > -- Ken Martin PhD Chairman & CFO Kitware Inc. 28 Corporate Drive Clifton Park NY 12065 518 371 3971 This communication, including all attachments, contains confidential and legally privileged information, and it is intended only for the use of the addressee. Access to this email by anyone else is unauthorized. If you are not the intended recipient, any disclosure, copying, distribution or any action taken in reliance on it is prohibited and may be unlawful. If you received this communication in error please notify us immediately and destroy the original message. Thank you. -------------- next part -------------- An HTML attachment was scrubbed... URL: From aashish.chaudhary at kitware.com Mon Feb 20 10:27:10 2017 From: aashish.chaudhary at kitware.com (Aashish Chaudhary) Date: Mon, 20 Feb 2017 15:27:10 +0000 Subject: [vtkusers] vtkGPUVolumeRayCastMapper: Updateing ImageData after first Rendering? In-Reply-To: <1487595543329-5742247.post@n5.nabble.com> References: <1486972453592-5742153.post@n5.nabble.com> <1487085319680-5742181.post@n5.nabble.com> <1487171038576-5742191.post@n5.nabble.com> <1487173203410-5742192.post@n5.nabble.com> <1487174652057-5742194.post@n5.nabble.com> <1487318522256-5742217.post@n5.nabble.com> <1487595543329-5742247.post@n5.nabble.com> Message-ID: Hi Willy, The first call is done to get the min/max for transfer functions (without looking into code). I do not remember if your data is changing, if it does it will trigger min/max computation. Are you providing your own transfer functions? - Aashish On Mon, Feb 20, 2017 at 7:59 AM Willy wrote: > I found a bit information about the 1m 29 s wait time. The first call of > vtkOpenGLGPUVolumeRayCastMapper::GPURender calls > vtkVolumeTexture::LoadVolume and that calls vtkDataArray::GetRange and that > method loops through my 3GB scalar data and calls each time min and max (to > get the min and max value of all values). Can i prevent vtk from doing > that? > Why does vtk even calculate that? Does vtk maybe want to scale the > greyvalues bewenn min and max? Maybe i can disable that somehow? > > Moreover i tested a application named ParaView (ParaView uses vtk too). > ParaView does not wait 1m29s. It seems like it is not neccessary to > calculate min and max. > > > > -- > View this message in context: > http://vtk.1045678.n5.nabble.com/vtkGPUVolumeRayCastMapper-Updateing-ImageData-after-first-Rendering-tp5742153p5742247.html > Sent from the VTK - Users mailing list archive at Nabble.com. > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: > http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers > -------------- next part -------------- An HTML attachment was scrubbed... URL: From Wiggerl at Linhuber.info Mon Feb 20 10:46:16 2017 From: Wiggerl at Linhuber.info (Willy) Date: Mon, 20 Feb 2017 08:46:16 -0700 (MST) Subject: [vtkusers] vtkGPUVolumeRayCastMapper: Updateing ImageData after first Rendering? In-Reply-To: References: <1486972453592-5742153.post@n5.nabble.com> <1487085319680-5742181.post@n5.nabble.com> <1487171038576-5742191.post@n5.nabble.com> <1487173203410-5742192.post@n5.nabble.com> <1487174652057-5742194.post@n5.nabble.com> <1487318522256-5742217.post@n5.nabble.com> <1487595543329-5742247.post@n5.nabble.com> Message-ID: <1487605576443-5742254.post@n5.nabble.com> Yes, i do. _VolumeProperty->SetColor(colorTransferFunction); _VolumeProperty->SetScalarOpacity(spwf); -- View this message in context: http://vtk.1045678.n5.nabble.com/vtkGPUVolumeRayCastMapper-Updateing-ImageData-after-first-Rendering-tp5742153p5742254.html Sent from the VTK - Users mailing list archive at Nabble.com. From Wiggerl at Linhuber.info Mon Feb 20 11:26:17 2017 From: Wiggerl at Linhuber.info (Willy) Date: Mon, 20 Feb 2017 09:26:17 -0700 (MST) Subject: [vtkusers] vtkGPUVolumeRayCastMapper: Updateing ImageData after first Rendering? In-Reply-To: <1487605576443-5742254.post@n5.nabble.com> References: <1486972453592-5742153.post@n5.nabble.com> <1487085319680-5742181.post@n5.nabble.com> <1487171038576-5742191.post@n5.nabble.com> <1487173203410-5742192.post@n5.nabble.com> <1487174652057-5742194.post@n5.nabble.com> <1487318522256-5742217.post@n5.nabble.com> <1487595543329-5742247.post@n5.nabble.com> <1487605576443-5742254.post@n5.nabble.com> Message-ID: <1487607977168-5742255.post@n5.nabble.com> A little Info: If i skip (per debugger) the lines 619-626 (of file https://github.com/Kitware/VTK/blob/b0ff5a4ce706dd2a39acdaa8132dab3f4ca99219/Rendering/VolumeOpenGL2/vtkVolumeTexture.cxx) and manually set this->ScalarRange[0][0] to 1 and this->ScalarRange[0][1] to 65535 (i have 16-Bit data) everything (the rendered Image) looks normal and it takes only a few seconds (and not 1m29s) to load all my 3GB of data. -- View this message in context: http://vtk.1045678.n5.nabble.com/vtkGPUVolumeRayCastMapper-Updateing-ImageData-after-first-Rendering-tp5742153p5742255.html Sent from the VTK - Users mailing list archive at Nabble.com. From ruvva at yahoo.com Mon Feb 20 13:59:17 2017 From: ruvva at yahoo.com (Koteswara Rao Ruvva) Date: Mon, 20 Feb 2017 18:59:17 +0000 (UTC) Subject: [vtkusers] VTK7.1.0, Python3.6, Windows 10 In-Reply-To: References: Message-ID: <155696243.1127325.1487617157655@mail.yahoo.com> Hello All, I am trying to setup my environment to use VTK Python on Windows10 desktop.;I have Python 3.6 installed on my system. I got?vtkpython-7.1.0-Windows-64bit.exe?and installed. I have added the following to the PATH variable C:\Program Files\VTK 7.1.0\bin C:\Program Files\VTK 7.1.0\bin\Lib\site-packages I still get ModuleNotFoundError when I execute "import vtk" in python shell. ThanksRao -------------- next part -------------- An HTML attachment was scrubbed... URL: From tharun160190 at gmail.com Tue Feb 21 00:17:50 2017 From: tharun160190 at gmail.com (Tharun) Date: Mon, 20 Feb 2017 22:17:50 -0700 (MST) Subject: [vtkusers] Color actor based on scalars of points on mesh (not vertices) In-Reply-To: References: <1487211331635-5742197.post@n5.nabble.com> <1487212080401-5742199.post@n5.nabble.com> Message-ID: <1487654270049-5742258.post@n5.nabble.com> Thank you all a ton. I will give Gauss points implementation a try. -- View this message in context: http://vtk.1045678.n5.nabble.com/Color-actor-based-on-scalars-of-points-on-mesh-not-vertices-tp5742197p5742258.html Sent from the VTK - Users mailing list archive at Nabble.com. From ananta.satriadi at gmail.com Tue Feb 21 02:06:25 2017 From: ananta.satriadi at gmail.com (kadek) Date: Tue, 21 Feb 2017 00:06:25 -0700 (MST) Subject: [vtkusers] Export poly data using vtkOBJExporter and preserving the color map (texture) Message-ID: <1487660785011-5742259.post@n5.nabble.com> Hi, I have been trying to export an isosurface to OBJ files including its color map (as texture). As a reference, I looked at this example: http://www.vtk.org/Wiki/VTK/Examples/Cxx/PolyData/TriangleColoredPoints When I export the triangle, the vtkOBJExporter creates .mtl files but it misses the texture. Any help will be much appreciated. Regards, Kadek -- View this message in context: http://vtk.1045678.n5.nabble.com/Export-poly-data-using-vtkOBJExporter-and-preserving-the-color-map-texture-tp5742259.html Sent from the VTK - Users mailing list archive at Nabble.com. From elvis.stansvik at orexplore.com Tue Feb 21 04:52:03 2017 From: elvis.stansvik at orexplore.com (Elvis Stansvik) Date: Tue, 21 Feb 2017 10:52:03 +0100 Subject: [vtkusers] Error in building VTKpython In-Reply-To: References: Message-ID: 2017-02-13 19:02 GMT+01:00 Yichen He : > Hi Elvis > > I used cmake-gui. I checked the PYTHON_LIBRARY in CMakeCache.txt > > which is: PYTHON_LIBRARY:FILEPATH=C:/Python27/libs/python27.lib > > Is this same as passing -DPYTHON_LIBRARY? Sorry for not very familiar with > cmake. Thanks for answering my question Sorry for the late response. Yes that's the same as passing -DPYTHON_LIBRARY. Passing the .lib file like you do sounds right to me, but I'm not 100% sure as I've never built on Windows (on Linux you pass the .so file). Maybe one of the VTK devs on Windows can jump in. Elvis PS. Keep the mailing list address in your replies so that everyone can see, I added it back in this mail. DS. > > Best regards > Yichen He > > > > On 10 February 2017 at 07:43, Elvis Stansvik > wrote: >> >> Den 9 feb. 2017 7:31 em skrev "Yichen He" : >> > >> > Hello everyone >> > >> > My VTK version is 7.1.0, python 2.7, cmake 3.7.2 with VS2015 Win64 >> > compiler. VS2015 under win10 64bits OS was used to build the solution. >> > >> > I am trying to build the vtkpython using the source code after I ticked >> > the VTK_WRAP_PYTHON in cmake. Many error appeared in the building process >> > which are mostly saying: >> > >> > LNK2001 unresolved external symbol __imp_PyString_FromString >> > LNK2019 unresolved external symbol __imp_PyNumber_Divide referenced in >> > function "struct _object >> > While other parts were successfully built. May I ask what could be the >> > cause of these errors >> >> I'm not sure, but since it's failing to find symbols from the Python >> library during linking, perhaps you need to pass -DPYTHON_LIBRARY as well. I >> think you should give it the path to the Python .lib file, but I haven't >> built VTK on Windows so better double check that. >> >> Elvis >> >> > >> > Thank you. >> > >> > Best regards >> > Yichen He >> > >> > _______________________________________________ >> > Powered by www.kitware.com >> > >> > Visit other Kitware open-source projects at >> > http://www.kitware.com/opensource/opensource.html >> > >> > Please keep messages on-topic and check the VTK FAQ at: >> > http://www.vtk.org/Wiki/VTK_FAQ >> > >> > Search the list archives at: http://markmail.org/search/?q=vtkusers >> > >> > Follow this link to subscribe/unsubscribe: >> > http://public.kitware.com/mailman/listinfo/vtkusers >> > > > From ramaobalta at gmail.com Tue Feb 21 07:38:17 2017 From: ramaobalta at gmail.com (Ramao Balta) Date: Tue, 21 Feb 2017 09:38:17 -0300 Subject: [vtkusers] Volume Clipping Message-ID: Dear vtkUsers, I am looking for an example of how to clip a volume for a long time, I found a lot of questions but no complete answer for that. The tool I would like to use is present in Osirix by the name of scissors, with this tool, you draw over a 3d rendering and remove part of the image data from the volume. I tryed vtkClipVolume and vtkCutter, they are interenting classe because you use two input functions, one for vtkImageData and another for the polydata but these classes are too slow, specially when we compare with other applications that make the job in a blink of eyes. Thanks a lot Ram?o Balta -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: corte1.png Type: image/png Size: 283116 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: corte2.png Type: image/png Size: 147181 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: corte3.png Type: image/png Size: 224358 bytes Desc: not available URL: From lasso at queensu.ca Tue Feb 21 08:58:07 2017 From: lasso at queensu.ca (Andras Lasso) Date: Tue, 21 Feb 2017 13:58:07 +0000 Subject: [vtkusers] Volume Clipping In-Reply-To: References: Message-ID: Have a look at how the scissors tool is implemented in 3D Slicer?s segment editor module. It?s all in VTK, quite fast (creates a polydata mask and applies that to the volume), and works for both parallel and perspective projection. https://www.youtube.com/watch?v=m4zTj8i4tCA Source code: https://github.com/Slicer/Slicer/blob/master/Modules/Loadable/Segmentations/EditorEffects/qSlicerSegmentEditorScissorsEffect.cxx Andras From: vtkusers [mailto:vtkusers-bounces at vtk.org] On Behalf Of Ramao Balta Sent: February 21, 2017 7:38 To: vtkusers at vtk.org Subject: [vtkusers] Volume Clipping Dear vtkUsers, I am looking for an example of how to clip a volume for a long time, I found a lot of questions but no complete answer for that. The tool I would like to use is present in Osirix by the name of scissors, with this tool, you draw over a 3d rendering and remove part of the image data from the volume. I tryed vtkClipVolume and vtkCutter, they are interenting classe because you use two input functions, one for vtkImageData and another for the polydata but these classes are too slow, specially when we compare with other applications that make the job in a blink of eyes. Thanks a lot Ram?o Balta -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.levy at leddartech.com Tue Feb 21 10:13:03 2017 From: david.levy at leddartech.com (Mwoua) Date: Tue, 21 Feb 2017 08:13:03 -0700 (MST) Subject: [vtkusers] Overriding QVTKWidget interactor style Message-ID: <1487689983472-5742264.post@n5.nabble.com> Hello, im new to VTK and I can't find a way to override the interactor style to remap keyboard event. I'm using the point cloud library viewer, but I think my issue is related to the QVTKWidget. Here is my code : boost::shared_ptr mViewer; QVTKWidget *mVTKWidget; // Set up the QVTK window mViewer = boost::make_shared("viewer", false); mVTKWidget->SetRenderWindow (mViewer->getRenderWindow ()); auto lInteractor = mVTKWidget->GetInteractor (); auto lInteractorStyle = CustomInteractor::New(); lInteractor->SetInteractorStyle(lInteractorStyle); mViewer->setupInteractor (lInteractor, mVTKWidget->GetRenderWindow ()); mVTKWidget->update (); And my custom interactor just to try things : class CustomInteractor : public pcl::visualization::PCLVisualizerInteractorStyle { void OnChar() override {} void OnKeyDown ()override {} void OnKeyUp ()override {} }; PCLVisualizerInteractorStyle inherits from vtkInteractorStyleRubberBandPick. I might be missing something easy, but im out of idea. Thanks -- View this message in context: http://vtk.1045678.n5.nabble.com/Overriding-QVTKWidget-interactor-style-tp5742264.html Sent from the VTK - Users mailing list archive at Nabble.com. From bdoucet at singlewave.com Tue Feb 21 10:32:23 2017 From: bdoucet at singlewave.com (Bernard Doucet) Date: Tue, 21 Feb 2017 10:32:23 -0500 Subject: [vtkusers] Build VTK Android on windows Message-ID: I build VTK for java without a problem. But now I trying to move my code to android. I tried to build the VTK libraries for android without any success. I followed these instructions: https://blog.kitware.com/building-vtk-for-mobile-architectures/ I am using VTL 7.1 and cmake 3.7.1 (windows 10 ) Hoping someone cn help me on this, Thanks bd -------------- next part -------------- An HTML attachment was scrubbed... URL: From elvis.stansvik at orexplore.com Tue Feb 21 10:37:08 2017 From: elvis.stansvik at orexplore.com (Elvis Stansvik) Date: Tue, 21 Feb 2017 16:37:08 +0100 Subject: [vtkusers] Overriding QVTKWidget interactor style In-Reply-To: <1487689983472-5742264.post@n5.nabble.com> References: <1487689983472-5742264.post@n5.nabble.com> Message-ID: 2017-02-21 16:13 GMT+01:00 Mwoua : > Hello, > im new to VTK and I can't find a way to override the interactor style to > remap keyboard event. I'm using the point cloud library viewer, but I think > my issue is related to the QVTKWidget. > > Here is my code : > > boost::shared_ptr mViewer; > QVTKWidget *mVTKWidget; > > // Set up the QVTK window > mViewer = > boost::make_shared("viewer", false); > mVTKWidget->SetRenderWindow (mViewer->getRenderWindow ()); > auto lInteractor = mVTKWidget->GetInteractor (); > auto lInteractorStyle = CustomInteractor::New(); > lInteractor->SetInteractorStyle(lInteractorStyle); > mViewer->setupInteractor (lInteractor, mVTKWidget->GetRenderWindow ()); ^ this line will reset the interactor to the default style, so it'll overwrite what you set earlier. Use this overload instead [2]: void pcl::visualization::PCLVisualizer::setupInteractor ( vtkRenderWindowInteractor * iren, vtkRenderWindow * win, vtkInteractorStyle * style ) E.g: mViewer->setupInteractor (lInteractor, mVTKWidget->GetRenderWindow (), lInteractorStyle); With that, I don't think you need to do lInteractor->SetInteractorStyle(lInteractorStyle). It will be done for you by setupInteractor [3]. Hope that helps, Elvis [1] http://docs.pointclouds.org/trunk/classpcl_1_1visualization_1_1_p_c_l_visualizer.html#a9f2ab0047663bcd23e48cf39b74145de [2] http://docs.pointclouds.org/trunk/classpcl_1_1visualization_1_1_p_c_l_visualizer.html#a26b785bcbdf1aaec1db1e1cfa15aa5f4 [3] https://github.com/PointCloudLibrary/pcl/blob/master/visualization/src/pcl_visualizer.cpp#L377 > > mVTKWidget->update (); > > And my custom interactor just to try things : > class CustomInteractor : public > pcl::visualization::PCLVisualizerInteractorStyle > { > void OnChar() override {} > void OnKeyDown ()override {} > void OnKeyUp ()override {} > }; > > > PCLVisualizerInteractorStyle inherits from vtkInteractorStyleRubberBandPick. > > I might be missing something easy, but im out of idea. > > Thanks > > > > -- > View this message in context: http://vtk.1045678.n5.nabble.com/Overriding-QVTKWidget-interactor-style-tp5742264.html > Sent from the VTK - Users mailing list archive at Nabble.com. > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers From spir.robert at gmail.com Tue Feb 21 10:38:43 2017 From: spir.robert at gmail.com (=?iso-8859-2?B?UvNiZXJ0IKlwaXI=?=) Date: Tue, 21 Feb 2017 16:38:43 +0100 Subject: [vtkusers] Overriding QVTKWidget interactor style In-Reply-To: <1487689983472-5742264.post@n5.nabble.com> References: <1487689983472-5742264.post@n5.nabble.com> Message-ID: <000501d28c58$954678c0$bfd36a40$@gmail.com> Hi, my code is //QVTK window modularInteractorStyle = vtkSmartPointer::New(); viewer= boost::shared_ptr(new pcl::visualization::PCLVisualizer("Point Cloud Viewer",false)); this->viewer->initCameraParameters(); ui->qvtkWidget->SetRenderWindow(viewer->getRenderWindow()); viewer->setupInteractor(ui->qvtkWidget->GetInteractor(), ui->qvtkWidget->GetRenderWindow(), modularInteractorStyle); and then my derived class from PCLVisualizerInteractorStyle is class ModularInteractorStyle : public pcl::visualization::PCLVisualizerInteractorStyle { ... void OnLeftButtonDown(); void OnKeyDown(); void OnKeyUp(); void OnMouseMove(); void OnLeftButtonUp(); void OnMouseWheelForward(); void OnMouseWheelBackward(); ... and everything works. Robert -----Original Message----- From: vtkusers [mailto:vtkusers-bounces at vtk.org] On Behalf Of Mwoua Sent: Tuesday, February 21, 2017 4:13 PM To: vtkusers at vtk.org Subject: [vtkusers] Overriding QVTKWidget interactor style Hello, im new to VTK and I can't find a way to override the interactor style to remap keyboard event. I'm using the point cloud library viewer, but I think my issue is related to the QVTKWidget. Here is my code : boost::shared_ptr mViewer; QVTKWidget *mVTKWidget; // Set up the QVTK window mViewer = boost::make_shared("viewer", false); mVTKWidget->SetRenderWindow (mViewer->getRenderWindow ()); auto lInteractor = mVTKWidget->GetInteractor (); auto lInteractorStyle = CustomInteractor::New(); lInteractor->SetInteractorStyle(lInteractorStyle); mViewer->setupInteractor (lInteractor, mVTKWidget->GetRenderWindow ()); mVTKWidget->update (); And my custom interactor just to try things : class CustomInteractor : public pcl::visualization::PCLVisualizerInteractorStyle { void OnChar() override {} void OnKeyDown ()override {} void OnKeyUp ()override {} }; PCLVisualizerInteractorStyle inherits from vtkInteractorStyleRubberBandPick. I might be missing something easy, but im out of idea. Thanks -- View this message in context: http://vtk.1045678.n5.nabble.com/Overriding-QVTKWidget-interactor-style-tp57 42264.html Sent from the VTK - Users mailing list archive at Nabble.com. _______________________________________________ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages on-topic and check the VTK FAQ at: http://www.vtk.org/Wiki/VTK_FAQ Search the list archives at: http://markmail.org/search/?q=vtkusers Follow this link to subscribe/unsubscribe: http://public.kitware.com/mailman/listinfo/vtkusers From david.levy at leddartech.com Tue Feb 21 10:58:29 2017 From: david.levy at leddartech.com (Mwoua) Date: Tue, 21 Feb 2017 08:58:29 -0700 (MST) Subject: [vtkusers] Overriding QVTKWidget interactor style In-Reply-To: References: <1487689983472-5742264.post@n5.nabble.com> Message-ID: <1487692709842-5742268.post@n5.nabble.com> Wow, fast answer ! Both answers are the same solution, and it works perfectly. Thanks again -- View this message in context: http://vtk.1045678.n5.nabble.com/Overriding-QVTKWidget-interactor-style-tp5742264p5742268.html Sent from the VTK - Users mailing list archive at Nabble.com. From dhoppes at mbfbioscience.com Tue Feb 21 11:28:35 2017 From: dhoppes at mbfbioscience.com (Doug Hoppes) Date: Tue, 21 Feb 2017 16:28:35 +0000 Subject: [vtkusers] Eliminate black pixels in vtkvolume Message-ID: <46CB11F12B9DC24D860D4082451B318A36D25653@exchange3.microbrightfield.com> Hi all, Got a question. I have a vtkvolume actor that is mostly a black cube with some data inside of it. I would like to remove all of the black pixels from the display and leave any non-black pixels. To do this, I am adjusting Scalar Opacity using: vtkSmartPointer pScalarToOpacityMapping = vtkSmartPointer::New(); pScalarToOpacityMapping->AddPoint(50, 1.0); pScalarToOpacityMapping->AddPoint(200, 1.0); pScalarToOpacityMapping->ClampingOff(); pProperty->SetScalarOpacity(pScalarToOpacityMapping); However, I've noticed that the black pixels are still present in the display. The volume is being displayed using the vtksmartvolumemapper. With the clamping off, I can get some of the pixels to disappear but only on the edges of the cube. There are no changes, if I turn the clamping on and using the following settings: vtkSmartPointer pScalarToOpacityMapping = vtkSmartPointer::New(); pScalarToOpacityMapping->AddPoint(0, 0.0); pScalarToOpacityMapping->AddPoint(255, 1.0); pProperty->SetScalarOpacity(pScalarToOpacityMapping); Doug -------------- next part -------------- An HTML attachment was scrubbed... URL: From ken.martin at kitware.com Tue Feb 21 15:09:00 2017 From: ken.martin at kitware.com (Ken Martin) Date: Tue, 21 Feb 2017 15:09:00 -0500 Subject: [vtkusers] VTK OpenVR/Vive updates Message-ID: I have merged some updates to the OpenVR code into VTK master. Some of the changes are listed below. Thanks Ken Add floor option to show a floor completely rework the matrix and coordinate code to be cleaner and use standard VTK conventions (right handed) add support for a dashboard overlay with options to subclass and support for saving/loading camera poses and adjusting motion factors and scale factors. Improve the resetcameraclippingrange to work better for VR change how eye position is handled to address VolumeRendering issues Handle the case where people make the cubes invisible which results in a 308 error on loading the model. Add support for the user to specify the mapping of physical coordinates into world coordinate. Allows for different view up vectors other than the old code which was hard coded to Y. Add middle mouse support mapped to the grip button. Add some support for a hardware clipping plane. -- Ken Martin PhD Chairman & CFO Kitware Inc. 28 Corporate Drive Clifton Park NY 12065 518 371 3971 This communication, including all attachments, contains confidential and legally privileged information, and it is intended only for the use of the addressee. Access to this email by anyone else is unauthorized. If you are not the intended recipient, any disclosure, copying, distribution or any action taken in reliance on it is prohibited and may be unlawful. If you received this communication in error please notify us immediately and destroy the original message. Thank you. -------------- next part -------------- An HTML attachment was scrubbed... URL: From Wiggerl at Linhuber.info Wed Feb 22 03:53:17 2017 From: Wiggerl at Linhuber.info (Willy) Date: Wed, 22 Feb 2017 01:53:17 -0700 (MST) Subject: [vtkusers] vtkGPUVolumeRayCastMapper: Updateing ImageData after first Rendering? In-Reply-To: <1487607977168-5742255.post@n5.nabble.com> References: <1487085319680-5742181.post@n5.nabble.com> <1487171038576-5742191.post@n5.nabble.com> <1487173203410-5742192.post@n5.nabble.com> <1487174652057-5742194.post@n5.nabble.com> <1487318522256-5742217.post@n5.nabble.com> <1487595543329-5742247.post@n5.nabble.com> <1487605576443-5742254.post@n5.nabble.com> <1487607977168-5742255.post@n5.nabble.com> Message-ID: <1487753597818-5742275.post@n5.nabble.com> I Changed (619-626 in my last post): // Cache the array's scalar range for (int n = 0; n < noOfComponents; ++n) { double* range = this->Scalars->GetRange(n); for (int i = 0; i < 2; ++i) { this->ScalarRange[n][i] = range[i]; } } to if(scalarType == VTK_UNSIGNED_CHAR){ for (int n = 0; n < noOfComponents; ++n) { this->ScalarRange[n][0] = 0; this->ScalarRange[n][1] = 255; } }else if(scalarType == VTK_UNSIGNED_SHORT){ for (int n = 0; n < noOfComponents; ++n) { this->ScalarRange[n][0] = 0; this->ScalarRange[n][1] = 65535; } }else { // Cache the array's scalar range for (int n = 0; n < noOfComponents; ++n) { double* range = this->Scalars->GetRange(n); for (int i = 0; i < 2; ++i) { this->ScalarRange[n][i] = range[i]; } } } I dont know if thats the correct way to do it, but for me it seems to work. Willy -- View this message in context: http://vtk.1045678.n5.nabble.com/vtkGPUVolumeRayCastMapper-Updateing-ImageData-after-first-Rendering-tp5742153p5742275.html Sent from the VTK - Users mailing list archive at Nabble.com. From Wiggerl at Linhuber.info Wed Feb 22 04:25:57 2017 From: Wiggerl at Linhuber.info (Willy) Date: Wed, 22 Feb 2017 02:25:57 -0700 (MST) Subject: [vtkusers] vtkImageData Modified: Just update a small area of the data? Message-ID: <1487755557519-5742276.post@n5.nabble.com> Hi, i have a very simple pipeline: vtkImageData->vtkPassThroughFilter->vtkSmartVolumeMapper. Each time i modify the data in my vtkImageData i call Modified, which causes the Mapper to reread all Data and show me a updated rendered image. The problem is, that i have a lot of little modifications, here a few bytes there a few bytes, but Modified() always updates all of the data. It ok for max 300 mb of imageData, but images above that are stuttering. I already considered: SetAxisUpdateExtent SetUpdateExtent vtkExtractVOI vtkProgrammableFilter But nothing of that seems to do what i want. Can i tell the mapper just to update the tiny bit of data i changed? Thanks Willy -- View this message in context: http://vtk.1045678.n5.nabble.com/vtkImageData-Modified-Just-update-a-small-area-of-the-data-tp5742276.html Sent from the VTK - Users mailing list archive at Nabble.com. From pdavid at scconsultants.com Wed Feb 22 11:37:41 2017 From: pdavid at scconsultants.com (Philippe PhD. David) Date: Wed, 22 Feb 2017 17:37:41 +0100 Subject: [vtkusers] exporting scene to vrml format In-Reply-To: <5926e8a3-b66c-adcf-1186-e289c222690a@scconsultants.com> References: <5926e8a3-b66c-adcf-1186-e289c222690a@scconsultants.com> Message-ID: <0dd77a9a-95f7-27ef-e909-3567a19742e6@scconsultants.com> Hi, Nobody faced this situation ? Where the exported objects do no apply the SetPosition() et SetOrientation() as in the interactive Window ? I have a hard to fix this ... Any help is very much welcomed. Thanks in advance -------- Message transf?r? -------- Sujet : exporting scene to vrml format Date : Thu, 16 Feb 2017 14:31:15 +0100 : hello, I am currently trying to export a scene using vtkVRMLExporter() from my vtk application. My scene is built from a set of geometries which are then moved/rotated internally to my application (with user input) using vtkAssembly::SetPosition(...) and vtkAssembly::SetOrientation(...) Unfortunately, the exported scene reports only the initial position/orientation of my differents objects. Any suggestions on how to take into accounts those move/orientation in the exported scene ? Also the view type (surface, wireframe, mesh, opacity) is not correctly exported. thanks in advance for help Philippe // my function to export the scene bool VisualisationVtk::Visualisation::SaveVRML(String^ Filename) { vtkVRMLExporter *Exporter; Exporter= vtkVRMLExporter::New(); Exporter->SetRenderWindow(Window); pin_ptr wch = PtrToStringChars(Filename); char file[256]; size_t convertedChars = 0; size_t sizeInBytes = ((Filename->Length + 1) * 2); wcstombs_s (&convertedChars,file, sizeInBytes,wch, sizeInBytes); Exporter->SetFileName(file); draw(); // loops on all objects and hide/view update surface/mesh view move/rotate upon users requests Exporter->Write(); Exporter->Delete(); return true; } -- --- L'absence de virus dans ce courrier ?lectronique a ?t? v?rifi?e par le logiciel antivirus Avast. https://www.avast.com/antivirus -------------- next part -------------- An HTML attachment was scrubbed... URL: From dariomangoni at gmail.com Thu Feb 23 05:40:56 2017 From: dariomangoni at gmail.com (DarioMangoni) Date: Thu, 23 Feb 2017 03:40:56 -0700 (MST) Subject: [vtkusers] vtkTable In-Reply-To: <2137e33e0910221034y6ef75301p4b7241a118c92d7b@mail.gmail.com> References: <2137e33e0910221034y6ef75301p4b7241a118c92d7b@mail.gmail.com> Message-ID: <1487846456720-5742278.post@n5.nabble.com> David Doria-2 wrote > do you have to build rows first and then insert them into the table? Old post, but still I don't know how to elegantly insert a new row into an already-created table without having to continuously call SetNumberOfRows(GetNumberOfRows()+1). Isn't there any sort of push_back method that accepts sort of tuples? Thanks! P.S. my aim is to append new data to a plot in order to trace the behaviour of my algorithm. Is there any faster method, rather than adding rows to the table? -- View this message in context: http://vtk.1045678.n5.nabble.com/vtkTable-tp1247850p5742278.html Sent from the VTK - Users mailing list archive at Nabble.com. From sur.chiranjib at gmail.com Thu Feb 23 09:38:23 2017 From: sur.chiranjib at gmail.com (Chiranjib Sur) Date: Thu, 23 Feb 2017 20:08:23 +0530 Subject: [vtkusers] hdf5 using vtk6 Message-ID: Hi, I was wondering how HDF5 data can be handled in VTK6. With google, I could not find any recent updates on HDF5 support for VTK6. Can anyone point me towards the APIs / Classes which I can see and learn a bit more. Currently, I use "vtkPolydata" for my simulation and while I am thinking about scaling, HDF5 came into my mind. Any pointers will be very much appreciated. Thanks in advance, Chiranjib -------------- next part -------------- An HTML attachment was scrubbed... URL: From jspencer at connectedsp.com Thu Feb 23 13:00:36 2017 From: jspencer at connectedsp.com (John Spencer) Date: Thu, 23 Feb 2017 18:00:36 +0000 Subject: [vtkusers] OPENING - Sr SW Engineer with VTK experience in MA Message-ID: We have a medical device client north of Boston, MA with a perm/direct hire opening for a Sr Software Engineer with strong VTK, C++ and OOD experience. MUST be able to interview and work on-site at your expense MUST be a US Citizen or US Green Card holder. Sr Software/GUI Engineer Work as part of a team to define specs and requirements Be the resident VTK expert Design and develop code to specs Must have a BS in engineering, CS or related technical degree 5+ years of commercial software design and development experience with C++/OOD 2+ years of VTK experience Experience working in a medical device environment Additional details available on request. Please send your resume and best way to reach you for a follow up phone conversation Regards, John Spencer Connected Systems Partners Office: (978) 455-5550 x208 Cell: (978) 621-9743 jspencer at connectedsp.com www.connectedsp.com GET CONNECTED! All information in this email, unless indicated otherwise in the body of the email, is considered confidential and intended for the view and use of the recipient(s) only. -------------- next part -------------- An HTML attachment was scrubbed... URL: From binarybottle at gmail.com Thu Feb 23 16:49:41 2017 From: binarybottle at gmail.com (Arno Klein) Date: Thu, 23 Feb 2017 21:49:41 +0000 Subject: [vtkusers] Mindboggle surface morphometry software release and publication! In-Reply-To: References: Message-ID: Announcing the official release of Mindboggle (http://mindboggle.info), open source software and data for analyzing the shapes of VTK surfaces derived from brain structures in human MRI data. The release coincides with a publication in PLoS Computational Biology that documents and evaluates the software: Klein A, Ghosh SS, Bao FS, Giard J, Hame Y, Stavsky E, Lee N, Rossa B, Reuter M, Neto EC, Keshavan A. (2017) Mindboggling morphometry of human brains. PLoS Computational Biology 13(3): e1005350. doi:10.1371/journal.pcbi.1005350 Cheers, @rno -------------- next part -------------- An HTML attachment was scrubbed... URL: From elvis.stansvik at orexplore.com Fri Feb 24 02:36:17 2017 From: elvis.stansvik at orexplore.com (Elvis Stansvik) Date: Fri, 24 Feb 2017 08:36:17 +0100 Subject: [vtkusers] [vtk-developers] hdf5 using vtk6 In-Reply-To: References: Message-ID: Hi Chiranjib, Den 23 feb. 2017 3:38 em skrev "Chiranjib Sur" : > > Hi, > I was wondering how HDF5 data can be handled in VTK6. > > With google, I could not find any recent updates on HDF5 support for VTK6. > > Can anyone point me towards the APIs / Classes which I can see and learn a bit more. > > Currently, I use "vtkPolydata" for my simulation and while I am thinking about scaling, HDF5 came into my mind. > > Any pointers will be very much appreciated. I don't think VTK has any built-in support for HDF5 per se. It does have support for XDMF, which uses HDF5 for the "heavy data". For our use case (volumetric data), we wrote our own simple vtkImageAlgorithm to read our custom HDF5 based volume format. It uses the regular HDF5 library from the HDF Group. I think that's the approach you need to take with VTK if you have some custom HDF5 based format. Hope that helps, Elvis > > Thanks in advance, > Chiranjib > > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html > > Search the list archives at: http://markmail.org/search/?q=vtk-developers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtk-developers > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From tj.corona at kitware.com Fri Feb 24 12:57:31 2017 From: tj.corona at kitware.com (TJ Corona) Date: Fri, 24 Feb 2017 12:57:31 -0500 Subject: [vtkusers] Ideas for supporting categorical data Message-ID: Hi all, I would like the VTK community?s feedback on how to provide better support for categorical data. As I understand it, the primary difference between ordinal and categorical data is how it should be interpolated. Currently, the interpolation scheme for active attributes (scalars, vectors, etc.) can be one of two methods: weighted interpolation (well-suited to ordinal data and inappropriate for categorical data) and nearest neighbor interpolation (applicable in both situations, but less accurate for ordinal data). The choice of interpolation method is accessible within a filter, but exposing this choice to the user who is constructing a pipeline is awkward at best and impossible in many cases (the user must access the output data object of a filter after the object is created but before the filter has executed and set the data attribute?s copy flag to the opaque value ?2?; if a filter is internally composed of additional filters, this technique fails). One possibility to more natively support categorical data would be to assign a data array?s interpolation scheme to the data array itself, either at either run time or compile time. This approach would move the responsibility determining a data array?s data type from the filter to the data array itself; a filter would no longer need to imply the context of its input data. Since the technique of interpolation is currently handled by the data array and the data object?s data set attributes, this change would likely have an impact on the API of vtkAbstractArray and vtkDataSetAttributes, but should have no impact on the API of the filters themselves. This is just one suggestion, and I am eager to hear what everyone thinks. Sincerely, T.J. Thomas J. Corona, Ph.D. Kitware, Inc. R&D Engineer 21 Corporate Drive Clifton Park, NY 12065-8662 Phone: 518-881-4443 -------------- next part -------------- An HTML attachment was scrubbed... URL: From guanw at rhpcs.mcmaster.ca Fri Feb 24 14:49:17 2017 From: guanw at rhpcs.mcmaster.ca (Weiguang Guan) Date: Fri, 24 Feb 2017 14:49:17 -0500 Subject: [vtkusers] Visibility of vtkAssembly Message-ID: <58B08E3D.8050005@rhpcs.mcmaster.ca> Hi VTK-users, I have a nested usage of vtkAssembly. One vtkAssembly object contains another vtkAssembly object in addition to some regular vtkActor objects. The inner vtkAssembly contains two vtkActor objects. The problem is VisibilityOff() doesn't work for the inner vtkAssembly although it works fine for the outer assembly. I've found discussions of this problem in this mailing list back to 2010. I wonder if this problem is still there ... Best, Weiguang From guanw at rhpcs.mcmaster.ca Fri Feb 24 15:52:54 2017 From: guanw at rhpcs.mcmaster.ca (Weiguang Guan) Date: Fri, 24 Feb 2017 15:52:54 -0500 Subject: [vtkusers] Visibility of vtkAssembly In-Reply-To: <58B08E3D.8050005@rhpcs.mcmaster.ca> References: <58B08E3D.8050005@rhpcs.mcmaster.ca> Message-ID: <58B09D26.3070802@rhpcs.mcmaster.ca> Just found the bug report http://www.vtk.org/Bug/print_bug_page.php?bug_id=3312. Is it resolved? I use vtk 7.1. Weiguang -- Weiguang Guan Visualization software developer SHARCNET / Compute Canada McMaster University Phone: 905-525-9140 x22540 On 2/24/2017 2:49 PM, Weiguang Guan wrote: > Hi VTK-users, > > I have a nested usage of vtkAssembly. One vtkAssembly object contains > another vtkAssembly object in addition to some regular vtkActor > objects. The inner vtkAssembly contains two vtkActor objects. The > problem is VisibilityOff() doesn't work for the inner vtkAssembly > although it works fine for the outer assembly. > > I've found discussions of this problem in this mailing list back to > 2010. I wonder if this problem is still there ... > > Best, > Weiguang > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: > http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers > -- -- Weiguang Guan Research Scientist RHPCS, McMaster University Phone: 905-525-9140 x22540 From xzfnyh at gmail.com Fri Feb 24 20:58:00 2017 From: xzfnyh at gmail.com (=?UTF-8?B?546L6LeD5oGS?=) Date: Sat, 25 Feb 2017 09:58:00 +0800 Subject: [vtkusers] Ambient color of lights has no effects on actor's ambient color Message-ID: Hi all, I have set up a very simple scene, with only one actor and one light. I'm using python, the official 7.1.0 python bundle. The renderer's ambient set to (0, 0, 0), using ren.SetAmbient(0, 0, 0), and disable automatic light creation by ren.SetAutomaticLightCreation(False); the actor's ambient set to 0.5, ambient color use the default (1, 1, 1); the light's ambient color set to (1.0, 0, 0), I mean red, while diffuse color and specular color set to (0, 0, 0). I am expecting a red-ish flat color, since red (ambient) light shine on grey (ambient) thing produces red, but I get a grey flat color. It acts like there is always one and only one global pure white ambient light (not the one I created), or the "ambient" acts like an emissive component. The light I created has no effect on actor's ambient color. I am new to VTK, where am I missing :( The full source code is pretty short, both python2 and python3 will do: import vtk if __name__ == '__main__': # A source process object cube = vtk.vtkCubeSource() # A mapper process object cubeMapper = vtk.vtkPolyDataMapper() cubeMapper.SetInputConnection(cube.GetOutputPort()) # An actor cubeActor = vtk.vtkActor() cubeActor.SetMapper(cubeMapper) prop = cubeActor.GetProperty() prop.SetAmbient(0.5) prop.SetDiffuse(0.0) prop.SetSpecular(0.0) # A renderer ren = vtk.vtkRenderer() ren.SetAmbient(0.0, 0.0, 0.0) ren.SetAutomaticLightCreation(False) ren.AddActor(cubeActor) light = ren.MakeLight() light.SetAmbientColor(1.0, 0.0, 0.0) light.SetDiffuseColor(0.0, 0.0, 0.0) light.SetSpecularColor(0.0, 0.0, 0.0) ren.AddLight(light) # A render window renWin = vtk.vtkRenderWindow() renWin.AddRenderer(ren) # window interation iren = vtk.vtkRenderWindowInteractor() iren.SetRenderWindow(renWin) iren.Initialize() renWin.Render() iren.Start() --------------- Wang Yueheng, Tsinghua University, Beijing, China -------------- next part -------------- An HTML attachment was scrubbed... URL: From luis.costa at vektore.com Sat Feb 25 10:40:11 2017 From: luis.costa at vektore.com (Luis Costa) Date: Sat, 25 Feb 2017 12:40:11 -0300 Subject: [vtkusers] Change cube to plane Message-ID: <000701d28f7d$752245b0$5f66d110$@vektore.com> Hi everyone, Does anyone knows a way to convert a cube to a plane? A want to represent four cubes that are in glyph with a plane source as planes, but I would like to know If there is a more easy way (like just rendering one of the faces of the cube) than creating four planes to be in the exact position of the cubes? Thanks in advance! Luis Costa, Consultant, Programmer Vektore Exploration Consulting Corporation http://lnked.in/luisantoniocosta luis.costa at vektore.com www.vektore.com --- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus -------------- next part -------------- An HTML attachment was scrubbed... URL: From nour_sn at hotmail.fr Sun Feb 26 17:06:22 2017 From: nour_sn at hotmail.fr (jaki19) Date: Sun, 26 Feb 2017 15:06:22 -0700 (MST) Subject: [vtkusers] Can I Modify the topology of a structure in DICOM files and have image as output? Message-ID: <1488146782857-5742293.post@n5.nabble.com> Hallo, to be able to test some algorithms as Decimation in a structure in Dicom images, I converted my Dicom files to stl so I can decimate it, the problem is that I didn't found a way to reconvert my 3D stl structure again to Dicom files to calculate again the connectivity of the structure (because I need an image output for that purpose). Is there any other way to change my structure and be able to calculate de parameters after each change (be able to change de topology od Dicom file and have an image as output) ?? Thanks -- View this message in context: http://vtk.1045678.n5.nabble.com/Can-I-Modify-the-topology-of-a-structure-in-DICOM-files-and-have-image-as-output-tp5742293.html Sent from the VTK - Users mailing list archive at Nabble.com. From zhuangming.shen at sphic.org.cn Mon Feb 27 03:36:02 2017 From: zhuangming.shen at sphic.org.cn (=?gb2312?B?yfLXr8P3?=) Date: Mon, 27 Feb 2017 08:36:02 +0000 Subject: [vtkusers] Draw U shape Message-ID: <1488184562922.46363@sphic.org.cn> Hi all, I'd like to draw a something whose shape like the attached fig1. The shape of the cross section of fig1 is similar with the shape in fig2. I tried vtkEllipseArcSource and vtkTubeFilter, but the cross section is just a surface without thickness (fig3). How can I accomplish this? Thanks in advance. Regards, Zhuangming Shen -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: fig1.PNG Type: image/png Size: 69059 bytes Desc: fig1.PNG URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: fig2.PNG Type: image/png Size: 31912 bytes Desc: fig2.PNG URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: fig3.PNG Type: image/png Size: 144232 bytes Desc: fig3.PNG URL: From drslump.scientist at outlook.com Mon Feb 27 05:54:18 2017 From: drslump.scientist at outlook.com (drslump scientist) Date: Mon, 27 Feb 2017 10:54:18 +0000 Subject: [vtkusers] Extract points and polygons for a mesh using VTK Message-ID: Hello, I want to reduce the number of triangles in a mesh (STL file). Here is my code: import vtk filename = 'E://stl_file.stl' reader = vtk.vtkSTLReader() reader.SetFileName('filename.stl') ##convert polygonal mesh into triangle mesh tri = vtk.vtkTriangleFilter() tri.SetInputConnection(reader.GetOutputPort()); ##decimate triangle deci = vtk.vtkDecimatePro() deci.SetInputConnection(tri.GetOutputPort()) deci.SetTargetReduction(0.9) deci.PreserveTopologyOn() it seems to work (at least it runs without errors). Now how can I extract points and triangles of the mesh? Regards -------------- next part -------------- An HTML attachment was scrubbed... URL: From youngkyunp at gmail.com Mon Feb 27 10:14:49 2017 From: youngkyunp at gmail.com (Youngkyun, Park) Date: Mon, 27 Feb 2017 08:14:49 -0700 (MST) Subject: [vtkusers] How to actor combine? Message-ID: <1488208489821-5742297.post@n5.nabble.com> Hi, all. I'm newbie for VTK, and maybe exist classes that I want already. Please, understand me. (I don't want to use big project like IGSTK or something like that.) As the subject, I want to combine actors. I'm making some code for freehand ultrasound.(I know that there are many questions and answers.) here is a scenario for surface reconstruction that I thought. 1. Get a frame(2D slice image) from video streaming(Ultrasound). 2. Get position and orientation at that time. 3. Contouring from 1. (with OpenCV) 4. Convert contour to 3D Points.(point -> polydata -> mapper -> actor) 5. set position and orientation with actor. 6. combine with previous actors(for surfacing) 7. rendering(renderer->render()) 8. repeat 1~7 until predefined stop condition. Now, I implemented from 1 to 5. Is this right way? I think just many actors leads low performance and separated actors can't be reconstructed surface. So, I want to combine actors. If there is better way please let me know. -- View this message in context: http://vtk.1045678.n5.nabble.com/How-to-actor-combine-tp5742297.html Sent from the VTK - Users mailing list archive at Nabble.com. From jens.g.w.schmidt at gmx.de Mon Feb 27 15:29:00 2017 From: jens.g.w.schmidt at gmx.de (Jens Schmidt) Date: Mon, 27 Feb 2017 21:29:00 +0100 Subject: [vtkusers] Extract points and polygons for a mesh using VTK In-Reply-To: References: Message-ID: Hi there, you might consider v-hacd https://github.com/kmammou/v-hacd for the decimation purpose (you'll love it). For the other question, you could probably connect the DecimatePro output to a vtkSTLWriter. http://www.vtk.org/doc/nightly/html/classvtkSTLWriter.html Cheers Jens Am 27.02.2017 um 11:54 schrieb drslump scientist: > Hello, > > > I want to reduce the number of triangles in a mesh (STL file). Here is my code: > > import vtk > > filename = 'E://stl_file.stl' > reader = vtk.vtkSTLReader() > reader.SetFileName('filename.stl') > > ##convert polygonal mesh into triangle mesh > tri = vtk.vtkTriangleFilter() > tri.SetInputConnection(reader.GetOutputPort()); > > ##decimate triangle > deci = vtk.vtkDecimatePro() > deci.SetInputConnection(tri.GetOutputPort()) > deci.SetTargetReduction(0.9) > deci.PreserveTopologyOn() > > it seems to work (at least it runs without errors). Now how can I extract points and triangles of the mesh? > > > Regards > > > > > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers > From lonni.besancon at gmail.com Mon Feb 27 15:45:29 2017 From: lonni.besancon at gmail.com (=?UTF-8?Q?Lonni_Besan=C3=A7on?=) Date: Mon, 27 Feb 2017 13:45:29 -0700 (MST) Subject: [vtkusers] Build VTK Android on windows In-Reply-To: References: Message-ID: <1488228329038-5742302.post@n5.nabble.com> So what's wrong? If you don't tell us what errors you get, as I previously told you by email, it's impossible to help you -- View this message in context: http://vtk.1045678.n5.nabble.com/Build-VTK-Android-on-windows-tp5742265p5742302.html Sent from the VTK - Users mailing list archive at Nabble.com. From Wiggerl at Linhuber.info Tue Feb 28 04:06:18 2017 From: Wiggerl at Linhuber.info (Willy) Date: Tue, 28 Feb 2017 02:06:18 -0700 (MST) Subject: [vtkusers] vtkImageData Modified: Just update a small area of the data? In-Reply-To: <1487755557519-5742276.post@n5.nabble.com> References: <1487755557519-5742276.post@n5.nabble.com> Message-ID: <1488272778790-5742304.post@n5.nabble.com> Does really nobody have an answer on my question? A simple "That is just not possible" would be ok too. I just want to know. Can somebody at least explain what "SetUpdateExtent" means and how to use it? -- View this message in context: http://vtk.1045678.n5.nabble.com/vtkImageData-Modified-Just-update-a-small-area-of-the-data-tp5742276p5742304.html Sent from the VTK - Users mailing list archive at Nabble.com. From cory.quammen at kitware.com Tue Feb 28 09:12:37 2017 From: cory.quammen at kitware.com (Cory Quammen) Date: Tue, 28 Feb 2017 09:12:37 -0500 Subject: [vtkusers] vtkImageData Modified: Just update a small area of the data? In-Reply-To: <1488272778790-5742304.post@n5.nabble.com> References: <1487755557519-5742276.post@n5.nabble.com> <1488272778790-5742304.post@n5.nabble.com> Message-ID: Typically, no, you can't just tell the mapper to update a small region. Not all filters, mappers, etc. support operating on only a small part of the data. You could manually split up your image into smaller images and have mappers for each subregion. That way updates would occur only in the subregion you have modified. I have done this approach for fast updating of contours when the underlying data has been modified and it works well. Not sure how it would work with multiple volume mappers, though. HTH, Cory On Tue, Feb 28, 2017 at 4:06 AM, Willy wrote: > Does really nobody have an answer on my question? A simple "That is just not > possible" would be ok too. I just want to know. > > Can somebody at least explain what "SetUpdateExtent" means and how to use > it? > > > > -- > View this message in context: http://vtk.1045678.n5.nabble.com/vtkImageData-Modified-Just-update-a-small-area-of-the-data-tp5742276p5742304.html > Sent from the VTK - Users mailing list archive at Nabble.com. > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers -- Cory Quammen Staff R&D Engineer Kitware, Inc. From guanw at rhpcs.mcmaster.ca Tue Feb 28 09:21:09 2017 From: guanw at rhpcs.mcmaster.ca (Weiguang Guan) Date: Tue, 28 Feb 2017 09:21:09 -0500 Subject: [vtkusers] visibility issue with using nested vtkAssembly Message-ID: <58B58755.5030103@rhpcs.mcmaster.ca> I am using VTK 7.1 and have exactly the same problem as described in this bug report ( http://www.vtk.org/Bug/print_bug_page.php?bug_id=3312). Has this bug fixed? Best, Weiguang From jim at jslengineeringsoftware.com Tue Feb 28 14:09:24 2017 From: jim at jslengineeringsoftware.com (Jim Labiak) Date: Tue, 28 Feb 2017 14:09:24 -0500 Subject: [vtkusers] VTK JAVA chart API Message-ID: <37a5bb78-7d4a-27de-5d56-abb4702c922f@jslengineeringsoftware.com> Greetings, Is anyone using vtk JAVA chart API for 2D charts successfully and have an example? Following the other (/wrapped) language examples seems not to be working for me, even though it appears relatively simple to create a vtkChartXY with points or a line. For me, nothing is displaying related to the vtkContextScene or chart or plot when I attempt to render it. Is there any significant difference between approaches for JAVA charting vs. C++ charting, for example? I know that sometimes there are some little details/differences in the JAVA vtk that are important... Thanks for any help! Regards, Jim From david.levy at leddartech.com Tue Feb 28 15:29:25 2017 From: david.levy at leddartech.com (David Levy) Date: Tue, 28 Feb 2017 20:29:25 +0000 Subject: [vtkusers] Draw thousands of different size and color 3D rectangles several times per second Message-ID: Hello, Im new to VTK so I'm trying to find a good solution to my representation. I receive from a sensor a point cloud and I would like to represent it. So far, I've been using point cloud library with Qt and it works fine. However, now I need to draw a 3D rectangle around each point of the point cloud and the computation is slow. At the moment, the point cloud is 1024 points, but it will get bigger soon. My current code is using PCL / QT : Viewer->addCube (lPoint1.x , lPoint2.x, lPoint1.y, lPoint2.y, lPoint1.z, lPoint2.z, lColor.redF(), lColor.greenF(), lColor.blueF(), "cube"+std::to_string(i), 0); For each point, then VTKWidget->update (); Is there a better way to draw lot of rectangles (not necessarily using PCL) ? I've found this old post : http://vtk.1045678.n5.nabble.com/display-tens-of-thousands-of-cubes-td5463661.html but from what I understand, it can only draw cubes and not rectangles. Thanks, David -------------- next part -------------- An HTML attachment was scrubbed... URL: From bill.lorensen at gmail.com Tue Feb 28 16:36:17 2017 From: bill.lorensen at gmail.com (Bill Lorensen) Date: Tue, 28 Feb 2017 16:36:17 -0500 Subject: [vtkusers] Draw thousands of different size and color 3D rectangles several times per second In-Reply-To: References: Message-ID: Use vtkGlyph3D to efficiently render glyphs of your choice. Type site:vtk.org/Wiki/VTK/Examples vtkGlyph3D into google to see how to use it. Also, the most recent VTK has a number of point cloud processing. See: http://www.vtk.org/Wiki/VTK/Examples/Cxx#Point_cloud_operations On Tue, Feb 28, 2017 at 3:29 PM, David Levy wrote: > Hello, > > Im new to VTK so I?m trying to find a good solution to my representation. > > > > I receive from a sensor a point cloud and I would like to represent it. So > far, I?ve been using point cloud library with Qt and it works fine. > > > > However, now I need to draw a 3D rectangle around each point of the point > cloud and the computation is slow. At the moment, the point cloud is 1024 > points, but it will get bigger soon. > > > > > > My current code is using PCL / QT : > > > > Viewer->addCube (lPoint1.x , lPoint2.x, lPoint1.y, lPoint2.y, lPoint1.z, > lPoint2.z, lColor.redF(), lColor.greenF(), lColor.blueF(), > "cube"+std::to_string(i), 0); > > > > For each point, then VTKWidget->update (); > > > > > > Is there a better way to draw lot of rectangles (not necessarily using PCL) > ? I?ve found this old post : > http://vtk.1045678.n5.nabble.com/display-tens-of-thousands-of-cubes-td5463661.html > but from what I understand, it can only draw cubes and not rectangles. > > > > Thanks, > > David > > > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Please keep messages on-topic and check the VTK FAQ at: > http://www.vtk.org/Wiki/VTK_FAQ > > Search the list archives at: http://markmail.org/search/?q=vtkusers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtkusers > -- Unpaid intern in BillsBasement at noware dot com From zhuangming.shen at sphic.org.cn Tue Feb 28 21:08:23 2017 From: zhuangming.shen at sphic.org.cn (=?gb2312?B?yfLXr8P3?=) Date: Wed, 1 Mar 2017 02:08:23 +0000 Subject: [vtkusers] Errors from BooleanOperationPolyDataFilter example Message-ID: <1488334103684.28507@sphic.org.cn> Hi all, I tried to execute the example of vtkBooleanOperationPolyDataFilter from http://www.vtk.org/Wiki/VTK/Examples/Python/PolyData/BooleanOperationPolyDataFilter. I failed to run it with errors below. What's the problem? Could anyone solve the problem and update the example for me? Thanks in advance. BTW, it seems some codes need to be changed in this example. For example, sphere1Tri.SetInput(input1) need to be modified to sphere1Tri.SetInputData(input1). ERROR: In /home/zshen/LibraryFiles/VTK/VTK-7.1.0_Source/Filters/General/vtkOBBTree.cxx, line 1058 vtkOBBTree (0x2986e30): Can't build OBB tree - no data available! ERROR: In /home/zshen/LibraryFiles/VTK/VTK-7.1.0_Source/Filters/General/vtkOBBTree.cxx, line 1058 vtkOBBTree (0x2987460): Can't build OBB tree - no data available! Segmentation fault (core dumped) Regards, Zhuangming Shen -------------- next part -------------- An HTML attachment was scrubbed... URL: