1 /*=========================================================================
2 Program: vv http://www.creatis.insa-lyon.fr/rio/vv
5 - University of LYON http://www.universite-lyon.fr/
6 - Léon Bérard cancer center http://www.centreleonberard.fr
7 - CREATIS CNRS laboratory http://www.creatis.insa-lyon.fr
9 This software is distributed WITHOUT ANY WARRANTY; without even
10 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
11 PURPOSE. See the copyright notices for more information.
13 It is distributed under dual licence
15 - BSD See included LICENSE.txt file
16 - CeCILL-B http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
17 ===========================================================================**/
20 #include "vvToolROIManager.h"
21 #include "vvImageReader.h"
22 #include "vvImageWriter.h"
23 #include "vvROIActor.h"
25 #include "vvROIActor.h"
26 #include "vvMeshReader.h"
27 #include "vvStructSelector.h"
28 #include "vvToolManager.h"
29 #include "vvProgressDialog.h"
32 #include "clitkDicomRTStruct2ImageFilter.h"
33 #include "clitkDicomRT_StructureSet.h"
36 #include <QFileDialog>
37 #include <QMessageBox>
38 #include <QColorDialog>
39 #include <QAbstractEventDispatcher>
40 #include <QXmlStreamReader>
43 #include <vtkLookupTable.h>
44 #include <vtkRenderWindow.h>
46 //------------------------------------------------------------------------------
47 // Create the tool and automagically (I like this word) insert it in
48 // the main window menu.
49 ADD_TOOL(vvToolROIManager);
50 //------------------------------------------------------------------------------
52 //------------------------------------------------------------------------------
53 vvToolROIManager::vvToolROIManager(vvMainWindowBase * parent, Qt::WindowFlags f):
54 QWidget(parent->GetTab()),
55 vvToolBase<vvToolROIManager>(parent),
56 Ui::vvToolROIManager()
61 // Assume the initial tab ROI index is 2
65 Ui_vvToolROIManager::setupUi(this);
66 setAttribute(Qt::WA_DeleteOnClose);
68 mTree->header()->resizeSection(0, 30);
69 mGroupBoxROI->setEnabled(false);
71 // Disable "Load dicom" button -> not useful
75 mDefaultLUTColor = vtkSmartPointer<vtkLookupTable>::New();
76 for(int i=0; i<mDefaultLUTColor->GetNumberOfTableValues(); i++) {
77 double r = (rand()/(RAND_MAX+1.0));
78 double v = (rand()/(RAND_MAX+1.0));
79 double b = (rand()/(RAND_MAX+1.0));
80 mDefaultLUTColor->SetTableValue(i, r, v, b);
82 #include "vvDefaultLut.h"
85 mCurrentSlicerManager = NULL;
86 mNumberOfVisibleROI = 0;
87 mNumberOfVisibleContourROI = 0;
88 mOpenFileBrowserFlag = true; // by default, open the file browser when the tool is launched
90 // InitializeNewTool must be called to start
92 //------------------------------------------------------------------------------
95 //------------------------------------------------------------------------------
96 vvToolROIManager::~vvToolROIManager()
98 mROIActorsList.clear();
100 //------------------------------------------------------------------------------
103 //------------------------------------------------------------------------------
105 void vvToolROIManager::Initialize() {
106 SetToolName("ROIManager");
107 SetToolMenuName("Display ROI (binary image)");
108 SetToolIconFilename(":/common/icons/tool-roi.png");
109 SetToolTip("Display ROI from a binary image.");
110 SetToolExperimental(false);
112 //------------------------------------------------------------------------------
116 //------------------------------------------------------------------------------
117 void vvToolROIManager::InitializeNewTool(bool ReadStateFlag)
119 // Check if we need to start a new tool or read in the state file to load
120 if (ReadStateFlag == false) {
121 // Select the current image as the target
122 int i = mMainWindow->GetSlicerManagerCurrentIndex();
123 mCurrentSlicerManager = mMainWindow->GetSlicerManagers()[i];
124 // Set it as current (only if not ReadStateFlag)
125 mMainWindow->GetTab()->setCurrentIndex(mIndexFirstTab);
128 // Set the first tab in front to avoid displaying two roimanager
129 // in the same tab. Because toolcreatorBase do show() and I am too
130 // lazy to find another solution now.
131 mMainWindow->GetTab()->setCurrentIndex(0);
133 // Read all information in the XML
134 ReadXMLInformation();
136 // Check that a ROI is not already present
137 mInitialImageIndex += mImageIndex;
138 if (mInitialImageIndex >= mMainWindow->GetSlicerManagers().size()) {
139 QMessageBox::warning(this, "ROIManager tool", QString("Image index %1 not found, abort.").arg(mInitialImageIndex));
144 // Set the attached image
145 mCurrentSlicerManager = mMainWindow->GetSlicerManagers()[mInitialImageIndex];
148 // Tab insertion, check that another tool does not already exist for this image
149 std::vector<vvToolBaseBase*> & tools =
150 vvToolManager::GetInstance()->GetToolCreatorFromName(GetToolName())->GetListOfTool();
151 if (tools.size() > 0) {
152 for(uint i=0; i<tools.size()-1; i++) { // current tool is last
153 vvToolROIManager * t = dynamic_cast<vvToolROIManager*>(tools[i]);
154 if (mCurrentSlicerManager == t->GetCurrentSlicerManager()) {
155 QMessageBox::warning(this, "ROIManager tool", "Already a ROI for this image, abort.");
162 // Display tool in the correct tab
163 QWidget * tab = qFindChild<QWidget*>(mMainWindow->GetTab(), "ROItab");
164 tab->layout()->addWidget(this);
166 // If not read in a file we start automatically the browser to load
167 // a roi file (binary image)
169 mOpenFileBrowserFlag = false;
170 InputIsSelected(mCurrentSlicerManager);
171 mOpenFileBrowserFlag = true;
173 else InputIsSelected(mCurrentSlicerManager);
175 // Load ROI (if read in the XML files, empty otherwise)
176 OpenBinaryImage(mROIFilenames);
178 // Set the options to the open roi
179 for(uint i=0; i<mROIActorsParamList.size(); i++) {
180 QSharedPointer<vvROIActor> roi = mROIActorsList[i];
181 QSharedPointer<vvROIActor> roi_param = mROIActorsParamList[i];
182 roi->CopyParameters(roi_param);
185 QTreeWidgetItem * w = mMapROIToTreeWidget[roi->GetROI()];
186 QBrush brush(QColor(roi->GetROI()->GetDisplayColor()[0]*255,
187 roi->GetROI()->GetDisplayColor()[1]*255,
188 roi->GetROI()->GetDisplayColor()[2]*255));
189 brush.setStyle(Qt::SolidPattern);
190 w->setBackground(2, brush);
191 w->setText(3, QString("%1").arg(roi->GetDepth()));
197 UpdateAllROIStatus();
199 // Connect event from mainwindow to this widget
200 connect(mMainWindow, SIGNAL(AnImageIsBeingClosed(vvSlicerManager *)),
201 this, SLOT(AnImageIsBeingClosed(vvSlicerManager *)));
202 connect(mMainWindow, SIGNAL(SelectedImageHasChanged(vvSlicerManager *)),
203 this, SLOT(SelectedImageHasChanged(vvSlicerManager *)));
204 connect(mOpenBinaryButton, SIGNAL(clicked()), this, SLOT(Open()));
205 // connect(mOpenDicomButton, SIGNAL(clicked()), this, SLOT(OpenDicomImage()));
206 connect(mTree, SIGNAL(itemSelectionChanged()), this, SLOT(SelectedItemChangedInTree()));
207 connect(mCheckBoxShow, SIGNAL(toggled(bool)), this, SLOT(VisibleROIToggled(bool)));
208 connect(mOpacitySlider, SIGNAL(valueChanged(int)), this, SLOT(OpacityChanged(int)));
209 connect(mChangeColorButton, SIGNAL(clicked()), this, SLOT(ChangeColor()));
210 connect(mContourCheckBoxShow, SIGNAL(toggled(bool)), this, SLOT(VisibleContourROIToggled(bool)));
211 connect(mChangeContourColorButton, SIGNAL(clicked()), this, SLOT(ChangeContourColor()));
212 connect(mContourWidthSpinBox, SIGNAL(valueChanged(int)), this, SLOT(ChangeContourWidth(int)));
213 connect(mDepthSpinBox, SIGNAL(valueChanged(int)), this, SLOT(ChangeDepth(int)));
214 connect(mReloadButton, SIGNAL(clicked()), this, SLOT(ReloadCurrentROI()));
215 connect(mCheckBoxShowAll, SIGNAL(stateChanged(int)), this, SLOT(AllVisibleROIToggled(int)));
216 connect(mContourCheckBoxShowAll, SIGNAL(toggled(bool)), this, SLOT(AllVisibleContourROIToggled(bool)));
217 connect(mCloseButton, SIGNAL(clicked()), this, SLOT(close()));
219 //------------------------------------------------------------------------------
222 //------------------------------------------------------------------------------
223 void vvToolROIManager::InputIsSelected(vvSlicerManager *m)
226 mCurrentSlicerManager = m;
227 mCurrentImage = mCurrentSlicerManager->GetImage();
229 // Refuse if non 3D image
230 if (mCurrentImage->GetNumberOfDimensions() != 3) {
231 QMessageBox::information(this,tr("Sorry only 3D yet"), tr("Sorry only 3D yet"));
237 mLabelInputInfo->setText(QString("%1").arg(m->GetFileName().c_str()));
239 // Auto display browser to select new contours
240 if (mOpenFileBrowserFlag) Open();
242 //------------------------------------------------------------------------------
245 //------------------------------------------------------------------------------
246 void vvToolROIManager::AnImageIsBeingClosed(vvSlicerManager * m)
248 if (m == mCurrentSlicerManager) {
253 //------------------------------------------------------------------------------
256 //------------------------------------------------------------------------------
257 void vvToolROIManager::close()
259 disconnect(mTree, SIGNAL(itemSelectionChanged()), this, SLOT(SelectedItemChangedInTree()));
260 disconnect(mCheckBoxShow, SIGNAL(toggled(bool)), this, SLOT(VisibleROIToggled(bool)));
261 disconnect(mOpacitySlider, SIGNAL(valueChanged(int)), this, SLOT(OpacityChanged(int)));
262 disconnect(mChangeColorButton, SIGNAL(clicked()), this, SLOT(ChangeColor()));
263 disconnect(mContourCheckBoxShow, SIGNAL(toggled(bool)), this, SLOT(VisibleContourROIToggled(bool)));
264 disconnect(mChangeContourColorButton, SIGNAL(clicked()), this, SLOT(ChangeContourColor()));
265 disconnect(mContourWidthSpinBox, SIGNAL(valueChanged(int)), this, SLOT(ChangeContourWidth(int)));
266 disconnect(mDepthSpinBox, SIGNAL(valueChanged(int)), this, SLOT(ChangeDepth(int)));
269 for (unsigned int i = 0; i < mROIActorsList.size(); i++) {
270 mROIActorsList[i]->RemoveActors();
272 mROIActorsList.clear();
275 for(int i=0; i<mCurrentSlicerManager->GetNumberOfSlicers(); i++) {
276 mCurrentSlicerManager->GetSlicer(i)->Render();
279 //------------------------------------------------------------------------------
282 //------------------------------------------------------------------------------
283 void vvToolROIManager::SelectedImageHasChanged(vvSlicerManager * m) {
285 if (mCurrentSlicerManager == NULL) return;
286 if (m == NULL) return;
287 if (m != mCurrentSlicerManager) hide();
292 //------------------------------------------------------------------------------
295 //------------------------------------------------------------------------------
296 void vvToolROIManager::Open()
299 QString Extensions = "Images or Dicom-Struct files ( *.mha *.mhd *.hdr *.his *.dcm RS*)";
300 Extensions += ";;All Files (*)";
301 QStringList filename =
302 QFileDialog::getOpenFileNames(this,tr("Open binary image or DICOM RT Struct"),
303 mMainWindowBase->GetInputPathName(),Extensions);
304 if (filename.size() == 0) return;
305 if (filename.size() > 1) { OpenBinaryImage(filename); return; }
307 // Try to read dicom rt ?
308 clitk::DicomRT_StructureSet::Pointer s = clitk::DicomRT_StructureSet::New();
309 if (s->IsDicomRTStruct(filename[0].toStdString())) OpenDicomImage(filename[0].toStdString());
310 else OpenBinaryImage(filename);
313 //------------------------------------------------------------------------------
316 //------------------------------------------------------------------------------
317 void vvToolROIManager::OpenBinaryImage(QStringList & filename)
319 if (filename.size() == 0) return;
321 vvProgressDialog p("Reading ROI ...", true);
322 p.SetCancelButtonEnabled(false);
323 QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
325 // For each selected file, open the image
326 for(int i=0; i<filename.size(); i++) {
327 p.SetProgress(i, filename.size());
330 vvImageReader::Pointer reader = vvImageReader::New();
331 std::vector<std::string> filenames;
332 filenames.push_back(filename[i].toStdString());
333 reader->SetInputFilenames(filenames);
334 reader->Update(vvImageReader::IMAGE);
336 if (reader->GetLastError().size() != 0) {
337 std::cerr << "Error while reading " << filename[i].toStdString() << std::endl;
338 QString error = "Cannot open file \n";
339 error += reader->GetLastError().c_str();
340 QMessageBox::information(this,tr("Reading problem"),error);
343 vvImage::Pointer binaryImage = reader->GetOutput();
344 AddImage(binaryImage, filename[i].toStdString(), mBackgroundValueSpinBox->value(),
345 (!mBGModeCheckBox->isChecked()));
346 mOpenedBinaryImageFilenames.push_back(filename[i]);
348 QApplication::restoreOverrideCursor();
350 // Update the contours
353 //------------------------------------------------------------------------------
356 //------------------------------------------------------------------------------
357 void vvToolROIManager::OpenDicomImage(std::string filename)
359 // GUI selector of roi
361 reader.SetFilename(filename);
362 vvStructSelector selector;
363 selector.SetStructures(reader.GetROINames());
364 selector.SetPropagationCheckBoxFlag(false);
366 if (selector.exec()) {
367 vvProgressDialog p("Reading ROI...", true);
368 p.SetCancelButtonEnabled(false);
369 QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
372 clitk::DicomRT_StructureSet::Pointer s = clitk::DicomRT_StructureSet::New();
375 // Loop on selected struct
376 std::vector<int> list = selector.getSelectedItems();
377 for (uint i=0; i<list.size(); i++) {
378 p.SetProgress(i, list.size());
380 clitk::DicomRTStruct2ImageFilter filter;
381 filter.SetCropMaskEnabled(true);
382 filter.SetImage(mCurrentImage);
383 filter.SetROI(s->GetROIFromROINumber(list[i]));
384 filter.SetWriteOutputFlag(false);
388 vvImage::Pointer binaryImage = vvImage::New();
389 binaryImage->AddVtkImage(filter.GetOutput());
392 AddImage(binaryImage, s->GetROIFromROINumber(list[i])->GetName(), 0, true);
393 mOpenedBinaryImageFilenames.push_back(filename.c_str());
396 QApplication::restoreOverrideCursor();
398 // Update the contours
401 //------------------------------------------------------------------------------
404 //------------------------------------------------------------------------------
405 void vvToolROIManager::AddImage(vvImage * binaryImage, std::string filename,
406 double BG, bool modeBG)
409 int dim = mCurrentImage->GetNumberOfDimensions();
410 int bin_dim = binaryImage->GetNumberOfDimensions();
412 std::ostringstream os;
413 os << "Error. Loaded binary image is " << bin_dim
414 << "D while selected image is " << dim << "D" << std::endl;
415 QMessageBox::information(this,tr("Reading problem"),os.str().c_str());
420 int n = mROIList.size();
422 // Compute the name of the new ROI
423 std::ostringstream oss;
424 oss << vtksys::SystemTools::GetFilenameName(vtksys::SystemTools::GetFilenameWithoutLastExtension(filename));
425 std::string name = oss.str();
428 std::vector<double> color;
434 clitk::DicomRT_ROI::Pointer roi = clitk::DicomRT_ROI::New();
435 roi->SetFromBinaryImage(binaryImage, n, name, color, filename);
437 // Add a new roi to the list
438 mROIList.push_back(roi);
442 roi->SetBackgroundValueLabelImage(BG);
444 roi->SetForegroundValueLabelImage(BG);
447 if (n<mDefaultLUTColor->GetNumberOfTableValues ()) {
448 double * color = mDefaultLUTColor->GetTableValue(n % mDefaultLUTColor->GetNumberOfTableValues ());
449 roi->SetDisplayColor(color[0], color[1], color[2]);
452 // Add a new roi actor
453 QSharedPointer<vvROIActor> actor = QSharedPointer<vvROIActor>(new vvROIActor);
454 actor->SetBGMode(modeBG);
456 actor->SetSlicerManager(mCurrentSlicerManager);
457 actor->Initialize(n+1); // depth is n+1 to start at 1
458 mROIActorsList.push_back(actor);
460 // CheckBox for "All"
461 if (actor->IsVisible()) mNumberOfVisibleROI++;
462 if (actor->IsContourVisible()) mNumberOfVisibleContourROI++;
465 mTreeWidgetList.push_back(QSharedPointer<QTreeWidgetItem>(new QTreeWidgetItem(mTree)));
466 QTreeWidgetItem * w = mTreeWidgetList.back().data();
467 w->setText(0, QString("%1").arg(roi->GetROINumber()));
468 w->setText(1, QString("%1").arg(roi->GetName().c_str()));
469 w->setText(3, QString("%1").arg(actor->GetDepth()));
470 QBrush brush(QColor(roi->GetDisplayColor()[0]*255,
471 roi->GetDisplayColor()[1]*255,
472 roi->GetDisplayColor()[2]*255));
473 brush.setStyle(Qt::SolidPattern);
474 w->setBackground(2, brush);
475 mMapROIToTreeWidget[roi] = w;
476 mMapTreeWidgetToROI[w] = roi;
477 mTree->resizeColumnToContents(0);
478 mTree->resizeColumnToContents(1);
481 UpdateAllROIStatus();
483 //------------------------------------------------------------------------------
486 //------------------------------------------------------------------------------
487 void vvToolROIManager::UpdateAllContours()
489 if (mCurrentSlicerManager == NULL) return;
490 // Render loaded ROIs (the first is sufficient)
491 for(unsigned int i=0; i<mROIList.size(); i++) {
492 mROIActorsList[i]->Update();
494 mCurrentSlicerManager->Render();
496 //------------------------------------------------------------------------------
499 //------------------------------------------------------------------------------
500 void vvToolROIManager::UpdateAllROIStatus() {
502 int nb = mROIList.size();
503 for(int i=0; i<nb; i++) {
504 if (mROIActorsList[i]->IsVisible()) {
510 disconnect(mCheckBoxShowAll, SIGNAL(stateChanged(int)), this, SLOT(AllVisibleROIToggled(int)));
511 disconnect(mContourCheckBoxShowAll, SIGNAL(toggled(bool)), this, SLOT(AllVisibleContourROIToggled(bool)));
512 if (nbVisible == nb) mCheckBoxShowAll->setCheckState(Qt::Checked);
514 if (nbVisible == 0) mCheckBoxShowAll->setCheckState(Qt::Unchecked);
515 else mCheckBoxShowAll->setCheckState(Qt::PartiallyChecked);
517 connect(mContourCheckBoxShowAll, SIGNAL(toggled(bool)), this, SLOT(AllVisibleContourROIToggled(bool)));
518 connect(mCheckBoxShowAll, SIGNAL(stateChanged(int)), this, SLOT(AllVisibleROIToggled(int)));
520 //------------------------------------------------------------------------------
523 //------------------------------------------------------------------------------
524 void vvToolROIManager::SelectedItemChangedInTree() {
525 // Search which roi is selected
526 QList<QTreeWidgetItem *> l = mTree->selectedItems();
528 // mCurrentROIActor = 0;
530 mGroupBoxROI->setEnabled(false);
533 QTreeWidgetItem * w = l[0];
534 if (w == NULL) return;
536 if (mMapTreeWidgetToROI.find(w) == mMapTreeWidgetToROI.end()) {
537 // mCurrentROIActor = 0;
539 mGroupBoxROI->setEnabled(false);
542 if (w == NULL) return;
543 clitk::DicomRT_ROI * roi = mMapTreeWidgetToROI[w];
544 if (roi == NULL) return; // sometimes it is called while there is no roi anymore
546 // Get selected roi actor
547 int n = roi->GetROINumber();
548 QSharedPointer<vvROIActor> actor = mROIActorsList[n];
550 mCurrentROIActor = actor;
552 // Warning -> avoid unuseful Render here by disconnect slider
554 disconnect(mTree, SIGNAL(itemSelectionChanged()), this, SLOT(SelectedItemChangedInTree()));
555 disconnect(mCheckBoxShow, SIGNAL(toggled(bool)), this, SLOT(VisibleROIToggled(bool)));
556 disconnect(mOpacitySlider, SIGNAL(valueChanged(int)), this, SLOT(OpacityChanged(int)));
557 disconnect(mChangeColorButton, SIGNAL(clicked()), this, SLOT(ChangeColor()));
558 disconnect(mContourCheckBoxShow, SIGNAL(toggled(bool)), this, SLOT(VisibleContourROIToggled(bool)));
559 disconnect(mChangeContourColorButton, SIGNAL(clicked()), this, SLOT(ChangeContourColor()));
560 disconnect(mContourWidthSpinBox, SIGNAL(valueChanged(int)), this, SLOT(ChangeContourWidth(int)));
561 disconnect(mDepthSpinBox, SIGNAL(valueChanged(int)), this, SLOT(ChangeDepth(int)));
563 mROInameLabel->setText(roi->GetName().c_str());
564 mCheckBoxShow->setChecked(actor->IsVisible());
565 mContourCheckBoxShow->setChecked(actor->IsContourVisible());
566 mContourWidthSpinBox->setValue(actor->GetContourWidth());
567 mDepthSpinBox->setValue(actor->GetDepth());
568 w->setText(3, QString("%1").arg(actor->GetDepth()));
569 mOpacitySlider->setValue((int)lrint(actor->GetOpacity()*100));
570 mOpacitySpinBox->setValue((int)lrint(actor->GetOpacity()*100));
572 connect(mTree, SIGNAL(itemSelectionChanged()), this, SLOT(SelectedItemChangedInTree()));
573 connect(mCheckBoxShow, SIGNAL(toggled(bool)), this, SLOT(VisibleROIToggled(bool)));
574 connect(mOpacitySlider, SIGNAL(valueChanged(int)), this, SLOT(OpacityChanged(int)));
575 connect(mChangeColorButton, SIGNAL(clicked()), this, SLOT(ChangeColor()));
576 connect(mContourCheckBoxShow, SIGNAL(toggled(bool)), this, SLOT(VisibleContourROIToggled(bool)));
577 connect(mChangeContourColorButton, SIGNAL(clicked()), this, SLOT(ChangeContourColor()));
578 connect(mContourWidthSpinBox, SIGNAL(valueChanged(int)), this, SLOT(ChangeContourWidth(int)));
579 connect(mDepthSpinBox, SIGNAL(valueChanged(int)), this, SLOT(ChangeDepth(int)));
582 // Set the current color to the selected ROI name
583 mROInameLabel->setAutoFillBackground(true);// # This is important!!
584 // mROInameLabel->setStyleSheet("QLabel { background-color : red; color : blue; }");
585 QColor color = QColor(mCurrentROI->GetDisplayColor()[0]*255,
586 mCurrentROI->GetDisplayColor()[1]*255,
587 mCurrentROI->GetDisplayColor()[2]*255);
588 // QString values = QString("%1, %2, %3").arg(color.red()).arg(color.green()).arg(color.blue());
589 // mROInameLabel->setStyleSheet("QLabel { background-color: rgb("+values+"); }");
591 QPalette* palette = new QPalette();
592 QColor colorFG = QColor((1-mCurrentROI->GetDisplayColor()[0])*255,
593 (1-mCurrentROI->GetDisplayColor()[1])*255,
594 (1-mCurrentROI->GetDisplayColor()[2])*255);
595 palette->setColor(QPalette::WindowText,colorFG);
596 palette->setColor(QPalette::Background, color);
597 mROInameLabel->setPalette(*palette);
599 // Enable the group box (in case no selection before)
600 mGroupBoxROI->setEnabled(true);
602 //------------------------------------------------------------------------------
605 //------------------------------------------------------------------------------
606 void vvToolROIManager::VisibleROIToggled(bool b) {
607 if (mCurrentROIActor == NULL) return;
608 if (b == mCurrentROIActor->IsVisible()) return; // nothing to do
609 mCurrentROIActor->SetVisible(b);
610 UpdateAllROIStatus();
611 mCurrentSlicerManager->Render();
613 //------------------------------------------------------------------------------
616 //------------------------------------------------------------------------------
617 void vvToolROIManager::VisibleContourROIToggled(bool b) {
618 if (mCurrentROIActor == NULL) return;
619 if (mCurrentROIActor->IsContourVisible() == b) return; // nothing to do
620 mCurrentROIActor->SetContourVisible(b);
621 mCurrentROIActor->UpdateColor();
622 mCurrentSlicerManager->Render();
624 //------------------------------------------------------------------------------
627 //------------------------------------------------------------------------------
628 void vvToolROIManager::OpacityChanged(int v) {
629 if (mCurrentROIActor == NULL) return;
630 mCurrentROIActor->SetOpacity((double)v/100.0);
631 mCurrentROIActor->UpdateColor();
632 mCurrentSlicerManager->Render();
634 //------------------------------------------------------------------------------
637 //------------------------------------------------------------------------------
638 void vvToolROIManager::AllVisibleROIToggled(int b) {
640 if ((mCheckBoxShowAll->checkState() == Qt::Checked) ||
641 (mCheckBoxShowAll->checkState() == Qt::PartiallyChecked)) status = true;
643 for(uint i=0; i<mROIList.size(); i++) {
644 mROIActorsList[i]->SetVisible(status);
646 if (status) mCheckBoxShowAll->setCheckState(Qt::Checked);
647 else mCheckBoxShowAll->setCheckState(Qt::Unchecked);
648 mCheckBoxShow->setChecked(status);
649 mCurrentSlicerManager->Render();
651 //------------------------------------------------------------------------------
654 //------------------------------------------------------------------------------
655 void vvToolROIManager::AllVisibleContourROIToggled(bool b) {
657 if ((mContourCheckBoxShowAll->checkState() == Qt::Checked) ||
658 (mContourCheckBoxShowAll->checkState() == Qt::PartiallyChecked)) status = true;
660 for(uint i=0; i<mROIActorsList.size(); i++) {
661 mROIActorsList[i]->SetContourVisible(status);
663 // Update current selection
664 if (status) mContourCheckBoxShowAll->setCheckState(Qt::Checked);
665 else mContourCheckBoxShowAll->setCheckState(Qt::Unchecked);
666 mContourCheckBoxShow->setChecked(status);
667 mCurrentSlicerManager->Render();
669 //------------------------------------------------------------------------------
672 //------------------------------------------------------------------------------
673 void vvToolROIManager::ChangeColor() {
674 if (mCurrentROIActor == NULL) return;
676 color.setRgbF(mCurrentROIActor->GetROI()->GetDisplayColor()[0],
677 mCurrentROIActor->GetROI()->GetDisplayColor()[1],
678 mCurrentROIActor->GetROI()->GetDisplayColor()[2]);
679 QColor c = QColorDialog::getColor(color, this, "Choose the ROI color");
680 if (!c.isValid()) return;// User cancel
682 mCurrentROIActor->GetROI()->SetDisplayColor(c.redF(), c.greenF(), c.blueF());
683 mCurrentROIActor->UpdateColor();
685 QTreeWidgetItem * w = mMapROIToTreeWidget[mCurrentROI];
686 QBrush brush(QColor(mCurrentROI->GetDisplayColor()[0]*255,
687 mCurrentROI->GetDisplayColor()[1]*255,
688 mCurrentROI->GetDisplayColor()[2]*255));
689 brush.setStyle(Qt::SolidPattern);
690 w->setBackground(2, brush);
692 mCurrentSlicerManager->Render();
694 //------------------------------------------------------------------------------
697 //------------------------------------------------------------------------------
698 void vvToolROIManager::ChangeContourColor() {
699 if (mCurrentROIActor == NULL) return;
701 color.setRgbF(mCurrentROIActor->GetContourColor()[0],
702 mCurrentROIActor->GetContourColor()[1],
703 mCurrentROIActor->GetContourColor()[2]);
704 // QColorDialog d(color);
705 QColor c = QColorDialog::getColor(color, this, "Choose the contour color");
706 if (!c.isValid()) return; // User cancel
707 mCurrentROIActor->SetContourColor(c.redF(), c.greenF(), c.blueF());
708 mCurrentROIActor->UpdateColor();
709 mCurrentSlicerManager->Render();
711 //------------------------------------------------------------------------------
714 //------------------------------------------------------------------------------
715 void vvToolROIManager::ChangeContourWidth(int n) {
716 if (mCurrentROIActor == NULL) return;
717 mCurrentROIActor->SetContourWidth(n);
718 mCurrentROIActor->UpdateColor();
719 mCurrentSlicerManager->Render();
721 //------------------------------------------------------------------------------
724 //------------------------------------------------------------------------------
725 void vvToolROIManager::ChangeDepth(int n) {
726 if (mCurrentROIActor == NULL) return;
727 mCurrentROIActor->SetDepth(n);
728 // mCurrentROIActor->UpdateImage(); // FIXME
729 mCurrentSlicerManager->Render();
730 QList<QTreeWidgetItem *> l = mTree->selectedItems();
731 QTreeWidgetItem * w = l[0];
732 w->setText(3, QString("%1").arg(mCurrentROIActor->GetDepth()));
734 //------------------------------------------------------------------------------
737 //------------------------------------------------------------------------------
738 void vvToolROIManager::ReloadCurrentROI() {
740 // Remove all contours/overlay first
741 bool visible = mCurrentROIActor->IsVisible();
742 bool cvisible = mCurrentROIActor->IsContourVisible();
743 mCurrentROIActor->SetVisible(false);
744 mCurrentROIActor->SetContourVisible(false);
745 mCurrentSlicerManager->Render();
748 vvImageReader::Pointer reader = vvImageReader::New();
749 reader->SetInputFilename(mCurrentROI->GetFilename());
750 reader->Update(vvImageReader::IMAGE);
751 if (reader->GetLastError() != "") {
752 // No message just ignore (because can be from dicom)
753 // QMessageBox::information(mMainWindowBase, tr("Sorry, error. Could not reload"),
754 // reader->GetLastError().c_str());
758 // Free the previous image
759 mCurrentROI->GetImage()->GetFirstVTKImageData()->ReleaseData(); // Needed to free
760 mCurrentROI->GetImage()->Reset();
761 mCurrentROI->SetImage(reader->GetOutput());
763 mCurrentROIActor->RemoveActors();
766 mCurrentROIActor->UpdateImage();
767 mCurrentROIActor->SetVisible(visible);
768 mCurrentROIActor->SetContourVisible(cvisible);
769 mCurrentSlicerManager->Render();
771 //------------------------------------------------------------------------------
774 //------------------------------------------------------------------------------
775 void vvToolROIManager::SaveState(std::auto_ptr<QXmlStreamWriter> & m_XmlWriter)
777 // Get index of the image
778 int n = mMainWindow->GetSlicerManagers().size();
780 for(int i=0; i<n; i++) {
781 if (mCurrentSlicerManager == mMainWindow->GetSlicerManagers()[i]) index = i;
784 std::cerr << "Error while writing state for ROIManager tool no currentimage founded." << std::endl;
787 m_XmlWriter->writeTextElement("Image_Index", QString::number(index));
791 for(uint i=0; i<mROIActorsList.size(); i++) {
792 QSharedPointer<vvROIActor> roi = mROIActorsList[i];
794 m_XmlWriter->writeStartElement("ROI");
795 m_XmlWriter->writeTextElement("Image", mOpenedBinaryImageFilenames[i]);
797 m_XmlWriter->writeStartElement("Overlay");
798 m_XmlWriter->writeAttribute("Red", QString("%1").arg(roi->GetOverlayColor()[0]));
799 m_XmlWriter->writeAttribute("Green",QString("%1").arg(roi->GetOverlayColor()[1]));
800 m_XmlWriter->writeAttribute("Blue", QString("%1").arg(roi->GetOverlayColor()[2]));
801 m_XmlWriter->writeAttribute("Visible", QString("%1").arg(roi->IsVisible()));
802 m_XmlWriter->writeAttribute("Opacity", QString("%1").arg(roi->GetOpacity()));
803 m_XmlWriter->writeAttribute("Depth", QString("%1").arg(roi->GetDepth()));
804 m_XmlWriter->writeEndElement();
806 m_XmlWriter->writeStartElement("Contour");
807 m_XmlWriter->writeAttribute("Red", QString("%1").arg(roi->GetContourColor()[0]));
808 m_XmlWriter->writeAttribute("Green",QString("%1").arg(roi->GetContourColor()[1]));
809 m_XmlWriter->writeAttribute("Blue", QString("%1").arg(roi->GetContourColor()[2]));
810 m_XmlWriter->writeAttribute("Visible", QString("%1").arg(roi->IsContourVisible()));
811 m_XmlWriter->writeAttribute("Width", QString("%1").arg(roi->GetContourWidth()));
812 m_XmlWriter->writeEndElement();
814 m_XmlWriter->writeEndElement();
817 //------------------------------------------------------------------------------
820 //------------------------------------------------------------------------------
821 void vvToolROIManager::ReadXMLInformation()
823 std::string value="";
824 mInitialImageIndex = -1;
825 while (!(m_XmlReader->isEndElement() && value == GetToolName().toStdString())) {
826 m_XmlReader->readNext();
827 value = m_XmlReader->qualifiedName().toString().toStdString();
829 if (value == "Image_Index")
830 mInitialImageIndex = m_XmlReader->readElementText().toInt();
832 if (m_XmlReader->isStartElement()) {
833 if (value == "ROI") {
834 ReadXMLInformation_ROI();
839 //------------------------------------------------------------------------------
842 //------------------------------------------------------------------------------
843 void vvToolROIManager::ReadXMLInformation_ROI()
846 std::string value="";
847 QSharedPointer<vvROIActor> param = QSharedPointer<vvROIActor>(new vvROIActor);
848 param->SetVisible(true);
849 clitk::DicomRT_ROI::Pointer roi = clitk::DicomRT_ROI::New();
850 // r->SetDisplayColor(1,1,1);
853 float r=1.0,g=1.0,b=1.0;
854 float cr=1.0,cg=1.0,cb=1.0;
857 bool cvisible = true;
861 while (!(m_XmlReader->isEndElement() && value == "ROI")) {
862 m_XmlReader->readNext();
863 value = m_XmlReader->qualifiedName().toString().toStdString();
864 if (value == "Image") {
865 s = m_XmlReader->readElementText();
868 if (value == "Overlay" && m_XmlReader->isStartElement()) {
869 QXmlStreamAttributes attributes = m_XmlReader->attributes();
870 if (!m_XmlReader->hasError())
871 r = attributes.value("Red").toString().toFloat();
872 if (!m_XmlReader->hasError())
873 g = attributes.value("Green").toString().toFloat();
874 if (!m_XmlReader->hasError())
875 b = attributes.value("Blue").toString().toFloat();
876 if (!m_XmlReader->hasError())
877 visible = attributes.value("Visible").toString().toInt();
878 if (!m_XmlReader->hasError())
879 opacity = attributes.value("Opacity").toString().toFloat();
880 if (!m_XmlReader->hasError())
881 depth = attributes.value("Depth").toString().toFloat();
885 if (value == "Contour" && m_XmlReader->isStartElement()) {
886 QXmlStreamAttributes attributes = m_XmlReader->attributes();
887 if (!m_XmlReader->hasError())
888 cr = attributes.value("Red").toString().toFloat();
889 if (!m_XmlReader->hasError())
890 cg = attributes.value("Green").toString().toFloat();
891 if (!m_XmlReader->hasError())
892 cb = attributes.value("Blue").toString().toFloat();
893 if (!m_XmlReader->hasError())
894 cvisible = attributes.value("Visible").toString().toInt();
895 if (!m_XmlReader->hasError())
896 width = attributes.value("Width").toString().toFloat();
898 param->SetOverlayColor(r,g,b);
899 param->SetVisible(visible);
900 param->SetOpacity(opacity);
901 param->SetDepth(depth);
903 param->SetContourColor(cr,cg,cb);
904 param->SetContourVisible(cvisible);
905 param->SetContourWidth(width);
907 mROIFilenames.push_back(s);
908 mROIActorsParamList.push_back(param);
910 //------------------------------------------------------------------------------