soypat / tvd

Total Variation Denoising filter.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

tvd

Total Variation Denoising filter.

  • Ideal for capturing edges.
  • Varying signals may artifact with "staircase effect", see image.

denoising results

Usage (1D)

    const lambda = 2
    var noisyData []float64 = getData()
    denoised := tvd.Denoise1D(noisyData, lambda)
    fmt.Println(denoised)

About

Total Variation Denoising filter.

License:MIT License


Languages

Language:Go 100.0%