Replies: 2 comments 9 replies
-
I never used them but I think they are already provided by FFTW.jl, see https://juliamath.github.io/FFTW.jl/latest/fft.html#FFTW.dct. Most basic image processing operations like this are scattered in the Julia ecosystem. ImageMorphology, ImageSegmentation, ImageFeatures are some packages in JuliaImages that we don't have good support for. There can be many classic algorithms in these fields that we haven't implemented. Hence if you don't have an idea of what algorithms you should implement, maybe you can look around at those packages. Also, low-level image processing algorithms such as denoise, deblur and others are also missing in JuliaImages. |
Beta Was this translation helpful? Give feedback.
-
smooth/denoise algorithms in https://github.com/sai-bi/ImageSmoothing are also good candidates. |
Beta Was this translation helpful? Give feedback.
-
Hi, my name is Tianyuan Qi, a CS student from China. I found the project "adding high-performance Image processing algorithms" in "summer of code". I have used the Matlab version "dct" & "idct" functions for creating digital image marks, OpenCV also have the function, but I haven't found the algorithms in Images.jl . So, I thought I could start with implementing these two algorithms.
What's your suggestion? Thanks.
Beta Was this translation helpful? Give feedback.
All reactions