how to get odd rows and columns,even rows and columns
44 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
juveria fatima
am 13 Mär. 2018
Kommentiert: Birdman
am 14 Mär. 2018
A1 is the lena image
A is to the first row
similarly how to get the even rows ,even columns,odd rows,odd columns
A1 = imread('lena1.jpg');
A=A1(:,1);
3 Kommentare
Akzeptierte Antwort
Birdman
am 13 Mär. 2018
Consider you have number of rows and columns which is an even number,
Odd rows:
A1(1:2:end-1,:)
Even rows:
A1(2:2:end,:)
Odd columns:
A1(:,1:2:end-1)
Even columns:
A1(:,2:2:end)
3 Kommentare
Jos (10584)
am 14 Mär. 2018
By substracting one, you discard the last odd row (column) when the number of rows (columns) of the array is odd. When this number is even, it does not matter, so just to be flexible, do not subtract one :)
Birdman
am 14 Mär. 2018
Yes you are right Jos, therefore at the beginning of the question, I stated that:
Consider you have number of rows and columns which is an even number
:)
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Read, Write, and Modify Image finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!