Hi, simple question but I'm struggling to find an answer in the Javadoc
I want to create a new ROI (in this case, the size of the whole image) and then do an newROI.intersect(roi, true) with an existing ROI to only have what is in a certain area, but I can't work out how to create a new ROI and set it's size and position.
the current ROIs I have report as ROI3DArea with println(roi.getClass()), and work with roi.setPosition5D(Point5D.Double(x, y, z, t, c)) and roi.exclusiveAdd(roi, true).
I've tried all variations on:
newROI = new ROI3DArea(Point5D.Double(0, 0, 0, 0, 0)), new ROI5D, etc
Any help appreciated!
Cheers
Tamlyn