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.When you cannot make it, fake it.
This gives:
This is by no means perfect, but something along these lines might suffice your needs. Things to consider:
So, this is just an ugly fake. Sometimes they look good enough, sometimes not.