X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FmaracasVisuLib%2Fsrc%2Finterface%2FwxWindows%2FContour%2FContourExtractData.h;h=b463709d2c5cb94ce79d37f1587e5f424a065475;hb=8e51f74bc77447daf61b8e1caf7ab07ae235b578;hp=6196303879cbe1d8471acb1815b76daa103f7971;hpb=95c30bf2de4ceb066887e941918b1fcb43575455;p=creaMaracasVisu.git diff --git a/lib/maracasVisuLib/src/interface/wxWindows/Contour/ContourExtractData.h b/lib/maracasVisuLib/src/interface/wxWindows/Contour/ContourExtractData.h index 6196303..b463709 100644 --- a/lib/maracasVisuLib/src/interface/wxWindows/Contour/ContourExtractData.h +++ b/lib/maracasVisuLib/src/interface/wxWindows/Contour/ContourExtractData.h @@ -18,7 +18,7 @@ void SetImage( vtkImageData* imagedata); void SetZtoBeAnalys( int z ); - void SetLstManualContourModel( std::vector lstManConMod); + void SetLstManualContourModel( std::vector lstManConMod); void GetValuesInsideCrown( std::vector *pLstValue, std::vector *pLstValuePosX, std::vector *pLstValuePosY, @@ -49,7 +49,15 @@ private: bool okImagesResults; - std::vector lstManConMod; + + // + // List of contours to obtain the respective statistics. + // + std::vector lstManConMod; + + // + // Operation Type (AND,OR,XOR...) + // int _typeOperation; int zImage; @@ -58,9 +66,22 @@ vtkImageData *imagedataMaskResult; bool isInside(int x, int y, int typeOperation ); + + // + // Asigns the minimum and maximum points of the contour model in parameter. + // @param *minPoint - int + // @param *maxPoint - int + // @param *manualcontourmodel - manualBaseModel + // void GetMinMaxPoint(int *minPoint, int *maxPoint, - manualContourModel *manualcontourmodel ); + manualBaseModel *manualcontourmodel ); + // + // Obtain the minimum and maximum point among the contours. The value is saved in the parameter + // pointers + // @param *minPoint - int pointer to the minPoint + // @param *maxPoint - int pointer to the maxPoint + // void GetMinMaxPoint_Of_LstManConMod( int *minPoint, int *maxPoint);