Returns true if this is a 3-slice, 8-bit RGB stack.
()
| 366 | |
| 367 | /** Returns true if this is a 3-slice, 8-bit RGB stack. */ |
| 368 | public boolean isRGB() { |
| 369 | return getSize()==3 && (stack[0] instanceof byte[]) && getSliceLabel(1)!=null && getSliceLabel(1).equals("Red"); |
| 370 | } |
| 371 | |
| 372 | /** Returns true if this is a 3-slice HSB stack. */ |
| 373 | public boolean isHSB() { |
no test coverage detected