LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

IMAGE RESIZE

Does anyone knows how to resize an image with labview?
0 Kudos
Message 1 of 2
(2,963 Views)
"freenao" wrote in message
news:8tuod5$3ic$1@news4.isdnet.net...
> Does anyone knows how to resize an image with labview?

You can do it very easily programmatically. Work with a 2d array, find your
scaling factor, and using nested for-loops index at the source array and
output at the destination array.

Since your scaling factor will require floats, use some weighting algorithm
(look at the surrounding 4 integer pixels?) to figure out the value of the
float.
0 Kudos
Message 2 of 2
(2,963 Views)