How to plot blurred points in Matplotlib
As the question says, I'm looking for a way to plot blurred points using Matplotlib. I don't want to plot a set of points and then apply a filter to blurry the whole image. Instead of it, I would like to plot a set of points, each of them with an associated level of blur. Thank you in advance. Here's another work around. You can display an image at each location instead of a marker using a BboxImage . That way you can blur or manipulate the image any way you want. This tutorial has more about BboxImages . import matplotlib.pyplot as plt from scipy import ndimage from matplotlib.image import