It's all a blur
21–30 of 70 posts
Re: It's all a blur
#22The reason the filters used in the post are easily reversible is because none of them are binomial (i.e. the discrete equivalent of a gaussian blur). A binomial blur uses the coefficients of a row of Pascal's triangle, and thus is what you get when you repeatedly average each pixel with its neighbor (in 1D).
When you do, the information at the Nyquist frequency is removed entirely, because a signal of the form "-1, +1, -1, +1, ..." ends up blurred _exactly_ into "0, 0, 0, 0...".
All the other blur filters, in particular the moving average, are just poorly conceived. They filter out the middle frequencies the most, not the highest ones. It's equivalent to doing a bandpass filter and then subtracting that from the original image.
Here's an interactive notebook that explains this in the context of time series. One important point is that the "look" that people associate with "scientific data series" is actually an artifact of moving averages. If a proper filter is used, the blurryness of the signal is evident. https://observablehq.com/d/a51954c61a72e1ef
Re: It's all a blur
#23Can this be applied to camera shutter/motion blur, at low speeds the slight shake of the camera produces this type of blur. This is usually resolved with IBIS to stabilize the sensor.
The ability to reverse is very dependent on the transformation being well known, in this case it is deterministic and known with certainty. Any algorithm to reverse motion blur will depend on the translation and rotation of the camera in physical space, and the best the algorithm could do will be limited by the uncertainty in estimating those values. If you apply a fake motion blur like in photoshop or after effects…
Re: It's all a blur
#24Can this be applied to camera shutter/motion blur, at low speeds the slight shake of the camera produces this type of blur. This is usually resolved with IBIS to stabilize the sensor.
For instance: https://deepinv.github.io/deepinv/auto_examples/blind-invers...
Re: It's all a blur
#25Re: It's all a blur
#26Earlier quoted context omitted.
This was also my understanding. It's essentially like "cracking" a password when you have its hash and know the hashing algorithm. You don't have to know how to reverse the blur, you just need to know how to do it the normal way, you can then essentially brute force through all possible characters one at a time to see if it looks the same after applying the blur. Thinking about this, adding randomness to the blurring…
> just mask the sensitive data with a single color which is impossible to reverse (for rasterized images, this is not a good idea for PDFs Also not a good idea for masking already compressed images of text, like jpg, because some of the information might bleed out in uncovered areas.
Re: It's all a blur
#27Captain Disillusion recently covered this subject in a more popular science format as well https://youtu.be/xDLxFGXuPEc
Re: It's all a blur
#28reminds me of the guy who used the photoshop swirl effect to mask his face in csam he produced, who was found out when someone just undid the swirl
Re: It's all a blur
#29Encode the image as a boundary condition of a laminar flow and you can recover the original image from an observation. If, however, you observe after turbulence has set in, then some of the information has been lost, it's in the entropy now. How much, that depends on the turbulent flow. Don't miss out on this video by smarter every day https://youtu.be/j2_dJY_mIys?si=ArMd0C5UzbA8pmzI Treat the dynamics and time of ev…