How to get 1% of the image?
1 回表示 (過去 30 日間)
古いコメントを表示
After I load a image, how do we get the 1% of the image?
0 件のコメント
採用された回答
Stalin Samuel
2016 年 3 月 30 日
A = imread('ngc6543a.jpg');
n =size(A,2)
Im_1per = A(:,1:round(n*0.01))%here 0.01 states that 1 % and it can be varied from 0.01 to 1.0
imshow(Im_1per)
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Get Started with MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!