slicing grayscale into multiple monochrome bitmaps
Posted: 2017-11-10T02:48:27-07:00
Hi,
I have a laser system that works with monochrome bitmaps only (0=laser OFF/ 1=laser ON).
Is it possible to convert a grayscale bitmap (eg. 8bit) in to a set of monochrome (255) bitmaps. This way I could do 255 passes with a different bitmap for each pass.
I want to slice a 8bit grayscale into 256 monochrome bitmaps (or the number of different values present in the greyscale bitmap)
An example:
If the value for a bit in the bitmap is 10, this would result in 10 bitmaps with the bit set to 1 and 245 bitmaps with the value set to 0
Does something like this exist? can you do this with imagemagick
I have a laser system that works with monochrome bitmaps only (0=laser OFF/ 1=laser ON).
Is it possible to convert a grayscale bitmap (eg. 8bit) in to a set of monochrome (255) bitmaps. This way I could do 255 passes with a different bitmap for each pass.
I want to slice a 8bit grayscale into 256 monochrome bitmaps (or the number of different values present in the greyscale bitmap)
An example:
If the value for a bit in the bitmap is 10, this would result in 10 bitmaps with the bit set to 1 and 245 bitmaps with the value set to 0
Does something like this exist? can you do this with imagemagick