<div dir="ltr">Thank you Sven,<div><br></div><div>I follow your advice, in <span style="font-family:arial,sans-serif;font-size:14px">vtkCleanUnstructuredGrid, </span>I replace vtkMergePoints locator  by vtkPointLocator. Hereby<span style="font-family:arial,sans-serif;font-size:14px">, I am able to specify the tolerance to merge points, and get the desired results. </span></div>
<div><span style="font-family:arial,sans-serif;font-size:14px"><br></span></div><div><span style="font-family:arial,sans-serif;font-size:14px">Thank you very much.</span></div><div><span style="font-family:arial,sans-serif;font-size:14px">yoshimi</span></div>

</div><div class="gmail_extra"><br><br><div class="gmail_quote">2013/9/2 Sven Buijssen <span dir="ltr">&lt;<a href="mailto:sven.buijssen@tu-dortmund.de" target="_blank">sven.buijssen@tu-dortmund.de</a>&gt;</span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hi Yoshimi,<br>
<br>
The Clean to Grid filter internally invokes vtkCleanUnstructuredGrid<br>
which can merge duplicate points, but they need to have coincident<br>
coordinates. In contrast, very old versions of ParaView also merged very<br>
close points, but that is not true any more, see closed issue<br>
<a href="http://www.paraview.org/Bug/view.php?id=9728" target="_blank">http://www.paraview.org/Bug/view.php?id=9728</a><br>
<br>
It is actually very simple to derive a (c++-based) plugin from<br>
vtkCleanUnstructuredGrid that provides a filter that merges points<br>
within a distance of less than a (configurable) fraction of the length<br>
of the diagonal of the bounding box of the data set. But in order to be<br>
able to use said plugin you would need to compile ParaView from source.<br>
Not sure whether you would want to go to such lengths.<br>
<br>
Sven<br>
<br>
<br>
kenichiro yoshimi wrote, On 02.09.2013 07:47:<br>
<div><div class="h5">&gt; Hi all,<br>
&gt;<br>
&gt; I want to merge the very close (or coincident) points in PV. For<br>
&gt; instance, there are very close two points and one point apart from them,<br>
&gt; i.e., an ASCII VTK File:<br>
&gt; ----------<br>
&gt; vtk output<br>
&gt; ASCII<br>
&gt; DATASET UNSTRUCTURED_GRID<br>
&gt; POINTS 3 float<br>
&gt; 1 1 1<br>
&gt; 0 0 0<br>
&gt; 0 0 1e-014<br>
&gt; CELLS 3 6<br>
&gt; 1 0<br>
&gt; 1 1<br>
&gt; 1 2<br>
&gt; CELL_TYPES 3<br>
&gt; 1<br>
&gt; 1<br>
&gt; 1<br>
&gt; ----------<br>
&gt; I use the Clean to Grid filter to merge the two close points, but after<br>
&gt; that there remains three points.  Can anyone tell me what this is?<br>
&gt;<br>
&gt; Thanks,<br>
&gt; yoshimi<br>
&gt;<br>
&gt;<br>
</div></div>&gt; _______________________________________________<br>
&gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt;<br>
&gt; Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
&gt;<br>
&gt; Please keep messages on-topic and check the ParaView Wiki at: <a href="http://paraview.org/Wiki/ParaView" target="_blank">http://paraview.org/Wiki/ParaView</a><br>
&gt;<br>
&gt; Follow this link to subscribe/unsubscribe:<br>
&gt; <a href="http://www.paraview.org/mailman/listinfo/paraview" target="_blank">http://www.paraview.org/mailman/listinfo/paraview</a><br>
&gt;<br>
</blockquote></div><br></div>