changing a true color or gray scale image to binary and then to gray scale or true color
2 ビュー (過去 30 日間)
古いコメントを表示
I have converted a m X n X 3 image(no color map) to binary, worked on binary and now want to convert the resultant image back to gray scale. i tried changing the logical image to uint8, the result is not as expected. Is there any way to obtain the final image in gray with the same gray scale intensities.
Thanking you in advance.
0 件のコメント
回答 (1 件)
Walter Roberson
2013 年 10 月 30 日
image(Your_Logical_Image);
colormap(gray(2));
or
gray_Image = uint8(255*Your_Logical_Image);
image(gray_Image);
colormap(gray(256));
参考
カテゴリ
Help Center および File Exchange で Modify Image Colors についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!