How can I merge two Image?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
bkshn
am 11 Aug. 2015
Bearbeitet: Stephen23
am 11 Aug. 2015
Hello
I want to merge two Image in one Image so that odd rows of image fill one of them and even row of image fill with another Image.
Thanks
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (1)
Andreas Goser
am 11 Aug. 2015
It is not totally clear what you want to achieve and especially what you already have tried, but here is a start. How to access odd rows of a matrix:
A=[1 2 3; 4 5 6; 7 8 9; 10 11 12]
A(1:2:end,:)
2 Kommentare
Andreas Goser
am 11 Aug. 2015
Right. Give it a try and start coding. Learn while you succeed or fail. If you need help, post the reproducible code.
Siehe auch
Kategorien
Mehr zu Image Processing Toolbox 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!