make image
Show older comments
hi, i have a matrix as pixel value, i want to make image according to this matrix. how can i do that? thanks
Accepted Answer
More Answers (1)
Image Analyst
on 16 Mar 2012
Use imshow or image.
imshow(yourImage, []);
If you don't have integer values in the range 0-255, or floating point values in the range 0-1, you'll need the [] to see anything, or you can use
image(yourImage);
Categories
Find more on Image Arithmetic in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!