Package qupath.lib.analysis.images
Interface SimpleImage
- All Known Subinterfaces:
- SimpleModifiableImage
- All Known Implementing Classes:
- PixelImageIJ
public interface SimpleImage
A minimal interface for accessing pixel values in a single-channel image.
- 
Method Summary
- 
Method Details- 
getValuefloat getValue(int x, int y) Get the value of a single pixel as a float.- Parameters:
- x- x-coordinate of the pixel
- y- y-coordinate of the pixel
- Returns:
 
- 
getWidthint getWidth()Get the image width.- Returns:
 
- 
getHeightint getHeight()Get the image height.- Returns:
 
 
-