Automatic Signal segmentation for feature extraction
이 질문을 팔로우합니다.
- 팔로우하는 게시물 피드에서 업데이트를 확인할 수 있습니다.
- 정보 수신 기본 설정에 따라 이메일을 받을 수 있습니다.
오류 발생
페이지가 변경되었기 때문에 동작을 완료할 수 없습니다. 업데이트된 상태를 보려면 페이지를 다시 불러오십시오.
이전 댓글 표시
0 개 추천
Hi,
Does anyone know how to do signal segmentation on the raw signal? I need to segment the raw signal into 8 different segments so that i can do feature extraction on individual segments.

댓글 수: 2
What is the corresponding time vector that corresponds to those samples, or the sampling frequency?
It is sampled at 1Khz
채택된 답변
Image Analyst
2018년 1월 21일
Attach some signals so we can play with them.
Assuming the "tall" parts of the signal are not uniformly spaced (in which case you could extract them trivially with indexing at fixed indexes), then you need to find the center of the quiet parts. I'd start by thresholding the absolute value of the signal to find the low/quiet parts. You should have 9 of them, unless your tall signal parts hit the edge of your range. If you don't have 9, then I'd call imdilate repeatedly until you get exactly 9 quiet regions. Then I'd call regionprops() to get the centroid (middle index) of the quiet parts, and then I'd loop over the regions extracting the tall regions into cells. They need to be in cells because each region might have a different number of elements. Something like (untested)
quietParts = abs(signal) < threshold;
[~, numRegions] = bwlabel(quietParts);
while numRegions > 9
quietParts = imdilate(quietParts, [1,1,1]);
[~, numRegions] = bwlabel(quietParts);
end
% Now we should have the quiet parts. Find the centroids.
props = regionprops(quietParts, 'Centroid');
% Extract each tall signal part into a cell
for k = 1 : length(props)-1
index1 = round(props(k).Centroid;
index2 = round(props(k+1).Centroid;
individualSignals{k} = signal(index1:index2);
end
Note, the code above requires the Image Processing Toolbox.
댓글 수: 19
I just attached the signal at the top.
Anyway what do you mean by 9 quiet parts?
Like the parts with amplitude less than about 0.01 or so.
This works:
s = load('signal.mat')
signal = s.x;
subplot(2, 1, 1);
plot(signal, 'b-');
grid on;
threshold = 0.004;
subplot(2, 1, 2);
filteredSignal = sgolayfilt(abs(signal), 2, 2001);
plot(filteredSignal, 'b-');
grid on;
hold on;
quietParts = abs(filteredSignal) < threshold;
[~, numRegions] = bwlabel(quietParts)
while numRegions > 9
quietParts = imdilate(quietParts, [1,1,1]);
[~, numRegions] = bwlabel(quietParts);
end
% Now we should have the quiet parts. Find the centroids.
props = regionprops(quietParts, 'Centroid');
% Extract each tall signal part into a cell
for k = 1 : length(props)-1
index1 = round(props(k).Centroid(1));
index2 = round(props(k+1).Centroid(1));
line([index1, index1], ylim, 'Color', 'r');
line([index2, index2], ylim, 'Color', 'r');
individualSignals{k} = signal(index1:index2);
end
% Make a new figure.
figure
for k = 1 : length(individualSignals)
subplot(3, 3, k);
plot(individualSignals{k}, 'b-');
grid on;
end


Thanks!! this is exactly what i wanted.
can i ask how do you choose the threshold to be 0.004 and framelen of the sgolayfilt function to be 2001?
For the 0.04, I just looked at the plots to find a threshold where about 8 peaks would be detected.
For the frame length, I just experimented until the smoothed curves showed the peaks and valleys well without too much noise. The shorter the frame length, the more closely it will look like the original noisy signal, making it harder to find the 8 peaks and 9 valleys.
Are there any ways to remove the noisy signals and extract only the peaks?
What are the peaks? For each chunk there are dozens of peaks.

Sorry for being unclear. I am referring to just the windowed segments as shown above.
Just threshold each chunk at 0.01 or whatever is just above the noise level, like this:
thisSignal = individualSignals{k}
index1 = find(thisSignal > 0.01, 1, 'first');
index2 = find(thisSignal > 0.01, 1, 'last');
croppedSignal = thisSignal(index1:index2);
hmm. i actually have 35 other signals that does not have the same threshold. For example, if my noise threshold for the 1st signal is 0.02, the 2nd signal can be 0.01. So if i were to threshold it at a fixed value, say 0.02, then the 2nd signal will have some of the 'active' signal getting cut off. Any idea how to fix that?
You can try sgolayfilt with a shorter window to smooth it, then perhaps use findchangepts() to identify where it starts climbing.
It means you altered my code so that you're not assigning "individualSignals". Why did you change it to not assign those? Or else you're using a signal that should use a different threshold than I used for the original poster.
If you have any more questions, then attach your data and code to read it in with the paperclip icon after you read this:
@Cey your mat file does not have a signals variable in it
s = load('matlab.mat')
s = struct with fields:
data: [10000×1 double]
data = s.signal;
Unrecognized field name "signal".
So what do you think you should do? How about getting the data field of s rather than the signal field?
I guess you didn't get the hint. Your field is called data so you should do
s = load('matlab.mat')
data = s.data;
That code does not create individualSignals at all in the case that either no regions or exactly one region are found in the data. You should initialize it with
individualSignals = cell(length(props)-1, 1);
Your threshold of 0.004 is not good when used with your filtered signal. So you get no regions. And you're filtering it WAY too much, so much so that you've pretty much lost any resemblance of the original signal.
Thanks a lot, so what values should I get? @Image Analyst
thank you for your help @Walter Roberson
추가 답변 (1개)
Hristo Zhivomirov
2019년 10월 13일
Hi, Radons!
I think that this the most suitable, easy-to-use and straightforward way.
Also, you can use the example.m file as reference.
All best,
Hristo
카테고리
도움말 센터 및 File Exchange에서 Descriptive Statistics에 대해 자세히 알아보기
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!웹사이트 선택
번역된 콘텐츠를 보고 지역별 이벤트와 혜택을 살펴보려면 웹사이트를 선택하십시오. 현재 계신 지역에 따라 다음 웹사이트를 권장합니다:
또한 다음 목록에서 웹사이트를 선택하실 수도 있습니다.
사이트 성능 최적화 방법
최고의 사이트 성능을 위해 중국 사이트(중국어 또는 영어)를 선택하십시오. 현재 계신 지역에서는 다른 국가의 MathWorks 사이트 방문이 최적화되지 않았습니다.
미주
- América Latina (Español)
- Canada (English)
- United States (English)
유럽
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)
