Returns the dimensions of this image (width, height, nChannels, nSlices, nFrames) as a 5 element int array.
()
| 1442 | /** Returns the dimensions of this image (width, height, nChannels, |
| 1443 | nSlices, nFrames) as a 5 element int array. */ |
| 1444 | public int[] getDimensions() { |
| 1445 | return getDimensions(true); |
| 1446 | } |
| 1447 | |
| 1448 | public int[] getDimensions(boolean varify) { |
| 1449 | if (varify) |
no test coverage detected