<div dir="ltr"><div dir="ltr"><div>Dear all, <br></div><div>I want to get the positions of a volume using the mouse for segmentation.  But the y coordinate is wrong. I only get the x and z fine but the depth (y) is not correct. I use this code to get the position. Is there any way to obtain the slice (y position)</div><div><br></div><div>thanks<br></div><div><br></div><div><br></div><div>            // Get the location of the click (in window coordinates)<br>            int* pos = this->GetInteractor()->GetEventPosition();<br><br>            vtkSmartPointer<vtkCellPicker> picker =<br>                vtkSmartPointer<vtkCellPicker>::New();<br>            picker->SetTolerance(0.0005);<br><br><br>            //this->GetDefaultRenderer()->Clear();<br><br>            // Pick from this location.<br>            picker->Pick(pos[0], pos[1], 0, global_renderer);<br><br>            double* worldPosition = picker->GetPickPosition();<br>            std::cout << "Cell id is: " << picker->GetCellId() << std::endl;<br><br>            if (picker->GetCellId() != -1)<br>            {<br><br>                std::cout << "Pick position is: " << worldPosition[0] << " " << worldPosition[1]<br>                    << " " << worldPosition[2] << endl;<br>            }<br></div></div></div>