I need to see specific points in a CT-scan (I've been given a mask representing a segmentation, so I know the coordinate in mm of my features of interest). This is what I am doing at the moment in ImageJ:
Is there a way to automatically jump to the slice corresponding to the specified location?
Yes. I would either
I'd prefer Java because it provides more options when compared to the macro language.
In Java the code would be
imp.setSlice(20);
int poi=imp.getProcessor().getPixelValue(10,5); //int I assume but could be double
Although this is a very simple Plugin so you could also do the same in the macro language easily