Edge operator shows both rising and falling edge
조회 수: 84 (최근 30일)
이전 댓글 표시
Im trying to detect the rising edge of a datastream. My code looks as follows:
data = importdata('myfile');
Trigger = data.data(:,1)
L = logical(Trigger)
which results in the following figure.
As I only want the rising edge the edge() operator from the image processing package should give me just that.
but for some reason it ends up like this:
M = edge(L);
what am i doing wrong?
thanks
댓글 수: 0
답변 (2개)
Shubham Rawat
2021년 2월 1일
Hi Max,
Edge functionality is used to detect edges(boundaries) in an image. You may look into the documentation here:
To detect rising or falling edge in data:
You may use this: Rising or falling edges of EdgeCount signals - MATLAB (mathworks.com)
Hope this Helps!
댓글 수: 0
Image Analyst
2021년 2월 1일
Try this trick of using strfind():
risingEdgeIndexes = strfind(L, [0, 1]) + 1;
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!