X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=vv%2FvvToolExtractPatient.cxx;h=947b5ffaffae53f6a7608b0073de1efaf0560d3c;hb=ff1d5b8af965e75ecdbc1b0cbff0dad6f3b3c511;hp=c38dde5f2551131bfff117681830a92f2b0ffcad;hpb=83dbd9493090be7eba90abb649b562ade6adc576;p=clitk.git diff --git a/vv/vvToolExtractPatient.cxx b/vv/vvToolExtractPatient.cxx index c38dde5..947b5ff 100644 --- a/vv/vvToolExtractPatient.cxx +++ b/vv/vvToolExtractPatient.cxx @@ -74,7 +74,7 @@ void vvToolExtractPatient::Initialize() { SetToolMenuName("Extract Patient"); SetToolIconFilename(":/common/icons/Patient-overlay.png"); SetToolTip("Extract Patient mask from thorax CT."); - // SetToolExperimental(true); + SetToolExperimental(true); // SetToolInMenu("Segmentation"); } //------------------------------------------------------------------------------ @@ -174,7 +174,7 @@ void vvToolExtractPatient::apply() //if (mFilter) delete mFilter; DD("new filter"); mFilter = new FilterType; // needed when thread cancel the filter - mFilter->StopOnErrorOff(); + // mFilter->StopOnErrorOff(); // mFilter->SetIOVerbose(true); mFilter->AddInputVVImage(mCurrentImage); // CT // mFilter->AddInputVVImage(mPatient); // patient mask @@ -185,7 +185,11 @@ void vvToolExtractPatient::apply() vvThreadedFilter thread; connect(&thread, SIGNAL(ThreadInterrupted()), this, SLOT(ThreadInterrupted())); thread.SetFilter(mFilter); + + try { thread.Update(); + } + catch(std::runtime_error e) { // Check if the thread has been canceled. In this case, return if (m_IsThreadInterrupted) { @@ -196,10 +200,12 @@ void vvToolExtractPatient::apply() disconnect(&thread, SIGNAL(ThreadInterrupted()), this, SLOT(ThreadInterrupted())); // Check error during filter - if (mFilter->HasError()) { + // if (mFilter->HasError()) { QApplication::restoreOverrideCursor(); - QMessageBox::information(this,tr("Error"), mFilter->GetLastError().c_str()); + QMessageBox::information(this,tr("Error"), e.what());//mFilter->GetLastError().c_str()); return; + // } + } // Get output