erosion and dilation in signal processing
이전 댓글 표시
we need codes for erosion and dilation in signal processing...as imdilate and imerode functions can only be used in image processing..
채택된 답변
추가 답변 (1개)
shelley
2014년 8월 22일
0 개 추천
Yes, it is doable. It is better to binarize the signal first, and then use the command like
sel=strel('line',120,90);
%the length 120 depends on how big the gap you want to close/seal.
%the degree 90 or 0 depends on your 1D signal is in vector or row format;
results=imdilate(1Dsig,sel);
카테고리
도움말 센터 및 File Exchange에서 Morphological Operations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!