MCPcopy Create free account
hub / github.com/AstroImageJ/astroimagej / getf

Method getf

ij/src/main/java/ij/process/ByteProcessor.java:266–268  ·  view source on GitHub ↗
(int x, int y)

Source from the content-addressed store, hash-verified

264 }
265
266 public final float getf(int x, int y) {
267 return pixels[y*width+x]&0xff;
268 }
269
270 public final void setf(int x, int y, float value) {
271 pixels[y*width+x] = (byte)(value+0.5f);

Callers 15

getOrthoLineMethod · 0.45
multiplyMethod · 0.45
getAverageMethod · 0.45
getMedianMethod · 0.45
getMinMethod · 0.45
getMaxMethod · 0.45
getSumMethod · 0.45
runMethod · 0.45
customFilterMethod · 0.45
selectedMethod · 0.45
make2DArrayMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected