03-12-2012 01:31 AM
hello everybody,
I have a set of images which are captured through a camera which is attached to a microscope. can i place these images in a matrix format,so that when no of rows and no of colums is given and the images have to be placed in that particular matrix format. Can anybody guide me in this.
03-12-2012 01:57 AM
A matrix has a special meaning in LabVIEW and is mostly used for linear algebra. Most likely you want a 2D array instead.
What format is the image you have? What toolkits do you have?
If you don't have the vision module, you could just use unflatten pixmap to create the 2D array.
03-13-2012 12:16 AM
hi,
Thank you for the reply. I have only vision acquisition software,i dont have vision module. My image format is BMP. If you can provide me a sample code it will be a great help for me.
03-13-2012 01:10 AM
If you have a bmp file, read it using read bmp, then convert it to an array using unflatten pixmap. See how far you get. 😄