Returns the points of this Roi that are contained in the specified area ROI. Returns null if there are no resulting points or Roi is not an area roi.
(Roi roi)
| 498 | /** Returns the points of this Roi that are contained in the specified area ROI. |
| 499 | * Returns null if there are no resulting points or Roi is not an area roi. */ |
| 500 | public PointRoi containedPoints(Roi roi) { |
| 501 | return checkContained(roi, true); |
| 502 | } |
| 503 | |
| 504 | /** Returns the points contained (not contained) in <code>roi</code> if <code>keepContained</code> is true (false). */ |
| 505 | PointRoi checkContained(Roi roi, boolean keepContained) { |