From 44e4be7013ea566bd2bdefb9d48e1da0071c3d91 Mon Sep 17 00:00:00 2001 From: casallas Date: Wed, 12 Nov 2008 16:22:57 +0000 Subject: [PATCH] The bbtk folder with the maracasvisu bbtk package was added to the creaMaracasVisu Project --- bbtk/CMakeLists.txt | 390 +++++++++ bbtk/Configure.cmake | 58 ++ bbtk/PackageConfig.cmake.in | 27 + bbtk/README.txt | 52 ++ bbtk/UsePackage.cmake.in | 4 + bbtk/bbs/CMakeLists.txt | 4 + bbtk/bbs/appli/ExampleBars.bbs | 65 ++ bbtk/bbs/appli/ExampleColorBar.bbs | 18 + bbtk/bbs/appli/ExampleContourCrown.bbs | 105 +++ bbtk/bbs/appli/ExampleGaussianSmooth.bbs | 104 +++ bbtk/bbs/appli/ExampleHistogramView.bbs | 16 + bbtk/bbs/appli/ExampleILPD.bbs | 15 + bbtk/bbs/appli/ExampleILPDwithImage.bbs | 7 + bbtk/bbs/appli/ExampleMaracasVisu01.bbs | 69 ++ bbtk/bbs/appli/ExamplePlotterView.bbs | 11 + bbtk/bbs/appli/ExampleReadDICOM.bbs | 42 + bbtk/bbs/appli/ExampleSlideMinMax.bbs | 14 + .../bbs/appli/ExampleTransferFunctionView.bbs | 17 + bbtk/bbs/appli/ExampleVOI_01.bbs | 37 + bbtk/bbs/appli/ExampleVOI_02.bbs | 57 ++ bbtk/bbs/appli/ExampleViewerMPR.bbs | 12 + bbtk/bbs/appli/ExampleViewerNV_A.bbs | 13 + bbtk/bbs/appli/ExampleViewerNV_B.bbs | 14 + bbtk/bbs/appli/ExampleViewerNV_C.bbs | 14 + bbtk/bbs/appli/Example_Segmentation_01.bbs | 37 + bbtk/bbs/appli/Example_Segmentation_02.bbs | 69 ++ bbtk/bbs/appli/README.txt | 1 + bbtk/bbs/boxes/README.txt | 1 + bbtk/data/CMakeLists.txt | 4 + bbtk/doc/CMakeLists.txt | 5 + bbtk/doc/bbdoc/CMakeLists.txt | 2 + bbtk/doc/bbdoc/header.html.in | 12 + bbtk/doc/doxygen/CMakeLists.txt | 1 + bbtk/doc/doxygen/DoxyMainPage.txt.in | 14 + bbtk/doc/doxygen/Doxyfile.txt.in | 764 ++++++++++++++++++ bbtk/src/CMakeLists.txt | 5 + bbtk/src/bbmaracasvisuColorBar.cxx | 69 ++ bbtk/src/bbmaracasvisuColorBar.h | 67 ++ bbtk/src/bbmaracasvisuContourCrown.cxx | 91 +++ bbtk/src/bbmaracasvisuContourCrown.h | 94 +++ bbtk/src/bbmaracasvisuContourStatistics.cxx | 76 ++ bbtk/src/bbmaracasvisuContourStatistics.h | 54 ++ .../bbmaracasvisuContourToControlPoints.cxx | 150 ++++ .../src/bbmaracasvisuContourToControlPoints.h | 98 +++ bbtk/src/bbmaracasvisuContourVOI.cxx | 150 ++++ bbtk/src/bbmaracasvisuContourVOI.h | 92 +++ bbtk/src/bbmaracasvisuHistogramView.cxx | 44 + bbtk/src/bbmaracasvisuHistogramView.h | 43 + bbtk/src/bbmaracasvisuILPD._cxx_ | 54 ++ bbtk/src/bbmaracasvisuILPD._h_ | 46 ++ bbtk/src/bbmaracasvisuILPDwithImage._cxx_ | 56 ++ bbtk/src/bbmaracasvisuILPDwithImage._h_ | 48 ++ .../src/bbmaracasvisuImageBrowserReader._cxx_ | 160 ++++ bbtk/src/bbmaracasvisuImageBrowserReader._h_ | 95 +++ .../bbmaracasvisuImageChangeInformation.cxx | 41 + .../src/bbmaracasvisuImageChangeInformation.h | 47 ++ bbtk/src/bbmaracasvisuPlotterView.cxx | 50 ++ bbtk/src/bbmaracasvisuPlotterView.h | 49 ++ bbtk/src/bbmaracasvisuSliderMinMax.cxx | 135 ++++ bbtk/src/bbmaracasvisuSliderMinMax.h | 112 +++ .../src/bbmaracasvisuTransferFunctionView.cxx | 41 + bbtk/src/bbmaracasvisuTransferFunctionView.h | 47 ++ bbtk/src/bbmaracasvisuViewerMPR.cxx | 142 ++++ bbtk/src/bbmaracasvisuViewerMPR.h | 93 +++ bbtk/src/bbmaracasvisuViewerNV.cxx | 81 ++ bbtk/src/bbmaracasvisuViewerNV.h | 76 ++ 66 files changed, 4481 insertions(+) create mode 100644 bbtk/CMakeLists.txt create mode 100644 bbtk/Configure.cmake create mode 100644 bbtk/PackageConfig.cmake.in create mode 100644 bbtk/README.txt create mode 100644 bbtk/UsePackage.cmake.in create mode 100644 bbtk/bbs/CMakeLists.txt create mode 100644 bbtk/bbs/appli/ExampleBars.bbs create mode 100644 bbtk/bbs/appli/ExampleColorBar.bbs create mode 100644 bbtk/bbs/appli/ExampleContourCrown.bbs create mode 100644 bbtk/bbs/appli/ExampleGaussianSmooth.bbs create mode 100644 bbtk/bbs/appli/ExampleHistogramView.bbs create mode 100644 bbtk/bbs/appli/ExampleILPD.bbs create mode 100644 bbtk/bbs/appli/ExampleILPDwithImage.bbs create mode 100644 bbtk/bbs/appli/ExampleMaracasVisu01.bbs create mode 100644 bbtk/bbs/appli/ExamplePlotterView.bbs create mode 100644 bbtk/bbs/appli/ExampleReadDICOM.bbs create mode 100644 bbtk/bbs/appli/ExampleSlideMinMax.bbs create mode 100644 bbtk/bbs/appli/ExampleTransferFunctionView.bbs create mode 100644 bbtk/bbs/appli/ExampleVOI_01.bbs create mode 100644 bbtk/bbs/appli/ExampleVOI_02.bbs create mode 100644 bbtk/bbs/appli/ExampleViewerMPR.bbs create mode 100644 bbtk/bbs/appli/ExampleViewerNV_A.bbs create mode 100644 bbtk/bbs/appli/ExampleViewerNV_B.bbs create mode 100644 bbtk/bbs/appli/ExampleViewerNV_C.bbs create mode 100644 bbtk/bbs/appli/Example_Segmentation_01.bbs create mode 100644 bbtk/bbs/appli/Example_Segmentation_02.bbs create mode 100644 bbtk/bbs/appli/README.txt create mode 100644 bbtk/bbs/boxes/README.txt create mode 100644 bbtk/data/CMakeLists.txt create mode 100644 bbtk/doc/CMakeLists.txt create mode 100644 bbtk/doc/bbdoc/CMakeLists.txt create mode 100644 bbtk/doc/bbdoc/header.html.in create mode 100644 bbtk/doc/doxygen/CMakeLists.txt create mode 100644 bbtk/doc/doxygen/DoxyMainPage.txt.in create mode 100644 bbtk/doc/doxygen/Doxyfile.txt.in create mode 100644 bbtk/src/CMakeLists.txt create mode 100644 bbtk/src/bbmaracasvisuColorBar.cxx create mode 100644 bbtk/src/bbmaracasvisuColorBar.h create mode 100644 bbtk/src/bbmaracasvisuContourCrown.cxx create mode 100644 bbtk/src/bbmaracasvisuContourCrown.h create mode 100644 bbtk/src/bbmaracasvisuContourStatistics.cxx create mode 100644 bbtk/src/bbmaracasvisuContourStatistics.h create mode 100644 bbtk/src/bbmaracasvisuContourToControlPoints.cxx create mode 100644 bbtk/src/bbmaracasvisuContourToControlPoints.h create mode 100644 bbtk/src/bbmaracasvisuContourVOI.cxx create mode 100644 bbtk/src/bbmaracasvisuContourVOI.h create mode 100644 bbtk/src/bbmaracasvisuHistogramView.cxx create mode 100644 bbtk/src/bbmaracasvisuHistogramView.h create mode 100644 bbtk/src/bbmaracasvisuILPD._cxx_ create mode 100644 bbtk/src/bbmaracasvisuILPD._h_ create mode 100644 bbtk/src/bbmaracasvisuILPDwithImage._cxx_ create mode 100644 bbtk/src/bbmaracasvisuILPDwithImage._h_ create mode 100644 bbtk/src/bbmaracasvisuImageBrowserReader._cxx_ create mode 100644 bbtk/src/bbmaracasvisuImageBrowserReader._h_ create mode 100644 bbtk/src/bbmaracasvisuImageChangeInformation.cxx create mode 100644 bbtk/src/bbmaracasvisuImageChangeInformation.h create mode 100644 bbtk/src/bbmaracasvisuPlotterView.cxx create mode 100644 bbtk/src/bbmaracasvisuPlotterView.h create mode 100644 bbtk/src/bbmaracasvisuSliderMinMax.cxx create mode 100644 bbtk/src/bbmaracasvisuSliderMinMax.h create mode 100644 bbtk/src/bbmaracasvisuTransferFunctionView.cxx create mode 100644 bbtk/src/bbmaracasvisuTransferFunctionView.h create mode 100644 bbtk/src/bbmaracasvisuViewerMPR.cxx create mode 100644 bbtk/src/bbmaracasvisuViewerMPR.h create mode 100644 bbtk/src/bbmaracasvisuViewerNV.cxx create mode 100644 bbtk/src/bbmaracasvisuViewerNV.h diff --git a/bbtk/CMakeLists.txt b/bbtk/CMakeLists.txt new file mode 100644 index 0000000..d475b03 --- /dev/null +++ b/bbtk/CMakeLists.txt @@ -0,0 +1,390 @@ + +INCLUDE_REGULAR_EXPRESSION("^.*$") +set(CMAKE_MFC_FLAG 2) + + +#=========================================================================== +# CMAKE SETTINGS FOR BUILDING A BBTK PACKAGE +#=========================================================================== + +#=========================================================================== +# THE NAME OF THE BBTK PACKAGE +SET(BBTK_PACKAGE_NAME maracasvisu) +#=========================================================================== + + + +#=========================================================================== +# IF IT IS A STANDALONE PROJECT UNCOMMENT NEXT LINE TO DECLARE YOUR PROJECT +# PROJECT(bb${BBTK_PACKAGE_NAME}) +#=========================================================================== + +#=========================================================================== +# PACKAGE AUTHOR +# !!! NO COMMA ALLOWED !!! +SET(${BBTK_PACKAGE_NAME}_AUTHOR "eduardo.davila [at] creatis.insa-lyon.fr") +#=========================================================================== + +#=========================================================================== +# PACKAGE DESCRIPTION +SET(${BBTK_PACKAGE_NAME}_DESCRIPTION "Maracas library") +#=========================================================================== + +#=========================================================================== +# PACKAGE VERSION NUMBER +SET(${BBTK_PACKAGE_NAME}_MAJOR_VERSION 1) +SET(${BBTK_PACKAGE_NAME}_MINOR_VERSION 0) +SET(${BBTK_PACKAGE_NAME}_BUILD_VERSION 0) +#=========================================================================== + + +#=========================================================================== +# UNCOMMENT EACH LIBRARY NEEDED (WILL BE FOUND AND USED AUTOMATICALLY) + SET(${BBTK_PACKAGE_NAME}_USE_VTK ON) + SET(${BBTK_PACKAGE_NAME}_USE_ITK ON) + SET(${BBTK_PACKAGE_NAME}_USE_GDCM ON) +# SET(${BBTK_PACKAGE_NAME}_USE_GSMIS ON) + SET(${BBTK_PACKAGE_NAME}_USE_WXWIDGETS ON) +#=========================================================================== + +#=========================================================================== +# LIST HERE THE OTHER bbtk PACKAGES NEEDED +# (WILL BE FOUND AND USED AUTOMATICALLY) +SET(${BBTK_PACKAGE_NAME}_USE_PACKAGES + # std + # wx + # itk + # vtk + # ... + ) +#=========================================================================== + +#=========================================================================== +# THE SOURCES OF THE PACKAGE +# EITHER UNCOMMENT NEXT LINE TO COMPILE ALL .cxx OF THE src DIRECTORY : +SET(${BBTK_PACKAGE_NAME}_COMPILE_ALL_CXX ON) +# ... OR LIST THE FILES TO COMPILE MANUALLY : +#SET(${BBTK_PACKAGE_NAME}_SOURCES +# LIST HERE THE FILES TO COMPILE TO BUILD THE LIB +# E.G. TO COMPILE "toto.cxx" ADD "toto" (NO EXTENSION) +# THE PATH MUST BE RELATIVE TO THE src FOLDER +# ) +#=========================================================================== + +#=========================================================================== +# THE xml SOURCES OF THE PACKAGE +# EITHER UNCOMMENT NEXT LINE TO bbfy ALL .xml OF THE src DIRECTORY : +SET(${BBTK_PACKAGE_NAME}_COMPILE_ALL_XML ON) +# ... OR LIST THE FILES TO COMPILE MANUALLY : +#SET(${BBTK_PACKAGE_NAME}_XML_SOURCES +# LIST HERE THE FILES TO bbfy TO BUILD THE LIB +# E.G. TO bbfy "toto.xml" ADD "toto" (NO EXTENSION) +# THE PATH MUST BE RELATIVE TO THE src FOLDER +# ) +#=========================================================================== + +#=========================================================================== +# THE SCRIPT-DEFINED BOXES OF THE PACKAGE (bbs) +# EITHER UNCOMMENT NEXT LINE TO INCLUDE ALL .bbs OF THE bbs/boxes DIRECTORY : +SET(${BBTK_PACKAGE_NAME}_INCLUDE_ALL_BBS_BOXES ON) +# ... OR LIST THE FILES TO INCLUDE MANUALLY : +# SET(${BBTK_PACKAGE_NAME}_BBS_BOXES +# LIST HERE THE bbs FILES TO INCLUDE +# E.G. TO INCLUDE "boxes/bbtoto.bbs" ADD "boxes/bbtoto" (NO EXTENSION) +# !! THE PATH MUST BE RELATIVE TO THE bbs FOLDER !! +#) +#=========================================================================== + +#=========================================================================== +# THE SCRIPT-DEFINED APPLICATIONS OF THE PACKAGE (bbs) +# EITHER UNCOMMENT NEXT LINE TO INCLUDE ALL .bbs OF THE bbs/appli DIRECTORY : +SET(${BBTK_PACKAGE_NAME}_INCLUDE_ALL_BBS_APPLI ON) +# ... OR LIST THE FILES TO INCLUDE MANUALLY : +# SET(${BBTK_PACKAGE_NAME}_BBS_APPLI +# LIST HERE THE bbs FILES TO INCLUDE +# E.G. TO INCLUDE "appli/testToto.bbs" ADD "appli/testToto" (NO EXTENSION) +# !! THE PATH MUST BE RELATIVE TO THE bbs FOLDER !! +#) +#=========================================================================== + +#=========================================================================== +SET(${BBTK_PACKAGE_NAME}_INCLUDE_DIRS + # LIST HERE YOUR ADDITIONAL INCLUDE DIRECTORIES + # EXCEPT : + # - src + # - bbtk dirs + # - automatically handled libraries or packages : wx, vtk... (see above) + # - the dirs automatically set by other libraries found by FIND_PACKAGE + ) +#=========================================================================== + +FIND_PATH( libIdo_DIR libidobin $ENV{LIBIDO_PATH} ) +FIND_PACKAGE(libIdo) +INCLUDE_DIRECTORIES(${LIBIDO_INCLUDE_PATH}) + + #=========================================================================== + INCLUDE_DIRECTORIES( + # LIST HERE YOUR ADDITIONAL INCLUDE DIRECTORIES (EXCEPT BBTK'S) + ../lib/maracasVisuLib/src/kernel + ../lib/maracasVisuLib/include + ../lib/maracasVisuLib/src/kernel + ../lib/maracasVisuLib/src/interface/wxWindows + ../lib/maracasVisuLib/src/interface/wxWindows/widgets + ../lib/maracasVisuLib/src/interface/wxWindows/widgets/pPlotter +### ${MaracasSrcDir}/ILPD/src/wxInterface + ) + #=========================================================================== + +#TODO for a nice VC++ we need to add header file... +#1SET(MARACASVISU_LIB_SRCS +#1 ${MaracasSrcDir}/manualContour.cpp +#1 ${MaracasSrcDir}/manualContour.h +#1 ${MaracasSrcDir}/Contour/ContourCrownWidget.cxx +#1 ${MaracasSrcDir}/Contour/ContourCrownWidget.h +#1 ${MaracasSrcDir}/Contour/ContourVOIWidget.cxx +#1 ${MaracasSrcDir}/Contour/ContourVOIWidget.h +#1 ${MaracasSrcDir}/Contour/Propagation.cxx +#1 ${MaracasSrcDir}/Contour/Propagation.h +#1 ${MaracasSrcDir}/Contour/ExtractControlPoints2D.cxx +#1 ${MaracasSrcDir}/Contour/ExtractControlPoints2D.h +#1 ${MaracasSrcDir}/Contour/AutoControlPoints.cxx +#1 ${MaracasSrcDir}/Contour/AutoControlPoints.h +#1 ${MaracasSrcDir}/Contour/ContourPropagation.cxx +#1 ${MaracasSrcDir}/Contour/ContourPropagation.h +#1 ${MaracasSrcDir}/Contour/contoursIntersection.cxx +#1 ${MaracasSrcDir}/Contour/contoursIntersection.h +#1 ${MaracasSrcDir}/Contour/vectorFunctions.cxx +#1 ${MaracasSrcDir}/Contour/vectorFunctions.h +# marDictionary.cxx +# marDictionary.h +# wxMaracas3DBrowser.cxx +# wxMaracas3DBrowser.h +# wxMaracasDataBrowser.cxx +# wxMaracasDataBrowser.h +# wxMaracasImageBrowser.cxx +# wxMaracasImageBrowser.h +#1 ${MaracasSrcDir}/wxMaracasImageBrowser02.cxx +#1 ${MaracasSrcDir}/wxMaracasImageBrowser02.h +#1 ${MaracasSrcDir}/widgets/wxReadingPriorityPanel.cpp +#1 ${MaracasSrcDir}/widgets/wxReadingPriorityPanel.h +# wxMaracasFrame02.cxx +# wxMaracasFrame02.h + +### ${MaracasSrcDir}/wxILPDwithImage.cxx +### ${MaracasSrcDir}/wxILPDwithImage.h + +# wxMaracasParametersDialog.cxx +# wxMaracasParametersDialog.h +# widgets/wxParametersDialog.cpp +# widgets/wxParametersDialog.h +# wxMaracasHelpDialog.cxx +# wxMaracasHelpDialog.h +# wxMaracasQuantification.cxx +# wxMaracasQuantification.h +#1 ${MaracasSrcDir}/widgets/wxVTKRenderWindowInteractor.cxx +#1 ${MaracasSrcDir}/widgets/wxVTKRenderWindowInteractor.h +# widgets/wxVTKRenderWindowInteractorEditContour.cxx +# widgets/wxVTKRenderWindowInteractorEditContour.h +# widgets/vtk3DSurfaceWidget.cxx +# widgets/vtk3DSurfaceWidget.h +# widgets/vtk3DQuantSurfaceWidget.cxx +# widgets/vtk3DQuantSurfaceWidget.h +# widgets/vtk2DQuantSliceWidget.cxx +# widgets/vtk2DQuantSliceWidget.h +# widgets/vtk3DSurfaceSTLWidget.cxx +# widgets/vtk3DSurfaceSTLWidget.h +# widgets/wxSurfaceSTLWidget.cxx +# widgets/wxSurfaceSTLWidget.h +# widgets/wxSurfaceWidget.cxx +# widgets/wxSurfaceWidget.h +#1 ${MaracasSrcDir}/widgets/InterfaceVtkPanelWidgets.cxx +#1 ${MaracasSrcDir}/widgets/InterfaceVtkPanelWidgets.h +# widgets/wxImageBrowserWdg.cxx +# widgets/wxImageBrowserWdg.h +# widgets/wxImageViewerWidget.cxx +# widgets/wxImageViewerWidget.h +#1 ${MaracasSrcDir}/widgets/vtkClosePolyData.cxx +#1 ${MaracasSrcDir}/widgets/vtkClosePolyData.h +# widgets/vtkImagePolyDataSeedConnectivity.cxx +# widgets/vtkImagePolyDataSeedConnectivity.h +# widgets/vtkInteractorStyleCutter.cxx +# widgets/vtkInteractorStyleCutter.h +# widgets/wxQuantificationWidget.cxx +# widgets/wxQuantificationWidget.h +#1 ${MaracasSrcDir}/wxMaracasMPR.cxx +#1 ${MaracasSrcDir}/wxMaracasMPR.h +# ${MaracasSrcDir}/wxMaracasEmptyPanel.cxx +# ${MaracasSrcDir}/wxMaracasEmptyPanel.h +# ${MaracasSrcDir}/widgets/wxEmptyPanelWidget.cxx +# ${MaracasSrcDir}/widgets/wxEmptyPanelWidget.h +# ${MaracasSrcDir}/wxMaracasEmptyPanel_2.cxx +# ${MaracasSrcDir}/wxMaracasEmptyPanel_2.h +# ${MaracasSrcDir}/widgets/wxEmptyPanelWidget_2.cxx +# ${MaracasSrcDir}/widgets/wxEmptyPanelWidget_2.h +#1 ${MaracasSrcDir}/widgets/wxMPRWidget.cxx +#1 ${MaracasSrcDir}/widgets/wxMPRWidget.h +#1 ${MaracasSrcDir}/widgets/wxMPRBaseData.cxx +#1 ${MaracasSrcDir}/widgets/wxMPRBaseData.h +#1 ${MaracasSrcDir}/widgets/wxVtkBaseView.cxx +#1 ${MaracasSrcDir}/widgets/wxVtkBaseView.h +#1 ${MaracasSrcDir}/widgets/wxMaracas_ViewerWidget.h +#1 ${MaracasSrcDir}/widgets/wxMaracas_ViewerWidget.cxx +#1 ${MaracasSrcDir}/widgets/wxMaracas_N_ViewersWidget.h +#1 ${MaracasSrcDir}/widgets/wxMaracas_N_ViewersWidget.cxx +# wxMaracasProcessingCT.cxx +# wxMaracasProcessingCT.h +# widgets/wxProcessingCTWidget.cxx +# widgets/wxProcessingCTWidget.h +# wxMaracasQuantificationCT.cxx +# wxMaracasQuantificationCT.h +# widgets/wxQuantificationWidgetCT.cxx +# widgets/wxQuantificationWidgetCT.h +# widgets/wxQuantificationWidget_base.cxx +# widgets/wxQuantificationWidget_base.h +# wxMaracasEmptyPanel_3.cxx +# wxMaracasEmptyPanel_3.h +# widgets/wxEmptyPanel_3_Widget.cxx +# widgets/wxEmptyPanel_3_Widget.h +#1 ${MaracasSrcDir}/wxMaracas_ManualTree_MPR.cxx +#1 ${MaracasSrcDir}/wxMaracas_ManualTree_MPR.h +#1 ${MaracasSrcDir}/widgets/wxManualTree_MPRWidget.cxx +#1 ${MaracasSrcDir}/widgets/wxManualTree_MPRWidget.h +# widgets/wxManualRegistration3D.cxx +# widgets/wxManualRegistration3D.h +#1 ${MaracasSrcDir}/res/wxInterface.rc +#1 ${MaracasSrcDir}/widgets/ContourView.h +#1 ${MaracasSrcDir}/widgets/ContourView.cxx +#1 ${MaracasSrcDir}/widgets/PointView.h +#1 ${MaracasSrcDir}/widgets/PointView.cxx +#1 ${MaracasSrcDir}/widgets/LineView.h +#1 ${MaracasSrcDir}/widgets/LineView.cxx +# wxMaracasPathology_01.cxx +# wxMaracasPathology_01.h +# widgets/wxPathologyWidget_01.cxx +# widgets/wxPathologyWidget_01.h +# widgets/wxSTLWidget_02.cxx +# widgets/wxSTLWidget_02.h +# widgets/wxSTLWidget_03.cxx +# widgets/wxSTLWidget_03.h +#1 ${MaracasSrcDir}/widgets/UtilVtk3DGeometriSelection.cxx +#1 ${MaracasSrcDir}/widgets/UtilVtk3DGeometriSelection.h +# manualContourContainer.cxx +# manualContourContainer.h +# wxMaracas_ManualSegmentation_MPR.cxx +# wxMaracas_ManualSegmentation_MPR.h +# widgets/wxManualSegmentation_MPRWidget.cxx +# widgets/wxManualSegmentation_MPRWidget.h +# wxMaracas_SegmentationFM3D.cxx +# wxMaracas_SegmentationFM3D.h +# widgets/wxSegmentationFM3DWidget.cxx +# widgets/wxSegmentationFM3DWidget.h +# wxMaracas_ManualContour_Panel.cxx +# wxMaracas_ManualContour_Panel.h + + +#####pPlotter classes +#1 ${MaracasSrcDir}/widgets/pPlotter/HistogramDialog.cxx +#1 ${MaracasSrcDir}/widgets/pPlotter/HistogramDialog.h +#1 ${MaracasSrcDir}/widgets/pPlotter/HistogramWidget.cxx +#1 ${MaracasSrcDir}/widgets/pPlotter/HistogramWidget.h +#1 ${MaracasSrcDir}/widgets/pPlotter/pHistogram.cxx +#1 ${MaracasSrcDir}/widgets/pPlotter/pHistogram.h +#1 ${MaracasSrcDir}/widgets/pPlotter/mBarRange.cxx +#1 ${MaracasSrcDir}/widgets/pPlotter/mBarRange.h +#1 ${MaracasSrcDir}/widgets/pPlotter/pLogicalFunction.cxx +#1 ${MaracasSrcDir}/widgets/pPlotter/pLogicalFunction.h +#1 ${MaracasSrcDir}/widgets/pPlotter/LogicalColorBar.cxx +#1 ${MaracasSrcDir}/widgets/pPlotter/LogicalColorBar.h +#1 ${MaracasSrcDir}/widgets/pPlotter/pGraphicalFunction.h +#1 ${MaracasSrcDir}/widgets/pPlotter/pGraphicalFunction.cxx +#1 ${MaracasSrcDir}/widgets/pPlotter/pFunctionPoint.cxx +#1 ${MaracasSrcDir}/widgets/pPlotter/pFunctionPoint.h +#1 ${MaracasSrcDir}/widgets/pPlotter/pPlotterWindow.cxx +#1 ${MaracasSrcDir}/widgets/pPlotter/pPlotterWindow.h +#1 ${MaracasSrcDir}/widgets/pPlotter/pPlotterLayer.cxx +#1 ${MaracasSrcDir}/widgets/pPlotter/pPlotterLayer.h +#1 ${MaracasSrcDir}/widgets/pPlotter/pPlotterScaleX.h +#1 ${MaracasSrcDir}/widgets/pPlotter/pPlotterScaleX.cxx +#1 ${MaracasSrcDir}/widgets/pPlotter/pPlotterScaleY.h +#1 ${MaracasSrcDir}/widgets/pPlotter/pPlotterScaleY.cxx +#1 ${MaracasSrcDir}/widgets/pPlotter/pColorBar.h +#1 ${MaracasSrcDir}/widgets/pPlotter/pColorBar.cxx +#1 ${MaracasSrcDir}/widgets/pPlotter/pFigure.h +#1 ${MaracasSrcDir}/widgets/pPlotter/pFigure.cxx +#1 ${MaracasSrcDir}/widgets/pPlotter/pColorPoint.h +#1 ${MaracasSrcDir}/widgets/pPlotter/pColorPoint.cxx +#1 ${MaracasSrcDir}/widgets/pPlotter/pPlotter.h +#1 ${MaracasSrcDir}/widgets/pPlotter/pPlotter.cxx +#1 ${MaracasSrcDir}/widgets/pPlotter/mathplot.cxx +#1 ${MaracasSrcDir}/widgets/pPlotter/mathplot.h +#1 ${MaracasSrcDir}/widgets/pPlotter/MaximumsDialog.cxx +#1 ${MaracasSrcDir}/widgets/pPlotter/MaximumsDialog.h +#1 ${MaracasSrcDir}/widgets/pPlotter/Histogram.cxx +#1 ${MaracasSrcDir}/widgets/pPlotter/Histogram.h + +### +#1 ${MaracasSrcDir}/../../../include/matrix.h +#1 ${MaracasSrcDir}/../../kernel/marImageData.cpp +#1 ${MaracasSrcDir}/../../kernel/marImageData.h +#1 ${MaracasSrcDir}/../../kernel/marDicomBase.cpp +#1 ${MaracasSrcDir}/../../kernel/marDicomBase.h +#1 ${MaracasSrcDir}/../../kernel/marGdcmDicom.cpp +#1 ${MaracasSrcDir}/../../kernel/marGdcmDicom.h +#1 ${MaracasSrcDir}/../../kernel/marObject.cpp +#1 ${MaracasSrcDir}/../../kernel/marObject.h +#1 ${MaracasSrcDir}/../../kernel/volume.cxx +#1 ${MaracasSrcDir}/../../kernel/volume.hxx +#1 ${MaracasSrcDir}/../../kernel/marParameters.cpp +#1 ${MaracasSrcDir}/../../kernel/marParameters.h +#1 ${MaracasSrcDir}/../../kernel/marDynData.cpp +#1 ${MaracasSrcDir}/../../kernel/marDynData.h + +#1) + +#1ADD_LIBRARY(maracasvisu STATIC ${MARACASVISU_LIB_SRCS} ) +#1TARGET_LINK_LIBRARIES(maracasvisu +#1 ${BBP_WXWIDGETS_LIBRARIES} +#1 vtkCommon vtkFiltering vtkGraphics vtkImaging vtkRendering vtkHybrid +#1 vtkWidgets vtkVolumeRendering vtkHybrid +#1 #vtkIO +#1 ${LIBIDO_LIBRARIES} +### vtkgdcm +#1) + + +#=========================================================================== +SET(${BBTK_PACKAGE_NAME}_LIBS + # LIST HERE THE ADDITIONAL LIBS TO LINK AGAINST + # EXCEPT : the same libs than for INCLUDE_DIRS +### ${MYSQL_LIBRARIES} + maracasVisuLib +### ILPDModel.lib +### ILPDInterface +### ILPDcontrolerInterface + +) +#=========================================================================== + +#=========================================================================== +# SET TO TRUE TO HAVE INFORMATION ON LIBRARIES FOUND DURING CMAKE CONFIGURE +SET(FIND_PACKAGE_VERBOSE TRUE) +#=========================================================================== + +#=========================================================================== +# END OF USER SECTION +#=========================================================================== + + + + + +#=========================================================================== +# Include configuration script +INCLUDE(Configure.cmake) +#=========================================================================== + +#=========================================================================== +# EOF +#=========================================================================== + +### ADD_SUBDIRECTORY( ../../src/interface/wxWindows/ILPD ILPD ) diff --git a/bbtk/Configure.cmake b/bbtk/Configure.cmake new file mode 100644 index 0000000..3daa04f --- /dev/null +++ b/bbtk/Configure.cmake @@ -0,0 +1,58 @@ + +#EED 12/05/2008 +## BOOST + +### EED E:\Creatis\bbtk\kernel\src\CMakeLists.txt +## ----------------------------------------------------------------------------- +## BOOST +#SET(BBTK_USE_BOOST TRUE) + +#IF(BBTK_USE_BOOST) +# SET(USE_BOOST ON CACHE BOOL "Use boost C++ library" FORCE) +# SET(BBTK_LINK_LIBRARIES +# ${BBTK_LINK_LIBRARIES} +# ${BBTK_BOOST_LIBRARIES} +# ) +#ENDIF(BBTK_USE_BOOST) +## ----------------------------------------------------------------------------- + +## EED E:\Creatis\bbtk\kernel\cmake\BBTKDefineOptions.cmake +## ----------------------------------------------------------------------------- +## BOOST C++ +#SET(BBTK_SHIPPED_BOOST boost_1_35_0 CACHE INTERNAL "Shipped boost dir" FORCE) +#OPTION(BBTK_USE_SHIPPED_BOOST +# "Use the shipped boost C++ library (${BBTK_SHIPPED_BOOST})" ON) +## ----------------------------------------------------------------------------- + + +## EED E:\Creatis\bbtk\kernel\cmake\BBTKDefineOptions.cmake +# INCLUDE_DIRECTORIES( ${BBTK_DIR}/include/bbtk/ThirdParty/${BBTK_SHIPPED_BOOST}/) +#message ("EED Maracas/bbtk/maracasvusu/Configure.cmake " ${BBTK_DIR}/include/bbtk/ThirdParty/${BBTK_SHIPPED_BOOST}/) + + + +#=========================================================================== +# If the package is not a "core" bbtk package (included into the toolkit) +# then we have to find (and use) bbtk +IF(NOT BBTK_CORE_PACKAGE) + #------------------------------------------------------------------------- + # Find and use the Black Box Toolkit + # Search BBTK + FIND_PACKAGE(BBTK) + # If bbtk found + IF(BBTK_FOUND) + INCLUDE(${BBTK_USE_FILE}) + SET(BBTK_PACKAGE_LIBS + ${BBTK_PACKAGE_LIBS} + ${BBTK_LIBRARIES}) + MARK_AS_ADVANCED(BBTK_DIR) + ENDIF(BBTK_FOUND) + #------------------------------------------------------------------------- +ENDIF(NOT BBTK_CORE_PACKAGE) +#=========================================================================== + +#=========================================================================== +# Include package configuration cmake script from bbtk dir +INCLUDE(${BBTK_CMAKE_DIR}/BBTKConfigurePackage.cmake) +#=========================================================================== + diff --git a/bbtk/PackageConfig.cmake.in b/bbtk/PackageConfig.cmake.in new file mode 100644 index 0000000..0ade94b --- /dev/null +++ b/bbtk/PackageConfig.cmake.in @@ -0,0 +1,27 @@ +#======================================================================== +# BBTK package configuration +# ** DO NOT REMOVE ** +SET(BBTK_PACKAGE_NAME @BBTK_PACKAGE_NAME@) +SET(@BBTK_PACKAGE_NAME@_USE_VTK @BBTK_PACKAGE_USE_VTK@) +SET(@BBTK_PACKAGE_NAME@_USE_ITK @BBTK_PACKAGE_USE_ITK@) +SET(@BBTK_PACKAGE_NAME@_USE_GDCM @BBTK_PACKAGE_USE_GDCM@) +SET(@BBTK_PACKAGE_NAME@_USE_GSMIS @BBTK_PACKAGE_USE_GSMIS@) +SET(@BBTK_PACKAGE_NAME@_USE_WXWIDGETS @BBTK_PACKAGE_USE_WXWIDGETS@) +SET(@BBTK_PACKAGE_NAME@_USE_PACKAGES @BBTK_PACKAGE_USE_PACKAGES@) +SET(@BBTK_PACKAGE_NAME@_AUTHOR "@BBTK_PACKAGE_AUTHOR@") +SET(@BBTK_PACKAGE_NAME@_DESCRIPTION "@BBTK_PACKAGE_DESCRIPTION@") +SET(@BBTK_PACKAGE_NAME@_MAJOR_VERSION @BBTK_PACKAGE_MAJOR_VERSION@) +SET(@BBTK_PACKAGE_NAME@_MINOR_VERSION @BBTK_PACKAGE_MINOR_VERSION@) +SET(@BBTK_PACKAGE_NAME@_BUILD_VERSION @BBTK_PACKAGE_BUILD_VERSION@) +SET(@BBTK_PACKAGE_NAME@_INCLUDE_DIRS @BBTK_PACKAGE_INCLUDE_DIRS@) +SET(@BBTK_PACKAGE_NAME@_LIBS @BBTK_PACKAGE_LIBS@) +# A BBTK PACKAGE NEEDS BBTK +FIND_PACKAGE(BBTK REQUIRED) +# BBTK Package configuration file inclusion +INCLUDE(${BBTK_CMAKE_DIR}/BBTKConfigurePackage_PackageConfig.cmake) +# End of BBTK package configuration +#======================================================================== + +#======================================================================== +# INSERT YOUR CUSTOM CONFIG HERE +#======================================================================== diff --git a/bbtk/README.txt b/bbtk/README.txt new file mode 100644 index 0000000..96e622f --- /dev/null +++ b/bbtk/README.txt @@ -0,0 +1,52 @@ +This is a void bbtk package structure. + +You should have this file tree : + +. +|-- CMakeLists.txt +|-- Configure.cmake +|-- PackageConfig.cmake.in +|-- README.txt +|-- UsePackage.cmake.in +|-- bbs +| |-- CMakeLists.txt +| |-- appli +| `-- boxes +|-- data +| `-- CMakeLists.txt +|-- doc +| |-- CMakeLists.txt +| |-- bbdoc +| | |-- CMakeLists.txt +| | `-- header.html.in +| `-- doxygen +| |-- CMakeLists.txt +| |-- DoxyMainPage.txt.in +| `-- Doxyfile.txt.in +`-- src + `-- CMakeLists.txt + +To use it : + +* Edit the root CMakeLists.txt file to customize your package build settings + (instructions inside the file) + +* Put your c++/xml boxes sources in 'src' + Use the convention : If the name of your package is PACK and the name of your box is BOX then name the source files bbPACKBOX.{h|cxx|xml} + +* Put your script-defined boxes in 'bbs/boxes'. + Use the convention : If the name of your box is 'Box' then call the file 'bbBox.bbs' + +* Put your script-defined applications in 'bbs/appli'. + +* Put your data in 'data' + +* You can customize the header of your package html doc by editing the file 'doc/bbdoc/header.html.in'. You must put html code in this file (or edit it with an html editor). You can include images or links to other html pages. The images and pages must be put in the folder 'doc/bbdoc' and will be properly installed. The same way, you can link to these images or pages in your boxes descriptions without giving any path. If you create subdirs for your material then you have to install the materials yourself by editing the CMakeLists.txt and links must use path with are relative to 'doc/bbdoc'. + +* You can customize the main page of your doxygen doc by editing the file 'doc/doxygen/DoxyMainPage.txt.in'. + +* Advanced settings : you can add custom cmake settings for your package installation process by CMakeCreateFindPackage in the files PackageConfig.cmake.in and UsePackage.cmake.in (see CMakeCreateFindPackage doc). + +THAT'S ALL FOLKS ! + + diff --git a/bbtk/UsePackage.cmake.in b/bbtk/UsePackage.cmake.in new file mode 100644 index 0000000..2ecb206 --- /dev/null +++ b/bbtk/UsePackage.cmake.in @@ -0,0 +1,4 @@ +# DO NOT REMOVE : +INCLUDE(${BBTK_CMAKE_DIR}/BBTKConfigurePackage_UsePackage.cmake) + +# INSERT YOUR CUSTOM USE HERE diff --git a/bbtk/bbs/CMakeLists.txt b/bbtk/bbs/CMakeLists.txt new file mode 100644 index 0000000..2c0eb7c --- /dev/null +++ b/bbtk/bbs/CMakeLists.txt @@ -0,0 +1,4 @@ + +INCLUDE(${BBTK_CMAKE_DIR}/BBTKConfigurePackage_bbs.cmake) + + diff --git a/bbtk/bbs/appli/ExampleBars.bbs b/bbtk/bbs/appli/ExampleBars.bbs new file mode 100644 index 0000000..54909b0 --- /dev/null +++ b/bbtk/bbs/appli/ExampleBars.bbs @@ -0,0 +1,65 @@ +load std +load wx +load maracasvisu + +new LayoutSplit s + set s.Orientation H +new LayoutSplit ss + set ss.Orientation H + +new LayoutLine s1 +new LayoutLine s2 + +set s1.Orientation V +set ss.Orientation H +set s2.Orientation V + +new SliderMinMax sliderMM_h +set sliderMM_h.Orientation 1 +set sliderMM_h.InW 300 +set sliderMM_h.InH 90 +set sliderMM_h.InMax 350 +set sliderMM_h.InMin 0 +set sliderMM_h.ShowLabels 1 + +new SliderMinMax sliderMM_v +set sliderMM_v.Orientation 0 +set sliderMM_v.InW 300 +set sliderMM_v.InH 30 +set sliderMM_v.InMax 350 +set sliderMM_v.InMin 0 +set sliderMM_v.ShowLabels 1 + +new ColorBar colorB_h +set colorB_h.Orientation 1 +set colorB_h.InW 300 +set colorB_h.InH 50 +set colorB_h.InMax 350 +set colorB_h.InMin 0 +set colorB_h.Reds " 0 255 0 255 220 30" +set colorB_h.Greens " 0 220 220 100 240 55" +set colorB_h.Blues " 255 0 15 0 0 0" +set colorB_h.Values " 0 30 70 130 250 310" + + +new ColorBar colorB_v +set colorB_v.Orientation 0 +set colorB_v.InW 300 +set colorB_v.InH 50 +set colorB_v.InMax 350 +set colorB_v.InMin 0 +set colorB_v.Reds " 0 255 0 255 220 30" +set colorB_v.Greens " 0 220 220 100 240 55" +set colorB_v.Blues " 255 0 15 0 0 0" +set colorB_v.Values " 0 30 70 130 250 310" + + +connect s1.Widget s.Widget1 +connect s2.Widget s.Widget2 +connect sliderMM_h.Widget s1.Widget1 +connect colorB_h.Widget s1.Widget2 +connect ss.Widget s2.Widget1 +connect sliderMM_v.Widget ss.Widget1 +connect colorB_v.Widget ss.Widget2 + +exec s diff --git a/bbtk/bbs/appli/ExampleColorBar.bbs b/bbtk/bbs/appli/ExampleColorBar.bbs new file mode 100644 index 0000000..8794a2f --- /dev/null +++ b/bbtk/bbs/appli/ExampleColorBar.bbs @@ -0,0 +1,18 @@ +load wx +load std +load maracasvisu + +new ColorBar colorB +set colorB.Orientation 1 +set colorB.InW 300 +set colorB.InH 40 +set colorB.InMax 350 +set colorB.InMin 0 +set colorB.Reds " 255 0 255 10" +set colorB.Greens " 220 220 100 0" +set colorB.Blues " 0 15 0 255" +set colorB.Values " 30 110 200 250" + +#message All 9 + +exec colorB \ No newline at end of file diff --git a/bbtk/bbs/appli/ExampleContourCrown.bbs b/bbtk/bbs/appli/ExampleContourCrown.bbs new file mode 100644 index 0000000..e7e0696 --- /dev/null +++ b/bbtk/bbs/appli/ExampleContourCrown.bbs @@ -0,0 +1,105 @@ +load std +load wx +load vtk +load maracasvisu + +new LayoutSplit splitMain + set splitMain.Orientation VERTICAL + set splitMain.Proportion 10 +new LayoutSplit splitViewer + set splitViewer.Orientation HORIZONTAL +new LayoutLine sizerA +new LayoutLine sizerB +new CommandButton runBtn + set runBtn.Label RUN + + +new ContourCrown contourCrown +new ContourStatistics contourStatistics + + +connect contourCrown.LstValue contourStatistics.LstValue + + +new ViewerNV viewerMaracas + set viewerMaracas.nTypeView "-1" +new ViewerNV viewerMaracasResultValues + set viewerMaracasResultValues.nTypeView "-1" +new ViewerNV viewerMaracasResultMask + set viewerMaracasResultMask.nTypeView "-1" + +new MetaImageReader reader + +include std/boxes/bbPrependPackageDataPath.bbs +new PrependPackageDataPath prependDatapath + set prependDatapath.In "vtk/hola.mhd" + connect prependDatapath.Out reader.In + +#new FileDialog fileDialog +#connect fileDialog.Out reader.Filename + +connect viewerMaracas.wxVtkBaseView1 contourCrown.wxVtkBaseView +connect reader.Out viewerMaracas.In +connect reader.Out contourCrown.In +connect contourCrown.ImageValueResult viewerMaracasResultValues.In +connect contourCrown.ImageMaskResult viewerMaracasResultMask.In + +new LayoutLine sizerResults +new LayoutSplit splitup + set splitup.Orientation HORIZONTAL + connect sizerA.Widget splitup.Widget1 + connect sizerResults.Widget splitup.Widget2 + +new OutputText averageText + set averageText.Title "Average" + connect contourStatistics.Average averageText.In + +new OutputText maxText + set maxText.Title "Max" + connect contourStatistics.Max maxText.In + +new OutputText minText + set minText.Title "Min" + connect contourStatistics.Min minText.In + +new OutputText standarDeviationText + set standarDeviationText.Title "Standar deviation" + connect contourStatistics.StandarDeviation standarDeviationText.In + +new OutputText nPointsText + set nPointsText.Title "n Points" + connect contourStatistics.nPoints nPointsText.In + +connect averageText.Widget sizerResults.Widget1 +connect maxText.Widget sizerResults.Widget2 +connect minText.Widget sizerResults.Widget3 +connect standarDeviationText.Widget sizerResults.Widget4 +connect nPointsText.Widget sizerResults.Widget5 + +connect runBtn.BoxChange contourCrown.BoxExecute +connect runBtn.BoxChange averageText.BoxExecute +connect runBtn.BoxChange minText.BoxExecute +connect runBtn.BoxChange maxText.BoxExecute +connect runBtn.BoxChange standarDeviationText.BoxExecute +connect runBtn.BoxChange nPointsText.BoxExecute + +connect runBtn.BoxChange viewerMaracasResultValues.BoxExecute +connect runBtn.BoxChange viewerMaracasResultMask.BoxExecute +connect runBtn.BoxChange viewerMaracas.BoxExecute + +connect splitup.Widget splitMain.Widget2 + +connect splitViewer.Widget splitMain.Widget1 +connect viewerMaracas.Widget splitViewer.Widget1 +connect sizerB.Widget splitViewer.Widget2 + +connect contourCrown.Widget sizerA.Widget1 +connect runBtn.Widget sizerA.Widget2 +connect viewerMaracasResultValues.Widget sizerB.Widget1 +connect viewerMaracasResultMask.Widget sizerB.Widget2 + + +#graph CURRENT 0 +#graph +message Process 1 +exec splitMain diff --git a/bbtk/bbs/appli/ExampleGaussianSmooth.bbs b/bbtk/bbs/appli/ExampleGaussianSmooth.bbs new file mode 100644 index 0000000..a31325e --- /dev/null +++ b/bbtk/bbs/appli/ExampleGaussianSmooth.bbs @@ -0,0 +1,104 @@ +include std +include vtk +include wx +include itk +include itkvtk +include wxvtk + +new MetaImageReader reader +include std/boxes/bbPrependPackageDataPath.bbs +new PrependPackageDataPath prependDatapath + set prependDatapath.In "vtk/hola.mhd" + connect prependDatapath.Out reader.In + +#--------------------------------------------------------------------- + +new Slider slider + +#--------------------------------------------------------------------- + +new Viewer2D viewer2DImageOriginal + connect reader.Out viewer2DImageOriginal.In + connect slider.Out viewer2DImageOriginal.Slice + connect slider.BoxChange viewer2DImageOriginal.BoxExecute + +#--------------------------------------------------------------------- + +new BinaryThresholdImageFilter threshold + set threshold.LowerThreshold 2000 + set threshold.UpperThreshold 5000 + set threshold.InsideValue 255 + set threshold.OutsideValue 0 + connect reader.Out threshold.In + +new Viewer2D viewer2DImageSegmented + connect threshold.Out viewer2DImageSegmented.In + connect slider.Out viewer2DImageSegmented.Slice + connect slider.BoxChange viewer2DImageSegmented.BoxExecute + +#--------------------------------------------------------------------- + +new ImageGaussianSmooth smooth + connect threshold.Out smooth.In + set smooth.StdDevX 1 + set smooth.StdDevY 1 + set smooth.StdDevZ 1 + +new Viewer2D viewer2DImageSmooth + connect smooth.Out viewer2DImageSmooth.In + connect slider.Out viewer2DImageSmooth.Slice + connect slider.BoxChange viewer2DImageSmooth.BoxExecute + +#--------------------------------------------------------------------- + +new LayoutLine upLayout + set upLayout.Orientation H + connect viewer2DImageOriginal.Widget upLayout.Widget1 + connect viewer2DImageSegmented.Widget upLayout.Widget2 + connect viewer2DImageSmooth.Widget upLayout.Widget3 + + +#--------------------------------------------------------------------- + +new Viewer3D viewernvImagethreshold3D +# set viewernvImagethreshold3D.nTypeView "5" + +new IsoSurfaceExtractor isoextractorthreshold + connect threshold.Out isoextractorthreshold.In + set isoextractorthreshold.Opacity 1 + set isoextractorthreshold.Isovalue 128 + connect viewernvImagethreshold3D.Renderer isoextractorthreshold.Renderer + + +#--------------------------------------------------------------------- +new Viewer3D viewernvImageSmooth3D +# set viewernvImageSmooth3D.nTypeView "5" + +new IsoSurfaceExtractor isoextractorsmooth + connect smooth.Out isoextractorsmooth.In + set isoextractorsmooth.Opacity 1 + set isoextractorsmooth.Isovalue 128 + connect viewernvImageSmooth3D.Renderer isoextractorsmooth.Renderer + + +#--------------------------------------------------------------------- + +new LayoutLine downLayout + set downLayout.Orientation H + connect viewernvImagethreshold3D.Widget downLayout.Widget1 + connect viewernvImageSmooth3D.Widget downLayout.Widget2 + +#--------------------------------------------------------------------- +new LayoutSplit splitUp + connect slider.Widget splitUp.Widget1 + connect upLayout.Widget splitUp.Widget2 + +new LayoutSplit mainSplit + connect splitUp.Widget mainSplit.Widget1 + connect downLayout.Widget mainSplit.Widget2 + +#--------------------------------------------------------------------- + +exec isoextractorthreshold +exec isoextractorsmooth +exec mainSplit diff --git a/bbtk/bbs/appli/ExampleHistogramView.bbs b/bbtk/bbs/appli/ExampleHistogramView.bbs new file mode 100644 index 0000000..3e513bc --- /dev/null +++ b/bbtk/bbs/appli/ExampleHistogramView.bbs @@ -0,0 +1,16 @@ +load wx +load std +load maracasvisu +load vtk + +new MetaImageReader reader +include std/boxes/bbPrependPackageDataPath.bbs +new PrependPackageDataPath prependDatapath + set prependDatapath.In "vtk/hola.mhd" + connect prependDatapath.Out reader.In + +new HistogramView histogramview + +print $prependDatapath.Out$\n +connect reader.Out histogramview.In +exec histogramview \ No newline at end of file diff --git a/bbtk/bbs/appli/ExampleILPD.bbs b/bbtk/bbs/appli/ExampleILPD.bbs new file mode 100644 index 0000000..84ae435 --- /dev/null +++ b/bbtk/bbs/appli/ExampleILPD.bbs @@ -0,0 +1,15 @@ +load std +load wx +load wxvtk +load maracasvisu + +#new Slider s +new Viewer3D s + +new LayoutSplit main + +new ILPD ilpd + +connect s.Widget main.Widget1 +connect ilpd.Widget main.Widget2 +exec main \ No newline at end of file diff --git a/bbtk/bbs/appli/ExampleILPDwithImage.bbs b/bbtk/bbs/appli/ExampleILPDwithImage.bbs new file mode 100644 index 0000000..802af28 --- /dev/null +++ b/bbtk/bbs/appli/ExampleILPDwithImage.bbs @@ -0,0 +1,7 @@ + + +load maracasvisu + +new ILPDwithImage ilpdwithimage + +exec ilpdwithimage \ No newline at end of file diff --git a/bbtk/bbs/appli/ExampleMaracasVisu01.bbs b/bbtk/bbs/appli/ExampleMaracasVisu01.bbs new file mode 100644 index 0000000..a323d48 --- /dev/null +++ b/bbtk/bbs/appli/ExampleMaracasVisu01.bbs @@ -0,0 +1,69 @@ + + +load std +load vtk +load wx +load wxvtk +load maracasvisu + + +new PlotterView pw +set pw.InX " 20 100 200 300 400 500" +set pw.InY " 100 700 100 300 400 500" + +new MetaImageReader reader +include std/boxes/bbPrependPackageDataPath.bbs +new PrependPackageDataPath prependDatapath + set prependDatapath.In "vtk/hola.mhd" + connect prependDatapath.Out reader.In + +new HistogramView hw +connect reader.Out hw.In + +new TransferFunctionView tfw +connect reader.Out tfw.In + +new ViewerMPR mpr +connect reader.Out mpr.In + +## surface +new IsoSurfaceExtractor surface1 + connect reader.Out surface1.In + set surface1.Isovalue 200 + set surface1.Opacity 0.5 + set surface1.Colour "1.0, 0.0, 0.0" + +new IsoSurfaceExtractor surface2 + connect reader.Out surface2.In + set surface2.Isovalue 100 + set surface2.Opacity 1 + set surface2.Colour "1.0, 1.0, 0.5" + +new Viewer3D viewer3d + connect surface1.Out viewer3d.In1 + connect surface2.Out viewer3d.In2 + + + + + +new LayoutSplit sDown + set sDown.Orientation H + connect viewer3d.Widget sDown.Widget1 + connect mpr.Widget sDown.Widget2 +new LayoutSplit sUpL + set sUpL.Orientation H + connect pw.Widget sUpL.Widget1 + connect hw.Widget sUpL.Widget2 + +new LayoutSplit sUp + set sUp.Orientation H + connect tfw.Widget sUp.Widget1 + connect sUpL.Widget sUp.Widget2 + +new LayoutSplit main + set main.Orientation V + connect sUp.Widget main.Widget1 + connect sDown.Widget main.Widget2 + +exec main diff --git a/bbtk/bbs/appli/ExamplePlotterView.bbs b/bbtk/bbs/appli/ExamplePlotterView.bbs new file mode 100644 index 0000000..fda0248 --- /dev/null +++ b/bbtk/bbs/appli/ExamplePlotterView.bbs @@ -0,0 +1,11 @@ + + +load std +load wx +load maracasvisu + +new PlotterView plotterview +set plotterview.InX " 20 100 200 300 400 500" +set plotterview.InY " 100 700 100 300 400 500" + +exec plotterview diff --git a/bbtk/bbs/appli/ExampleReadDICOM.bbs b/bbtk/bbs/appli/ExampleReadDICOM.bbs new file mode 100644 index 0000000..16e1c6e --- /dev/null +++ b/bbtk/bbs/appli/ExampleReadDICOM.bbs @@ -0,0 +1,42 @@ + +load wx +load maracasvisu + +new ILPDwithImage ilpdwithimage + +new ImageBrowserReader imagebrowserreade + connect ilpdwithimage.Type imagebrowserreade.Type + connect ilpdwithimage.LstFileName imagebrowserreade.LstFileName + + +new LayoutSplit splitUp + set splitUp.Orientation V + connect imagebrowserreade.Widget splitUp.Widget1 + connect ilpdwithimage.Widget splitUp.Widget2 + +new CommandButton commandbutton + set commandbutton.Label "Read" + +new CommandButton viewimagebutton + set viewimagebutton.Label "View Image" + +new LayoutLine layoutH + set layoutH.Orientation H + connect commandbutton.Widget layoutH.Widget1 + connect viewimagebutton.Widget layoutH.Widget2 + +new LayoutSplit mainsplit + set mainsplit.Orientation V + connect splitUp.Widget mainsplit.Widget1 + connect layoutH.Widget mainsplit.Widget2 + +new ImageChangeInformation ici +new ViewerMPR viewernv + connect imagebrowserreade.Out ici.In + connect ici.Out viewernv.In + +connect commandbutton.BoxChange ilpdwithimage.BoxExecute +connect commandbutton.BoxChange imagebrowserreade.BoxExecute +connect viewimagebutton.BoxChange viewernv.BoxExecute + +exec mainsplit diff --git a/bbtk/bbs/appli/ExampleSlideMinMax.bbs b/bbtk/bbs/appli/ExampleSlideMinMax.bbs new file mode 100644 index 0000000..3eb6322 --- /dev/null +++ b/bbtk/bbs/appli/ExampleSlideMinMax.bbs @@ -0,0 +1,14 @@ +load wx +load std +load maracasvisu + +new SliderMinMax sliderminmax +set sliderminmax.Orientation 1 +set sliderminmax.InW 300 +set sliderminmax.InH 70 +set sliderminmax.InMax 250 +set sliderminmax.InMin 3 + +#message All 9 + +exec sliderminmax \ No newline at end of file diff --git a/bbtk/bbs/appli/ExampleTransferFunctionView.bbs b/bbtk/bbs/appli/ExampleTransferFunctionView.bbs new file mode 100644 index 0000000..45ed1d8 --- /dev/null +++ b/bbtk/bbs/appli/ExampleTransferFunctionView.bbs @@ -0,0 +1,17 @@ +load wx +load std +load maracasvisu +load vtk + +new TransferFunctionView transferfuncionview + +new MetaImageReader reader +include std/boxes/bbPrependPackageDataPath.bbs +new PrependPackageDataPath prependDatapath + set prependDatapath.In "vtk/hola.mhd" + connect prependDatapath.Out reader.In + +print $prependDatapath.Out$\n +connect reader.Out transferfuncionview.In + +exec transferfuncionview diff --git a/bbtk/bbs/appli/ExampleVOI_01.bbs b/bbtk/bbs/appli/ExampleVOI_01.bbs new file mode 100644 index 0000000..bf8edb6 --- /dev/null +++ b/bbtk/bbs/appli/ExampleVOI_01.bbs @@ -0,0 +1,37 @@ +load wx +load std +load maracasvisu +load vtk + +new MetaImageReader reader +include std/boxes/bbPrependPackageDataPath.bbs +new PrependPackageDataPath prependDatapath + set prependDatapath.In "vtk/hola.mhd" + connect prependDatapath.Out reader.In + +new ViewerNV vmA + set vmA.nTypeView "-1" + connect reader.Out vmA.In + +new ContourVOI countourvoi + connect vmA.wxVtkBaseView1 countourvoi.wxVtkBaseView + connect reader.Out countourvoi.In + +new LayoutLine sizerA + connect countourvoi.Widget sizerA.Widget1 + +new LayoutSplit mainSplit + set mainSplit.Proportion 10 + connect sizerA.Widget mainSplit.Widget1 + connect vmA.Widget mainSplit.Widget2 + + +new ConcatStrings concatstring + connect countourvoi.Index concatstring.In1 + set concatstring.In2 " (" + connect countourvoi.Size concatstring.In3 + set concatstring.In4 ")" + +exec mainSplit +#exec concatstring +print $concatstring.Out$ diff --git a/bbtk/bbs/appli/ExampleVOI_02.bbs b/bbtk/bbs/appli/ExampleVOI_02.bbs new file mode 100644 index 0000000..2431df7 --- /dev/null +++ b/bbtk/bbs/appli/ExampleVOI_02.bbs @@ -0,0 +1,57 @@ +load wx +load std +load maracasvisu +load vtk +load itk +load itkvtk + +new MetaImageReader reader +include std/boxes/bbPrependPackageDataPath.bbs +new PrependPackageDataPath prependDatapath + set prependDatapath.In "vtk/hola.mhd" + connect prependDatapath.Out reader.In + +new ViewerNV vmA + set vmA.nTypeView "-1" + connect reader.Out vmA.In + +new ContourVOI countourvoi + connect vmA.wxVtkBaseView1 countourvoi.wxVtkBaseView + connect reader.Out countourvoi.In + +new CommandButton commandbutton + set commandbutton.Label "RUN VOI" +# set commandbutton.In "exec countourvoi; exec viewernv;" + +new LayoutLine sizerA + set sizerA.Orientation H + connect countourvoi.Widget sizerA.Widget1 + connect commandbutton.Widget sizerA.Widget2 + +new LayoutSplit mainSplit + set mainSplit.Proportion 10 + connect sizerA.Widget mainSplit.Widget1 + connect vmA.Widget mainSplit.Widget2 + + +new ImageRegion imageregion + connect countourvoi.Index imageregion.Index + connect countourvoi.Size imageregion.Size + +new ExtractImageFilter extractImagefilter + connect reader.Out extractImagefilter.In + connect imageregion.Out extractImagefilter.Region + +new ImageChangeInformation imagechangeinformation + connect extractImagefilter.Out imagechangeinformation.In + +new ViewerMPR viewernv +#new Viewer2D viewernv +## new ViewerNV viewernv +## set viewernv.nTypeView "-1" + connect imagechangeinformation.Out viewernv.In + connect commandbutton.BoxChange countourvoi.BoxExecute + connect commandbutton.BoxChange viewernv.BoxExecute + + +exec mainSplit diff --git a/bbtk/bbs/appli/ExampleViewerMPR.bbs b/bbtk/bbs/appli/ExampleViewerMPR.bbs new file mode 100644 index 0000000..03c8b9d --- /dev/null +++ b/bbtk/bbs/appli/ExampleViewerMPR.bbs @@ -0,0 +1,12 @@ +load wx +load std +load vtk +load maracasvisu + +include vtk/boxes/bbLoadHola +new LoadHola image + +new ViewerMPR mpr + connect image.Out mpr.In + +exec mpr \ No newline at end of file diff --git a/bbtk/bbs/appli/ExampleViewerNV_A.bbs b/bbtk/bbs/appli/ExampleViewerNV_A.bbs new file mode 100644 index 0000000..81e708f --- /dev/null +++ b/bbtk/bbs/appli/ExampleViewerNV_A.bbs @@ -0,0 +1,13 @@ +load wx +load std +load vtk +load maracasvisu + +include vtk/boxes/bbLoadHola +new LoadHola image + +new ViewerNV viewernv + connect image.Out viewernv.In + +exec viewernv + diff --git a/bbtk/bbs/appli/ExampleViewerNV_B.bbs b/bbtk/bbs/appli/ExampleViewerNV_B.bbs new file mode 100644 index 0000000..2652179 --- /dev/null +++ b/bbtk/bbs/appli/ExampleViewerNV_B.bbs @@ -0,0 +1,14 @@ +load wx +load std +load vtk +load maracasvisu + +include vtk/boxes/bbLoadHola +new LoadHola image + +new ViewerNV viewernv + set viewernv.nTypeView "-1 1" + connect image.Out viewernv.In + +exec viewernv + diff --git a/bbtk/bbs/appli/ExampleViewerNV_C.bbs b/bbtk/bbs/appli/ExampleViewerNV_C.bbs new file mode 100644 index 0000000..f9166bb --- /dev/null +++ b/bbtk/bbs/appli/ExampleViewerNV_C.bbs @@ -0,0 +1,14 @@ +load wx +load std +load vtk +load maracasvisu + +include vtk/boxes/bbLoadHola +new LoadHola image + +new ViewerNV viewernv + set viewernv.nTypeView "3" + connect image.Out viewernv.In + +exec viewernv + diff --git a/bbtk/bbs/appli/Example_Segmentation_01.bbs b/bbtk/bbs/appli/Example_Segmentation_01.bbs new file mode 100644 index 0000000..191b9f6 --- /dev/null +++ b/bbtk/bbs/appli/Example_Segmentation_01.bbs @@ -0,0 +1,37 @@ +load std +load vtk +load wx +load maracasvisu + +new LayoutLine sizerA +new LayoutSplit mainSplit +new ViewerMPR mpr +new MetaImageReader reader +new CommandButton commandButton + set commandButton.In "exec surface" + set commandButton.Label "RUN" +new IsoSurfaceExtractor surface + set surface.Opacity 0.8 +new Slider sliderIsovalue + set sliderIsovalue.In 600 + set sliderIsovalue.Max 5000 + set sliderIsovalue.ChangeResolution true + + +include std/boxes/bbPrependPackageDataPath.bbs +new PrependPackageDataPath prependDatapath + set prependDatapath.In "vtk/hola.mhd" + connect prependDatapath.Out reader.In + +connect reader.Out mpr.In + +connect sizerA.Widget mainSplit.Widget1 +connect mpr.Widget mainSplit.Widget2 +connect commandButton.Widget sizerA.Widget1 +connect sliderIsovalue.Widget sizerA.Widget2 + +connect reader.Out surface.In +connect sliderIsovalue.Out surface.Isovalue +connect mpr.Renderer surface.Renderer + +exec mainSplit diff --git a/bbtk/bbs/appli/Example_Segmentation_02.bbs b/bbtk/bbs/appli/Example_Segmentation_02.bbs new file mode 100644 index 0000000..e634b5b --- /dev/null +++ b/bbtk/bbs/appli/Example_Segmentation_02.bbs @@ -0,0 +1,69 @@ +load std +load vtk +load wx +load maracasvisu + +new LayoutLine sizerA +new LayoutSplit mainSplit + +#new ViewerNV mpr +# set mpr.nTypeView "2 5" +new ViewerMPR mpr + +new MetaImageReader reader +new CommandButton commandButton + set commandButton.In "exec segmentationconnectivity; exec surface" + set commandButton.Label "RUN" + +new SegmentationConnectivity segmentationconnectivity +new IsoSurfaceExtractor surface + set surface.Opacity "0.8" + set surface.Isovalue "100" +new ConcatStrings concatstringsThreshold + set concatstringsThreshold.In2 " " + +new SliderMinMax sliderThreshold + set sliderThreshold.Orientation 1 + set sliderThreshold.InW 300 + set sliderThreshold.InH 80 + set sliderThreshold.InMax 6000 + set sliderThreshold.InMin 0 + set sliderThreshold.InMaxShow 6000 + set sliderThreshold.InMinShow 1200 + set sliderThreshold.ShowActual false +new OutputText staticTextThreshold + set staticTextThreshold.In "Threshold" + +include std/boxes/bbPrependPackageDataPath.bbs +new PrependPackageDataPath prependDatapath + set prependDatapath.In "vtk/hola.mhd" + connect prependDatapath.Out reader.In + +connect reader.Out mpr.In + +connect sizerA.Widget mainSplit.Widget1 +connect mpr.Widget mainSplit.Widget2 + +connect staticTextThreshold.Widget sizerA.Widget1 +connect sliderThreshold.Widget sizerA.Widget2 +connect commandButton.Widget sizerA.Widget3 + +connect reader.Out segmentationconnectivity.In +connect mpr.Renderer surface.Renderer + +connect segmentationconnectivity.Out surface.In +connect mpr.Point segmentationconnectivity.PositionXYZ + +connect sliderThreshold.OutStart concatstringsThreshold.In1 +connect sliderThreshold.OutEnd concatstringsThreshold.In3 + +connect concatstringsThreshold.Out segmentationconnectivity.ThresholdMinMax + + +#graph CURRENT 0 +#graph + +print $prependDatapath.Out$ +print " ueueueueueu " + +exec mainSplit diff --git a/bbtk/bbs/appli/README.txt b/bbtk/bbs/appli/README.txt new file mode 100644 index 0000000..cd535ec --- /dev/null +++ b/bbtk/bbs/appli/README.txt @@ -0,0 +1 @@ +bbs files ... diff --git a/bbtk/bbs/boxes/README.txt b/bbtk/bbs/boxes/README.txt new file mode 100644 index 0000000..cd535ec --- /dev/null +++ b/bbtk/bbs/boxes/README.txt @@ -0,0 +1 @@ +bbs files ... diff --git a/bbtk/data/CMakeLists.txt b/bbtk/data/CMakeLists.txt new file mode 100644 index 0000000..eb2556d --- /dev/null +++ b/bbtk/data/CMakeLists.txt @@ -0,0 +1,4 @@ +#=========================================================================== +# Include package data configuration cmake script from bbtk dir +INCLUDE(${BBTK_CMAKE_DIR}/BBTKConfigurePackage_data.cmake) +#=========================================================================== diff --git a/bbtk/doc/CMakeLists.txt b/bbtk/doc/CMakeLists.txt new file mode 100644 index 0000000..033496e --- /dev/null +++ b/bbtk/doc/CMakeLists.txt @@ -0,0 +1,5 @@ +#=========================================================================== +# Include package doc configuration cmake script +INCLUDE(${BBTK_CMAKE_DIR}/BBTKConfigurePackage_doc.cmake) +#=========================================================================== + diff --git a/bbtk/doc/bbdoc/CMakeLists.txt b/bbtk/doc/bbdoc/CMakeLists.txt new file mode 100644 index 0000000..86ca574 --- /dev/null +++ b/bbtk/doc/bbdoc/CMakeLists.txt @@ -0,0 +1,2 @@ +INCLUDE(${BBTK_CMAKE_DIR}/BBTKConfigurePackage_doc_bbdoc.cmake) + diff --git a/bbtk/doc/bbdoc/header.html.in b/bbtk/doc/bbdoc/header.html.in new file mode 100644 index 0000000..28c72c2 --- /dev/null +++ b/bbtk/doc/bbdoc/header.html.in @@ -0,0 +1,12 @@ + +

bbtk package @BBTK_PACKAGE_NAME@

+ +

+Version @BBTK_PACKAGE_MAJOR_VERSION@.@BBTK_PACKAGE_MINOR_VERSION@.@BBTK_PACKAGE_BUILD_VERSION@ - +by @BBTK_PACKAGE_AUTHOR@ + +

+@BBTK_PACKAGE_DESCRIPTION@ + +

+ Doxygen documentation of the source code diff --git a/bbtk/doc/doxygen/CMakeLists.txt b/bbtk/doc/doxygen/CMakeLists.txt new file mode 100644 index 0000000..0194111 --- /dev/null +++ b/bbtk/doc/doxygen/CMakeLists.txt @@ -0,0 +1 @@ +INCLUDE(${BBTK_CMAKE_DIR}/BBTKConfigurePackage_doc_doxygen.cmake) diff --git a/bbtk/doc/doxygen/DoxyMainPage.txt.in b/bbtk/doc/doxygen/DoxyMainPage.txt.in new file mode 100644 index 0000000..9909a5c --- /dev/null +++ b/bbtk/doc/doxygen/DoxyMainPage.txt.in @@ -0,0 +1,14 @@ +/** + * \mainpage bbtk package @BBTK_PACKAGE_NAME@ + +\htmlonly + +

Version +@BBTK_PACKAGE_MAJOR_VERSION@.@BBTK_PACKAGE_MINOR_VERSION@.@BBTK_PACKAGE_BUILD_VERSION@ - +by @BBTK_PACKAGE_AUTHOR@ +

+@BBTK_PACKAGE_DESCRIPTION@ + +\endhtmlonly + + */ diff --git a/bbtk/doc/doxygen/Doxyfile.txt.in b/bbtk/doc/doxygen/Doxyfile.txt.in new file mode 100644 index 0000000..6b4211a --- /dev/null +++ b/bbtk/doc/doxygen/Doxyfile.txt.in @@ -0,0 +1,764 @@ +# Doxyfile 1.2.14 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project +# +# All text after a hash (#) is considered a comment and will be ignored +# The format is: +# TAG = value [value, ...] +# For lists items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (" ") + +#--------------------------------------------------------------------------- +# General configuration options +#--------------------------------------------------------------------------- + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded +# by quotes) that should identify the project. +PROJECT_NAME = @DOXYGEN_PROJECT_NAME@ + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. +# This could be handy for archiving the generated documentation or +# if some version control system is used. +PROJECT_NUMBER = @PROJECT_VERSION@ + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) +# base path where the generated documentation will be put. +# If a relative path is entered, it will be relative to the location +# where doxygen was started. If left blank the current directory will be used. +OUTPUT_DIRECTORY = @DOXYGEN_OUTPUT@ + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# The default language is English, other supported languages are: +# Brazilian, Chinese, Croatian, Czech, Danish, Dutch, Finnish, French, +# German, Greek, Hungarian, Italian, Japanese, Korean, Norwegian, Polish, +# Portuguese, Romanian, Russian, Slovak, Slovene, Spanish and Swedish. +OUTPUT_LANGUAGE = English + +# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in +# documentation are documented, even if no documentation was available. +# Private class members and static file members will be hidden unless +# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES +EXTRACT_ALL = YES + +# If the EXTRACT_PRIVATE tag is set to YES all private members of a class +# will be included in the documentation. +EXTRACT_PRIVATE = YES + +# If the EXTRACT_STATIC tag is set to YES all static members of a file +# will be included in the documentation. +EXTRACT_STATIC = YES + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) +# defined locally in source files will be included in the documentation. +# If set to NO only classes defined in header files are included. +EXTRACT_LOCAL_CLASSES = YES + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all +# undocumented members of documented classes, files or namespaces. +# If set to NO (the default) these members will be included in the +# various overviews, but no documentation section is generated. +# This option has no effect if EXTRACT_ALL is enabled. +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. +# If set to NO (the default) these class will be included in the various +# overviews. This option has no effect if EXTRACT_ALL is enabled. +HIDE_UNDOC_CLASSES = NO + +# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will +# include brief member descriptions after the members that are listed in +# the file and class documentation (similar to JavaDoc). +# Set to NO to disable this. +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend +# the brief description of a member or function before the detailed description. +# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. +REPEAT_BRIEF = YES + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# Doxygen will generate a detailed section even if there is only a brief +# description. +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all inherited +# members of a class in the documentation of that class as if those members were +# ordinary class members. Constructors, destructors and assignment operators of +# the base classes will not be shown. +INLINE_INHERITED_MEMB = YES + +# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full +# path before files name in the file list and in the header files. If set +# to NO the shortest path that makes the file name unique will be used. +FULL_PATH_NAMES = YES + +# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag +# can be used to strip a user defined part of the path. Stripping is +# only done if one of the specified strings matches the left-hand part of +# the path. It is allowed to use relative paths in the argument list. +STRIP_FROM_PATH = + +# The INTERNAL_DOCS tag determines if documentation +# that is typed after a \internal command is included. If the tag is set +# to NO (the default) then the documentation will be excluded. +# Set it to YES to include the internal documentation. +INTERNAL_DOCS = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct +# doxygen to hide any special comment blocks from generated source code +# fragments. Normal C and C++ comments will always remain visible. +STRIP_CODE_COMMENTS = YES + +# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate +# file names in lower case letters. If set to YES upper case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# users are adviced to set this option to NO. +CASE_SENSE_NAMES = YES + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter +# (but less readable) file names. This can be useful is your file systems +# doesn't support long names like on DOS, Mac, or CD-ROM. +SHORT_NAMES = NO + +# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen +# will show members with their full class and namespace scopes in the +# documentation. If set to YES the scope will be hidden. +HIDE_SCOPE_NAMES = NO + +# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen +# will generate a verbatim copy of the header file for each class for +# which an include is specified. Set to NO to disable this. +VERBATIM_HEADERS = YES + +# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen +# will put list of the files that are included by a file in the documentation +# of that file. +SHOW_INCLUDE_FILES = YES + +# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen +# will interpret the first line (until the first dot) of a JavaDoc-style +# comment as the brief description. If set to NO, the JavaDoc +# comments will behave just like the Qt-style comments (thus requiring an +# explict @brief command for a brief description. +JAVADOC_AUTOBRIEF = NO + +# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented +# member inherits the documentation from any documented member that it +# reimplements. +INHERIT_DOCS = YES + +# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] +# is inserted in the documentation for inline members. +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen +# will sort the (detailed) documentation of file and class members +# alphabetically by member name. If set to NO the members will appear in +# declaration order. +SORT_MEMBER_DOCS = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES, then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. +DISTRIBUTE_GROUP_DOC = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. +# Doxygen uses this value to replace tabs by spaces in code fragments. +TAB_SIZE = 8 + +# The GENERATE_TODOLIST tag can be used to enable (YES) or +# disable (NO) the todo list. This list is created by putting \todo +# commands in the documentation. +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable (YES) or +# disable (NO) the test list. This list is created by putting \test +# commands in the documentation. +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable (YES) or +# disable (NO) the bug list. This list is created by putting \bug +# commands in the documentation. +GENERATE_BUGLIST = YES + +# This tag can be used to specify a number of aliases that acts +# as commands in the documentation. An alias has the form "name=value". +# For example adding "sideeffect=\par Side Effects:\n" will allow you to +# put the command \sideeffect (or @sideeffect) in the documentation, which +# will result in a user defined paragraph with heading "Side Effects:". +# You can put \n's in the value part of an alias to insert newlines. +ALIASES = + +# The ENABLED_SECTIONS tag can be used to enable conditional +# documentation sections, marked by \if sectionname ... \endif. +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines +# the initial value of a variable or define consist of for it to appear in +# the documentation. If the initializer consists of more lines than specified +# here it will be hidden. Use a value of 0 to hide initializers completely. +# The appearance of the initializer of individual variables and defines in the +# documentation can be controlled using \showinitializer or \hideinitializer +# command in the documentation regardless of this setting. +MAX_INITIALIZER_LINES = 30 + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources +# only. Doxygen will then generate output that is more tailored for C. +# For instance some of the names that are used will be different. The list +# of all members will be omitted, etc. +OPTIMIZE_OUTPUT_FOR_C = NO + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated +# at the bottom of the documentation of classes and structs. If set to YES the +# list will mention the files that were used to generate the documentation. +SHOW_USED_FILES = YES + +#--------------------------------------------------------------------------- +# configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated +# by doxygen. Possible values are YES and NO. If left blank NO is used. +QUIET = YES + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated by doxygen. Possible values are YES and NO. If left blank +# NO is used. +WARNINGS = YES + +# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings +# for undocumented members. If EXTRACT_ALL is set to YES then this flag will +# automatically be disabled. +WARN_IF_UNDOCUMENTED = YES + +# If WARN_IF_DOC_ERROR is set to YES, then doxygen will generate warnings +# for error documented members. If EXTRACT_ALL is set to YES then this flag will +# automatically be disabled. +WARN_IF_DOC_ERROR = YES + +# The WARN_FORMAT tag determines the format of the warning messages that +# doxygen can produce. The string should contain the $file, $line, and $text +# tags, which will be replaced by the file and line number from which the +# warning originated and the warning text. +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning +# and error messages should be written. If left blank the output is written +# to stderr. +WARN_LOGFILE = @DOXYGEN_LOGFILE@ + +#--------------------------------------------------------------------------- +# configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag can be used to specify the files and/or directories that contain +# documented source files. You may enter file names like "myfile.cpp" or +# directories like "/usr/src/myproject". Separate the files or directories +# with spaces. +INPUT = @DOXYGEN_INPUT@ + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank the following patterns are tested: +# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx *.hpp +# *.h++ *.idl *.odl +FILE_PATTERNS = *.h *.cxx *.txx + +# The RECURSIVE tag can be used to turn specify whether or not subdirectories +# should be searched for input files as well. Possible values are YES and NO. +# If left blank NO is used. +RECURSIVE = YES + +# The EXCLUDE tag can be used to specify files and/or directories that should +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. +EXCLUDE = @DOXYGEN_EXCLUDE@ + +# The EXCLUDE_SYMLINKS tag can be used select whether or not files or directories +# that are symbolic links (a Unix filesystem feature) are excluded from the input. +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. +EXCLUDE_PATTERNS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or +# directories that contain example code fragments that are included (see +# the \include command). +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank all files are included. +EXAMPLE_PATTERNS = *.cxx + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude +# commands irrespective of the value of the RECURSIVE tag. +# Possible values are YES and NO. If left blank NO is used. +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or +# directories that contain image that are included in the documentation (see +# the \image command). +IMAGE_PATH = + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command , where +# is the value of the INPUT_FILTER tag, and is the name of an +# input file. Doxygen will then use the output that the filter program writes +# to standard output. +INPUT_FILTER = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will be used to filter the input files when producing source +# files to browse. +FILTER_SOURCE_FILES = NO + +#--------------------------------------------------------------------------- +# configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will +# be generated. Documented entities will be cross-referenced with these sources. +SOURCE_BROWSER = YES + +# Setting the INLINE_SOURCES tag to YES will include the body +# of functions and classes directly in the documentation. +INLINE_SOURCES = YES + +# If the REFERENCED_BY_RELATION tag is set to YES (the default) +# then for each documented function all documented +# functions referencing it will be listed. +REFERENCED_BY_RELATION = YES + +# If the REFERENCES_RELATION tag is set to YES (the default) +# then for each documented function all documented entities +# called/used by that function will be listed. +REFERENCES_RELATION = YES + +#--------------------------------------------------------------------------- +# configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index +# of all compounds will be generated. Enable this if the project +# contains a lot of classes, structs, unions or interfaces. +ALPHABETICAL_INDEX = YES + +# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then +# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns +# in which this list will be split (can be a number in the range [1..20]) +COLS_IN_ALPHA_INDEX = 3 + +# In case all classes in a project start with a common prefix, all +# classes will be put under the same header in the alphabetical index. +# The IGNORE_PREFIX tag can be used to specify one or more prefixes that +# should be ignored while generating the index headers. +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES (the default) Doxygen will +# generate HTML output. +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `html' will be used as the default path. +HTML_OUTPUT = @DOXYGEN_HTML_OUTPUT@ + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for +# each generated HTML page (for example: .htm,.php,.asp). If it is left blank +# doxygen will generate files with .html extension. +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a personal HTML header for +# each generated HTML page. If it is left blank doxygen will generate a +# standard header. +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a personal HTML footer for +# each generated HTML page. If it is left blank doxygen will generate a +# standard footer. +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user defined cascading +# style sheet that is used by each HTML page. It can be used to +# fine-tune the look of the HTML output. If the tag is left blank doxygen +# will generate a default style sheet +HTML_STYLESHEET = + +# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, +# files or namespaces will be aligned in HTML using tables. If set to +# NO a bullet list will be used. +HTML_ALIGN_MEMBERS = YES + +# If the GENERATE_HTMLHELP tag is set to YES, additional index files +# will be generated that can be used as input for tools like the +# Microsoft HTML help workshop to generate a compressed HTML help file (.chm) +# of the generated HTML documentation. +GENERATE_HTMLHELP = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag +# controls if a separate .chi index file is generated (YES) or that +# it should be included in the master .chm file (NO). +GENERATE_CHI = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag +# controls whether a binary table of contents is generated (YES) or a +# normal table of contents (NO) in the .chm file. +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members +# to the contents of the Html help documentation and to the tree view. +TOC_EXPAND = NO + +# The DISABLE_INDEX tag can be used to turn on/off the condensed index at +# top of each HTML page. The value NO (the default) enables the index and +# the value YES disables it. +DISABLE_INDEX = NO + +# This tag can be used to set the number of enum values (range [1..20]) +# that doxygen will group on one line in the generated HTML documentation. +ENUM_VALUES_PER_LINE = 4 + +# If the GENERATE_TREEVIEW tag is set to YES, a side panel will be +# generated containing a tree-like index structure (just like the one that +# is generated for HTML Help). For this to work a browser that supports +# JavaScript and frames is required (for instance Mozilla, Netscape 4.0+, +# or Internet explorer 4.0+). Note that for large projects the tree generation +# can take a very long time. In such cases it is better to disable this feature. +# Windows users are probably better off using the HTML help feature. +GENERATE_TREEVIEW = YES + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be +# used to set the initial width (in pixels) of the frame in which the tree +# is shown. +TREEVIEW_WIDTH = 250 + +#--------------------------------------------------------------------------- +# configuration options related to the LaTeX output +#--------------------------------------------------------------------------- + +# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will +# generate Latex output. +GENERATE_LATEX = NO + +# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `latex' will be used as the default path. +LATEX_OUTPUT = latex + +# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact +# LaTeX documents. This may be useful for small projects and may help to +# save some trees in general. +COMPACT_LATEX = NO + +# The PAPER_TYPE tag can be used to set the paper type that is used +# by the printer. Possible values are: a4, a4wide, letter, legal and +# executive. If left blank a4wide will be used. +PAPER_TYPE = a4wide + +# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX +# packages that should be included in the LaTeX output. +EXTRA_PACKAGES = + +# The LATEX_HEADER tag can be used to specify a personal LaTeX header for +# the generated latex document. The header should contain everything until +# the first chapter. If it is left blank doxygen will generate a +# standard header. Notice: only use this tag if you know what you are doing! +LATEX_HEADER = + +# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated +# is prepared for conversion to pdf (using ps2pdf). The pdf file will +# contain links (just like the HTML output) instead of page references +# This makes the output suitable for online browsing using a pdf viewer. +PDF_HYPERLINKS = NO + +# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of +# plain latex in the generated Makefile. Set this option to YES to get a +# higher quality PDF documentation. +USE_PDFLATEX = NO + +# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. +# command to the generated LaTeX files. This will instruct LaTeX to keep +# running if errors occur, instead of asking the user for help. +# This option is also used when generating formulas in HTML. +LATEX_BATCHMODE = NO + +#--------------------------------------------------------------------------- +# configuration options related to the RTF output +#--------------------------------------------------------------------------- + +# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output +# The RTF output is optimised for Word 97 and may not look very pretty with +# other RTF readers or editors. +GENERATE_RTF = NO + +# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `rtf' will be used as the default path. +RTF_OUTPUT = rtf + +# If the COMPACT_RTF tag is set to YES Doxygen generates more compact +# RTF documents. This may be useful for small projects and may help to +# save some trees in general. +COMPACT_RTF = NO + +# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated +# will contain hyperlink fields. The RTF file will +# contain links (just like the HTML output) instead of page references. +# This makes the output suitable for online browsing using WORD or other +# programs which support those fields. +# Note: wordpad (write) and others do not support links. +RTF_HYPERLINKS = NO + +# Load stylesheet definitions from file. Syntax is similar to doxygen's +# config file, i.e. a series of assigments. You only have to provide +# replacements, missing definitions are set to their default value. +RTF_STYLESHEET_FILE = + +# Set optional variables used in the generation of an rtf document. +# Syntax is similar to doxygen's config file. +RTF_EXTENSIONS_FILE = + +#--------------------------------------------------------------------------- +# configuration options related to the man page output +#--------------------------------------------------------------------------- + +# If the GENERATE_MAN tag is set to YES (the default) Doxygen will +# generate man pages +GENERATE_MAN = NO + +# The MAN_OUTPUT tag is used to specify where the man pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `man' will be used as the default path. +MAN_OUTPUT = man + +# The MAN_EXTENSION tag determines the extension that is added to +# the generated man pages (default is the subroutine's section .3) +MAN_EXTENSION = .3 + +# If the MAN_LINKS tag is set to YES and Doxygen generates man output, +# then it will generate one additional man file for each entity +# documented in the real man page(s). These additional files +# only source the real man page, but without them the man command +# would be unable to find the correct page. The default is NO. +MAN_LINKS = NO + +#--------------------------------------------------------------------------- +# configuration options related to the XML output +#--------------------------------------------------------------------------- + +# If the GENERATE_XML tag is set to YES Doxygen will +# generate an XML file that captures the structure of +# the code including all documentation. Note that this +# feature is still experimental and incomplete at the +# moment. +GENERATE_XML = NO + +#--------------------------------------------------------------------------- +# configuration options for the AutoGen Definitions output +#--------------------------------------------------------------------------- + +# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will +# generate an AutoGen Definitions (see autogen.sf.net) file +# that captures the structure of the code including all +# documentation. Note that this feature is still experimental +# and incomplete at the moment. +GENERATE_AUTOGEN_DEF = NO + +#--------------------------------------------------------------------------- +# Configuration options related to the preprocessor +#--------------------------------------------------------------------------- + +# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will +# evaluate all C-preprocessor directives found in the sources and include +# files. +ENABLE_PREPROCESSING = YES + +# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro +# names in the source code. If set to NO (the default) only conditional +# compilation will be performed. Macro expansion can be done in a controlled +# way by setting EXPAND_ONLY_PREDEF to YES. +MACRO_EXPANSION = YES + +# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES +# then the macro expansion is limited to the macros specified with the +# PREDEFINED and EXPAND_AS_PREDEFINED tags. +EXPAND_ONLY_PREDEF = NO + +# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files +# in the INCLUDE_PATH (see below) will be search if a #include is found. +SEARCH_INCLUDES = YES + +# The INCLUDE_PATH tag can be used to specify one or more directories that +# contain include files that are not input files but should be processed by +# the preprocessor. +INCLUDE_PATH = + +# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard +# patterns (like *.h and *.hpp) to filter out the header-files in the +# directories. If left blank, the patterns specified with FILE_PATTERNS will +# be used. +INCLUDE_FILE_PATTERNS = + +# The PREDEFINED tag can be used to specify one or more macro names that +# are defined before the preprocessor is started (similar to the -D option of +# gcc). The argument of the tag is a list of macros of the form: name +# or name=definition (no spaces). If the definition and the = are +# omitted =1 is assumed. +PREDEFINED = @DOXYGEN_DOC_PREDEFINED@ + + +# If the MACRO_EXPANSION and EXPAND_PREDEF_ONLY tags are set to YES then +# this tag can be used to specify a list of macro names that should be expanded. +# The macro definition that is found in the sources will be used. +# Use the PREDEFINED tag if you want to use a different macro definition. +EXPAND_AS_DEFINED = + +# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then +# doxygen's preprocessor will remove all function-like macros that are alone +# on a line and do not end with a semicolon. Such function macros are typically +# used for boiler-plate code, and will confuse the parser if not removed. +SKIP_FUNCTION_MACROS = YES + +#--------------------------------------------------------------------------- +# Configuration::addtions related to external references +#--------------------------------------------------------------------------- + +# The TAGFILES tag can be used to specify one or more tagfiles. +TAGFILES = + +# When a file name is specified after GENERATE_TAGFILE, doxygen will create +# a tag file that is based on the input files it reads. +GENERATE_TAGFILE = + +# If the ALLEXTERNALS tag is set to YES all external classes will be listed +# in the class index. If set to NO only the inherited external classes +# will be listed. +ALLEXTERNALS = NO + +# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed +# in the modules index. If set to NO, only the current project's groups will +# be listed. +EXTERNAL_GROUPS = YES + +# The PERL_PATH should be the absolute path and name of the perl script +# interpreter (i.e. the result of `which perl'). +PERL_PATH = /usr/bin/perl + +#--------------------------------------------------------------------------- +# Configuration options related to the dot tool +#--------------------------------------------------------------------------- + +# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will +# generate a inheritance diagram (in Html, RTF and LaTeX) for classes with base or +# super classes. Setting the tag to NO turns the diagrams off. Note that this +# option is superceded by the HAVE_DOT option below. This is only a fallback. It is +# recommended to install and use dot, since it yield more powerful graphs. +CLASS_DIAGRAMS = YES + +# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is +# available from the path. This tool is part of Graphviz, a graph visualization +# toolkit from AT&T and Lucent Bell Labs. The other options in this section +# have no effect if this option is set to NO (the default) +HAVE_DOT = @DOXYGEN_HAVE_DOT@ + +# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect inheritance relations. Setting this tag to YES will force the +# the CLASS_DIAGRAMS tag to NO. +CLASS_GRAPH = YES + +# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect implementation dependencies (inheritance, containment, and +# class references variables) of the class with other documented classes. +COLLABORATION_GRAPH = YES + +# If set to YES, the inheritance and collaboration graphs will show the +# relations between templates and their instances. +TEMPLATE_RELATIONS = YES + +# If set to YES, the inheritance and collaboration graphs will hide +# inheritance and usage relations if the target is undocumented +# or is not a class. +HIDE_UNDOC_RELATIONS = YES + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT +# tags are set to YES then doxygen will generate a graph for each documented +# file showing the direct and indirect include dependencies of the file with +# other documented files. +INCLUDE_GRAPH = YES + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and +# HAVE_DOT tags are set to YES then doxygen will generate a graph for each +# documented header file showing the documented files that directly or +# indirectly include this file. +INCLUDED_BY_GRAPH = YES + +# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen +# will graphical hierarchy of all classes instead of a textual one. +GRAPHICAL_HIERARCHY = YES + +# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images +# generated by dot. Possible values are gif, jpg, and png +# If left blank gif will be used. +DOT_IMAGE_FORMAT = png + +# The tag DOT_PATH can be used to specify the path where the dot tool can be +# found. If left blank, it is assumed the dot tool can be found on the path. +DOT_PATH = "@DOXYGEN_DOT_PATH@" + +# The DOTFILE_DIRS tag can be used to specify one or more directories that +# contain dot files that are included in the documentation (see the +# \dotfile command). +DOTFILE_DIRS = + +# The MAX_DOT_GRAPH_WIDTH tag can be used to set the maximum allowed width +# (in pixels) of the graphs generated by dot. If a graph becomes larger than +# this value, doxygen will try to truncate the graph, so that it fits within +# the specified constraint. Beware that most browsers cannot cope with very +# large images. +MAX_DOT_GRAPH_WIDTH = 1024 + +# The MAX_DOT_GRAPH_HEIGHT tag can be used to set the maximum allows height +# (in pixels) of the graphs generated by dot. If a graph becomes larger than +# this value, doxygen will try to truncate the graph, so that it fits within +# the specified constraint. Beware that most browsers cannot cope with very +# large images. +MAX_DOT_GRAPH_HEIGHT = 1024 + +# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will +# generate a legend page explaining the meaning of the various boxes and +# arrows in the dot generated graphs. +GENERATE_LEGEND = YES + +# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will +# remove the intermedate dot files that are used to generate +# the various graphs. +DOT_CLEANUP = YES + +#--------------------------------------------------------------------------- +# Configuration::addtions related to the search engine +#--------------------------------------------------------------------------- + +# The SEARCHENGINE tag specifies whether or not a search engine should be +# used. If set to NO the values of all tags below this one will be ignored. +SEARCHENGINE = NO diff --git a/bbtk/src/CMakeLists.txt b/bbtk/src/CMakeLists.txt new file mode 100644 index 0000000..e2d2a11 --- /dev/null +++ b/bbtk/src/CMakeLists.txt @@ -0,0 +1,5 @@ +#--------------------------------------------------------------------------- +# Include src configuration cmake script +INCLUDE(${BBTK_CMAKE_DIR}/BBTKConfigurePackage_src.cmake) +#--------------------------------------------------------------------------- + diff --git a/bbtk/src/bbmaracasvisuColorBar.cxx b/bbtk/src/bbmaracasvisuColorBar.cxx new file mode 100644 index 0000000..7e57f4d --- /dev/null +++ b/bbtk/src/bbmaracasvisuColorBar.cxx @@ -0,0 +1,69 @@ +#include "bbmaracasvisuColorBar.h" +#include "bbmaracasvisuPackage.h" +namespace bbmaracasvisu +{ + +BBTK_ADD_BLACK_BOX_TO_PACKAGE(maracasvisu,ColorBar) +BBTK_BLACK_BOX_IMPLEMENTATION(ColorBar,bbtk::WxBlackBox); + +//-------------------------------------------------- +void ColorBar::Process() +{ +} + +//-------------------------------------------------- +void ColorBar::CreateWidget() +{ +// bbSetOutputWidget( new wxStaticText ( bbGetWxParent() , -1 , _T("") ) ); +// Process(); + bbtkDebugMessageInc("Core",9,"ColorBar::CreateWidget()"< setActiveStateTo( true ); + mwxwidget -> setRepresentedValues(bbGetInputInMin(), bbGetInputInMax()); + mwxwidget -> setDeviceEndMargin(10); + mwxwidget -> setDeviceBlitStart(10,10); + std::vector vectRED = bbGetInputReds(); + std::vector vectGREEN = bbGetInputGreens(); + std::vector vectBLUE = bbGetInputBlues(); + std::vector vectVALUES = bbGetInputValues(); + if(vectRED.size()==vectGREEN.size() && vectGREEN.size()==vectBLUE.size() && vectBLUE.size()==vectVALUES.size()) + { + int i=0; + while ( i< vectVALUES.size()) + { + mwxwidget -> addColorPoint ( (double)vectVALUES[i], wxColour(vectRED[i], vectGREEN[i], vectBLUE[i])); + i++; + } + } + + + bbtkDebugDecTab("Core",9); + + bbSetOutputWidget( mwxwidget ); +} + +//-------------------------------------------------- +void ColorBar::bbUserConstructor() +{ + bbSetInputOrientation(1); + bbSetInputInW(200); + bbSetInputInH(80); + bbSetInputInMax(1); + bbSetInputInMin(1); +} + +//-------------------------------------------------- +void ColorBar::bbUserCopyConstructor() +{ +} + +//-------------------------------------------------- +void ColorBar::bbUserDestructor() +{ +} + + +} +// EO namespace bbmaracasvisu + + diff --git a/bbtk/src/bbmaracasvisuColorBar.h b/bbtk/src/bbmaracasvisuColorBar.h new file mode 100644 index 0000000..f1a92bf --- /dev/null +++ b/bbtk/src/bbmaracasvisuColorBar.h @@ -0,0 +1,67 @@ +#ifdef _USE_WXWIDGETS_ +#ifndef __bbmaracasvisuColorBar_h_INCLUDED__ +#define __bbmaracasvisuColorBar_h_INCLUDED__ +#include "bbtkWxBlackBox.h" + +#include "bbmaracasvisuColorBar.h" +#include "bbmaracasvisuPackage.h" +#include "pColorBar.h" + + +namespace bbmaracasvisu +{ + +class /*BBTK_EXPORT*/ ColorBar + : + public bbtk::WxBlackBox +{ + BBTK_BLACK_BOX_INTERFACE(ColorBar,bbtk::WxBlackBox); +//================================================================== +/// User callback called in the box contructor +virtual void bbUserConstructor(); +/// User callback called in the box copy constructor +virtual void bbUserCopyConstructor(); +/// User callback called in the box destructor +virtual void bbUserDestructor(); +//================================================================== + BBTK_DECLARE_INPUT(Orientation, int ); + BBTK_DECLARE_INPUT(InW, int ); + BBTK_DECLARE_INPUT(InH, int ); + BBTK_DECLARE_INPUT(InMax, int ); + BBTK_DECLARE_INPUT(InMin, int ); + BBTK_DECLARE_INPUT(Reds, std::vector ); + BBTK_DECLARE_INPUT(Greens, std::vector ); + BBTK_DECLARE_INPUT(Blues, std::vector ); + BBTK_DECLARE_INPUT(Values, std::vector ); + BBTK_PROCESS(Process); + void Process(); + BBTK_CREATE_WIDGET(CreateWidget); + void CreateWidget(); + + private: + pColorBar *mwxwidget; +}; + +BBTK_BEGIN_DESCRIBE_BLACK_BOX(ColorBar,bbtk::WxBlackBox); +BBTK_NAME("ColorBar"); +BBTK_AUTHOR("eduardo.davila [at] creatis.insa-lyon.fr"); +BBTK_DESCRIPTION("Degrade Color Bar Window"); +//BBTK_CATEGORY("__CategoryBlackBox__"); + BBTK_AUTHOR("eduardo.davila [at] creatis.insa-lyon.fr"); + BBTK_DESCRIPTION("Degrade Color Bar Window"); + BBTK_INPUT(ColorBar,Orientation,"Orientation ", int,""); + BBTK_INPUT(ColorBar,InW,"Width ", int,""); + BBTK_INPUT(ColorBar,InH,"Height ", int,""); + BBTK_INPUT(ColorBar,InMax,"Max value ", int,"" ); + BBTK_INPUT(ColorBar,InMin, "Min value ",int,"" ); + BBTK_INPUT(ColorBar,Reds, "Reds ",std::vector,""); + BBTK_INPUT(ColorBar,Greens, "Greens ",std::vector,""); + BBTK_INPUT(ColorBar,Blues, "Blues ",std::vector,""); + BBTK_INPUT(ColorBar,Values, "Values ",std::vector,""); +BBTK_END_DESCRIBE_BLACK_BOX(ColorBar); +} +// EO namespace bbmaracasvisu + +#endif // __bbmaracasvisuColorBar_h_INCLUDED__ +#endif // _USE_WXWIDGETS_ + diff --git a/bbtk/src/bbmaracasvisuContourCrown.cxx b/bbtk/src/bbmaracasvisuContourCrown.cxx new file mode 100644 index 0000000..e9a2a47 --- /dev/null +++ b/bbtk/src/bbmaracasvisuContourCrown.cxx @@ -0,0 +1,91 @@ +#include "bbmaracasvisuContourCrown.h" +#include "bbmaracasvisuPackage.h" + +#include + +namespace bbmaracasvisu +{ + +BBTK_ADD_BLACK_BOX_TO_PACKAGE(maracasvisu,ContourCrown) +BBTK_BLACK_BOX_IMPLEMENTATION(ContourCrown,bbtk::WxBlackBox); + +//----------------------------------------------------------- +void ContourCrown::Process() +{ +//JSTG 04-04-08 + mwxwidget->SetControlPoints( bbGetInputControlPointsInX(), bbGetInputControlPointsInY(), bbGetInputControlPointsInZ() ); + + LstValuePosX.clear(); + LstValuePosY.clear(); + LstValuePosZ.clear(); + mwxwidget->GetValuesInsideCrown(&LstValue,&LstValuePosX,&LstValuePosY,&LstValuePosZ); + +//JSTG 226-02-08 ---------------------------------------------------------- + LstContourX.clear(); + LstContourY.clear(); + LstContourZ.clear(); + mwxwidget->GetSplinePoints(&LstContourX,&LstContourY,&LstContourZ); +//------------------------------------------------------------------------- + + bbSetOutputLstValue(&LstValue); + bbSetOutputLstValuePosX(&LstValuePosX); + bbSetOutputLstValuePosY(&LstValuePosY); + bbSetOutputLstValuePosZ(&LstValuePosZ); + bbSetOutputLstContourX(&LstContourX); + bbSetOutputLstContourY(&LstContourY); + bbSetOutputLstContourZ(&LstContourZ); + bbSetOutputLstContourCrlX(&LstContourCrlX); + bbSetOutputLstContourCrlY(&LstContourCrlY); + bbSetOutputLstContourCrlZ(&LstContourCrlZ); + bbSetOutputLstContourCrlZ(&LstContourCrlZ); +} + +//----------------------------------------------------------- +void ContourCrown::CreateWidget() +{ + bbtkDebugMessageInc("Core",9,"ContourCrown::CreateWidget()"<ConfigureVTK(); + + bbSetOutputImageValueResult( mwxwidget->GetVtkImageValueResult() ); + bbSetOutputImageMaskResult( mwxwidget->GetVtkImageMaskResult() ); + bbSetOutputWidget(mwxwidget); + bbtkDebugDecTab("Core",9); +} + +//----------------------------------------------------------- +void ContourCrown::bbUserConstructor() +{ + bbSetInputIn(NULL); + bbSetInputwxVtkBaseView(NULL); +//JSTG 26-02-08 ------------------------------------ + bbSetInputControlPointsInX(NULL); + bbSetInputControlPointsInY(NULL); + bbSetInputControlPointsInZ(NULL); +//-------------------------------------------------- +} + +//----------------------------------------------------------- +void ContourCrown::bbUserCopyConstructor() +{ +} + +//----------------------------------------------------------- +void ContourCrown::bbUserDestructor() +{ +} + +} +// EO namespace bbmaracasvisu + + diff --git a/bbtk/src/bbmaracasvisuContourCrown.h b/bbtk/src/bbmaracasvisuContourCrown.h new file mode 100644 index 0000000..7ef6ba5 --- /dev/null +++ b/bbtk/src/bbmaracasvisuContourCrown.h @@ -0,0 +1,94 @@ +#ifdef _USE_WXWIDGETS_ +#ifndef __bbmaracasvisuContourCrown_h_INCLUDED__ +#define __bbmaracasvisuContourCrown_h_INCLUDED__ +#include "bbtkWxBlackBox.h" + +#include + +#include "Contour/ContourCrownWidget.h" + +namespace bbmaracasvisu +{ + +class /*BBTK_EXPORT*/ ContourCrown + : + public bbtk::WxBlackBox +{ + BBTK_BLACK_BOX_INTERFACE(ContourCrown,bbtk::WxBlackBox); +//================================================================== +/// User callback called in the box contructor +virtual void bbUserConstructor(); +/// User callback called in the box copy constructor +virtual void bbUserCopyConstructor(); +/// User callback called in the box destructor +virtual void bbUserDestructor(); +//================================================================== + BBTK_DECLARE_INPUT(In, vtkImageData*); + BBTK_DECLARE_INPUT(wxVtkBaseView, wxVtkBaseView*); +//JSTG 26-02-08 ------------------------------------------------------- + BBTK_DECLARE_INPUT(ControlPointsInX,std::vector*); + BBTK_DECLARE_INPUT(ControlPointsInY,std::vector*); + BBTK_DECLARE_INPUT(ControlPointsInZ,std::vector*); +//--------------------------------------------------------------------- + BBTK_DECLARE_OUTPUT(LstValue,std::vector*); + BBTK_DECLARE_OUTPUT(LstValuePosX,std::vector*); + BBTK_DECLARE_OUTPUT(LstValuePosY,std::vector*); + BBTK_DECLARE_OUTPUT(LstValuePosZ,std::vector*); + BBTK_DECLARE_OUTPUT(LstContourX,std::vector*); + BBTK_DECLARE_OUTPUT(LstContourY,std::vector*); + BBTK_DECLARE_OUTPUT(LstContourZ,std::vector*); + BBTK_DECLARE_OUTPUT(LstContourCrlX,std::vector*); + BBTK_DECLARE_OUTPUT(LstContourCrlY,std::vector*); + BBTK_DECLARE_OUTPUT(LstContourCrlZ,std::vector*); + BBTK_DECLARE_OUTPUT(ImageValueResult,vtkImageData*); + BBTK_DECLARE_OUTPUT(ImageMaskResult,vtkImageData*); + BBTK_PROCESS(Process); + void Process(); + BBTK_CREATE_WIDGET(CreateWidget); + void CreateWidget(); + +private: + wxMaracasCoutourTool *mwxwidget; + std::vector LstValue; + std::vector LstValuePosX; + std::vector LstValuePosY; + std::vector LstValuePosZ; + std::vector LstContourX; + std::vector LstContourY; + std::vector LstContourZ; + std::vector LstContourCrlX; + std::vector LstContourCrlY; + std::vector LstContourCrlZ; +}; + +BBTK_BEGIN_DESCRIBE_BLACK_BOX(ContourCrown,bbtk::WxBlackBox); +BBTK_NAME("ContourCrown"); +BBTK_AUTHOR("eduardo.davila [at] creatis.insa-lyon.fr"); +BBTK_DESCRIPTION("Contour crown tool"); + BBTK_CATEGORY("specific_appli"); + BBTK_INPUT(ContourCrown,In,"Input Image", vtkImageData *,"" ); + BBTK_INPUT(ContourCrown,wxVtkBaseView,"maracas visu wxVtkBaseView",wxVtkBaseView*,""); +//JSTG 26-02-08 --------------------------------------------------------------------------------------------------------- + BBTK_INPUT(ContourCrown,ControlPointsInX,"Control Points X Coords ",std::vector*,""); + BBTK_INPUT(ContourCrown,ControlPointsInY,"Control Points Y Coords ",std::vector*,""); + BBTK_INPUT(ContourCrown,ControlPointsInZ,"Control Points Z Coords ",std::vector*,""); +//----------------------------------------------------------------------------------------------------------------------- + BBTK_OUTPUT(ContourCrown,LstValue , "Pixel values" , std::vector*,""); + BBTK_OUTPUT(ContourCrown,LstValuePosX , "Positions X of the values" , std::vector*,""); + BBTK_OUTPUT(ContourCrown,LstValuePosY , "Positions Y of the values" , std::vector*,""); + BBTK_OUTPUT(ContourCrown,LstValuePosZ , "Positions Z of the values" , std::vector*,""); + BBTK_OUTPUT(ContourCrown,LstContourX , "Positions X of the contours" , std::vector*,""); + BBTK_OUTPUT(ContourCrown,LstContourY , "Positions Y of the contours" , std::vector*,""); + BBTK_OUTPUT(ContourCrown,LstContourZ , "Positions Z of the contours" , std::vector*,""); + BBTK_OUTPUT(ContourCrown,LstContourCrlX, "Positions X of the contour control points" , std::vector*,""); + BBTK_OUTPUT(ContourCrown,LstContourCrlY, "Positions Y of the contour control points" , std::vector*,""); + BBTK_OUTPUT(ContourCrown,LstContourCrlZ, "Positions Z of the contour control points" , std::vector*,""); + BBTK_OUTPUT(ContourCrown,ImageValueResult, "vtkImagedata with the values" , vtkImageData *,"" ); + BBTK_OUTPUT(ContourCrown,ImageMaskResult, "vtkImagedata with the mask" , vtkImageData *,"" ); +BBTK_END_DESCRIBE_BLACK_BOX(ContourCrown); +} +// EO namespace bbmaracasvisu + +#endif // __bbmaracasvisuContourCrown_h_INCLUDED__ +#endif // _USE_WXWIDGETS_ + diff --git a/bbtk/src/bbmaracasvisuContourStatistics.cxx b/bbtk/src/bbmaracasvisuContourStatistics.cxx new file mode 100644 index 0000000..ac7526b --- /dev/null +++ b/bbtk/src/bbmaracasvisuContourStatistics.cxx @@ -0,0 +1,76 @@ +#include "bbmaracasvisuContourStatistics.h" +#include "bbmaracasvisuPackage.h" +#include +namespace bbmaracasvisu +{ + +BBTK_ADD_BLACK_BOX_TO_PACKAGE(maracasvisu,ContourStatistics) +BBTK_BLACK_BOX_IMPLEMENTATION(ContourStatistics,bbtk::AtomicBlackBox); + +//------------------------------------------------------------ +void ContourStatistics::Process() +{ + + double max=0,min=0; + double average=0,standardeviation=0; + double acum=0; + double ng; + int size=0; + if (bbGetInputLstValue()!=NULL) + { + size=bbGetInputLstValue()->size(); + if (size>0){ + max=(*bbGetInputLstValue())[0]; + min=(*bbGetInputLstValue())[0]; + // Average + int i; + for ( i=0; ing) min=ng; // Min + } + average = acum / size; + + // Standar Deviation + acum=0; + double tmp; + for ( i=0; i*); + BBTK_DECLARE_INPUT(LstValuePosX,std::vector*); + BBTK_DECLARE_INPUT(LstValuePosY,std::vector*); + BBTK_DECLARE_INPUT(LstValuePosZ,std::vector*); + BBTK_DECLARE_OUTPUT(Max,double); + BBTK_DECLARE_OUTPUT(Min,double); + BBTK_DECLARE_OUTPUT(Average,double); + BBTK_DECLARE_OUTPUT(StandarDeviation,double); + BBTK_DECLARE_OUTPUT(nPoints,int); + BBTK_PROCESS(Process); + void Process(); +}; + +BBTK_BEGIN_DESCRIBE_BLACK_BOX(ContourStatistics,bbtk::AtomicBlackBox); +BBTK_NAME("ContourStatistics"); +BBTK_AUTHOR("eduardo.davila [at] creatis.insa-lyon.fr"); +BBTK_DESCRIPTION("Basic contour statistics"); +BBTK_CATEGORY("math"); + BBTK_INPUT(ContourStatistics,LstValue,"Pixel values",std::vector*,""); + BBTK_INPUT(ContourStatistics,LstValuePosX,"Pixel position X",std::vector*,""); + BBTK_INPUT(ContourStatistics,LstValuePosY,"Pixel position Y",std::vector*,""); + BBTK_INPUT(ContourStatistics,LstValuePosZ,"Pixel position Z",std::vector*,""); + BBTK_OUTPUT(ContourStatistics,Max,"Max",double,""); + BBTK_OUTPUT(ContourStatistics,Min,"Min",double,""); + BBTK_OUTPUT(ContourStatistics,Average,"Average",double,""); + BBTK_OUTPUT(ContourStatistics,StandarDeviation,"Standar Deviation",double,""); + BBTK_OUTPUT(ContourStatistics,nPoints,"Number of values",int,""); +BBTK_END_DESCRIBE_BLACK_BOX(ContourStatistics); +} +// EO namespace bbmaracasvisu + +#endif // __bbmaracasvisuContourStatistics_h_INCLUDED__ + diff --git a/bbtk/src/bbmaracasvisuContourToControlPoints.cxx b/bbtk/src/bbmaracasvisuContourToControlPoints.cxx new file mode 100644 index 0000000..4691558 --- /dev/null +++ b/bbtk/src/bbmaracasvisuContourToControlPoints.cxx @@ -0,0 +1,150 @@ +#ifdef _USE_VTK_ +#ifdef _USE_ITK_ + +#include "bbmaracasvisuContourToControlPoints.h" +#include "bbmaracasvisuPackage.h" +namespace bbmaracasvisu +{ + +BBTK_ADD_BLACK_BOX_TO_PACKAGE(maracasvisu,ContourToControlPoints) +//BBTK_USER_BLACK_BOX_IMPLEMENTATION(ContourToControlPoints,bbtk::AtomicBlackBox); +BBTK_BLACK_BOX_IMPLEMENTATION(ContourToControlPoints,bbtk::AtomicBlackBox); + +//------------------------------------------------------------ +void ContourToControlPoints::Process() +{ + if ( bbGetInputSampling() >= 3.0 ) + { + OutContourX.clear(); + OutContourY.clear(); + OutContourZ.clear(); + _ext2D->SetContour( bbGetInputInContourX(),bbGetInputInContourY(),bbGetInputInContourZ() ); + _ext2D->SetSamplingControlPoints( bbGetInputSampling() ); + _ext2D->GetSamplingControlPoints( &OutContourX,&OutContourY,&OutContourZ ); + } + if(bbGetInputSampling() == 2.0) + { + OutContourX.clear(); + OutContourY.clear(); + OutContourZ.clear(); + _ext2D->SetContour( bbGetInputInContourX(),bbGetInputInContourY(),bbGetInputInContourZ() ); + _ext2D->GetControlPoints( &OutContourX,&OutContourY,&OutContourZ ); + } + + //Liberates the memory from the VTK's objects. Always must do that!! + if ( bbGetInputLoadContour()== 1 ) + { + if (_imagedata!=NULL) + { + _imagedata->Delete(); + } + KeyContourX.clear(); + KeyContourY.clear(); + KeyContourZ.clear(); + KeySizes.clear(); + FILE* fd; + fd = fopen("C:/bbtk_JS/data/SavedContours.txt","r"); + _propgdata->ReadKeyContour( fd ); + fclose(fd); + _propgdata->GetKeyContours(&KeyContourX,&KeyContourY,&KeyContourZ,&KeySizes); + if(KeySizes.size() == 1) + { + //Method for 2D + // _imagedata = _propgdata->method_RBF(bbGetInputRadRBF(),&KeyContourX,&KeyContourY,&KeyContourZ); + } + if(KeySizes.size() >= 2) + { + //Method for 3D + //_imagedata = _propgdata->method_RBF_3D(bbGetInputRadRBF(),&KeyContourX,&KeyContourY,&KeyContourZ); + // _imagedata = _propgdata->method_RBF_3D_ThinPlate(bbGetInputRadRBF(),&KeyContourX,&KeyContourY,&KeyContourZ); + } + } + if ( bbGetInputLoadContour()== 2 ) + { + if (_imagedata!=NULL) + { + _imagedata->Delete(); + } + FILE* fd; + fd = fopen("C:/bbtk_JS/data/SavedManualPoints.txt","r"); + _propgdata->ReadKeyContour( fd ); + fclose(fd); + _propgdata->GetKeyContours(&KeyContourX,&KeyContourY,&KeyContourZ,&KeySizes); + if(KeySizes.size() == 1) + { + //Method for 2D + // _imagedata = _propgdata->method_RBF(bbGetInputRadRBF(),&KeyContourX,&KeyContourY,&KeyContourZ); + } + if(KeySizes.size() >= 2) + { + //Method for 3D + //_imagedata = _propgdata->method_RBF_3D(bbGetInputRadRBF(),&KeyContourX,&KeyContourY,&KeyContourZ); + // _imagedata = _propgdata->method_RBF_3D_ThinPlate(bbGetInputRadRBF(),&KeyContourX,&KeyContourY,&KeyContourZ); + } + } + + if ( bbGetInputLoadContour()== 3 ) + { + if (_imagedata!=NULL) + { + _imagedata->Delete(); + } + vtkImageData *itemp = vtkImageData::New(); + _contprop->appendContour(); + _contprop->setInterpolationNumber(300); + itemp = _contprop->GetKeyContours(&KeyContourX,&KeyContourY,&KeyContourZ,&KeySizes); + if(KeySizes.size() == 1) + { + } + if(KeySizes.size() >= 2) + { + //Method for 3D + _imagedata = itemp; + _contprop->resetAppend(); + _contprop->appendContour(&KeyContourX,&KeyContourY,&KeyContourZ); + //_contprop->GetContour(bbGetInputSlice(),&OutContourX,&OutContourY,&OutContourZ); + _contprop->GetControlPoints(bbGetInputSlice(),&OutContourX,&OutContourY,&OutContourZ); + printf("\n Size OutContourX = %d",OutContourX.size()); + } + } + + bbSetOutputControlPointX( &OutContourX ); + bbSetOutputControlPointY( &OutContourY ); + bbSetOutputControlPointZ( &OutContourZ ); + bbSetOutputImagePropg( _imagedata ); +} +//------------------------------------------------------------ +void ContourToControlPoints::bbUserConstructor() +{ + bbSetInputSampling(5.0); + bbSetInputSlice(0); + bbSetInputInContourX(NULL); + bbSetInputInContourY(NULL); + bbSetInputInContourZ(NULL); + bbSetInputRadRBF(1000.0); + bbSetInputOption(1); + bbSetInputLoadContour(0); + + _contprop = new ContourPropagation(); + _propgdata = new PropContour(); + _imagedata = vtkImageData::New(); + _ext2D = new ExtractControlPoints2D(); + _fd = NULL; + pos = 0; + it = NULL; + bool inic = false; +} +//------------------------------------------------------------ +void ContourToControlPoints::bbUserCopyConstructor() +{ +} +//------------------------------------------------------------ +void ContourToControlPoints::bbUserDestructor() +{ +} + +} +// EO namespace bbmaracasvisu + +#endif //_USE_ITK_ +#endif //_USE_VTK_ diff --git a/bbtk/src/bbmaracasvisuContourToControlPoints.h b/bbtk/src/bbmaracasvisuContourToControlPoints.h new file mode 100644 index 0000000..48553fa --- /dev/null +++ b/bbtk/src/bbmaracasvisuContourToControlPoints.h @@ -0,0 +1,98 @@ +#ifndef __bbmaracasvisuContourToControlPoints_h_INCLUDED__ +#define __bbmaracasvisuContourToControlPoints_h_INCLUDED__ +#include "bbtkAtomicBlackBox.h" +#include "iostream" + +#include "Contour/ExtractControlPoints2D.h" +#include "Contour/ContourPropagation.h" +#include "Contour/Propagation.h" + +#include "vtkImageData.h" + +namespace bbmaracasvisu +{ + +class /*BBTK_EXPORT*/ ContourToControlPoints + : + public bbtk::AtomicBlackBox +{ + //BBTK_USER_BLACK_BOX_INTERFACE(ContourToControlPoints,bbtk::AtomicBlackBox); + BBTK_BLACK_BOX_INTERFACE(ContourToControlPoints,bbtk::AtomicBlackBox); + +//================================================================== +/// User callback called in the box contructor +virtual void bbUserConstructor(); +/// User callback called in the box copy constructor +virtual void bbUserCopyConstructor(); +/// User callback called in the box destructor +virtual void bbUserDestructor(); +//================================================================== + BBTK_DECLARE_INPUT(In,double); + BBTK_DECLARE_INPUT(Sampling, double); + BBTK_DECLARE_INPUT(Slice,int); + BBTK_DECLARE_INPUT(InContourX, std::vector*); + BBTK_DECLARE_INPUT(InContourY, std::vector*); + BBTK_DECLARE_INPUT(InContourZ, std::vector*); + BBTK_DECLARE_INPUT(RadRBF, double); + BBTK_DECLARE_INPUT(Option, int); + BBTK_DECLARE_INPUT(LoadContour, int); + BBTK_DECLARE_OUTPUT(Out,double); + BBTK_DECLARE_OUTPUT(ControlPointX, std::vector*); + BBTK_DECLARE_OUTPUT(ControlPointY, std::vector*); + BBTK_DECLARE_OUTPUT(ControlPointZ, std::vector*); + BBTK_DECLARE_OUTPUT(ImagePropg, vtkImageData*); + + BBTK_PROCESS(Process); + void Process(); + private: + int pos; + bool inic; + + ContourPropagation *_contprop; + PropContour *_propgdata; + ExtractControlPoints2D *_ext2D; + + vtkImageData *_imagedata; + FILE *_fd; + + std::vector OutContourX; + std::vector OutContourY; + std::vector OutContourZ; + + std::vector KeyContourX; + std::vector KeyContourY; + std::vector KeyContourZ; + std::vector KeySizes; + + //TEMP DATA + std::vector tempX; + std::vector tempY; + std::vector tempZ; + std::vector::iterator it; + +}; + +BBTK_BEGIN_DESCRIBE_BLACK_BOX(ContourToControlPoints,bbtk::AtomicBlackBox); +BBTK_NAME("ContourToControlPoints"); +BBTK_AUTHOR("Juan Sebasltian Torres"); +BBTK_DESCRIPTION("Generates the control points of a contour"); +BBTK_CATEGORY("filter"); + BBTK_INPUT(ContourToControlPoints,Sampling,"Sampling (in %) to obtain the control points",double,""); + BBTK_INPUT(ContourToControlPoints,Slice,"Slice Number Propagation",int,""); + BBTK_INPUT(ContourToControlPoints,InContourX,"Coordinate X of a Contour",std::vector*,""); + BBTK_INPUT(ContourToControlPoints,InContourY,"Coordinate Y of a Contour",std::vector*,""); + BBTK_INPUT(ContourToControlPoints,InContourZ,"Coordinate Z of a Contour",std::vector*,""); + BBTK_INPUT(ContourToControlPoints,RadRBF,"Radius of th RBF method",double,""); + BBTK_INPUT(ContourToControlPoints,Option,"1 -> Control Points || 2 -> Propagation",int,""); + BBTK_INPUT(ContourToControlPoints,LoadContour,"1 -> Load Saved Manual Points",int,""); +//THE OUTPUTS + BBTK_OUTPUT(ContourToControlPoints,ControlPointX,"Processed Coordinate X of the Boundary",std::vector*,""); + BBTK_OUTPUT(ContourToControlPoints,ControlPointY,"Processed Coordinate Y of the Boundary",std::vector*,""); + BBTK_OUTPUT(ContourToControlPoints,ControlPointZ,"Processed Coordinate Z of the Boundary",std::vector*,""); + BBTK_OUTPUT(ContourToControlPoints,ImagePropg,"vtkImageData of the propagation image-3D",vtkImageData*,""); +BBTK_END_DESCRIBE_BLACK_BOX(ContourToControlPoints); +} +// EO namespace bbmaracasvisu + +#endif // __bbmaracasvisuContourToControlPoints_h_INCLUDED__ + diff --git a/bbtk/src/bbmaracasvisuContourVOI.cxx b/bbtk/src/bbmaracasvisuContourVOI.cxx new file mode 100644 index 0000000..61911be --- /dev/null +++ b/bbtk/src/bbmaracasvisuContourVOI.cxx @@ -0,0 +1,150 @@ +//HOLA!!! +//HOLA!!! + +#include "bbmaracasvisuContourVOI.h" +#include "bbmaracasvisuPackage.h" +namespace bbmaracasvisu +{ + + //-------------------------------------------------------------------------- + // wxWidgetMPR + //-------------------------------------------------------------------------- +BEGIN_EVENT_TABLE( wxWidgetVOI, wxPanel ) + EVT_MENU( 12121, wxWidgetVOI::OnRefreshView ) + EVT_MENU( 12122, wxWidgetVOI::OnDClickLeft ) +END_EVENT_TABLE( ); + + //----------- + //Constructor + //----------- + wxWidgetVOI::wxWidgetVOI(wxWindow* parent, wxVtkBaseView *wxvtkbaseview, vtkImageData *imagedata) + : wxPanel( parent, -1 ) + { + wxPanel *panel = this; + + mcontourvoiwidget = new ContourVOIWidget( panel, wxvtkbaseview, imagedata ); + mcontourvoiwidget->ConfigureVTK(); + +// wxwidget = new wxMPRWidget2( panel, marimagedata , 1 ); +// wxwidget->ConfigureVTK(); + wxFlexGridSizer *sizer=new wxFlexGridSizer(1); + sizer -> Add( mcontourvoiwidget,1,wxGROW ); + sizer -> AddGrowableCol(0); + panel -> SetSizer(sizer); + panel -> SetAutoLayout(true); + panel -> Layout(); + } +//-------------------------------------------------------------------------- + wxWidgetVOI::~wxWidgetVOI() + { + } + +//-------------------------------------------------------------------------- + void wxWidgetVOI::Refresh() + { + printf("EED wxWidgetVOI::Refresh \n"); +// wxwidget->RefreshView(); + } + +//-------------------------------------------------------------------------- + //--------------- + //Handling events + //--------------- + void wxWidgetVOI::OnRefreshView(wxCommandEvent &event) + { + printf("EED wxWidgetVOI::OnRefreshView \n"); +/* + if((wxwidget!=NULL) && (mbbViewerMPR!=NULL)) + { + point.clear(); + point.push_back((int)wxwidget->GetVtkMPRBaseData()->GetX()); + point.push_back((int)wxwidget->GetVtkMPRBaseData()->GetY()); + point.push_back((int)wxwidget->GetVtkMPRBaseData()->GetZ()); + mbbViewerMPR->bbSetOutputPoint(point); + mbbViewerMPR->bbSetModifiedStatus(); + wxwidget->RefreshView(); + } +*/ + } + +//-------------------------------------------------------------------------- + void wxWidgetVOI::OnDClickLeft(wxCommandEvent & event) + { + printf("EED wxWidgetVOI::OnDClickLeft \n"); +// wxwidget->RefreshView(); + } + +//------------------------------------------------------ +ContourVOIWidget* wxWidgetVOI::GetContourVOIWidget() +{ + return mcontourvoiwidget; +} + +//-------------------------------------------------------------------------------------------------------------------------------- + +//------------------------------------------------------ +//------------------------------------------------------ +//------------------------------------------------------ + + +BBTK_ADD_BLACK_BOX_TO_PACKAGE(maracasvisu,ContourVOI) +BBTK_BLACK_BOX_IMPLEMENTATION(ContourVOI,bbtk::WxBlackBox); + +//------------------------------------------------------ +void ContourVOI::Process() +{ + wxWidgetVOI* wxwidgetvoi = (wxWidgetVOI*)bbGetOutputWidget(); + ContourVOIWidget* contourvoiwidget = wxwidgetvoi->GetContourVOIWidget(); + + int voi[6]; + contourvoiwidget->GetVOI(voi); + char buffer[40]; + sprintf(buffer,"%d %d %d ", voi[0], voi[2], voi[4] ); + std::string Index(buffer); + sprintf(buffer,"%d %d %d ", voi[1]-voi[0]+1, voi[3]-voi[2]+1, voi[5]-voi[4]+1 ); + std::string Size(buffer); + + bbSetOutputIndex( Index ); + bbSetOutputSize( Size ); +} + +//------------------------------------------------------ +void ContourVOI::CreateWidget() +{ + bbtkDebugMessageInc("Core",9,"ContourVOI::CreateWidget()"< + +#include "Contour/ContourVOIWidget.h" + +namespace bbmaracasvisu +{ + + + //-------------------------------------------------------------------------- + class ContourVOI; + class wxWidgetVOI : public wxPanel + { + public: + wxWidgetVOI(wxWindow* parent, wxVtkBaseView *wxvtkbaseview, vtkImageData *imagedata); + ~wxWidgetVOI(); + + //if the MPR had generated the refresh event + void OnRefreshView(wxCommandEvent & event); + void OnDClickLeft(wxCommandEvent & event); + + //refreshView + void Refresh(); + + ContourVOIWidget* GetContourVOIWidget(); + + private: + +// ContourVOI *mbbViewerMPR; + ContourVOIWidget *mcontourvoiwidget; + + DECLARE_EVENT_TABLE( ); + }; + + //------------------------------------------------------------------------ + //------------------------------------------------------------------------ + //------------------------------------------------------------------------ + + + + + + +class /*BBTK_EXPORT*/ ContourVOI + : + public bbtk::WxBlackBox +{ + BBTK_BLACK_BOX_INTERFACE(ContourVOI,bbtk::WxBlackBox); +//================================================================== +/// User callback called in the box contructor +virtual void bbUserConstructor(); +/// User callback called in the box copy constructor +virtual void bbUserCopyConstructor(); +/// User callback called in the box destructor +virtual void bbUserDestructor(); +//================================================================== + BBTK_DECLARE_INPUT(Title,std::string); + BBTK_DECLARE_INPUT(In, vtkImageData*); + BBTK_DECLARE_INPUT(wxVtkBaseView, wxVtkBaseView*); + BBTK_DECLARE_OUTPUT(Index,std::string); + BBTK_DECLARE_OUTPUT(Size,std::string); + BBTK_PROCESS(Process); + void Process(); + BBTK_CREATE_WIDGET(CreateWidget); + void CreateWidget(); + +}; + +BBTK_BEGIN_DESCRIBE_BLACK_BOX(ContourVOI,bbtk::WxBlackBox); +BBTK_NAME("ContourVOI"); +BBTK_AUTHOR("Eduardo.Davila [at] creatis.insa-lyon.fr"); +BBTK_DESCRIPTION("define VOI widget"); +//BBTK_CATEGORY("__CategoryBlackBox__"); + BBTK_INPUT(ContourVOI,Title,"Title prepended to the text",std::string,""); + BBTK_INPUT(ContourVOI,In,"Input Image", vtkImageData *,"" ); + BBTK_INPUT(ContourVOI,wxVtkBaseView,"maracas visu wxVtkBaseView",wxVtkBaseView*,""); + BBTK_OUTPUT(ContourVOI,Index, "Index" , std::string,""); + BBTK_OUTPUT(ContourVOI,Size, "Size" , std::string,""); +BBTK_END_DESCRIBE_BLACK_BOX(ContourVOI); +} +// EO namespace bbmaracasvisu + +#endif // __bbmaracasvisuContourVOI_h_INCLUDED__ +#endif // _USE_WXWIDGETS_ + diff --git a/bbtk/src/bbmaracasvisuHistogramView.cxx b/bbtk/src/bbmaracasvisuHistogramView.cxx new file mode 100644 index 0000000..7eab151 --- /dev/null +++ b/bbtk/src/bbmaracasvisuHistogramView.cxx @@ -0,0 +1,44 @@ +#include "bbmaracasvisuHistogramView.h" +#include "bbmaracasvisuPackage.h" + +#include "Histogram.h" + +namespace bbmaracasvisu +{ + +BBTK_ADD_BLACK_BOX_TO_PACKAGE(maracasvisu,HistogramView) +BBTK_BLACK_BOX_IMPLEMENTATION(HistogramView,bbtk::WxBlackBox); + +//------------------------------------------------ +void HistogramView::Process() +{ +} + +//------------------------------------------------ +void HistogramView::CreateWidget() +{ + bbtkDebugMessageInc("Core",9,"HistogramViewWindow::CreateWidget()"<GetLstImageFiles( &lstStringFileName ); + bbSetOutputLstFileName( &lstStringFileName ); + bbSetOutputType( wxilpd->GetType() ); +} + +//------------------------------------------------------------ +void ILPD::CreateWidget() +{ + wxILPD *wxilpd = new wxILPD ( bbGetWxParent() ); + ILPDViewListPatient* _ilpdViewListPatient = new ILPDViewListPatient( new ILPDViewWxWindow(wxilpd) ); + + bbSetOutputWidget( wxilpd ); + bbSetOutputType( -999 ); + bbSetOutputLstFileName( NULL ); +} + +//------------------------------------------------------------ +void ILPD::bbUserConstructor() +{ +} + +//------------------------------------------------------------ +void ILPD::bbUserCopyConstructor() +{ +} + +//------------------------------------------------------------ +void ILPD::bbUserDestructor() +{ +} + + +} +// EO namespace bbmaracasvisu + + diff --git a/bbtk/src/bbmaracasvisuILPD._h_ b/bbtk/src/bbmaracasvisuILPD._h_ new file mode 100644 index 0000000..1315ae8 --- /dev/null +++ b/bbtk/src/bbmaracasvisuILPD._h_ @@ -0,0 +1,46 @@ +#ifdef _USE_WXWIDGETS_ +#ifndef __bbmaracasvisuILPD_h_INCLUDED__ +#define __bbmaracasvisuILPD_h_INCLUDED__ +#include "bbtkWxBlackBox.h" + +namespace bbmaracasvisu +{ + +class /*BBTK_EXPORT*/ ILPD + : + public bbtk::WxBlackBox +{ + BBTK_BLACK_BOX_INTERFACE(ILPD,bbtk::WxBlackBox); +//================================================================== +/// User callback called in the box contructor +virtual void bbUserConstructor(); +/// User callback called in the box copy constructor +virtual void bbUserCopyConstructor(); +/// User callback called in the box destructor +virtual void bbUserDestructor(); +//================================================================== + BBTK_DECLARE_OUTPUT(LstFileName, std::vector * ); + BBTK_DECLARE_OUTPUT(Type,int); + + BBTK_PROCESS(Process); + void Process(); + BBTK_CREATE_WIDGET(CreateWidget); + void CreateWidget(); +private: + std::vector lstStringFileName; +}; + +BBTK_BEGIN_DESCRIBE_BLACK_BOX(ILPD,bbtk::WxBlackBox); +BBTK_NAME("ILPD"); +BBTK_AUTHOR("eduardo.davila [at] creatis.insa-lyon.fr"); +BBTK_DESCRIPTION("Inteface list patient DICOM"); +BBTK_CATEGORY("read/write"); + BBTK_OUTPUT(ILPD,LstFileName,"List of files names", std::vector *,"" ); + BBTK_OUTPUT(ILPD,Type,"Type of image (default -999) -999=Unkown -1=lst-ILPD 0=Maracas-Raw 100=Maracas-Dicom 200=Maracas-lstRaw 300=Maracas-lstAsciiRaw",int,""); +BBTK_END_DESCRIBE_BLACK_BOX(ILPD); +} +// EO namespace bbmaracasvisu + +#endif // __bbmaracasvisuILPD_h_INCLUDED__ +#endif // _USE_WXWIDGETS_ + diff --git a/bbtk/src/bbmaracasvisuILPDwithImage._cxx_ b/bbtk/src/bbmaracasvisuILPDwithImage._cxx_ new file mode 100644 index 0000000..3e7ff63 --- /dev/null +++ b/bbtk/src/bbmaracasvisuILPDwithImage._cxx_ @@ -0,0 +1,56 @@ +#include "bbmaracasvisuILPDwithImage.h" +#include "bbmaracasvisuPackage.h" + +#include "wxILPDwithImage.h" + + +namespace bbmaracasvisu +{ + +BBTK_ADD_BLACK_BOX_TO_PACKAGE(maracasvisu,ILPDwithImage) +BBTK_BLACK_BOX_IMPLEMENTATION(ILPDwithImage,bbtk::WxBlackBox); + +//------------------------------------------------------------ +void ILPDwithImage::Process() +{ + wxILPDwithImage *wxilpdwithimage = (wxILPDwithImage *)bbGetOutputWidget(); + std::vector lstStringFileName; + wxilpdwithimage->GetWxILPD()->GetLstImageFiles( &lstStringFileName ); + + lstStringFileNameTMP.clear(); + + int i,size = lstStringFileName.size(); + for ( i=0 ; ic_str() ); + } // for + + bbSetOutputLstFileName( lstStringFileNameTMP ); + bbSetOutputType( wxilpdwithimage->GetWxILPD()->GetType() ); +} + +//------------------------------------------------------------ +void ILPDwithImage::CreateWidget() +{ + bbSetOutputWidget( new wxILPDwithImage ( bbGetWxParent() ) ); + bbSetOutputType( -999 ); +} + +//------------------------------------------------------------ +void ILPDwithImage::bbUserConstructor() +{ +} + +//------------------------------------------------------------ +void ILPDwithImage::bbUserCopyConstructor() +{ +} + +//------------------------------------------------------------ +void ILPDwithImage::bbUserDestructor() +{ +} + +} +// EO namespace bbmaracasvisu + + diff --git a/bbtk/src/bbmaracasvisuILPDwithImage._h_ b/bbtk/src/bbmaracasvisuILPDwithImage._h_ new file mode 100644 index 0000000..7b9e126 --- /dev/null +++ b/bbtk/src/bbmaracasvisuILPDwithImage._h_ @@ -0,0 +1,48 @@ +#ifdef _USE_WXWIDGETS_ +#ifndef __bbmaracasvisuILPDwithImage_h_INCLUDED__ +#define __bbmaracasvisuILPDwithImage_h_INCLUDED__ +#include "bbtkWxBlackBox.h" + +namespace bbmaracasvisu +{ + +class /*BBTK_EXPORT*/ ILPDwithImage + : + public bbtk::WxBlackBox +{ + BBTK_BLACK_BOX_INTERFACE(ILPDwithImage,bbtk::WxBlackBox); +//================================================================== +/// User callback called in the box contructor +virtual void bbUserConstructor(); +/// User callback called in the box copy constructor +virtual void bbUserCopyConstructor(); +/// User callback called in the box destructor +virtual void bbUserDestructor(); +//================================================================== + BBTK_DECLARE_OUTPUT(LstFileName,std::vector ); + BBTK_DECLARE_OUTPUT(Type,int); + BBTK_PROCESS(Process); + void Process(); + BBTK_CREATE_WIDGET(CreateWidget); + void CreateWidget(); + +private: + std::vector lstStringFileNameTMP; + + +}; + +BBTK_BEGIN_DESCRIBE_BLACK_BOX(ILPDwithImage,bbtk::WxBlackBox); +BBTK_NAME("ILPDwithImage"); +BBTK_AUTHOR("eduardo.davila [at] creatis.insa-lyon.fr"); +BBTK_DESCRIPTION("Interface list patient DICOM with Image"); +BBTK_CATEGORY("read/write"); + BBTK_OUTPUT(ILPDwithImage,LstFileName,"List of files names", std::vector ,""); + BBTK_OUTPUT(ILPDwithImage,Type,"Type of image (default -999) -999=Unkown -1=lst-ILPD 0=Maracas-Raw 100=Maracas-Dicom 200=Maracas-lstRaw 300=Maracas-lstAsciiRaw",int,""); +BBTK_END_DESCRIBE_BLACK_BOX(ILPDwithImage); +} +// EO namespace bbmaracasvisu + +#endif // __bbmaracasvisuILPDwithImage_h_INCLUDED__ +#endif // _USE_WXWIDGETS_ + diff --git a/bbtk/src/bbmaracasvisuImageBrowserReader._cxx_ b/bbtk/src/bbmaracasvisuImageBrowserReader._cxx_ new file mode 100644 index 0000000..db63c9e --- /dev/null +++ b/bbtk/src/bbmaracasvisuImageBrowserReader._cxx_ @@ -0,0 +1,160 @@ +#include "bbmaracasvisuImageBrowserReader.h" +#include "bbmaracasvisuPackage.h" + +#include + +#include + +namespace bbmaracasvisu +{ + + //------------------------------------------------------------------------------------------------------------------------------------ + // Event handling auxiliar class + //------------------------------------------------------------------------------------------------------------------------------------ + + //-------------------------------------------------------------------------------------------------------------------------------- + // Constructors ans destructors + //-------------------------------------------------------------------------------------------------------------------------------- + wxMaracasImageBrowser02_EvtHandler::wxMaracasImageBrowser02_EvtHandler( + ImageBrowserReader *bbParent, + wxMaracasImageBrowser02 * wxmaracasimagebrowser02 + ) + :wxEvtHandler() + { + mbbtkImageBrowserReader = bbParent; + mmaracasimagebrowser02 = wxmaracasimagebrowser02; + + wxmaracasimagebrowser02->PushEventHandler(this); + Connect(mmaracasimagebrowser02->GetId(),wxEVT_MARACASIMAGEBROWSERCUTIMAGE,(wxObjectEventFunction) (wxCommandEventFunction) &wxMaracasImageBrowser02_EvtHandler::OnCutImage ); + } + + //-------------------------------------------------------------------------------------------------------------------------------- + wxMaracasImageBrowser02_EvtHandler :: ~wxMaracasImageBrowser02_EvtHandler() + { + } + + //-------------------------------------------------------------------------------------------------------------------------------- + void wxMaracasImageBrowser02_EvtHandler :: OnCutImage(wxCommandEvent& event) + { + mbbtkImageBrowserReader->DefineImageOutput(); + } + +//-------------------------------------------------------------------- +//-------------------------------------------------------------------- +//-------------------------------------------------------------------- + + + + +BBTK_ADD_BLACK_BOX_TO_PACKAGE(maracasvisu,ImageBrowserReader) +BBTK_BLACK_BOX_IMPLEMENTATION(ImageBrowserReader,bbtk::WxBlackBox); + +//-------------------------------------------------------------------- +void ImageBrowserReader::Process() +{ + + if (marparameters!=NULL){ + delete marparameters; + marparameters = NULL; + } + marparameters = new marParameters(); + + + if (wxmaracasimagebrowser02!=NULL){ + delete wxmaracasimagebrowser02; + delete wxmaracasimagebrowser02_eventHandler; + wxmaracasimagebrowser02 = NULL; + wxmaracasimagebrowser02_eventHandler = NULL; + } + + + if (marfilesbase!=NULL){ + marfilesbase->CleanListImages(); + delete marfilesbase; + marfilesbase = NULL; + } + + if (bbGetInputType()==-1 ) marfilesbase = new marGdcmDicomILPD(marparameters); + if (bbGetInputType()== 0 ) marfilesbase = new marRAWFiles(marparameters); + if (bbGetInputType()== 100) marfilesbase = new marGdcmDicomILPD(marparameters); + if (bbGetInputType()== 200) marfilesbase = new marRAW2Files(marparameters); + if (bbGetInputType()== 300) marfilesbase = new marRAW2AsciiFiles(marparameters); + + if (marfilesbase!=NULL){ + +// marfilesbase->CleanListImages(); + std::vector *lstStringFileName; + lstStringFileName = marfilesbase->GetListImages( ); + int i,size = bbGetInputLstFileName().size(); + for ( i=0 ; ipush_back( new std::string(bbGetInputLstFileName()[i]) ); + } // for + + wxmaracasimagebrowser02 = new wxMaracasImageBrowser02( bbGetOutputWidget() , + marfilesbase , + marfilesbase->getParameters() + ); + wxmaracasimagebrowser02_eventHandler = new wxMaracasImageBrowser02_EvtHandler(this, + wxmaracasimagebrowser02 + ); + + wxBoxSizer *sizer= new wxBoxSizer(wxHORIZONTAL); + sizer->Add( wxmaracasimagebrowser02 , 1, wxALL|wxGROW, 0); + bbGetOutputWidget()->SetSizer(sizer); + bbGetOutputWidget()->Layout(); + + marfilesbase->loadActualSerie( NULL/*this->_progressGauge*/ ); + vtkImageData *dummy = marfilesbase->getVolume( )->castVtk(); + wxmaracasimagebrowser02->LoadData( new marImageData(dummy) ); + wxmaracasimagebrowser02->Start(); + + } // if marfilesbase!=NULL +} + +//-------------------------------------------------------------------- +void ImageBrowserReader::CreateWidget() +{ + bbSetOutputWidget( new wxPanel( bbGetWxParent() , -1 ) ); +} + +//-------------------------------------------------------------------- +void ImageBrowserReader::bbUserConstructor() +{ + bbSetInputType(-999); + marparameters = NULL; + marfilesbase = NULL; + wxmaracasimagebrowser02 = NULL; + wxmaracasimagebrowser02_eventHandler = NULL; +} + +//-------------------------------------------------------------------- +void ImageBrowserReader::bbUserCopyConstructor() +{ +} + +//-------------------------------------------------------------------- +void ImageBrowserReader::bbUserDestructor() +{ +} + +void ImageBrowserReader::DefineImageOutput() +{ + int voi[ 6 ]; + wxmaracasimagebrowser02->ForceToFinisReadActiveImages( ); + wxmaracasimagebrowser02->GetROI( voi ); + + vtkImageData *imagedata; + marDynData *dyndata = new marDynData( marfilesbase->getParameters() ); + dyndata->loadData( marfilesbase->getVolume( ) , voi ); + imagedata = dyndata->getVolume( )->castVtk(); + imagedata->Update(); + bbSetOutputOut( imagedata ); +} + + + +} + +// EO namespace bbmaracasvisu + + diff --git a/bbtk/src/bbmaracasvisuImageBrowserReader._h_ b/bbtk/src/bbmaracasvisuImageBrowserReader._h_ new file mode 100644 index 0000000..62fc7d5 --- /dev/null +++ b/bbtk/src/bbmaracasvisuImageBrowserReader._h_ @@ -0,0 +1,95 @@ +#ifdef _USE_WXWIDGETS_ +#ifndef __bbmaracasvisuImageBrowserReader_h_INCLUDED__ +#define __bbmaracasvisuImageBrowserReader_h_INCLUDED__ +#include "bbtkWxBlackBox.h" + +#include "wxMaracasImageBrowser02.h" + + +namespace bbmaracasvisu +{ + + +//-------------------------------------------------------------------- +//-------------------------------------------------------------------- +//-------------------------------------------------------------------- + + class ImageBrowserReader; + //------------------------------------------------------------------------------------------------------------------------------------ + // Event handling auxiliar class + //------------------------------------------------------------------------------------------------------------------------------------ + class wxMaracasImageBrowser02_EvtHandler : wxEvtHandler + { + public: + //-------------------------------------------------------------------------------------------------------------------------------- + // Constructors ans destructors + //-------------------------------------------------------------------------------------------------------------------------------- + wxMaracasImageBrowser02_EvtHandler(ImageBrowserReader *bbParent,wxMaracasImageBrowser02 * wxmaracasimagebrowser02); + ~wxMaracasImageBrowser02_EvtHandler(); + + //-------------------------------------------------------------------------------------------------------------------------------- + // Min-Max Barrange received events + //-------------------------------------------------------------------------------------------------------------------------------- + void OnCutImage(wxCommandEvent& event); + private: + //-------------------------------------------------------------------------------------------------------------------------------- + // Attributes + //-------------------------------------------------------------------------------------------------------------------------------- + ImageBrowserReader * mbbtkImageBrowserReader; + wxMaracasImageBrowser02 * mmaracasimagebrowser02; + }; + + +//-------------------------------------------------------------------- +//-------------------------------------------------------------------- +//-------------------------------------------------------------------- + + + + +class /*BBTK_EXPORT*/ ImageBrowserReader + : + public bbtk::WxBlackBox +{ + BBTK_BLACK_BOX_INTERFACE(ImageBrowserReader,bbtk::WxBlackBox); +//================================================================== +/// User callback called in the box contructor +virtual void bbUserConstructor(); +/// User callback called in the box copy constructor +virtual void bbUserCopyConstructor(); +/// User callback called in the box destructor +virtual void bbUserDestructor(); +//================================================================== + BBTK_DECLARE_INPUT(LstFileName,std::vector ); + BBTK_DECLARE_INPUT(Type,int); + BBTK_DECLARE_OUTPUT(Out,vtkImageData *); + + BBTK_PROCESS(Process); + void Process(); + BBTK_CREATE_WIDGET(CreateWidget); + void CreateWidget(); + + void DefineImageOutput(); + +private: + marParameters *marparameters; + marFilesBase *marfilesbase; + wxMaracasImageBrowser02 *wxmaracasimagebrowser02; + wxMaracasImageBrowser02_EvtHandler *wxmaracasimagebrowser02_eventHandler; +}; + +BBTK_BEGIN_DESCRIBE_BLACK_BOX(ImageBrowserReader,bbtk::WxBlackBox); +BBTK_NAME("ImageBrowserReader"); +BBTK_AUTHOR("eduardo.davila [at] creatis.insa-lyon.fr"); +BBTK_DESCRIPTION("Read a DICOM/RAW image and select the VOI"); +BBTK_CATEGORY("read/write"); + BBTK_INPUT(ImageBrowserReader,LstFileName,"List of files names", std::vector ,""); + BBTK_INPUT(ImageBrowserReader,Type,"Type of image (default -999) -999=Unkown -1=lst-ILPD 0=Maracas-Raw 100=Maracas-Dicom 200=Maracas-lstRaw 300=Maracas-lstAsciiRaw",int,""); + BBTK_OUTPUT(ImageBrowserReader,Out,"Output Image",vtkImageData*,""); +BBTK_END_DESCRIBE_BLACK_BOX(ImageBrowserReader); +} +// EO namespace bbmaracasvisu + +#endif // __bbmaracasvisuImageBrowserReader_h_INCLUDED__ +#endif // _USE_WXWIDGETS_ + diff --git a/bbtk/src/bbmaracasvisuImageChangeInformation.cxx b/bbtk/src/bbmaracasvisuImageChangeInformation.cxx new file mode 100644 index 0000000..6d944d3 --- /dev/null +++ b/bbtk/src/bbmaracasvisuImageChangeInformation.cxx @@ -0,0 +1,41 @@ + +#include "bbmaracasvisuImageChangeInformation.h" +#include "bbmaracasvisuPackage.h" +namespace bbmaracasvisu +{ + +BBTK_ADD_BLACK_BOX_TO_PACKAGE(maracasvisu,ImageChangeInformation) +BBTK_BLACK_BOX_IMPLEMENTATION(ImageChangeInformation,bbtk::AtomicBlackBox); +void ImageChangeInformation::Process() +{ + int ext[6]; + bbGetInputIn()->GetExtent( ext ); + if (mchange!=NULL) { mchange->Delete(); } + mchange = vtkImageChangeInformation::New(); + mchange->SetInput( bbGetInputIn() ); + mchange->SetExtentTranslation( -ext[0], -ext[2], -ext[4] ); + mchange->Update(); //important + + bbSetOutputOut( mchange->GetOutput() ); + +} +void ImageChangeInformation::bbUserConstructor() +{ + mchange=NULL; +} +void ImageChangeInformation::bbUserCopyConstructor() +{ + +} +void ImageChangeInformation::bbUserDestructor() +{ + if (mchange!=NULL) + { + mchange->Delete(); + } +} + +} +// EO namespace bbmaracasvisu + + diff --git a/bbtk/src/bbmaracasvisuImageChangeInformation.h b/bbtk/src/bbmaracasvisuImageChangeInformation.h new file mode 100644 index 0000000..e9751eb --- /dev/null +++ b/bbtk/src/bbmaracasvisuImageChangeInformation.h @@ -0,0 +1,47 @@ +#ifndef __bbmaracasvisuImageChangeInformation_h_INCLUDED__ +#define __bbmaracasvisuImageChangeInformation_h_INCLUDED__ +#include "bbtkAtomicBlackBox.h" +#include "iostream" + +#include "vtkImageData.h" +#include "vtkImageChangeInformation.h" + +namespace bbmaracasvisu +{ + +class /*BBTK_EXPORT*/ ImageChangeInformation + : + public bbtk::AtomicBlackBox +{ + BBTK_BLACK_BOX_INTERFACE(ImageChangeInformation,bbtk::AtomicBlackBox); +//================================================================== +/// User callback called in the box contructor +virtual void bbUserConstructor(); +/// User callback called in the box copy constructor +virtual void bbUserCopyConstructor(); +/// User callback called in the box destructor +virtual void bbUserDestructor(); +//================================================================== + BBTK_DECLARE_INPUT(In,vtkImageData*); + BBTK_DECLARE_OUTPUT(Out,vtkImageData*); + BBTK_PROCESS(Process); + void Process(); + +private: + vtkImageChangeInformation *mchange; + +}; + +BBTK_BEGIN_DESCRIBE_BLACK_BOX(ImageChangeInformation,bbtk::AtomicBlackBox); +BBTK_NAME("ImageChangeInformation"); +BBTK_AUTHOR("eduardo.davila [at] creatis.insa-lyon.fr"); +BBTK_DESCRIPTION("vtkImageData change information. Translate extern to 0,0,0"); + BBTK_CATEGORY("filter"); + BBTK_INPUT(ImageChangeInformation,In,"Input image",vtkImageData*,""); + BBTK_OUTPUT(ImageChangeInformation,Out,"Output image",vtkImageData*,""); +BBTK_END_DESCRIBE_BLACK_BOX(ImageChangeInformation); +} +// EO namespace bbmaracasvisu + +#endif // __bbmaracasvisuImageChangeInformation_h_INCLUDED__ + diff --git a/bbtk/src/bbmaracasvisuPlotterView.cxx b/bbtk/src/bbmaracasvisuPlotterView.cxx new file mode 100644 index 0000000..dae2a95 --- /dev/null +++ b/bbtk/src/bbmaracasvisuPlotterView.cxx @@ -0,0 +1,50 @@ +#include "bbmaracasvisuPlotterView.h" +#include "bbmaracasvisuPackage.h" + +#include "pPlotterScaleX.h" +#include "pPlotterScaleY.h" + + +namespace bbmaracasvisu +{ + +BBTK_ADD_BLACK_BOX_TO_PACKAGE(maracasvisu,PlotterView) +BBTK_BLACK_BOX_IMPLEMENTATION(PlotterView,bbtk::WxBlackBox); + +//--------------------------------------------------- +void PlotterView::Process() +{ +} + +//--------------------------------------------------- +void PlotterView::CreateWidget() +{ + bbtkDebugMessageInc("Core",9,"PlotterView::CreateWxWindow()"<AddLayer(new pPlotterScaleX()); + mwxwidget->AddLayer(new pPlotterScaleY()); + pGraphicalFunction *pGF = mwxwidget->getFunctionForVectors( &(bbGetInputInX()), &(bbGetInputInY()) ); + mwxwidget->addFunction(pGF); + bbtkDebugDecTab("Core",9); + bbSetOutputWidget( mwxwidget ); +} + +//--------------------------------------------------- +void PlotterView::bbUserConstructor() +{ +} + +//--------------------------------------------------- +void PlotterView::bbUserCopyConstructor() +{ +} + +//--------------------------------------------------- +void PlotterView::bbUserDestructor() +{ +} + +} +// EO namespace bbmaracasvisu + + diff --git a/bbtk/src/bbmaracasvisuPlotterView.h b/bbtk/src/bbmaracasvisuPlotterView.h new file mode 100644 index 0000000..ede9e0c --- /dev/null +++ b/bbtk/src/bbmaracasvisuPlotterView.h @@ -0,0 +1,49 @@ +#ifdef _USE_WXWIDGETS_ +#ifndef __bbmaracasvisuPlotterView_h_INCLUDED__ +#define __bbmaracasvisuPlotterView_h_INCLUDED__ +#include "bbtkWxBlackBox.h" + +#include "pPlotterWindow.h" + +namespace bbmaracasvisu +{ + +class /*BBTK_EXPORT*/ PlotterView + : + public bbtk::WxBlackBox +{ + BBTK_BLACK_BOX_INTERFACE(PlotterView,bbtk::WxBlackBox); +//================================================================== +/// User callback called in the box contructor +virtual void bbUserConstructor(); +/// User callback called in the box copy constructor +virtual void bbUserCopyConstructor(); +/// User callback called in the box destructor +virtual void bbUserDestructor(); +//================================================================== + BBTK_DECLARE_INPUT(InX, std::vector ); + BBTK_DECLARE_INPUT(InY, std::vector ); + BBTK_PROCESS(Process); + void Process(); + BBTK_CREATE_WIDGET(CreateWidget); + void CreateWidget(); + +private: + pPlotterWindow *mwxwidget; + +}; + +BBTK_BEGIN_DESCRIBE_BLACK_BOX(PlotterView,bbtk::WxBlackBox); +BBTK_NAME("PlotterView"); +BBTK_AUTHOR("eduardo.davila [at] creatis.insa-lyon.fr"); +BBTK_DESCRIPTION("Plotter Window"); +BBTK_CATEGORY("viewer"); + BBTK_INPUT(PlotterView,InX,"x vector",std::vector,""); + BBTK_INPUT(PlotterView,InY,"y vector",std::vector,""); +BBTK_END_DESCRIBE_BLACK_BOX(PlotterView); +} +// EO namespace bbmaracasvisu + +#endif // __bbmaracasvisuPlotterView_h_INCLUDED__ +#endif // _USE_WXWIDGETS_ + diff --git a/bbtk/src/bbmaracasvisuSliderMinMax.cxx b/bbtk/src/bbmaracasvisuSliderMinMax.cxx new file mode 100644 index 0000000..4987b9f --- /dev/null +++ b/bbtk/src/bbmaracasvisuSliderMinMax.cxx @@ -0,0 +1,135 @@ +#include "bbmaracasvisuSliderMinMax.h" +#include "bbmaracasvisuPackage.h" + + +namespace bbmaracasvisu +{ + + //------------------------------------------------------------------------------------------------------------------------------------ + // Event handling auxiliar class + //------------------------------------------------------------------------------------------------------------------------------------ + + //-------------------------------------------------------------------------------------------------------------------------------- + // Constructors ans destructors + //-------------------------------------------------------------------------------------------------------------------------------- + wxWidgetSliderMinMax :: wxWidgetSliderMinMax(SliderMinMax *bbParent,mBarRange * modelBarRange)//(wxWindow *parent, mBarRange * modelBarRange) + :wxEvtHandler() + { + modBarRange = modelBarRange; + mbbtkSliderMinMax = bbParent; + modBarRange->PushEventHandler(this); + Connect(modBarRange->GetId(),wxEVT_TSBAR,(wxObjectEventFunction) (wxCommandEventFunction) &wxWidgetSliderMinMax::onBarrange ); + Connect(modBarRange->GetId(),wxEVT_TSBAR_ACTUAL,(wxObjectEventFunction) (wxCommandEventFunction) &wxWidgetSliderMinMax::onActualChange_Bar ); + Connect(modBarRange->GetId(),wxEVT_TSBAR_START,(wxObjectEventFunction) (wxCommandEventFunction) &wxWidgetSliderMinMax::onStartChange_Bar ); + Connect(modBarRange->GetId(),wxEVT_TSBAR_END,(wxObjectEventFunction) (wxCommandEventFunction) &wxWidgetSliderMinMax::onEndChange_Bar ); + Connect(modBarRange->GetId(),wxEVT_SELECTION_END,(wxObjectEventFunction) (wxCommandEventFunction) &wxWidgetSliderMinMax::onSelectionEnd ); + Connect(modBarRange->GetId(),wxEVT_TSBAR_MOVED,(wxObjectEventFunction) (wxCommandEventFunction) &wxWidgetSliderMinMax::onMovedBar ); + } + + wxWidgetSliderMinMax :: ~wxWidgetSliderMinMax() + { + } + + + //-------------------------------------------------------------------------------------------------------------------------------- + // Min-Max Barrange received events + //-------------------------------------------------------------------------------------------------------------------------------- + void wxWidgetSliderMinMax :: onBarrange(wxCommandEvent& event) + { + } + void wxWidgetSliderMinMax :: onActualChange_Bar(wxCommandEvent& event) + { + mbbtkSliderMinMax->bbSetOutputOutActual(modBarRange->GetActual()); + mbbtkSliderMinMax->bbSignalOutputModification("OutActual"); + } + void wxWidgetSliderMinMax :: onStartChange_Bar(wxCommandEvent& event) + { + mbbtkSliderMinMax->bbSetOutputOutStart(modBarRange->GetStart()); + mbbtkSliderMinMax->bbSignalOutputModification("OutStart"); + } + void wxWidgetSliderMinMax :: onEndChange_Bar(wxCommandEvent& event) + { + mbbtkSliderMinMax->bbSetOutputOutEnd(modBarRange->GetEnd()); + mbbtkSliderMinMax->bbSignalOutputModification("OutEnd"); + } + void wxWidgetSliderMinMax :: onSelectionEnd(wxCommandEvent& event) + { + } + void wxWidgetSliderMinMax :: onMovedBar(wxCommandEvent& event) + { + } + + + //-------------------------------------------------------------------------- + //------------------------------------------------------------------------- + //-------------------------------------------------------------------------- + //-------------------------------------------------------------------------- + + +BBTK_ADD_BLACK_BOX_TO_PACKAGE(maracasvisu,SliderMinMax) +BBTK_BLACK_BOX_IMPLEMENTATION(SliderMinMax,bbtk::WxBlackBox); + +//------------------------------------------------------ +void SliderMinMax::Process() +{ + bbSetOutputOutStart(mwxwidget->GetStart()); + bbSetOutputOutEnd(mwxwidget->GetEnd()); + bbSetOutputOutActual(mwxwidget->GetActual()); +} + +//------------------------------------------------------ +void SliderMinMax::CreateWidget() +{ + + bbtkDebugMessageInc("Core",9,"SliderMinMax::CreateWidget()"< SetOrientation( bbGetInputOrientation()==1 ); + mwxwidget -> setActiveStateTo(true); + mwxwidget -> setVisibleLabels( bbGetInputShowLabels()==1 ); + mwxwidget -> setDeviceEndMargin(10); + mwxwidget -> setRepresentedValues(bbGetInputInMin(), bbGetInputInMax()); + mwxwidget -> setDeviceBlitStart(10,10); + mwxwidget -> setIfWithActualDrawed(bbGetInputShowActual()); + mwxwidget -> SetStart(bbGetInputInMinShow()); + mwxwidget -> SetEnd(bbGetInputInMaxShow()); + wxWidgetSliderMinMax * eventHandler = new wxWidgetSliderMinMax(this, mwxwidget); + bbtkDebugDecTab("Core",9); + + bbSetOutputWidget( mwxwidget ); + + +} + +//------------------------------------------------------ +void SliderMinMax::bbUserConstructor() +{ + bbSetInputOrientation(1); + bbSetInputInW(200); + bbSetInputInH(65); + bbSetInputInMax(200); + bbSetInputInMin(1); + bbSetInputInMaxShow(200); + bbSetInputInMinShow(1); + bbSetInputShowLabels(1); + bbSetInputShowActual(true); + + bbSetOutputOutStart(0); + bbSetOutputOutEnd(0); + bbSetOutputOutActual(0); +} + +//------------------------------------------------------ +void SliderMinMax::bbUserCopyConstructor() +{ +} + +//------------------------------------------------------ +void SliderMinMax::bbUserDestructor() +{ +} + +} +// EO namespace bbmaracasvisu + + diff --git a/bbtk/src/bbmaracasvisuSliderMinMax.h b/bbtk/src/bbmaracasvisuSliderMinMax.h new file mode 100644 index 0000000..14c9835 --- /dev/null +++ b/bbtk/src/bbmaracasvisuSliderMinMax.h @@ -0,0 +1,112 @@ +#ifdef _USE_WXWIDGETS_ +#ifndef __bbmaracasvisuSliderMinMax_h_INCLUDED__ +#define __bbmaracasvisuSliderMinMax_h_INCLUDED__ +#include "bbtkWxBlackBox.h" + +#include "mBarRange.h" + +namespace bbmaracasvisu +{ + + +//-------------------------------------------------------------------------------------------------------------------------------- +//-------------------------------------------------------------------------------------------------------------------------------- +//-------------------------------------------------------------------------------------------------------------------------------- + + class SliderMinMax; + //------------------------------------------------------------------------------------------------------------------------------------ + // Event handling auxiliar class + //------------------------------------------------------------------------------------------------------------------------------------ + class wxWidgetSliderMinMax : wxEvtHandler + { + public: + //-------------------------------------------------------------------------------------------------------------------------------- + // Constructors ans destructors + //-------------------------------------------------------------------------------------------------------------------------------- + wxWidgetSliderMinMax(SliderMinMax *bbParent,mBarRange * modelBarRange); + ~wxWidgetSliderMinMax(); + + //-------------------------------------------------------------------------------------------------------------------------------- + // Min-Max Barrange received events + //-------------------------------------------------------------------------------------------------------------------------------- + void onBarrange(wxCommandEvent& event); + void onActualChange_Bar(wxCommandEvent& event); + void onStartChange_Bar(wxCommandEvent& event); + void onEndChange_Bar(wxCommandEvent& event); + void onSelectionEnd(wxCommandEvent& event); + void onMovedBar(wxCommandEvent& event); + + private: + //-------------------------------------------------------------------------------------------------------------------------------- + // Attributes + //-------------------------------------------------------------------------------------------------------------------------------- + SliderMinMax * mbbtkSliderMinMax; + mBarRange * modBarRange; + }; + + + +//-------------------------------------------------------------------------------------------------------------------------------- +//-------------------------------------------------------------------------------------------------------------------------------- +//-------------------------------------------------------------------------------------------------------------------------------- + + + +class /*BBTK_EXPORT*/ SliderMinMax + : + public bbtk::WxBlackBox +{ + BBTK_BLACK_BOX_INTERFACE(SliderMinMax,bbtk::WxBlackBox); +//================================================================== +/// User callback called in the box contructor +virtual void bbUserConstructor(); +/// User callback called in the box copy constructor +virtual void bbUserCopyConstructor(); +/// User callback called in the box destructor +virtual void bbUserDestructor(); +//================================================================== + BBTK_DECLARE_INPUT(Orientation, int); + BBTK_DECLARE_INPUT(InW, int); + BBTK_DECLARE_INPUT(InH, int); + BBTK_DECLARE_INPUT(InMax, int ); + BBTK_DECLARE_INPUT(InMin, int ); + BBTK_DECLARE_INPUT(InMaxShow, int ); + BBTK_DECLARE_INPUT(InMinShow, int ); + BBTK_DECLARE_INPUT(ShowLabels, int ); + BBTK_DECLARE_INPUT(ShowActual, bool ); + BBTK_DECLARE_OUTPUT(OutStart,int); + BBTK_DECLARE_OUTPUT(OutEnd,int); + BBTK_DECLARE_OUTPUT(OutActual,int); + BBTK_PROCESS(Process); + void Process(); + BBTK_CREATE_WIDGET(CreateWidget); + void CreateWidget(); + + private: + mBarRange* mwxwidget; +}; + +BBTK_BEGIN_DESCRIBE_BLACK_BOX(SliderMinMax,bbtk::WxBlackBox); +BBTK_NAME("SliderMinMax"); +BBTK_AUTHOR("eduardo.davila [at] creatis.insa-lyon.fr"); +BBTK_DESCRIPTION("Slider min max"); +//BBTK_CATEGORY("__CategoryBlackBox__"); + BBTK_INPUT(SliderMinMax,Orientation,"Orientation ", int,""); + BBTK_INPUT(SliderMinMax,InW,"Width ", int,""); + BBTK_INPUT(SliderMinMax,InH,"Height ", int,""); + BBTK_INPUT(SliderMinMax,InMax,"Max value ", int,""); + BBTK_INPUT(SliderMinMax,InMin, "Min value ",int ,""); + BBTK_INPUT(SliderMinMax,InMaxShow,"Max showed value ", int ,""); + BBTK_INPUT(SliderMinMax,InMinShow, "Min showed value ",int ,""); + BBTK_INPUT(SliderMinMax,ShowLabels, "Show labels ",int ,""); + BBTK_INPUT(SliderMinMax,ShowActual, "Show actual (default true)",bool ,""); + BBTK_OUTPUT(SliderMinMax,OutStart,"Min value output",int,""); + BBTK_OUTPUT(SliderMinMax,OutEnd,"Max value output",int,""); + BBTK_OUTPUT(SliderMinMax,OutActual,"Actual value output",int,""); +BBTK_END_DESCRIBE_BLACK_BOX(SliderMinMax); +} +// EO namespace bbmaracasvisu + +#endif // __bbmaracasvisuSliderMinMax_h_INCLUDED__ +#endif // _USE_WXWIDGETS_ + diff --git a/bbtk/src/bbmaracasvisuTransferFunctionView.cxx b/bbtk/src/bbmaracasvisuTransferFunctionView.cxx new file mode 100644 index 0000000..cfa8f01 --- /dev/null +++ b/bbtk/src/bbmaracasvisuTransferFunctionView.cxx @@ -0,0 +1,41 @@ +#include "bbmaracasvisuTransferFunctionView.h" +#include "bbmaracasvisuPackage.h" +namespace bbmaracasvisu +{ + +BBTK_ADD_BLACK_BOX_TO_PACKAGE(maracasvisu,TransferFunctionView) +BBTK_BLACK_BOX_IMPLEMENTATION(TransferFunctionView,bbtk::WxBlackBox); + +//----------------------------------------------------- +void TransferFunctionView::Process() +{ +} + +//----------------------------------------------------- +void TransferFunctionView::CreateWidget() +{ + bbtkDebugMessageInc("Core",9,"TransferFunctionView::CreateWxWindow()"<ConfigureVTK(); + wxFlexGridSizer *sizer=new wxFlexGridSizer(1); + sizer -> Add( wxwidget,0,wxGROW ); + sizer -> AddGrowableCol(1); + panel -> SetSizer(sizer); + panel -> SetAutoLayout(true); + panel -> Layout(); + } +//-------------------------------------------------------------------------- + wxWidgetMPR::~wxWidgetMPR() + { + + } +//-------------------------------------------------------------------------- + /* + Getting the point + */ + std::vector wxWidgetMPR::GetPoint() + { + return point; + } + /* + Getting the render + */ + vtkRenderer* wxWidgetMPR::GetRenderer() + { + if(wxwidget!=NULL) + { + return wxwidget->GetWxvtkmpr3Dview_BB()->GetWxvtk3Dbaseview()->GetRenderer(); + } + else + { + return NULL; + } +} + +//-------------------------------------------------------------------------- + void wxWidgetMPR::Refresh() + { + wxwidget->RefreshView(); + } + +//-------------------------------------------------------------------------- + //--------------- + //Handling events + //--------------- + void wxWidgetMPR::OnRefreshView(wxCommandEvent &event) + { + + if((wxwidget!=NULL) && (mbbViewerMPR!=NULL)) + { + point.clear(); + point.push_back((int)wxwidget->GetVtkMPRBaseData()->GetX()); + point.push_back((int)wxwidget->GetVtkMPRBaseData()->GetY()); + point.push_back((int)wxwidget->GetVtkMPRBaseData()->GetZ()); + mbbViewerMPR->bbSetOutputPoint( GetPoint() ); + mbbViewerMPR->bbSetModifiedStatus(); + mbbViewerMPR->bbSignalOutputModification("Point"); + wxwidget->RefreshView(); + } + } + +//-------------------------------------------------------------------------- + void wxWidgetMPR::OnDClickLeft(wxCommandEvent & event) + { + wxwidget->RefreshView(); + } + +//-------------------------------------------------------------------------- +//-------------------------------------------------------------------------- +//-------------------------------------------------------------------------- + + + + + + + + +BBTK_ADD_BLACK_BOX_TO_PACKAGE(maracasvisu,ViewerMPR) +BBTK_BLACK_BOX_IMPLEMENTATION(ViewerMPR,bbtk::WxBlackBox); +void ViewerMPR::Process() +{ + wxBusyCursor wait; + bbSetOutputPoint( mwxwidgetmpr->GetPoint() ); + bbSetOutputRenderer( mwxwidgetmpr->GetRenderer() ); +} + +void ViewerMPR::CreateWidget() +{ + bbtkDebugMessageInc("Core",9,"ViewerMPR::CreateWidget() " < GetPoint(); + //Get renderer + vtkRenderer* GetRenderer(); + + //refreshView + void Refresh(); + + private: + + ViewerMPR *mbbViewerMPR; + wxMPRWidget2 *wxwidget; + std::vector point; + + DECLARE_EVENT_TABLE( ); + + }; + + //------------------------------------------------------------------------ + //------------------------------------------------------------------------ + //------------------------------------------------------------------------ + + + +class /*BBTK_EXPORT*/ ViewerMPR + : + public bbtk::WxBlackBox +{ + BBTK_BLACK_BOX_INTERFACE(ViewerMPR,bbtk::WxBlackBox); +//================================================================== +/// User callback called in the box contructor +virtual void bbUserConstructor(); +/// User callback called in the box copy constructor +virtual void bbUserCopyConstructor(); +/// User callback called in the box destructor +virtual void bbUserDestructor(); +//================================================================== + BBTK_DECLARE_INPUT(Title,std::string); + BBTK_DECLARE_INPUT(In, vtkImageData *); + BBTK_DECLARE_OUTPUT(Renderer,vtkRenderer *); + BBTK_DECLARE_OUTPUT(Point,std::vector); + BBTK_PROCESS(Process); + void Process(); + BBTK_CREATE_WIDGET(CreateWidget); + void CreateWidget(); + +private: + wxWidgetMPR *mwxwidgetmpr; +}; + +BBTK_BEGIN_DESCRIBE_BLACK_BOX(ViewerMPR,bbtk::WxBlackBox); + BBTK_NAME("ViewerMPR"); + BBTK_AUTHOR("eduardo.davila [at] creatis.insa-lyon.fr"); + BBTK_DESCRIPTION("Maracas viewer MPR + 3D"); + BBTK_CATEGORY("viewer"); + BBTK_INPUT(ViewerMPR,Title,"Viewer MPR + 3D",std::string,""); + BBTK_INPUT(ViewerMPR,In,"Input image",vtkImageData*,""); + BBTK_OUTPUT(ViewerMPR,Renderer," This object accept actors of vtk type (ex. AddActor). ",vtkRenderer*,""); + BBTK_OUTPUT(ViewerMPR,Point," This is the point choose by the user ",std::vector,""); + +BBTK_END_DESCRIBE_BLACK_BOX(ViewerMPR); +} +// EO namespace bbmaracasvisu + +#endif // __bbmaracasvisuViewerMPR_h_INCLUDED__ +#endif // _USE_WXWIDGETS_ + diff --git a/bbtk/src/bbmaracasvisuViewerNV.cxx b/bbtk/src/bbmaracasvisuViewerNV.cxx new file mode 100644 index 0000000..b088ac5 --- /dev/null +++ b/bbtk/src/bbmaracasvisuViewerNV.cxx @@ -0,0 +1,81 @@ +#include "bbmaracasvisuViewerNV.h" +#include "bbmaracasvisuPackage.h" +namespace bbmaracasvisu +{ + +BBTK_ADD_BLACK_BOX_TO_PACKAGE(maracasvisu,ViewerNV) +BBTK_BLACK_BOX_IMPLEMENTATION(ViewerNV,bbtk::WxBlackBox); +//------------------------------------------------------------- +void ViewerNV::Process() +{ + point.clear(); + point.push_back((int)mwxwidget->GetX()); + point.push_back((int)mwxwidget->GetY()); + point.push_back((int)mwxwidget->GetZ()); + bbSetOutputPoint(point); + +// WxBlackBox::Process(); + mwxwidget->SetImage( bbGetInputIn() ); + wxVtkBaseView *wvbv1 = mwxwidget->GetwxVtkBaseView(1); + wxVtkBaseView *wvbv2 = mwxwidget->GetwxVtkBaseView(2); + wxVtkBaseView *wvbv3 = mwxwidget->GetwxVtkBaseView(3); + wxVtkBaseView *wvbv4 = mwxwidget->GetwxVtkBaseView(4); + + //wxwidget->RefreshView(); + + bbSetOutputwxVtkBaseView1( wvbv1 ); + bbSetOutputwxVtkBaseView2( wvbv2 ); + bbSetOutputwxVtkBaseView3( wvbv3 ); + bbSetOutputwxVtkBaseView4( wvbv4 ); + if (wvbv1!=NULL) { bbSetOutputRenderer1( wvbv1->GetRenderer() ); } + if (wvbv2!=NULL) { bbSetOutputRenderer2( wvbv2->GetRenderer() ); } + if (wvbv3!=NULL) { bbSetOutputRenderer3( wvbv3->GetRenderer() ); } + if (wvbv4!=NULL) { bbSetOutputRenderer4( wvbv4->GetRenderer() ); } +} + +//------------------------------------------------------------- +void ViewerNV::CreateWidget() +{ + bbtkDebugMessageInc("Core",9,"ViewerNV::CreateWidget()"< vecNTypeViwer; + vecNTypeViwer.push_back(5); + vecNTypeViwer.push_back(0); + vecNTypeViwer.push_back(1); + vecNTypeViwer.push_back(3); + bbSetInputnTypeView(vecNTypeViwer); + + + bbSetOutputwxVtkBaseView1( NULL ); + bbSetOutputwxVtkBaseView2( NULL ); + bbSetOutputwxVtkBaseView3( NULL ); + bbSetOutputwxVtkBaseView4( NULL ); + bbSetOutputRenderer1( NULL ); + bbSetOutputRenderer2( NULL ); + bbSetOutputRenderer3( NULL ); + bbSetOutputRenderer4( NULL ); +} + +//------------------------------------------------------------- +void ViewerNV::bbUserCopyConstructor() +{ +} + +//------------------------------------------------------------- +void ViewerNV::bbUserDestructor() +{ +} + +} +// EO namespace bbmaracasvisu + + diff --git a/bbtk/src/bbmaracasvisuViewerNV.h b/bbtk/src/bbmaracasvisuViewerNV.h new file mode 100644 index 0000000..c1bd831 --- /dev/null +++ b/bbtk/src/bbmaracasvisuViewerNV.h @@ -0,0 +1,76 @@ +#ifdef _USE_WXWIDGETS_ +#ifndef __bbmaracasvisuViewerNV_h_INCLUDED__ +#define __bbmaracasvisuViewerNV_h_INCLUDED__ +#include "bbtkWxBlackBox.h" + + +#include "vtkImageData.h" +#include "vtkRenderer.h" + +#include "wxVtkBaseView.h" +#include "widgets/wxMPRWidget.h" +#include "widgets/wxMaracas_ViewerWidget.h" +#include "widgets/wxMaracas_N_ViewersWidget.h" + +namespace bbmaracasvisu +{ + +class /*BBTK_EXPORT*/ ViewerNV + : + public bbtk::WxBlackBox +{ + BBTK_BLACK_BOX_INTERFACE(ViewerNV,bbtk::WxBlackBox); +//================================================================== +/// User callback called in the box contructor +virtual void bbUserConstructor(); +/// User callback called in the box copy constructor +virtual void bbUserCopyConstructor(); +/// User callback called in the box destructor +virtual void bbUserDestructor(); +//================================================================== + BBTK_DECLARE_INPUT(Title,std::string); + BBTK_DECLARE_INPUT(In, vtkImageData *); + BBTK_DECLARE_INPUT(nTypeView, std::vector ); + BBTK_DECLARE_OUTPUT(wxVtkBaseView1,wxVtkBaseView*); + BBTK_DECLARE_OUTPUT(wxVtkBaseView2,wxVtkBaseView*); + BBTK_DECLARE_OUTPUT(wxVtkBaseView3,wxVtkBaseView*); + BBTK_DECLARE_OUTPUT(wxVtkBaseView4,wxVtkBaseView*); + BBTK_DECLARE_OUTPUT(Renderer1,vtkRenderer*); + BBTK_DECLARE_OUTPUT(Renderer2,vtkRenderer*); + BBTK_DECLARE_OUTPUT(Renderer3,vtkRenderer*); + BBTK_DECLARE_OUTPUT(Renderer4,vtkRenderer*); + BBTK_DECLARE_OUTPUT(Point,std::vector); + BBTK_PROCESS(Process); + void Process(); + BBTK_CREATE_WIDGET(CreateWidget); + void CreateWidget(); + +private: + wxMaracas_N_ViewersWidget *mwxwidget; + std::vector point; +}; + +BBTK_BEGIN_DESCRIBE_BLACK_BOX(ViewerNV,bbtk::WxBlackBox); +BBTK_NAME("ViewerNV"); +BBTK_AUTHOR("eduardo.davila [at] creatis.insa-lyon.fr"); +BBTK_DESCRIPTION("Viewer : N view configuration 2D and 3D"); + BBTK_CATEGORY("viewer"); + BBTK_INPUT(ViewerNV,Title,"Title prepended to the text",std::string,""); + BBTK_INPUT(ViewerNV,In,"Input image",vtkImageData*,""); + BBTK_INPUT(ViewerNV,nTypeView,"vector of viewer types (default 5 0 1 3 ): -1=Z_2DwithOutAxis 0=Z_2D 1=X_2D 2=Y_2D 3=Plane 4=Sphere 5=3D ",std::vector,""); + BBTK_OUTPUT(ViewerNV,wxVtkBaseView1,"wxVtkBaseView 1",wxVtkBaseView *,""); + BBTK_OUTPUT(ViewerNV,wxVtkBaseView2,"wxVtkBaseView 2",wxVtkBaseView *,""); + BBTK_OUTPUT(ViewerNV,wxVtkBaseView3,"wxVtkBaseView 3",wxVtkBaseView *,""); + BBTK_OUTPUT(ViewerNV,wxVtkBaseView4,"wxVtkBaseView 4",wxVtkBaseView *,""); + BBTK_OUTPUT(ViewerNV,Renderer1,"Renderer 1",vtkRenderer *,""); + BBTK_OUTPUT(ViewerNV,Renderer2,"Renderer 2",vtkRenderer *,""); + BBTK_OUTPUT(ViewerNV,Renderer3,"Renderer 3",vtkRenderer *,""); + BBTK_OUTPUT(ViewerNV,Renderer4,"Renderer 4",vtkRenderer *,""); + BBTK_OUTPUT(ViewerNV,Point,"Axis point",std::vector,""); +BBTK_END_DESCRIBE_BLACK_BOX(ViewerNV); +} +// EO namespace bbmaracasvisu + +#endif // __bbmaracasvisuViewerNV_h_INCLUDED__ +#endif // _USE_WXWIDGETS_ + -- 2.45.1