ArbitraryROI
- class caqtus.types.image.roi.ArbitraryROI(
- original_image_size: tuple[Width, Height],
- indices,
Bases:
ROIArbitrary region of interest inside an image.
This ROI is defined by specifying the indices of the pixels in the original image that are part of the region of interest.
While this ROI is the most generic one, it becomes very inefficient when the number of pixels in the region of interest is large, because it stores the coordinates of all pixels. Whenever possible, use a more specific ROI.
- indices
The indices of the pixels in the original image that are part of the
- region of interest.