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

Method get

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

Source from the content-addressed store, hash-verified

248 }
249
250 public final int get(int x, int y) {
251 return pixels[y*width+x]&0xff;
252 }
253
254 public final void set(int x, int y, int value) {
255 pixels[y*width+x] = (byte)value;

Callers 15

populateListMethod · 0.45
showSourceMethod · 0.45
parseMenuMethod · 0.45
runMethod · 0.45
getValueAtMethod · 0.45
getSampleImageNamesMethod · 0.45
getProcessorMethod · 0.45
getSliceLabelMethod · 0.45
readAVIMethod · 0.45
runMethod · 0.45
doFullDumpMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected