How to delete ones in a binary vector that correspond to more than k consecutive repetitions?

조회 수: 2 (최근 30일)
Given a number k and a binary vector v. How to saturate the number of consecutive repetitions of ones in v to the value k? For example, if k=3 and v=[1,0,0,1,1,0,1,1,1,1,0,0] then the output should be w=[1,0,0,1,1,0,1,1,1,0,0]. Speed of the code is highly important and no toolboxes available.
Thanks in advance

채택된 답변

Ameer Hamza
Ameer Hamza 2020년 4월 27일
편집: Ameer Hamza 2020년 4월 27일
Try this. It uses function from image processing toolbox. You can check if the speed is acceptable
v = [1,0,0,1,1,0,1,1,1,1,0,0,1,1,1,1,1,0,1];
rgs = bwconncomp(v);
pxlList = cellfun(@(x) {(x(4:end).')}, rgs.PixelIdxList);
v([pxlList{:}]) = [];
Result:
v =
Columns 1 through 13
1 0 0 1 1 0 1 1 1 0 0 1 1
Columns 14 through 16
1 0 1
  댓글 수: 4

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Read, Write, and Modify Image에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by