Hello,<br><br>I'm using vtkImageViewer2 to view medical datasets. I also use vtkActor2D to put several annotations over the dataset. <br>I use a vtkPropPicker to extract the coordinates and voxel values from the image actor. The problem i have is sometimes the picked z coordinate is wrong because the mouse is near a vtkActor2D and it takes the z coordinate from the 2d actor (beacause it will be always on top of the other actors) instead of the z coordinate from the vtkimageactor that I really want. I've tried to tell to the prop picker to only pick from the vtkImageActor with no success. To extract the coordinates i use the GetPickPosition() method from vtkPropPicker.
<br><br>My purpose is to pick taking into account the image actor only. What's the right way to achieve this?<br><br><br>