From: Eduardo DAVILA Date: Fri, 27 Jun 2014 12:55:19 +0000 (+0200) Subject: 2415 creaMaracasVisu Bug New Normal box Histogram is not working in differents formats X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=97ad2650cb2956958bc3cb6676b27a82a9969bda;p=creaMaracasVisu.git 2415 creaMaracasVisu Bug New Normal box Histogram is not working in differents formats --- diff --git a/lib/maracasVisuLib/src/interface/wxWindows/widgets/pPlotter/pHistogram.cxx b/lib/maracasVisuLib/src/interface/wxWindows/widgets/pPlotter/pHistogram.cxx index 4909265..5a02215 100644 --- a/lib/maracasVisuLib/src/interface/wxWindows/widgets/pPlotter/pHistogram.cxx +++ b/lib/maracasVisuLib/src/interface/wxWindows/widgets/pPlotter/pHistogram.cxx @@ -31,10 +31,11 @@ #include "pHistogram.h" //#include "vtkJPEGReader.h" #include "vtkImageData.h" -#include "vtkImageCast.h" -//----------------- -// C++ -//----------------- +#include "vtkImageCast.h" +#include "vtkComputeHistogram2DOutliers.h" +#include "vtkTable.h" + + #include #include #include @@ -153,6 +154,16 @@ void pHistogram::initializePoints(int xDimension) */ void pHistogram::setPoints(vtkImageData* imageData) { + +printf("EED pHistogram::setPoints Test: vtkPComputeHistogram2DOutliers\n"); +vtkComputeHistogram2DOutliers *vtkhist = vtkComputeHistogram2DOutliers::New(); +vtkhist->SetPreferredNumberOfOutliers(10); +vtkhist->SetInput(imageData); +vtkTable *resulttable = vtkhist->GetOutputTable(); + +printf("EED pHistogram::setPoints rows:%d\n", (int)(resulttable->GetNumberOfRows()) ); +printf("EED pHistogram::setPoints colums:%d\n", (int)(resulttable->GetNumberOfColumns()) ); + /* Pointers */