this post was submitted on 14 Jan 2024
94 points (100.0% liked)

196

16998 readers
1512 users here now

Be sure to follow the rule before you head out.

Rule: You must post before you leave.

^other^ ^rules^

If you have any questions, feel free to contact us on our matrix channel.

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] drailin@kbin.social 8 points 1 year ago (1 children)

Apply a nice gaussian kernel convolution to the fft and smooth that doodle out! Lets get blurry up in this doodle party!

[–] PM_ME_VINTAGE_30S@lemmy.sdf.org 12 points 1 year ago (2 children)

Apply a nice gaussian kernel convolution to the fft

I applied the following code in MATLAB:

new_image = abs(ifft2(conv2(fft2(image),fspecial('gaussian',69)))); imwrite(new_image,"new_image.png")

And got this:

Figure 2024-01-15 05_40_24

[–] drailin@kbin.social 7 points 1 year ago
[–] drailin@kbin.social 5 points 1 year ago

Just noticed that you chose the nicest kernel size. Even better.