Performs projection on the entire stack using the specified method and returns the result, where 'method' is "avg", "min", "max", "sum", "sd" or "median". Add " all" to 'method' to project all hyperstack time points.
(ImagePlus imp, String method)
| 68 | the result, where 'method' is "avg", "min", "max", "sum", "sd" or "median". |
| 69 | Add " all" to 'method' to project all hyperstack time points. */ |
| 70 | public static ImagePlus run(ImagePlus imp, String method) { |
| 71 | return run(imp, method, 1, imp.getStackSize()); |
| 72 | } |
| 73 | |
| 74 | /** Performs projection using the specified method and stack range, and returns |
| 75 | the result, where 'method' is "avg", "min", "max", "sum", "sd" or "median". |
nothing calls this directly
no test coverage detected