필터 지우기
필터 지우기

Divide an image along lines and indexing different segments they produces

조회 수: 3 (최근 30일)
Tasneem Tabassum
Tasneem Tabassum 2017년 3월 30일
댓글: Walter Roberson 2017년 3월 30일
i wanted to plot axes at a specific points but couldn't. so added lines using hline and vline commands. now i have four segments at that point, but since they are not equal i can't use blockproc. but what need is i have got to index the four segments so that i can determine positions with respect to the intersecting points as quadrant position treating that point as origin.And I could also work with drawing normal axes, putting that point at origin and thus dividing the overall image into four indexed quadrants. Any of these two approach will do for me. but sadly i can't seem to do any. I'll be really grateful if anyone could help.Thanks.

답변 (1개)

Walter Roberson
Walter Roberson 2017년 3월 30일
Subtract the index of the origin point to come up with the mapped coordinates.
x_mapped = ColumnNumber - x_center;
y_mapped = RowNumber - y_center;
Note that x corresponds to columns (second coordinate), not to rows (first coordinates)
  댓글 수: 2
Tasneem Tabassum
Tasneem Tabassum 2017년 3월 30일
thanks :D ... but can you help me with after getting the mapped coordinates as origin how can i index the four axis quadrants!
Walter Roberson
Walter Roberson 2017년 3월 30일
... You don't? You index in unmapped space.
Perhaps what you are looking for is something like:
YourMatrix(1:y_center, 1:x_center, :) %upper left
YourMatrix(y_center+1:end, 1:x_center, :) %lower left
and so on?

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

Community Treasure Hunt

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

Start Hunting!

Translated by