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

Method createImage

ij/src/main/java/ij/IJ.java:2401–2403  ·  view source on GitHub ↗

Creates a new image. @param title image name @param width image width in pixels @param height image height in pixels @param depth number of stack images @param bitdepth 8, 16, 32 (float) or 24 (RGB)

(String title, int width, int height, int depth, int bitdepth)

Source from the content-addressed store, hash-verified

2399 * @param bitdepth 8, 16, 32 (float) or 24 (RGB)
2400 */
2401 public static ImagePlus createImage(String title, int width, int height, int depth, int bitdepth) {
2402 return NewImage.createImage(title, width, height, depth, bitdepth, NewImage.FILL_BLACK);
2403 }
2404
2405 /** Creates a new imagePlus. <code>Type</code> should contain "8-bit", "16-bit", "32-bit" or "RGB".
2406 In addition, it can contain "white", "black" or "ramp". <code>Width</code>

Callers 15

createHyperStackMethod · 0.95
newImageMethod · 0.95
createMethod · 0.95
newImageMethod · 0.95
runMethod · 0.95
previewLUTMethod · 0.95
runMethod · 0.95
zScaleHyperstackMethod · 0.95
resizeZMethod · 0.95
scaleMethod · 0.95
runMethod · 0.95
runMethod · 0.95

Calls 6

createImageMethod · 0.95
setDimensionsMethod · 0.95
getBitDepthMethod · 0.95
setOpenAsHyperStackMethod · 0.95
labelHyperstackMethod · 0.95
containsMethod · 0.45

Tested by 1

dispayImageMethod · 0.36