Skip to content

Otsu's method thresholding and image binarization on GPU in CUDA

License

Notifications You must be signed in to change notification settings

palucdev/CudaOtsu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CudaOtsu

Otsu's method thresholding and image binarization on GPU using CUDA in C++.

Otsu's Method

Simple and one of the most popular image thresholding method used in computer vision problems. Algorithm helps to find optimal threshold value for greyscale image to be then used in image binarization. As binarized images are main data type for problems such as OCR, Otsu's method is used as a part of pre-processing pipelines for computer vision problems.

Otsu's main idea is to find threshold that minimzes the intra-class variance within 'foreground' and 'background' classes. Based on observation that minimazing intra-class variance is the same as maximizing inter-class variance, we can define algorithm as following steps:

  1. Compute histogram and probabilities of each intensity level
  2. Set up initial classes probability and classes mean
  3. For every intensity level:
    • Update class probability and mean for current intensity level
    • Compute inter-class variance
  4. Threshold will be at intenisty level with highest inter-class variance

Otsu's Method Visualization

Otsu's Method Visualization

Project goal

Project is focused on implementing Otsu's method as CUDA kernels to test how well GPU will handle this algorithm in terms of computation time (comparing to multithreaded CPU implementation). Also it's a kind of CUDA playground for me as I'm absolute beginner in GPU computations.

Current features

  • C++ implementation of Otsu's method on CPU (single threaded)
  • Basic CUDA implementation of Otsu's method on GPU
  • Basic CUDA shared memory usage (no huge speed boost here, Otsu's algorithm gains very little from cache)
  • Makefile for more multiplatform approach
  • Extendable Binarizers architecture

How to run project

  • Build project using makefile build target or visual studio project build
$> make clean
$> make build

If you have any errors during make build command, please check if the SOURCE_FILES variable (in Makefile) is set correctly according to your OS!

  • Run it using makefile
$> make run 
    file=<absolute_path_to_file>
    threads=<cuda_threads_number>
    blocks=<cuda_blocks_number>
    device_id=<gpu_id> 
    # default GPU indexed as 0, for more info use nvidia-smi tool
  • or directly from executable (.exe in case of Windows OS)
$> ./cudaOtsu <absolute_path_to_file> <cuda_threads_number>  
    <cuda_blocks_number> -d <gpu_id> [optional flags]
    # Flags:
    #   -h (show histogram values for each binarizer run)
    #   --cpu (run CPU implementation)
    #   --gpu (run basic GPU implementation)
    #   --gpu-sm (run shared memory optimized GPU implementation)
    #   --gpu-mono (run GPU version with singlekernel architecture on single GPU block)
    #   --run-all (run all implemented versions of Otsu algorithm both CPU and GPU)

To do

  • Concurrent CPU method implementation for benchmarking (openMP)
  • Memory optimization
  • Simple (cross-platform) GUI
  • Cuda GPU selection error handling
  • Research and compare different CUDA optimization mechanisms

About

Otsu's method thresholding and image binarization on GPU in CUDA

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages