When using imread function, the blank area automatic as 255. How to turn the pixel of blank area as empty?
Show older comments
rgb_image = imread('13100 IP.jpg');

Answers (1)
Walter Roberson
on 3 May 2017
0 votes
That is not possible with .jpg files. .jpg files can only store integral values, and cannot store an Alpha channel.
If you want to store information about which positions are empty, you will need to use a different image file format; in particular imwrite() PNG image file and either the 'alpha' or 'transparency' options. It is also possible to create alpha channels in TIFF images if you use the Tiff() class.
1 Comment
Mei Synn Tan
on 4 May 2017
Categories
Find more on Image Data 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!