-
Notifications
You must be signed in to change notification settings - Fork 24
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
proposal: add SLIC superpixel algorithm #53
Comments
There's a WIP PR johnnychen94/SuperPixels.jl#2 that I failed to continue because I'm unsure how to enforce pixel connectivity when I wrote that. If you're interested, could you help finish that part? I've introduced a |
@johnnychen94 I think I can give it a try :) By the way, will prune_segments be a good start of enforce connectivity? |
Probably! TBH I'm don't have much knowledge of image segmentation, I suggest we follow the original implementation unless we know what's actually happening there. Ha, I just saw your note that "Current I do not implement enforce connectivity part." 😄 |
OK, I will realize how the original implementation does on enforce connectivity. |
Yes, it could be a good recourse, the only issue is that PSMM doesn't have a license file. We may need to list it as a reference if you find it useful. On the other hand, |
After reading your comment, I have to admit my SLIC implementation in Julia have reference laixintao's work. I have added the reference in my Julia SLIC repo as a good practice. |
Is this work still in progress? Or do folks just use https://github.com/johnnychen94/SuperPixels.jl for SLIC? |
Still in WIP, I need to work through johnnychen94/SuperPixels.jl#6 first to find out what the best type design is in Julia. Hopefully, we could work on FYI, with @Cuda-Chen's help, a working SLIC version is available in the |
Thanks @johnnychen94! This code works for me -- I wonder if you are open to just having https://gist.github.com/jsundram/e78bc63cb131fb66cb7c811bdd9a3e0e |
Recently, I wrote a SLIC superpixel algorithm in pure Julia.
For watching this repo almost a year, I found there was no one add SLIC into
ImageSegmentation.jl
.Therefore, I would like to add my implementation, though it needs a lot of reworking to fit into.
The text was updated successfully, but these errors were encountered: