how to find rgb values of an image & store in excel sheet
2 ビュー (過去 30 日間)
古いコメントを表示
I want to extract the diff values of rgb values
0 件のコメント
回答 (1 件)
KSSV
2016 年 11 月 22 日
RGB = imread('your image') ; % read image, color image
R = RGB(:,:,1) ;
G = RGB(:,:,2) ;
B = RGB(:,:,3) ;
% write to excel
xlswrite('Red.xls', R)
xlswrite('Green.xls', G)
xlswrite('Blue.xls', B)
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!