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

Method getUnsignedShort

ij/src/main/java/ij/io/RoiDecoder.java:592–596  ·  view source on GitHub ↗
(int base)

Source from the content-addressed store, hash-verified

590 }
591
592 int getUnsignedShort(int base) {
593 int b0 = data[base]&255;
594 int b1 = data[base+1]&255;
595 return (b0<<8) + b1;
596 }
597
598 int getInt(int base) {
599 int b0 = data[base]&255;

Callers 1

getRoiMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected