How to save statistics in the function - image processing

조회 수: 1 (최근 30일)
SS
SS 2021년 5월 18일
편집: SS 2021년 5월 20일
Hi, I am running a code on a set of binary images to calculate the positions and angles of some line elements. I have some issues saving the statistics and results in the error : index exceeds bounds. Can someone please help me resolving this issue.

채택된 답변

KSSV
KSSV 2021년 5월 18일
The given error is very clear and simple. The error says, you are trying to extract more number of elements then present from the array.
Example:
A = rand(1,10) ; % array of size 1x10
A(1) % first element
A(end) % last element
A(10) % last element
A(12) % error, as there is no 12th element
In your case, check the dimensions of array and run the loop properly. Learn about debugging the code, this will help you to rectify your error easily.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by