File: geoeditview.cpp

package info (click to toggle)
odin 2.0.5-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,196 kB
  • sloc: cpp: 62,638; sh: 4,541; makefile: 779
file content (152 lines) | stat: -rw-r--r-- 5,078 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
#include "geoedit.h"
#include "geoeditview.h"

#include <odinqt/boolbutton.h>


GeoEditView::GeoEditView(Geometry& geometry, ImageSet& pilot, unsigned int blowup, QWidget *parent)
 : QWidget(parent), geometry_cache(geometry), pilot_cache(pilot) {
  Log<GeoEditComp> odinlog("GeoEditView","GeoEditView(...)");

  old_mode=n_geometry_modes; // invalid value to trigger generation of first widget
  for(int imode=0; imode<n_geometry_modes; imode++) blockwidget[imode]=0;

  int nimages=pilot.get_numof_images();

  ODINLOG(odinlog,normalDebug) << "nimages=" << nimages << STD_endl;

  int ncol=2*nimages;
  if(ncol<6) ncol=6;

  grid = new GuiGridLayout( this, 7, ncol );


  // iterate over 3D volume images in set and display each in a separate widget
  for(int i=0; i<nimages; i++) {

    Image& img=pilot.get_image(i);

    int nx=img.size(xAxis);
    int ny=img.size(yAxis);
    ODINLOG(odinlog,normalDebug) << "nx/ny=" << nx << "/" << ny << STD_endl;

    coarse=1;

    if(nx*ny>0) {

      coarse=(unsigned int)secureDivision(MIN_MATRIX_SIZE,(nx+ny)/2);
      if(!coarse) coarse=1;

      ODINLOG(odinlog,normalDebug) << "coarse[" << i<< "]=" << coarse << STD_endl;

      img.normalize_magnitude();

      GeoEditLabel* imglabel=new GeoEditLabel(img,coarse*blowup,this);
      if(i==0) connect(imglabel,SIGNAL(clicked(int,int,int)),this,SLOT( magnify0(int,int,int)));
      if(i==1) connect(imglabel,SIGNAL(clicked(int,int,int)),this,SLOT( magnify1(int,int,int)));
      if(i==2) connect(imglabel,SIGNAL(clicked(int,int,int)),this,SLOT( magnify2(int,int,int)));

      grid->add_widget( imglabel, 0, 2*i, GuiGridLayout::Center, 1,2);

      labels.push_back(imglabel);
    }

  }



  /* ------------ draw projection button -----------------*/
   projection=new buttonBox("Hide","Show",true, this, "Projection" );
   grid->add_widget( projection, 1,5, GuiGridLayout::Center);
   connect(projection,SIGNAL(buttonToggled(bool)),this,SLOT( setProjection(bool)));

  /* ------------ draw cross section button -----------------*/
   crosssect=new buttonBox("Hide","Show",true, this, "CrossSection" );
   grid->add_widget( crosssect, 2,5, GuiGridLayout::Center);
   connect(crosssect,SIGNAL(buttonToggled(bool)),this,SLOT( setCrossSection(bool)));

  /* ------------ set sagittal button -----------------*/
   buttonBox *sagbutton=new buttonBox("Set", this, "Sagittal" );
   grid->add_widget( sagbutton, 3,5, GuiGridLayout::Center);
   connect(sagbutton,SIGNAL(buttonClicked()),this,SLOT( sagSet()));

  /* ------------ set coronal button -----------------*/
   buttonBox *corbutton=new buttonBox("Set", this, "Coronal" );
   grid->add_widget( corbutton, 4,5, GuiGridLayout::Center);
   connect(corbutton,SIGNAL(buttonClicked()),this,SLOT( corSet()));

  /* ------------ set axial button -----------------*/
   buttonBox *axibutton=new buttonBox("Set", this, "Axial" );
   grid->add_widget( axibutton, 5,5, GuiGridLayout::Center);
   connect(axibutton,SIGNAL(buttonClicked()),this,SLOT( axiSet()));


  /* ------------ save & exit button -----------------*/
   buttonBox *saveexit=new buttonBox("Done", this, "Save & Exit" );
   grid->add_widget( saveexit, 6,5, GuiGridLayout::Center);
   connect(saveexit,SIGNAL(buttonClicked()),this,SLOT( emitDone()));

   ODINLOG(odinlog,normalDebug) << "Buttons done" << STD_endl;

   this->showNormal();
   geometryChanged();
}


void GeoEditView::geometryChanged() {
  Log<GeoEditComp> odinlog("GeoEditView","geometryChanged");

  geometry_cache.update();
  ODINLOG(odinlog,normalDebug) << "update done" << STD_endl;

  geometryMode mode=geometry_cache.get_Mode();

  if(old_mode!=mode) {
    if(old_mode!=n_geometry_modes) blockwidget[old_mode]->hide();
    if(blockwidget[mode]==0) blockwidget[mode]=new LDRwidget(geometry_cache,3,this);
    blockwidget[mode]->show();
    grid->add_widget( blockwidget[mode], 1,0, GuiGridLayout::Center, 6,5);
    connect(blockwidget[mode],SIGNAL(valueChanged()),this,SLOT(geometryChanged()));
  }
  blockwidget[mode]->updateWidget();
  old_mode=mode;
  ODINLOG(odinlog,normalDebug) << "LDRwidget done" << STD_endl;

  for(STD_list<GeoEditLabel*>::iterator labelit=labels.begin(); labelit!=labels.end(); ++labelit) {
    (*labelit)->drawImagingArea(geometry_cache,projection->is_on(),crosssect->is_on());
  }
  ODINLOG(odinlog,normalDebug) << "labels->drawImagingArea done" << STD_endl;

}

void GeoEditView::emitDone() {
  emit donePressed();
}


void GeoEditView::sagSet() {
  geometry_cache.set_orientation(sagittal);
  geometryChanged();
}

void GeoEditView::corSet() {
  geometry_cache.set_orientation(coronal);
  geometryChanged();
}

void GeoEditView::axiSet() {
  geometry_cache.set_orientation(axial);
  geometryChanged();
}


void GeoEditView::magnify(int index) {
  Image& img=pilot_cache.get_image(index);

  STD_string tmpdir=STD_string(getenv_nonnull("HOME"))+SEPARATOR_STR+".odin"+SEPARATOR_STR+"tmp"+SEPARATOR_STR;
  createdir(tmpdir.c_str());
  STD_string tmpfname=tmpdir+"image4geo.jdx";
  img.write(tmpfname);
  system(("miview -blowup "+itos(coarse)+" "+tmpfname+" &").c_str());
}