SLIC_CUDA
SLIC_CUDA copied to clipboard
Superpixel SLIC for GPU (CUDA)
Hi, is the `slic_zero` version of the algorithm available, and if not, is that due to some cuda limitations? Thanks!
the opencv SLIC function returns labels running from 0 to the number of labels, which is extremely convenient for processing the superpixels after the fact. This version just seems to...
When compiling the code I received the error ``` CMake Error at CMakeLists.txt:39 (check_function_exists): Unknown CMake command "check_function_exists". ``` I added ``` include(CheckFunctionExists) ``` below the project name and this...
1、release the cudaTextureObject 2、add API to get the superpixel number 3、remove some codes under find_package(CUDA) ( Not sure, but works for me ).
Is there any paper related to this work ? I use your codes in my paper and want to cite your paper. Thanks.
Maybe it is not a good idea to set CUDA_COMPUTE_CAPABILITY manually, which may lead to some unexpected errors. I change the code in CMake from ``` ### CUDA CHECK find_package(CUDA...