Returns the pixel array for the specified slice, where {@literal 1<=n<=nslices}.
(int n)
| 215 | |
| 216 | /** Returns the pixel array for the specified slice, where {@literal 1<=n<=nslices}. */ |
| 217 | public Object getPixels(int n) { |
| 218 | ImageProcessor ip = getProcessor(n); |
| 219 | if (ip!=null) |
| 220 | return ip.getPixels(); |
| 221 | else |
| 222 | return null; |
| 223 | } |
| 224 | |
| 225 | public void setPixels(Object pixels, int n) { |
| 226 | } |
nothing calls this directly
no test coverage detected