LabVIEW MathScript RT Module

cancel
Showing results for 
Search instead for 
Did you mean: 

image reconstruction

I'm trying to use mathscript to reconstruct an image, original file is a 16 by 16 bitmap file, in matlab I can use gray(256) function to convert the bitmap file into gray code image, but how to realize this in mathscript?
0 Kudos
Message 1 of 2
(6,077 Views)

Hi,

 

What does the reconstruction mean?

 

Currently, MathScript does not support the gray functions. However, a bug report has been filed for the unsupported colormap function. You can find detail in this thread

 

To display a image in gray code, you can use the following script

image(A);

colormap('gray');

where A is the image data.

0 Kudos
Message 2 of 2
(6,066 Views)