<div dir="ltr"><pre style="white-space:pre-wrap;color:rgb(0,0,0)">Hi all.

I have a slice of a volume displayed on a vtkImageViewer2. </pre><pre style="white-space:pre-wrap;color:rgb(0,0,0)">I understand that if I modified the window levels by pressing the button 1 of the mouse, I could reset the levels by pressing the letter 'r'.
I'm trying to reset the window levels with a user interface button.
I have implemented something similar to the code found in the interactorstyleImage class:</pre><pre style="white-space:pre-wrap;color:rgb(0,0,0)"><span style="font-family:arial,sans-serif">if (reset){</span><br></pre><pre style="white-space:pre-wrap;color:rgb(0,0,0)"><pre style="white-space:pre-wrap">           viewerSagital->GetRenderer()->ResetCamera();
           viewerSagital->Render();
}</pre><pre style="white-space:pre-wrap"><span style="font-family:arial,sans-serif">but this does not do anything to the viewer. </span></pre><pre style="white-space:pre-wrap"><span style="font-family:arial,sans-serif">The interactorstyle code is as follows:</span><br></pre>
    case 'r' :
    case 'R' :
      this->FindPokedRenderer(rwi->GetEventPosition()[0],
                              rwi->GetEventPosition()[1]);
      if(this->CurrentRenderer!=0)
        {
        this->CurrentRenderer->ResetCamera();
        }
      else
        {
        vtkWarningMacro(<<"no current renderer on the interactor style.");
        }
      rwi->Render();
      break;

<br></pre><pre style="white-space:pre-wrap;color:rgb(0,0,0)"><pre style="white-space:pre-wrap"><span style="font-family:arial,sans-serif">Someone could help me?</span></pre>Thanks</pre><div><br></div>-- <br><div class="gmail_signature">Fabián Torres Robles<br>Maestria en Ciencias en Ingeniería Electrónica<br>Ingeniería en Sistemas Electrónicos<br>tel. 58081280, 0445534661338<br>e-mail <a href="mailto:fabian.trobles@gmail.com" target="_blank">fabian.trobles@gmail.com</a>, <a href="mailto:dae.wong@gmail.com" target="_blank">dae.wong@gmail.com</a>  <div style="padding:0px;margin-left:0px;margin-top:0px;overflow:hidden;word-wrap:break-word;color:black;font-size:10px;text-align:left;line-height:130%"></div><div style="padding:0px;margin-left:0px;margin-top:0px;overflow:hidden;word-wrap:break-word;color:black;font-size:10px;text-align:left;line-height:130%"></div></div>
</div>