Clear Filters
Clear Filters

How to filter plots to get constant more prominently visible?

1 view (last 30 days)
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.

Accepted Answer

Walter Roberson
Walter Roberson on 28 Apr 2016
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 Comment
Ali Zeeshan
Ali Zeeshan on 29 Apr 2016
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];

Sign in to comment.

More Answers (0)

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!