Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

How to work with some part of matrix only?

1 Ansicht (letzte 30 Tage)
Hana
Hana am 7 Aug. 2015
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
I have several tif images. their size is big and I get a memory error for that. Thats why I decieded to select a part of them and do my operation on that part only to avoid memory error.could this be a solution and how can I do it?
L = imread('lc60_4.tif');
s =imread('s240_4.tif');
c =imread('c240_4.tif');
S =imread('ts4_240.tif');
S5 =imread('td4_240.tif');
[x,y] = size(L);

Antworten (2)

VIJENDRA
VIJENDRA am 7 Aug. 2015
you can use 'imcrop' to crop some part of the image.
croppedIm = imcrop(yourImage);
  1 Kommentar
Hana
Hana am 7 Aug. 2015
How to define the extent of the matrix?

Walter Roberson
Walter Roberson am 7 Aug. 2015
Depending on what you are doing, you may be able to use the "src_filename" version of blockproc()
imcrop() is the same thing as indexing the image array to extract a portion of it: it still requires that you read in the entire image.
With TIFF files, if your image has been created the right way, you may be able to use the TIFF Class to read "tiles": see http://www.mathworks.com/help/matlab/ref/tiff.readencodedtile.html

Diese Frage ist geschlossen.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by