X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FmaracasVisuLib%2Fsrc%2Finterface%2FwxWindows%2Fwidgets%2FpPlotter%2FHistogramDialogComboBox.cxx;h=15d4495e401a6649a3f87145554f3c633854fcd7;hb=622932e16dd25f4a3160552ab96c92975df59b81;hp=e987f8c1b495c424e8993225607d4f0ea6508527;hpb=439cc05f12e61d0ba090ec0c2ba8701d382238d7;p=creaMaracasVisu.git diff --git a/lib/maracasVisuLib/src/interface/wxWindows/widgets/pPlotter/HistogramDialogComboBox.cxx b/lib/maracasVisuLib/src/interface/wxWindows/widgets/pPlotter/HistogramDialogComboBox.cxx index e987f8c..15d4495 100644 --- a/lib/maracasVisuLib/src/interface/wxWindows/widgets/pPlotter/HistogramDialogComboBox.cxx +++ b/lib/maracasVisuLib/src/interface/wxWindows/widgets/pPlotter/HistogramDialogComboBox.cxx @@ -282,6 +282,7 @@ void HistogramDialogComboBox::InitCurrentPathColorsFuntion() _currentpathColorsFuntion = ""; #ifdef WIN32 _currentpathColorsFuntion = crea::System::GetDllAppPath("bbcreaMaracasVisu"); + _currentpathColorsFuntion.append("/data/"); #endif #ifdef LINUX _currentpathColorsFuntion = crea::System::GetExecutablePath(); @@ -398,13 +399,13 @@ void HistogramDialogComboBox::OnLoadComboBoxData(std::vector"))!=-1) { - int pos1=line.find(">"); + int pos1=line.find(">"); int pos2=line.find("<",pos1+1); std::string x=line.substr(pos1+1,pos2-pos1-1); gvtransfer=atof(x.c_str()); greyvecttransfunct.push_back(gvtransfer); }else if((int)(line.find(""))!=-1) { - int pos1=line.find(">"); + int pos1=line.find(">"); int pos2=line.find("<",pos1+1); std::string x=line.substr(pos1+1,pos2-pos1-1); intensity=atof(x.c_str()); @@ -478,10 +479,11 @@ void HistogramDialogComboBox::OnLoadComboBoxData(std::vector& greylevel,std::vector& value) { - for(int i = 0; i < _greyvecttransfer.size();i++) { + for(int i = 0; i < _greyvecttransfer.size();i++) + { greylevel.push_back(_greyvecttransfer[i]*_maxgreyvalue); value.push_back(_value[i]); - } + } // for i } /** @@ -493,10 +495,12 @@ void HistogramDialogComboBox::GetValuesColorPointsFunction(std::vector& std::vector& green, std::vector& blue) { - for(int i = 0; i < _greyvect.size();i++) { + for(int i = 0; i < _greyvect.size();i++) + { greylevel.push_back(_greyvect[i]*_maxgreyvalue); red.push_back(_redvect[i]); green.push_back(_greenvect[i]); blue.push_back(_bluevect[i]); - } + } // for i } +