필터 지우기
필터 지우기

How to find the length of segments of a matrix that meet certain condition?

조회 수: 5 (최근 30일)
Hi guys, I am trying hard to think of an algorithm for this, but no luck.
If I have a matrix a = [77 77 77 79 79 79 77 77 77 77];
And I want to find the length of segments that are equal to 77 (3 and 4).
What is the most efficient way to do this?
thank you very much for your help!

채택된 답변

Image Analyst
Image Analyst 2017년 11월 11일
Simply use the function meant for that. If you have the Image Processing Toolbox, use regionprops:
a = [77 77 77 79 79 79 77 77 77 77];
props = regionprops(a == 77, 'Area');
allLengths = [props.Area]
You'll get:
allLengths =
3 4

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Genetic Algorithm에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by