X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FmaracasVisuLib%2Fsrc%2Finterface%2FwxWindows%2Fwidgets%2FThresholdImageView%2FColorLayerImageViewPanel.cxx;h=5f08d62021a081d794c46d1884032c0c7265303a;hb=d1de4d9e4121e4602daf11142cbc4b03c386d98a;hp=d574e307ba27d5d20f1375721eaeabac3ad853c6;hpb=badc6cea49d018dec82191a977fc082299a1da35;p=creaMaracasVisu.git diff --git a/lib/maracasVisuLib/src/interface/wxWindows/widgets/ThresholdImageView/ColorLayerImageViewPanel.cxx b/lib/maracasVisuLib/src/interface/wxWindows/widgets/ThresholdImageView/ColorLayerImageViewPanel.cxx index d574e30..5f08d62 100644 --- a/lib/maracasVisuLib/src/interface/wxWindows/widgets/ThresholdImageView/ColorLayerImageViewPanel.cxx +++ b/lib/maracasVisuLib/src/interface/wxWindows/widgets/ThresholdImageView/ColorLayerImageViewPanel.cxx @@ -1,14 +1,41 @@ - +/*# --------------------------------------------------------------------- +# +# Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image +# pour la Sant�) +# Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton +# Previous Authors : Laurent Guigues, Jean-Pierre Roux +# CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil +# +# This software is governed by the CeCILL-B license under French law and +# abiding by the rules of distribution of free software. You can use, +# modify and/ or redistribute the software under the terms of the CeCILL-B +# license as circulated by CEA, CNRS and INRIA at the following URL +# http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html +# or in the file LICENSE.txt. +# +# As a counterpart to the access to the source code and rights to copy, +# modify and redistribute granted by the license, users are provided only +# with a limited warranty and the software's author, the holder of the +# economic rights, and the successive licensors have only limited +# liability. +# +# The fact that you are presently reading this means that you have had +# knowledge of the CeCILL-B license and that you accept its terms. +# ------------------------------------------------------------------------ */ /** - * \file - * \brief ClassThresholdImageViewPanel . + * \file + * \brief ClassThresholdImageViewPanel . */ #include "ColorLayerImageViewPanel.h" #include "OpenImageDialog.h" +#include +//--------------------------------------------------------- +//--------------------------------------------------------- +//--------------------------------------------------------- wxDlgTransformByDimensionBySpacingByPixel::wxDlgTransformByDimensionBySpacingByPixel() { @@ -19,110 +46,197 @@ wxDlgTransformByDimensionBySpacingByPixel::~wxDlgTransformByDimensionBySpacingBy } -void wxDlgTransformByDimensionBySpacingByPixel::GetTransformType(wxWindow *parent , wxString message,int &typeOfTransformation,bool &dlgWxOK) +void wxDlgTransformByDimensionBySpacingByPixel::GetTransformType( + wxWindow *parent , + double baseSpc[3], + double layerSpc[3], + int baseDim[3], + int layerDim[3], + wxString message, + int &typeOfTransformation, + bool &dlgWxOK) { - wxDialog* dial = new wxDialog (parent,-1,_T("Tools"),wxDefaultPosition, wxSize(590,190)); - wxSizer* buttonsSizer = dial->CreateSeparatedButtonSizer(wxOK|wxCANCEL); + wxDialog* dial = new wxDialog (parent,-1,_T("Tools"),wxDefaultPosition, wxSize(500,525),wxRESIZE_BORDER); + wxSizer* buttonsSizer = dial->CreateSeparatedButtonSizer(wxOK); wxBoxSizer *dialSizer = new wxBoxSizer(wxVERTICAL); - + wxString lstOptOperation[3]; - lstOptOperation[0]=_T("By Dimension"); - lstOptOperation[1]=_T("By Spacing"); - lstOptOperation[2]=_T("By Pixel"); - wxRadioBox * radioOpts = new wxRadioBox(dial, -1, _T("Type of Transformation"), wxDefaultPosition, wxSize(270,45), 3 , lstOptOperation, 3, wxRA_SPECIFY_COLS); - - dialSizer->Add( new wxStaticText(dial,-1,message) , 0, wxGROW ); - // dialSizer->Add( new wxStaticText(dial,-1,_T("selected Roi file. Do you want to tranform it?")) , 0, wxGROW ); - dialSizer->Add( new wxStaticText(dial,-1,_T(" ")) , 0, wxGROW ); +// lstOptOperation[0]=_T("By Dimension"); +// lstOptOperation[1]=_T("By Spacing"); +// lstOptOperation[2]=_T("By Pixel"); + + lstOptOperation[0]=_T("Adapt spacing of the Layer Image"); + lstOptOperation[1]=_T("Keep the spacing of the Layer Image"); + lstOptOperation[2]=_T("Use the same spacing of the Base Image"); + + + + wxRadioBox * radioOpts = new wxRadioBox(dial, -1, _T("Type of spacing transformation"), wxDefaultPosition, wxSize(250,160), 3 , lstOptOperation, 1, wxRA_SPECIFY_COLS); + + wxString str; + wxString strBaseSpc(str); + wxString strLayerSpc; + wxString strBaseDim; + wxString strLayerDim; + + strBaseSpc.Printf(wxT("Base spacing: %f %f %f") , baseSpc[0],baseSpc[1],baseSpc[2] ); + strLayerSpc.Printf(wxT("Layer spacing: %f %f %f") , layerSpc[0],layerSpc[1],layerSpc[2] ); + strBaseDim.Printf(wxT("Base dimension: %d %d %d") , baseDim[0],baseDim[1],baseDim[2] ); + strLayerDim.Printf(wxT("Layer dimension: %d %d %d") , layerDim[0],layerDim[1],layerDim[2] ); + + dialSizer->Add( new wxStaticText(dial,-1,_T(" ") ) , 0, wxGROW ); + dialSizer->Add( new wxStaticText(dial,-1, strBaseSpc ) , 0, wxGROW ); + dialSizer->Add( new wxStaticText(dial,-1, strLayerSpc ) , 0, wxGROW ); + dialSizer->Add( new wxStaticText(dial,-1,_T(" ") ) , 0, wxGROW ); + dialSizer->Add( new wxStaticText(dial,-1, strBaseDim ) , 0, wxGROW ); + dialSizer->Add( new wxStaticText(dial,-1, strLayerDim ) , 0, wxGROW ); + dialSizer->Add( new wxStaticText(dial,-1,_T(" ") ) , 0, wxGROW ); + dialSizer->Add( new wxStaticText(dial,-1,message ) , 0, wxGROW ); + dialSizer->Add( new wxStaticText(dial,-1,_T(" ") ) , 0, wxGROW ); dialSizer->Add(radioOpts,0,wxGROW); - dialSizer->Add( new wxStaticText(dial,-1,_T(" ")) , 0, wxGROW ); + dialSizer->Add( new wxStaticText(dial,-1,_T(" ") ) , 0, wxGROW ); dialSizer->Add(buttonsSizer,0,wxGROW); dial->SetSizer(dialSizer, true); dial->Layout(); dial->ShowModal(); - + typeOfTransformation = -1; dlgWxOK = false; - + +printf("EED wxDlgTransformByDimensionBySpacingByPixel::GetTransformType AAA\n"); + if (dial->GetReturnCode() == wxID_OK) { - typeOfTransformation = radioOpts->GetSelection(); - dlgWxOK = true; + typeOfTransformation = radioOpts->GetSelection() + 1; +printf("EED wxDlgTransformByDimensionBySpacingByPixel::GetTransformType BBB %d\n",typeOfTransformation); + dlgWxOK = true; } } -//--------------------------------------------------------- +//--------------------------------------------------------- +//--------------------------------------------------------- +//--------------------------------------------------------- /** ** Begin of the threshold panel **/ ColorLayerImageViewPanel::ColorLayerImageViewPanel(wxWindow* parent, int min, int max, int type) -: wxPanel(parent, -1, wxDefaultPosition, wxDefaultSize, wxBORDER_SUNKEN) +//: wxPanel(parent, -1, wxDefaultPosition, wxSize(600,100), wxBORDER_SUNKEN) + +: wxPanel(parent, -1, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL) + + { + _spcBase[0] = _spcBase[1] = _spcBase[2] = 0; _dimBase[0] = _dimBase[1] = _dimBase[2] = 0; - _colorLayerImageView = new ColorLayerImageView(); - _btn_ReadImage = new wxButton(this, wxID_ANY, _T("Read Image") ); - _thresholdGo = true; - _cb_ShowHide = new wxCheckBox(this, wxID_ANY, _T("Show/Hide layer") ); - _cb_ShowHide->SetValue(_thresholdGo); + _cb_ShowHide = NULL; + _sl_SliceImageX = NULL; + _sl_SliceImageY = NULL; + _sl_SliceImageZ = NULL; + _histogram = NULL; + _histogramMinMaxLevel = NULL; - _cb_SliceFixDinamic = new wxCheckBox(this, wxID_ANY, _T("Slice Fix/Dinamic") ); - _cb_SliceFixDinamic->SetValue(true); + wxFlexGridSizer * sizer = NULL; + _colorLayerImageViewManager = new ColorLayerImageViewManager(); - _sl_SliceImage = new wxSlider(this, wxID_ANY, 0, 1000, 1000, wxDefaultPosition, wxDefaultSize, wxSL_HORIZONTAL|wxSL_LABELS, wxDefaultValidator); - _sl_SliceImage->Enable(false); - - _interpolationCheckBox = new wxCheckBox(this, -1, _T("Image interpolation") ); - _interpolationCheckBox->SetValue(true); - _opacity = new wxSlider(this, wxID_ANY, 6, 1, 10, wxDefaultPosition, wxDefaultSize, wxSL_HORIZONTAL|wxSL_LABELS, wxDefaultValidator); - - if (type==0) - { - } - if (type==1) { - } - - - Connect( _btn_ReadImage->GetId(), wxEVT_COMMAND_BUTTON_CLICKED , (wxObjectEventFunction) &ColorLayerImageViewPanel::onReadImage ); - Connect( _cb_ShowHide->GetId(), wxEVT_COMMAND_CHECKBOX_CLICKED , (wxObjectEventFunction) &ColorLayerImageViewPanel::onThresholdShow ); - Connect( _interpolationCheckBox->GetId(), wxEVT_COMMAND_CHECKBOX_CLICKED, (wxObjectEventFunction) &ColorLayerImageViewPanel::onThresholdInterpolation ); - Connect( _opacity->GetId(), wxEVT_SCROLL_THUMBTRACK, (wxObjectEventFunction) &ColorLayerImageViewPanel::onChangeOpacity ); - Connect( _cb_SliceFixDinamic->GetId(), wxEVT_COMMAND_CHECKBOX_CLICKED, (wxObjectEventFunction) &ColorLayerImageViewPanel::onSliceFixDinamic ); - Connect( _sl_SliceImage->GetId(), wxEVT_SCROLL_THUMBTRACK , (wxObjectEventFunction) &ColorLayerImageViewPanel::onSliceImage ); - Connect( _sl_SliceImage->GetId(), wxEVT_SCROLL_LINEUP , (wxObjectEventFunction) &ColorLayerImageViewPanel::onSliceImage ); - Connect( _sl_SliceImage->GetId(), wxEVT_SCROLL_LINEDOWN , (wxObjectEventFunction) &ColorLayerImageViewPanel::onSliceImage ); - Connect( _sl_SliceImage->GetId(), wxEVT_SCROLL_PAGEUP , (wxObjectEventFunction) &ColorLayerImageViewPanel::onSliceImage ); - Connect( _sl_SliceImage->GetId(), wxEVT_SCROLL_PAGEDOWN , (wxObjectEventFunction) &ColorLayerImageViewPanel::onSliceImage ); - - - wxFlexGridSizer * sizer = new wxFlexGridSizer(1); - if (type==1) + sizer = new wxFlexGridSizer(1); + _btn_ReadImage = new wxButton(this, wxID_ANY, _T("Read Image") ); + _thresholdGo = true; + _cb_ShowHide = new wxCheckBox(this, wxID_ANY, _T("Show/Hide Layer") ); + _cb_ShowHide->SetValue(_thresholdGo); + _cb_SliceFixDinamic = new wxCheckBox(this, wxID_ANY, _T("Fixed/Dynamic Slice") ); + _cb_SliceFixDinamic->SetValue(true); + _sl_SliceImageX = new wxSlider(this, wxID_ANY, 0, 1000, 1000, + wxDefaultPosition, wxDefaultSize, wxSL_HORIZONTAL|wxSL_LABELS, wxDefaultValidator); + _sl_SliceImageY = new wxSlider(this, wxID_ANY, 0, 1000, 1000, + wxDefaultPosition, wxDefaultSize, wxSL_HORIZONTAL|wxSL_LABELS, wxDefaultValidator); + _sl_SliceImageZ = new wxSlider(this, wxID_ANY, 0, 1000, 1000, + wxDefaultPosition, wxDefaultSize, wxSL_HORIZONTAL|wxSL_LABELS, wxDefaultValidator); + _sl_SliceImageX->Enable(false); + _sl_SliceImageY->Enable(false); + _sl_SliceImageZ->Enable(false); + _interpolationCheckBox = new wxCheckBox(this, -1, _T("Interpole") ); + _interpolationCheckBox->SetValue(true); + _opacity = new wxSlider(this, wxID_ANY, 6, 1, 10, wxDefaultPosition, wxDefaultSize, wxSL_HORIZONTAL|wxSL_LABELS, wxDefaultValidator); + + // _histogram = new Histogram( this , -1, wxPoint(0,0), wxSize(400,400), /*wxNO_BORDER*/ wxBORDER_DEFAULT ); + // _histogramMinMaxLevel = new HistogramMinMaxLevel( (HistogramBase*)_histogram ); + + Connect( _btn_ReadImage->GetId(), wxEVT_COMMAND_BUTTON_CLICKED , (wxObjectEventFunction) &ColorLayerImageViewPanel::onReadImage ); + Connect( _cb_ShowHide->GetId(), wxEVT_COMMAND_CHECKBOX_CLICKED , (wxObjectEventFunction) &ColorLayerImageViewPanel::onThresholdShow ); + Connect( _interpolationCheckBox->GetId(), wxEVT_COMMAND_CHECKBOX_CLICKED, (wxObjectEventFunction) &ColorLayerImageViewPanel::onThresholdInterpolation ); + Connect( _opacity->GetId(), wxEVT_SCROLL_THUMBTRACK, (wxObjectEventFunction) &ColorLayerImageViewPanel::onChangeOpacity ); + Connect( _cb_SliceFixDinamic->GetId(), wxEVT_COMMAND_CHECKBOX_CLICKED, (wxObjectEventFunction) &ColorLayerImageViewPanel::onSliceFixDinamic ); + + Connect( _sl_SliceImageX->GetId(), wxEVT_SCROLL_THUMBTRACK , (wxObjectEventFunction) &ColorLayerImageViewPanel::onSliceImage ); + Connect( _sl_SliceImageX->GetId(), wxEVT_SCROLL_LINEUP , (wxObjectEventFunction) &ColorLayerImageViewPanel::onSliceImage ); + Connect( _sl_SliceImageX->GetId(), wxEVT_SCROLL_LINEDOWN , (wxObjectEventFunction) &ColorLayerImageViewPanel::onSliceImage ); + Connect( _sl_SliceImageX->GetId(), wxEVT_SCROLL_PAGEUP , (wxObjectEventFunction) &ColorLayerImageViewPanel::onSliceImage ); + Connect( _sl_SliceImageX->GetId(), wxEVT_SCROLL_PAGEDOWN , (wxObjectEventFunction) &ColorLayerImageViewPanel::onSliceImage ); + + Connect( _sl_SliceImageY->GetId(), wxEVT_SCROLL_THUMBTRACK , (wxObjectEventFunction) &ColorLayerImageViewPanel::onSliceImage ); + Connect( _sl_SliceImageY->GetId(), wxEVT_SCROLL_LINEUP , (wxObjectEventFunction) &ColorLayerImageViewPanel::onSliceImage ); + Connect( _sl_SliceImageY->GetId(), wxEVT_SCROLL_LINEDOWN , (wxObjectEventFunction) &ColorLayerImageViewPanel::onSliceImage ); + Connect( _sl_SliceImageY->GetId(), wxEVT_SCROLL_PAGEUP , (wxObjectEventFunction) &ColorLayerImageViewPanel::onSliceImage ); + Connect( _sl_SliceImageY->GetId(), wxEVT_SCROLL_PAGEDOWN , (wxObjectEventFunction) &ColorLayerImageViewPanel::onSliceImage ); + + Connect( _sl_SliceImageZ->GetId(), wxEVT_SCROLL_THUMBTRACK , (wxObjectEventFunction) &ColorLayerImageViewPanel::onSliceImage ); + Connect( _sl_SliceImageZ->GetId(), wxEVT_SCROLL_LINEUP , (wxObjectEventFunction) &ColorLayerImageViewPanel::onSliceImage ); + Connect( _sl_SliceImageZ->GetId(), wxEVT_SCROLL_LINEDOWN , (wxObjectEventFunction) &ColorLayerImageViewPanel::onSliceImage ); + Connect( _sl_SliceImageZ->GetId(), wxEVT_SCROLL_PAGEUP , (wxObjectEventFunction) &ColorLayerImageViewPanel::onSliceImage ); + Connect( _sl_SliceImageZ->GetId(), wxEVT_SCROLL_PAGEDOWN , (wxObjectEventFunction) &ColorLayerImageViewPanel::onSliceImage ); + + sizer -> Add( new wxStaticText(this,-1,_T("Color Image Layer")) , 1, wxGROW ); + sizer -> Add( _btn_ReadImage , 1, wxGROW ); + sizer -> Add( new wxStaticText(this,-1,_T(" ")) , 1, wxGROW ); + sizer -> Add( new wxStaticText(this,-1,_T("Opacity Level")) , 1, wxGROW ); + sizer -> Add( _opacity , 1, wxGROW ); + sizer -> Add( new wxStaticText(this,-1,_T(" ")) , 1, wxGROW ); + sizer -> Add( _cb_ShowHide , 1, wxGROW ); + sizer -> Add( new wxStaticText(this,-1,_T(" ")) , 1, wxGROW ); + sizer -> Add( _interpolationCheckBox , 1, wxGROW ); + + sizer -> Add( new wxStaticText(this,-1,_T(" ")) , 1, wxGROW ); + sizer -> Add( new wxStaticText(this,-1,_T("Slice ")) , 1, wxGROW ); + sizer -> Add( _sl_SliceImageX , 1, wxGROW ); + sizer -> Add( _sl_SliceImageY , 1, wxGROW ); + sizer -> Add( _sl_SliceImageZ , 1, wxGROW ); + sizer -> Add( _cb_SliceFixDinamic , 1, wxGROW ); + // sizer -> Add( _histogramMinMaxLevel->GetWindow() , 1, wxGROW ); + + } // type==1 + + + if (type==2) { - sizer -> Add( new wxStaticText(this,-1,_T("Color Image Layer")) , 1, wxGROW ); - sizer -> Add( _btn_ReadImage, 1, wxGROW ); - sizer -> Add( new wxStaticText(this,-1,_T(" ")) , 1, wxGROW ); - } - sizer -> Add( new wxStaticText(this,-1,_T("Opacity Level")) , 1, wxGROW ); - sizer -> Add( _opacity, 1, wxGROW ); - sizer -> Add( new wxStaticText(this,-1,_T(" ")) , 1, wxGROW ); - sizer -> Add( _cb_ShowHide, 1, wxGROW ); - sizer -> Add( new wxStaticText(this,-1,_T(" ")) , 1, wxGROW ); - sizer -> Add( _interpolationCheckBox, 1, wxGROW ); - - sizer -> Add( new wxStaticText(this,-1,_T(" ")) , 1, wxGROW ); - sizer -> Add( new wxStaticText(this,-1,_T("Slice ")) , 1, wxGROW ); - sizer -> Add( _sl_SliceImage, 1, wxGROW ); - sizer -> Add( _cb_SliceFixDinamic, 1, wxGROW ); + sizer = new wxFlexGridSizer(2); + _interpolationCheckBox = new wxCheckBox(this, -1, _T("Interpolate") ); + _interpolationCheckBox->SetValue(true); + _opacity = new wxSlider(this, wxID_ANY, 6, 0, 10, wxDefaultPosition, wxSize(2,40), wxSL_HORIZONTAL|wxSL_LABELS, wxDefaultValidator); + + Connect( _interpolationCheckBox->GetId(), wxEVT_COMMAND_CHECKBOX_CLICKED, (wxObjectEventFunction) &ColorLayerImageViewPanel::onThresholdInterpolation ); + Connect( _opacity->GetId(), wxEVT_SCROLL_THUMBTRACK, (wxObjectEventFunction) &ColorLayerImageViewPanel::onChangeOpacity ); +// sizer -> Add( new wxStaticText(this,-1,_T("Opacity Level")) , 1, wxEXPAND ); + sizer -> Add( _opacity , 1, wxGROW ); + sizer -> Add( _interpolationCheckBox , 1, wxGROW ); + sizer->AddGrowableCol(0); + + } // type==2 + this->SetSizer( sizer ); - this->SetAutoLayout( true ); - this->Layout(); +// this->SetAutoLayout( true ); +// this->Layout(); + + //CM Sets the default fitting mode to Pixel mode. + _fitting_mode = 3; + // EO CM EED } //---------------------------------------------------------------------------- @@ -132,175 +246,227 @@ ColorLayerImageViewPanel::~ColorLayerImageViewPanel() //---------------------------------------------------------------------------- -void ColorLayerImageViewPanel::SetColorLayerImageView(ColorLayerImageView* colorLayerImageView) +ColorLayerImageViewManager* ColorLayerImageViewPanel::GetColorLayerImageViewManager() { - _colorLayerImageView = colorLayerImageView; + return _colorLayerImageViewManager; } -// This is the new spacing of the background image (1,1,1) -void ColorLayerImageViewPanel::SetBaseSpacing(double spc[3]) + +//---------------------------------------------------------------------------- +void ColorLayerImageViewPanel::SetImage(vtkImageData *img) { - _spcBase[0] = spc[0]; - _spcBase[1] = spc[1]; - _spcBase[2] = spc[2]; - - _spcBase[0] = 1; - _spcBase[1] = 1; - _spcBase[2] = 1; + if (img!=NULL) + { + + if (_histogramMinMaxLevel!=NULL) + { + _histogramMinMaxLevel->Configure( img ); + } + _colorLayerImageViewManager->SetImage( img ); + + double spcOriginalLayer[3]; + int dimensionOriginalLayer[3]; + + double spcBase[3]; + int dimensionBase[3]; + + double newSpc[3]; + + GetColorLayerImageViewManager()->GetSpcOriginalLayer(0,spcOriginalLayer); + GetColorLayerImageViewManager()->GetDimensionOriginalLayer(0,dimensionOriginalLayer); + + GetColorLayerImageViewManager()->GetSpcBase(0,spcBase); + GetColorLayerImageViewManager()->GetDimensionBase(0,dimensionBase); + + if (_sl_SliceImageX!=NULL) + { + _sl_SliceImageX->SetRange( 0 , dimensionOriginalLayer[0] ); + _sl_SliceImageY->SetRange( 0 , dimensionOriginalLayer[1] ); + _sl_SliceImageZ->SetRange( 0 , dimensionOriginalLayer[2] ); + } + + + if ( (spcOriginalLayer[0]!=spcBase[0]) || + (spcOriginalLayer[1]!=spcBase[1]) || + (spcOriginalLayer[2]!=spcBase[2]) || + (dimensionOriginalLayer[0]!=dimensionBase[0]) || + (dimensionOriginalLayer[1]!=dimensionBase[1]) || + (dimensionOriginalLayer[2]!=dimensionBase[2]) + ) + { + // CM + int typeOfTransformation; + // In case of the option is set to create a dialog box. + if (_fitting_mode == -1) + { + bool transformOkDlg; + wxString msg = _T("The image resolution of both images are not compatible. How do you want to tranform it? "); + wxDlgTransformByDimensionBySpacingByPixel dlg; + dlg.GetTransformType(this , spcBase , spcOriginalLayer , dimensionBase ,dimensionOriginalLayer ,msg,typeOfTransformation,transformOkDlg); + // CM Reset the default value (Pixel i.e. 3) if the dialog box returned an inappropriate value. + if (transformOkDlg == false) + { + typeOfTransformation = 3; + } + } else { + typeOfTransformation = _fitting_mode; + } // _fitting_mode -1 + + //EO CM + if (typeOfTransformation==1) // Adapt spacing + { + newSpc[0] = spcBase[0] * dimensionBase[0] / dimensionOriginalLayer[0]; + newSpc[1] = spcBase[1] * dimensionBase[1] / dimensionOriginalLayer[1]; + newSpc[2] = spcBase[2] * dimensionBase[2] / dimensionOriginalLayer[2]; + } + + if (typeOfTransformation==2) // keep spacing of the Layer Image + { + newSpc[0] = spcOriginalLayer[0]; + newSpc[1] = spcOriginalLayer[1]; + newSpc[2] = spcOriginalLayer[2]; + } + + if (typeOfTransformation==3) // Use the spacing of the Base Image + { + newSpc[0] = spcBase[0]; + newSpc[1] = spcBase[1]; + newSpc[2] = spcBase[2]; + } + GetColorLayerImageViewManager()->SetNewSpacingLayer(newSpc); + } else { + newSpc[0] = spcOriginalLayer[0]; + newSpc[1] = spcOriginalLayer[1]; + newSpc[2] = spcOriginalLayer[2]; + } // spc !_spcBase dim!__dimBase + + GetColorLayerImageViewManager()->SetNewSpacingLayer(newSpc); + + } // _firsttime_mode + + if (_active==true) + { + _colorLayerImageViewManager->onThreshold(); + RefreshView(); + } // _ative + +} + + +void ColorLayerImageViewPanel::RefreshView() +{ +//EED01 _colorLayerImageView->Refresh(); + _colorLayerImageViewManager->Refresh(); } -// This is the Original spacing of the background image -void ColorLayerImageViewPanel::SetOriginalSpacing(double spc[3]) +//---------------------------------------------------------------------------- +void ColorLayerImageViewPanel::SetFittingMode(int fitting_mode) { - _spcOrg[0] = spc[0]; - _spcOrg[1] = spc[1]; - _spcOrg[2] = spc[2]; + // CM Sets the fitting mode if an appropriate value is provided. + if (fitting_mode == -1 || fitting_mode == 1 || fitting_mode == 2 || fitting_mode == 3) + { + _fitting_mode = fitting_mode; + } + //Otherwise, an exception should be thrown (value 0 is fine, it corresponds to an empty field i.e. the default value is kept). + else if (fitting_mode != 0) + std::cout << "CM ERROR!!! The fitting mode provided has an inappropriate value. It should be an int between -1 ; 1 ; 2 ; 3, but its value is :" << fitting_mode << ". The default value will be set instead, i.e. Pixel transformation (3)." << std::endl; + //EO CM } -// This is the size in pixels of the background image -void ColorLayerImageViewPanel::SetBaseDimension(int dim[3]) +//---------------------------------------------------------------------------- +int ColorLayerImageViewPanel::GetFittingMode() { - _dimBase[0] = dim[0]; - _dimBase[1] = dim[1]; - _dimBase[2] = dim[2]; + return _fitting_mode; } //---------------------------------------------------------------------------- void ColorLayerImageViewPanel::onReadImage(wxCommandEvent& event) { // EED ??? -// creaImageIO::WxSimpleDlg w(0,_T("Select your image"),"creaContours_Descriptor.dscp","creatisContours DB"); -// w.ShowModal(); +// creaImageIO::WxSimpleDlg w(0,_T("Select your image"),"creaContours_Descriptor.dscp","creatisContours DB"); +// w.ShowModal(); printf("EED ColorLayerImageViewPanel::onReadImage ....WARNING... Read dlg. all images creaImageIO ... ???\n"); creaMaracasVisuKernel::OpenImageDialog diag = creaMaracasVisuKernel::OpenImageDialog(); - _colorLayerImageView->SetImage( diag.getImageData() ); - - double spc[3]; - diag.getImageData()->GetSpacing(spc); - - int dim[3]; - int ext[6]; - diag.getImageData()->GetWholeExtent(ext); - dim[0] = ext[1]-ext[0]; - dim[1] = ext[3]-ext[2]; - dim[2] = ext[5]-ext[4]; - _sl_SliceImage->SetRange( 0 , dim[2] ); - - if ( (spc[0]!=_spcBase[0]) || (spc[1]!=_spcBase[1]) || (spc[2]!=_spcBase[2]) || - (dim[0]!=_dimBase[0]) || (spc[1]!=_spcBase[1]) || (spc[2]!=_spcBase[2]) - ) - { - - bool transformOkDlg; - int typeOfTransformation; - wxString msg = _T("The image resolution of both images are not compatible. Do you want to tranform it? "); - wxDlgTransformByDimensionBySpacingByPixel dlg; - dlg.GetTransformType(this,msg,typeOfTransformation,transformOkDlg); - -printf("EED ColorLayerImageViewPanel::onReadImage call dialog spc size,dim...???\n"); - - if (typeOfTransformation==0) // make dimensions equals - { - printf("EED ColorLayerImageViewPanel::onReadImage ...WARNNING.... dif size image spc*dim ofnew image ...???\n"); - spc[0]=_spcBase[0]*_dimBase[0]/dim[0]; - spc[1]=_spcBase[1]*_dimBase[1]/dim[1]; - spc[2] = 1; - } - - if (typeOfTransformation==1) // make spacing equals - { - spc[0] = ( _spcBase[0]/spc[0] ) * _spcOrg[0]; - spc[1] = ( _spcBase[1]/spc[1] ) * _spcOrg[1]; - spc[2] = ( _spcBase[2]/spc[2] ) * _spcOrg[2]; - } - - if (typeOfTransformation==2) // make spacing = 1 - { - spc[0] = 1; - spc[1] = 1; - spc[2] = 1; - } - - diag.getImageData()->SetSpacing(spc); - } // spc !_spcBase dim!__dimBase - - _colorLayerImageView->onThreshold(); - _colorLayerImageView->GetwxVtkBaseView()->Refresh(); + SetImage( diag.getImageData() ); } //---------------------------------------------------------------------------- void ColorLayerImageViewPanel::onThresholdChange(wxCommandEvent& event) { - if (_thresholdGo) - { - _colorLayerImageView->onThresholdChange(); - _colorLayerImageView->GetwxVtkBaseView()->Refresh(); - //std::cout<< "Valor Min: " << minVal << " & Valor Max: " << maxVal << std::endl; - } + if (_thresholdGo) + { + _colorLayerImageViewManager->onThresholdChange(); + RefreshView(); + //std::cout<< "Valor Min: " << minVal << " & Valor Max: " << maxVal << std::endl; + } // _thresholdGo } //---------------------------------------------------------------------------- void ColorLayerImageViewPanel::onThresholdShow(wxCommandEvent& event) { - _thresholdGo = _cb_ShowHide->GetValue(); - if (_thresholdGo) - { - _colorLayerImageView->onThreshold(); - } - else - { - _colorLayerImageView->onThresholdRemove( ); - } - _colorLayerImageView->GetwxVtkBaseView()->Refresh(); + _thresholdGo = _cb_ShowHide->GetValue(); + _active = _thresholdGo; + if (_thresholdGo) + { + _colorLayerImageViewManager->onThreshold(); + }else{ + _colorLayerImageViewManager->onThresholdRemove( ); + } + RefreshView(); } //---------------------------------------------------------------------------- void ColorLayerImageViewPanel::onThresholdStop() { - if (_thresholdGo) - { - _colorLayerImageView->onThresholdRemove( ); - _thresholdGo=false; - } + if (_thresholdGo) + { + _colorLayerImageViewManager->onThresholdRemove( ); + _thresholdGo=false; + } } //---------------------------------------------------------------------------- void ColorLayerImageViewPanel::onThresholdInterpolation(wxCommandEvent& event) { - _colorLayerImageView->onThresholdInterpolation(_interpolationCheckBox->GetValue()); - _colorLayerImageView->GetwxVtkBaseView()->Refresh(); - + _colorLayerImageViewManager->onThresholdInterpolation(_interpolationCheckBox->GetValue()); + RefreshView(); } //---------------------------------------------------------------------------- void ColorLayerImageViewPanel::onSliceFixDinamic(wxCommandEvent& event) { - bool fixdin = _cb_SliceFixDinamic->GetValue(); - _colorLayerImageView->SetSliceFixDinamic( fixdin ); - if (fixdin==false) - { - _colorLayerImageView->SetZ2( _sl_SliceImage->GetValue() ); - } - _sl_SliceImage->Enable(!fixdin); - _colorLayerImageView->onThreshold(); - _colorLayerImageView->GetwxVtkBaseView()->Refresh(); + bool fixdin = _cb_SliceFixDinamic->GetValue(); + _colorLayerImageViewManager->SetSliceFixDynamic( fixdin ); + if (fixdin==false) + { + _colorLayerImageViewManager->SetX2( _sl_SliceImageX->GetValue() ); + _colorLayerImageViewManager->SetY2( _sl_SliceImageY->GetValue() ); + _colorLayerImageViewManager->SetZ2( _sl_SliceImageZ->GetValue() ); + } + _sl_SliceImageX->Enable(!fixdin); + _sl_SliceImageY->Enable(!fixdin); + _sl_SliceImageZ->Enable(!fixdin); + _colorLayerImageViewManager->onThreshold(); + RefreshView(); } //---------------------------------------------------------------------------- void ColorLayerImageViewPanel::onSliceImage(wxScrollEvent& event) { - _colorLayerImageView->SetZ2( _sl_SliceImage->GetValue() ); - _colorLayerImageView->onThreshold(); - _colorLayerImageView->GetwxVtkBaseView()->Refresh(); + _colorLayerImageViewManager->SetX2( _sl_SliceImageX->GetValue() ); + _colorLayerImageViewManager->SetY2( _sl_SliceImageY->GetValue() ); + _colorLayerImageViewManager->SetZ2( _sl_SliceImageZ->GetValue() ); + _colorLayerImageViewManager->onThreshold(); + RefreshView(); } //---------------------------------------------------------------------------- void ColorLayerImageViewPanel::onChangeOpacity(wxScrollEvent& event) { int opacity = _opacity->GetValue(); - _colorLayerImageView->onThresholdChangeOpacity(opacity); - _colorLayerImageView->GetwxVtkBaseView()->Refresh(); + _colorLayerImageViewManager->onThresholdChangeOpacity(opacity); + RefreshView(); } @@ -310,6 +476,15 @@ bool ColorLayerImageViewPanel::IsVisible() return _thresholdGo; } +//---------------------------------------------------------------------------- +void ColorLayerImageViewPanel::SetActive(bool active) +{ + _active=active; + if (_cb_ShowHide!=NULL) + { + _cb_ShowHide->SetValue( _active ); + } +} // EOF