public void Apply(BufferedFrame frame)
        {
            for (int x = 0; x < frame.width; x++)
            {
                for (int y = 0; y < frame.height; y++)
                {
                    heatmap.Plot(x, y, frame.GetValue(x, y));
                }
            }

            heatmap.Step();
        }