X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FmaracasVisuLib%2Fsrc%2Finterface%2FwxWindows%2Fwidgets%2FvtkInfoTextImage.cxx;h=7d76ca9aa5761f2cf9dcca7faaea4254fc1bdb0b;hb=fb56e3542582aae7ce16770804c633dbf41300a0;hp=6e901631511c9afa32e430cded6b3d68545b389d;hpb=fe5ff4386e982e131337b3324b787118cbc8df8a;p=creaMaracasVisu.git diff --git a/lib/maracasVisuLib/src/interface/wxWindows/widgets/vtkInfoTextImage.cxx b/lib/maracasVisuLib/src/interface/wxWindows/widgets/vtkInfoTextImage.cxx index 6e90163..7d76ca9 100644 --- a/lib/maracasVisuLib/src/interface/wxWindows/widgets/vtkInfoTextImage.cxx +++ b/lib/maracasVisuLib/src/interface/wxWindows/widgets/vtkInfoTextImage.cxx @@ -1,3 +1,28 @@ +/*# --------------------------------------------------------------------- +# +# 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. +# ------------------------------------------------------------------------ */ + #include "vtkInfoTextImage.h" #include "vtkTextProperty.h" @@ -74,7 +99,7 @@ vtkTextActor *vtkInfoTextImage::Create_Text_Label(int px, int py ) void vtkInfoTextImage::PutWindowLevel() { - int value = (int)( _wxvtk2Dbaseview->_imageViewer2XYZ->GetVtkImageViewer2()->GetWindowLevel()->GetWindow() ); + double value = _wxvtk2Dbaseview->_imageViewer2XYZ->GetVtkImageViewer2()->GetWindowLevel()->GetWindow() ; char zTzxt[20]; char resultText[50]; @@ -82,7 +107,7 @@ void vtkInfoTextImage::PutWindowLevel() //ltoa ( (long)value , zTzxt , 10 ); - sprintf(zTzxt,"%d",value); + sprintf(zTzxt,"%3.4f",value); strcat(resultText,zTzxt); _vtkText_WindowLevel -> SetInput(resultText); @@ -92,14 +117,14 @@ void vtkInfoTextImage::PutWindowLevel() void vtkInfoTextImage::PutColorLevel() { - int value = (int)(_wxvtk2Dbaseview->_imageViewer2XYZ->GetVtkImageViewer2()->GetWindowLevel()->GetLevel()); + double value = _wxvtk2Dbaseview->_imageViewer2XYZ->GetVtkImageViewer2()->GetWindowLevel()->GetLevel(); char zTzxt[20]; char resultText[50]; strcpy(resultText,"c:"); // itoa (value,zTzxt,10); - sprintf(zTzxt,"%d",value); + sprintf(zTzxt,"%3.2f",value); strcat(resultText,zTzxt); _vtkText_ColorLevel -> SetInput(resultText); @@ -272,7 +297,7 @@ void vtkInfoTextImage::PutPixelIntensity(int xx, int yy, int zz) long *pOrg=(long*)imagedata->GetScalarPointer ((int)xx,(int)yy,(int)zz); // itoa (*pOrg,zTzxt,10); double tmp=*pOrg; - sprintf(zTzxt,"%3.2f",tmp); + sprintf(zTzxt,"%3.4f",tmp); } else if (imagedata->GetScalarType()==VTK_UNSIGNED_LONG) @@ -280,7 +305,7 @@ void vtkInfoTextImage::PutPixelIntensity(int xx, int yy, int zz) unsigned long *pOrg=(unsigned long*)imagedata->GetScalarPointer ((int)xx,(int)yy,(int)zz); // itoa (*pOrg,zTzxt,10); double tmp=*pOrg; - sprintf(zTzxt,"%3.2f",tmp); + sprintf(zTzxt,"%3.4f",tmp); } else if (imagedata->GetScalarType()==VTK_FLOAT) @@ -288,7 +313,7 @@ void vtkInfoTextImage::PutPixelIntensity(int xx, int yy, int zz) float *pOrg=(float*)imagedata->GetScalarPointer ((int)xx,(int)yy,(int)zz); // itoa (*pOrg,zTzxt,10); double tmp=(double)*pOrg; - sprintf(zTzxt,"%3.2f",tmp); + sprintf(zTzxt,"%3.4f",tmp); } else if (imagedata->GetScalarType()==VTK_DOUBLE) @@ -296,7 +321,7 @@ void vtkInfoTextImage::PutPixelIntensity(int xx, int yy, int zz) double *pOrg=(double*)imagedata->GetScalarPointer ((int)xx,(int)yy,(int)zz); // itoa (*pOrg,zTzxt,10); double tmp=*pOrg; - sprintf(zTzxt,"%3.2f",tmp); + sprintf(zTzxt,"%3.4f",tmp); } } else