Skip to content

Instantly share code, notes, and snippets.

View Darcvizer's full-sized avatar

Vladislav Kindushov(Darcvizer) Darcvizer

  • Russian, Ukraine
View GitHub Profile
@ahancock1
ahancock1 / DouglasPeuckerReduction.cs
Last active June 1, 2023 09:00
Ramer–Douglas–Peucker algorithm is a line simplification algorithm for reducing the number of points used to define its shape. Implemented in C# 7
namespace Interpolation
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows;
/// <summary>
/// Douglas Peucker Reduction algorithm.
/// </summary>