-
Notifications
You must be signed in to change notification settings - Fork 112
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implementation of 1 Dimensional Filtering Using Median Filter #343
Comments
This functionality exists in many places if the ecosystem, e.g. RollingFunctions.jl, LocalFilters and imagefiltering.jl. The implementations in those packages are more general, and can map any function over moving windows and over N-dimensional windows in the case of imagefiltering.jl. Does you implementation have something to offer that can not be found in those other packages? |
Hey @baggepinnen - thanks for the response! I was not aware of those other packages. I do not have anything additional to offer over packages. We can go ahead and close this. Yet, a concern I have is those other repositories do not seem to be regularly maintained or updated. I do not see a need to have to import additional smaller packages when it seems like DSP.jl is the one that is most up to date and ready to go. It almost makes more sense to me to merge RollingFunctions.jl or LocalFilters.jl with DSP.jl. What are your thoughts? Thanks! ~TheCedarPrince |
What makes you say this? They all seem to have great test coverage and pass their own tests. Perhaps no recent updates indicates that they are mature and well functioning? ImageFiltering is also seeing quite some activity In general, since this is self-contained functionality, there is no need to merge it into a larger package. People who only need this filtering will not be happier if they need to load all functionality in DSP to access it. If all you want is is the convenience of loading a single package only, you may create a super-package that reexports both DSP and one of the filtering packages and use that as an import, but I do not think you will find it worthwhile. If you do want to contribute to this part of the ecocsystem, you might want to improve upon those existing implementations, e.g., by increasing performance etc. One issue with |
System Information:
OS: Fedora 30
Julia Version: 1.3.0
Issue Information
Hi all,
I created a very basic implementation of a median filter to filter out 1 Dimensional signal noise; here is the function:
and here is a very basic implementation of it:
Here is an example of what the output should look like:
I would love to contribute this to the package - what all needs to be done to add it?
The text was updated successfully, but these errors were encountered: