03-08-2016 09:46 AM
I want to devide an Image to say 16 parts and then I would like to use each part of the image for Image processing to analyse the topography of the image . How can I do this. The image is attached below.
03-08-2016 02:20 PM
Well, you could use Image to Array to "reduce" the Image to an N by M array of intensities (corresponding to your Pixels), use Array functions to split the Array however you want, then use Array to Image to cast the Array back to a displayable Image. Note that you'll need additional Image buffers (one per sub-image) to make this work. You can find these functions on the Pixel Manipulation sub-palette.
Bob Schor
03-09-2016 01:00 AM