How to get 1% of the image?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Jason
am 30 Mär. 2016
Kommentiert: Jason
am 30 Mär. 2016
After I load a image, how do we get the 1% of the image?
0 Kommentare
Akzeptierte Antwort
Stalin Samuel
am 30 Mär. 2016
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)
5 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!