How to express coordinate range of an area

조회 수: 1 (최근 30일)
afiqah nurhakim binti mohamad zaini
댓글: Johannes Fischer 2019년 9월 24일
I want to read the pixel value of an area but I dont know how to write the coordinate range
x = [ 1119 until 1121]
y = [ 392 until 394]
I have to change the 'until' word into what symbol?

답변 (1개)

Johannes Fischer
Johannes Fischer 2019년 9월 23일
You are looking for the colon operator (https://www.mathworks.com/help/matlab/ref/colon.html)
x = 1119:1121;
y = 392:394;
  댓글 수: 6
Johannes Fischer
Johannes Fischer 2019년 9월 24일
That error message means you are trying to get data points from a pixel that doesnt exist. Along the first dimension, your image has 825 pixels. with
x = [1119:1121];
you are trying to access data that does not exist, hence the error.
In order to see how big your image is, use
size(RGB)
It will give you the number of pixels along each dimension.

댓글을 달려면 로그인하십시오.

Community Treasure Hunt

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

Start Hunting!

Translated by