When using imread function, the blank area automatic as 255. How to turn the pixel of blank area as empty?
1 回表示 (過去 30 日間)
古いコメントを表示
rgb_image = imread('13100 IP.jpg');
0 件のコメント
回答 (1 件)
Walter Roberson
2017 年 5 月 3 日
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.
参考
カテゴリ
Help Center および File Exchange で Convert Image Type についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!