Skip to content

A CUDA implementation of MeanShift clustering algorithm. Written as Parallel Computing course project.

License

Notifications You must be signed in to change notification settings

fede-vaccaro/CUDA_MeanShift

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CUDA MeanShift

A CUDA implementation of MeanShift clustering algorithm. Written as Parallel Computing course project.

Here's a pic of a generated 2D dataset, and how the points are clustered after Mean Shift:

Before After

depandancies needed:

  • CUDA 10.0
  • Boost library

MeanShift is a simple clustering algorithm. It is embarassingly parallel, so a natural choice for its implementation is CUDA. Currently it's only for 2D points, but since it's used for Image Segmentation, soon will be added the implementation for RGB image.

This version is optimized to avoid lots of vram access thanks to the shared memory.

Read the included .pdf for further information.

About

A CUDA implementation of MeanShift clustering algorithm. Written as Parallel Computing course project.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published