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.
- Author:
- Pete Bankhead
-
Method Summary
-
Method Details
-
getValue
float getValue(int x, int y) Get the value of a single pixel as a float.- Parameters:
x
- x-coordinate of the pixely
- y-coordinate of the pixel- Returns:
-
getWidth
int getWidth()Get the image width.- Returns:
-
getHeight
int getHeight()Get the image height.- Returns:
-