well, I tried to do what you told, I thought that GetContourRepresentationAsPolyData() 'd be enough to get the polygon but following the chode you showed I got to these:<div><br></div><div><div>#include <vtkSmartPointer.h></div>
<div>#include <vtkProperty.h></div><div>#include <vtkContourWidget.h></div><div>#include <vtkOrientedGlyphContourRepresentation.h></div><div>#include <vtkRenderer.h></div><div>#include <vtkRenderWindow.h></div>
<div>#include <vtkRenderWindowInteractor.h></div><div>#include <vtkCommand.h></div><div>#include <vtkDebugLeaks.h></div><div>#include <vtkCamera.h></div><div>#include <vtkPlane.h></div><div>#include <vtkPolyData.h></div>
<div>#include <vtkCellArray.h></div><div>#include <vtkPoints.h></div><div>#include <vtkMath.h></div><div>#include <vtkWidgetEvent.h></div><div>#include <vtkWidgetEventTranslator.h></div><div>
#include <vtkTriangleFilter.h></div><div>#include <vtkMassProperties.h></div><div>#include <vtkPolygon.h></div><div> </div><div>int main( int argc, char *argv[] )</div><div>{</div><div> // Create the RenderWindow, Renderer and both Actors</div>
<div> //</div><div> vtkSmartPointer<vtkRenderer> renderer = vtkSmartPointer<vtkRenderer>::New();</div><div> vtkSmartPointer<vtkRenderWindow> renderWindow = vtkSmartPointer<vtkRenderWindow>::New();</div>
<div> renderWindow->AddRenderer(renderer);</div><div> </div><div> vtkSmartPointer<vtkRenderWindowInteractor> interactor = </div><div> vtkSmartPointer<vtkRenderWindowInteractor>::New();</div><div> interactor->SetRenderWindow(renderWindow);</div>
<div> </div><div> renderer->SetBackground(0.1, 0.2, 0.4);</div><div> renderWindow->SetSize(600, 600);</div><div> </div><div> vtkSmartPointer<vtkOrientedGlyphContourRepresentation> contourRep = </div><div> vtkSmartPointer<vtkOrientedGlyphContourRepresentation>::New();</div>
<div> contourRep->GetLinesProperty()->SetColor(1, 0, 0); //set color to red</div><div> </div><div> vtkSmartPointer<vtkContourWidget> contourWidget = </div><div> vtkSmartPointer<vtkContourWidget>::New();</div>
<div> contourWidget->SetInteractor(interactor);</div><div> contourWidget->SetRepresentation(contourRep);</div><div> contourWidget->On();</div><div> </div><div> for (int i = 0; i < argc; i++)</div><div> {</div>
<div> if (strcmp("-Shift", argv[i]) == 0)</div><div> {</div><div> contourWidget->GetEventTranslator()->RemoveTranslation( </div><div> vtkCommand::LeftButtonPressEvent );</div>
<div> contourWidget->GetEventTranslator()->SetTranslation( </div><div> vtkCommand::LeftButtonPressEvent,</div><div> vtkWidgetEvent::Translate );</div>
<div> }</div><div> else if (strcmp("-Scale", argv[i]) == 0)</div><div> {</div><div> contourWidget->GetEventTranslator()->RemoveTranslation( </div><div> vtkCommand::LeftButtonPressEvent );</div>
<div> contourWidget->GetEventTranslator()->SetTranslation( </div><div> vtkCommand::LeftButtonPressEvent,</div><div> vtkWidgetEvent::Scale );</div>
<div> }</div><div> }</div><div> </div><div> </div><div> vtkSmartPointer<vtkPolyData> pd = vtkSmartPointer<vtkPolyData>::New();</div><div> </div><div> vtkSmartPointer<vtkPoints> points = vtkSmartPointer<vtkPoints>::New();</div>
<div> vtkSmartPointer<vtkCellArray> lines = vtkSmartPointer<vtkCellArray>::New();</div><div> vtkIdType* lineIndices = new vtkIdType[21];</div><div> for (int i = 0; i< 20; i++)</div><div> {</div><div> const double angle = 2.0*vtkMath::Pi()*i/20.0;</div>
<div> points->InsertPoint(static_cast<vtkIdType>(i), 0.1*cos(angle),</div><div> 0.1*sin(angle), 0.0 );</div><div> lineIndices[i] = static_cast<vtkIdType>(i);</div><div> }</div>
<div> </div><div> lineIndices[20] = 0;</div><div> lines->InsertNextCell(21,lineIndices);</div><div> delete [] lineIndices;</div><div> pd->SetPoints(points);</div><div> pd->SetLines(lines);</div><div><br></div>
<div> contourWidget->Initialize(pd);</div><div> contourWidget->Render();</div><div> renderer->ResetCamera();</div><div> renderWindow->Render();</div><div> </div><div> interactor->Initialize();</div><div>
interactor->Start();</div><div><br></div><div> vtkSmartPointer< vtkPolygon > polygon =</div><div><span class="" style="white-space:pre"> </span> vtkSmartPointer< vtkPolygon >::New();</div><div> vtkSmartPointer< vtkPolyData > poly =</div>
<div><span class="" style="white-space:pre"> </span> vtkSmartPointer< vtkPolyData >::New();</div><div> vtkSmartPointer< vtkCellArray > cellArray =</div><div><span class="" style="white-space:pre"> </span> vtkSmartPointer< vtkCellArray >::New();</div>
<div><br></div><div> int numOfPoints = contourRep->GetContourRepresentationAsPolyData()->GetNumberOfPoints();</div><div> polygon->GetPointIds()->SetNumberOfIds(numOfPoints);</div><div> for (int i = 0; i < numOfPoints; i++)</div>
<div> {</div><div><span class="" style="white-space:pre"> </span> polygon->GetPointIds()->SetId(i, i);</div><div> }</div><div><br></div><div> cellArray->InsertNextCell(polygon);</div><div> poly->SetPoints(contourRep->GetContourRepresentationAsPolyData()->GetPoints());</div>
<div> poly->SetPolys(cellArray);</div><div><br></div><div> vtkSmartPointer< vtkTriangleFilter > triangles =</div><div><span class="" style="white-space:pre"> </span> vtkSmartPointer< vtkTriangleFilter >::New();</div>
<div> //triangles->SetInput(contourRep->GetContourRepresentationAsPolyData());</div><div> triangles->SetInput(poly);</div><div> vtkSmartPointer< vtkMassProperties > massProp =</div><div><span class="" style="white-space:pre"> </span> vtkSmartPointer< vtkMassProperties >::New();</div>
<div> massProp->SetInput(triangles->GetOutput());</div><div> double area = massProp->GetSurfaceArea();</div><div><br></div><div> std::cout<< area;</div><div><br></div><div> contourWidget->Off();</div>
<div><br></div><div> return EXIT_SUCCESS;</div><div>}</div></div><div><br></div><div>I see area changes as I modified the form of the contour and close the render window, correct me if there's something wrong please and if you give me some guide on that GetContourRepresentationAsPolyData() if there's a way to use it in a more direct way.</div>
<div><br></div><div>Thx for your help</div><div><br></div><div>Regards, Rodrigo</div><div class="gmail_extra"><br><br><div class="gmail_quote">2012/12/3 David Doria <span dir="ltr"><<a href="mailto:daviddoria@gmail.com" target="_blank">daviddoria@gmail.com</a>></span><br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="im">On Mon, Dec 3, 2012 at 3:40 PM, Rodrigo Lovera <<a href="mailto:lobo.theslayer@gmail.com">lobo.theslayer@gmail.com</a>> wrote:<br>
> OK, I got that poly data but one I got that into the trianglefilter and then<br>
> to the massproperties is where that error shows up, so what I don't get is<br>
> that step between applying<br>
><br>
> contourRep->GetContourRepresentationAsPolyData()<br>
><br>
> and getting the poly into the trianglefilter.<br>
<br>
</div>The easiest way would just be to read out the points from the line<br>
segments produced by the widget to create the polygon like I showed.<br>
<span class="HOEnZb"><font color="#888888"><br>
David<br>
</font></span></blockquote></div><br><br clear="all"><div><br></div>-- <br><b><font face="'comic sans ms', sans-serif" color="#000066">Rodrigo aka WarHearT</font></b><br>
</div>