Reputation: 11
I am working on a project about applying the method of superpixels in python. I used the slic() function, but because the images are very big, the program takes SEVERAL MINUTES to run all the code. I noted that that slic() function just uses 1 CPU. When I used MATLAB to do the same that I do in python, I use the function called superpixels() and that function uses all the resources of my computers (GPU also), so that means that it takes FEW SECONDS to run all the code.
So, I would like to know how can I improve that slic() function of python in order to make it faster. Where can I get the codes of the slic() function?
Or maybe I was making something wrong?
Upvotes: 1
Views: 315
Reputation: 1512
well i don't have a solution but i do have a few suggestions:
Upvotes: 0