• drailin
    link
    fedilink
    86 months ago

    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 [he/him]
      link
      fedilink
      English
      126 months ago

      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