Hi all,<br>
<br>
I'm developing a medical application and i have a little problem with the coronal view.<br>
<br>
I'm using the vtkImageViewer2 class. It provides 3 methods to change
the view orientation to axial ( XY ), sagital ( YZ ) and coronal ( XZ
). The problem is that in medical imaging the coordinate system is a
little bit different than the one that vtk uses. This means i have to
make changes on the camera to get the correct orientation to get a
correct view of the medical data. I succeed with the axial and the
sagital changes, but not with coronal, and I don't know why.<br>
<br>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">when you call vtkImageviewer2::<font size="2">SetSliceOrientationToXZ() the camera is changed this way<br>
</font>


<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="Generator" content="Kate, the KDE Advanced Text Editor">

<pre>        cam-&gt;SetFocalPoint(<span style="color: rgb(0, 0, 255);">0</span>,<span style="color: rgb(0, 0, 255);">0</span>,<span style="color: rgb(0, 0, 255);">0</span>);<br>        cam-&gt;SetPosition(<span style="color: rgb(0, 0, 255);">
0</span>,-<span style="color: rgb(0, 0, 255);">1</span>,<span style="color: rgb(0, 0, 255);">0</span>); <span style="color: rgb(128, 128, 128);"><i>// 1 if medical ?</i></span><br>        cam-&gt;SetViewUp(<span style="color: rgb(0, 0, 255);">
0</span>,<span style="color: rgb(0, 0, 255);">0</span>,<span style="color: rgb(0, 0, 255);">1</span>);<br><br><font style="font-family: arial,sans-serif;" size="4">so the only change is supposed i need to do for the coronal view is cam-&gt;SetPosition( 0 , 1 , 0 ) but I have no result ( a black rendered image ) 
<br>and i can't see any slice<br><br>What could be the problem? Is a little more complex than changing the position???<br></font></pre><br>