How to filter plots to get constant more prominently visible?

2 次查看(过去 30 天)
I am working on plots to get the distance between two constants point in the plots. Below is one example plot i generated where x-axis shows the time of video and y-axis hows the height of bounding box. I need to take distance between two points where the bounding box height was constant for some time. Like if bounding box height increases/decreases between the range of 1 to 2 for some time, we consider it that the bounding box height was same for some time. But the graph does not clearly show this pattern, i need to filter the noise and make the constant portion more prominent in order to extract constant portions from plot. If anyone can help me in it.

采纳的回答

Walter Roberson
Walter Roberson 2016-4-28
Use histc() or the newer histcounts() or quantiz() to quantize the values.
Your problem is not well specified in its current form. Are you looking for hard edges, or are you looking for relative movement? If you were looking for relative movement you could look at abs(diff(y)) but you then run the risk of missing gradual drift -- for example, 1.3:.05:2.8 never has more than the small 0.05 difference between any two adjacent values, but the overall change is 1.5; where would you want to put the breakpoints in such a case?
  1 个评论
Ali Zeeshan
Ali Zeeshan 2016-4-29
Walter, have a look on below plot, i need something like shown in red, and then want to extract points shown in green:
I want to ignore the curves that decreases suddenly from some point. I have applied one DPCM Encoding and Decoding Quantization method and its plot is also shown below.
My input values falls between the range of [0 1], so how can i define partition and codebook for it? In above Quantization plot i have used following partition and codebook
partition = [-1:.1:.9]; codebook = [-1:.1:1];

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by