How to handle array of pics in matlab -
i have array called rectimgs contains 2000 pics , see individual pic do
imshow(rectimgs{375}) // displays 375th pic in array.
now each pic 86 * 86 * 3 (rgb)
size((rectimgs{375})) ans = 86 86 3
how access each pixel of image array, example want find out average value pixel 43*44 each picture (say red value), how can that.
ok, figured out eg: access green value pixel 86 * 86 of 456th picture
rectimgs{456}(86,86,3)
will work
Comments
Post a Comment