X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=bbtk%2Fsrc%2FbbCreaContournDimensions.h;h=dbd6e6e20f3f0d04bef5ded590cc319b249cbf56;hb=refs%2Fheads%2Fvtk8itk5wx3-macos;hp=fac3b34808d7719e1af31733200d5bb0ce3921c1;hpb=507a00d9d7800568d6e8ae91905f2b07cd2b30ae;p=creaContours.git diff --git a/bbtk/src/bbCreaContournDimensions.h b/bbtk/src/bbCreaContournDimensions.h index fac3b34..dbd6e6e 100644 --- a/bbtk/src/bbCreaContournDimensions.h +++ b/bbtk/src/bbCreaContournDimensions.h @@ -63,28 +63,31 @@ class /*BBTK_EXPORT*/ nDimensions BBTK_DECLARE_OUTPUT(Y,double**); BBTK_DECLARE_OUTPUT(Z,double**); BBTK_DECLARE_OUTPUT(SizeContour,std::vector ); + BBTK_DECLARE_OUTPUT(wxContourMainFrame,wxContourMainFrame*); private: //wxContourMainFrame* frame; vtkImageData* currentimg; + bool firsttime; //wxContourEventHandler * eventHandler; }; BBTK_BEGIN_DESCRIBE_BLACK_BOX(nDimensions, bbtk::WxBlackBox); -BBTK_NAME("nDimensions"); -BBTK_AUTHOR("car-prie@uniandes.edu.co"); -BBTK_DESCRIPTION("With a given image, the box shows the nDimension application"); -BBTK_CATEGORY("contours"); -BBTK_INPUT(nDimensions,WorkDir,"Working data directory where config and data files are located",std::string,""); -BBTK_INPUT(nDimensions,In,"Image to be shown",vtkImageData*,""); -BBTK_INPUT(nDimensions,ContourType,"Contour type to be exported: ",int,""); + BBTK_NAME("nDimensions"); + BBTK_AUTHOR("car-prie@uniandes.edu.co"); + BBTK_DESCRIPTION("With a given image, the box shows the nDimension application"); + BBTK_CATEGORY("contours"); + BBTK_INPUT(nDimensions,WorkDir,"Working data directory where config and data files are located",std::string,""); + BBTK_INPUT(nDimensions,In,"Image to be shown",vtkImageData*,""); + BBTK_INPUT(nDimensions,ContourType,"(default 0) Contour type to be exported: ",int,""); -BBTK_OUTPUT(nDimensions, Mask, "Mask of the contours",vtkImageData*,""); -BBTK_OUTPUT(nDimensions, Value, "Value of the contours",vtkImageData*,""); -BBTK_OUTPUT(nDimensions, X, "Array of arrays that contains the X coordinates of each contour", double**, ""); -BBTK_OUTPUT(nDimensions, Y, "Array of arrays that contains the Y coordinates of each contour", double**, ""); -BBTK_OUTPUT(nDimensions, Z, "Array of arrays that contains the Z coordinates of each contour", double**, ""); -BBTK_OUTPUT(nDimensions, SizeContour, "Vector that contains the coordinates of each contour", std::vector , ""); + BBTK_OUTPUT(nDimensions, Mask, "Mask of the contours",vtkImageData*,""); + BBTK_OUTPUT(nDimensions, Value, "Value of the contours",vtkImageData*,""); + BBTK_OUTPUT(nDimensions, X, "Array of arrays that contains the X coordinates of each contour", double**, ""); + BBTK_OUTPUT(nDimensions, Y, "Array of arrays that contains the Y coordinates of each contour", double**, ""); + BBTK_OUTPUT(nDimensions, Z, "Array of arrays that contains the Z coordinates of each contour", double**, ""); + BBTK_OUTPUT(nDimensions, SizeContour, "Vector that contains the coordinates of each contour", std::vector , ""); + BBTK_OUTPUT(nDimensions, wxContourMainFrame, "wxContourMainFrame", wxContourMainFrame*, ""); BBTK_END_DESCRIBE_BLACK_BOX(nDimensions); }