Filter löschen
Filter löschen

Obtaining subimages with only the x axis values

1 Ansicht (letzte 30 Tage)
shru s
shru s am 6 Jun. 2017
Kommentiert: shru s am 12 Jun. 2017
I have the following graph
in between the vertical lines is the part of the image i wish to crop and save. Could anyone suggest how I can do this? Thank you

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 6 Jun. 2017
section_widths = diff( [0, list_of_x_values, size(YourImage,2)] );
sections = mat2cell( YourImage, size(YourImage,1), section_widths, size(YourImage,3) );
Now sections will be a cell array of matrices each containing one block. You can extract some of them using {} indexing, and save as desired.

Weitere Antworten (0)

Kategorien

Mehr zu Images 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!

Translated by