Hi Lukas,
I assume you mean the x/y position of the ROI circle? If so, you are right; it’s under the ctp404.rois attr. Each ROI is an instance of an HUDiskROI, where you can get other attrs as well. As an example, you can print out the centers via the following. I’m using v2.5 here:
myct = …
myct.analyze(…)
for name, roi in myct.ctp404.rois.items():
print(name, "Center: ", roi.center)
Let me know if this isn’t what you were asking for. Thanks.