How to read a pixelregion of a .tif image

2 次查看(过去 30 天)
I am trying to read just a portion of my .tif image since reading the entire one takes hours and hours. My code is:
a = imread('landcover.tif','PixelRegion',{[1:96684],[1,1000]});
The error comes up and I do not know why:
Error using imread (line 438)
PixelRegion values must contain [START, STOP] or [START,
INCR, STOP].
But if I only want to look at [1,2], [1,2], it could work:
a = imread('landcover.tif','PixelRegion',{[1:2],[1,2]});
If anyone can help, I will really appreciate it! Thank you!
  1 个评论
Amal George M
Amal George M 2019-12-30
ROWS and COLS must both be two-element vectors, which specify starting and ending rows (or columns).
Try :
a = imread('landcover.tif','PixelRegion',{[1,96684],[1,1000]});

请先登录,再进行评论。

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Images 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by