The Bitmap Extension allows you to manipulate and import images into the drawing and patches. It offers features not provided by the NetLogo core primitives, such as: scaling, manipulation of different color channels, and width and height reporters.
To import and manipulate images you will need to include the bitmap extension in your NetLogo model.
extensions[ bitmap ]
bitmap:average-color bitmap:channel bitmap:copy-to-drawing bitmap:copy-to-pcolors bitmap:difference-rgb bitmap:export bitmap:from-view bitmap:grayscale bitmap:height bitmap:import bitmap:scaled bitmap:width
Reports a 3-element list describing the amount of R, G, and B in image, by summing across all pixels, and normalizing each component by the number of pixels in the image, so each component ranges from 0 to 255.
Extracts either the alpha, red, green, or blue channel from an image. The input channel should be an integer 0-3 indicating the channel to remove (alpha=0, red=1, green=2, blue=3). The resulting image is a grayscale image representing specified channel.
Imports the given image into the drawing without scaling the image at the given pixel coordinates.
Imports the given image into the pcolors, scaled to fit the world. The second input indicates whether the colors should be interpreted as NetLogo colors or left as RGB colors. false means RGB colors.
Reports an image that is the absolute value of the pixel-wise RGB difference between two images. Note that image1 and image2 MUST be the same width and height as each other, or errors will ensue.
Writes image to filename.
Reports an image of the current view.
Converts the given image to grayscale.
Reports the height of given image
Reports a LogoBitmap containing the image at filename.
Reports a new image that is image scaled to the given width and height
Reports the width of the given image