Skip to content

Segmenting clouds from sky images using watershedding

Notifications You must be signed in to change notification settings

19tchoubou/CloudSegmentation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 

Repository files navigation

CloudSegmentation

Segmenting clouds from sky images using watershedding and Kullback-Leibler divergence.

How to use this code

import numpy as np
from segmenter import Segmenter
from PIL import Image

image_to_segment = np.array(Image.open('data/fisheye.jpg'))/255
segmenter = Segmenter()
segmented_image = segmenter.segment(image_to_segment, radius = 140) #radius will need to be changed if you plan to use this code on your own images

Results

Results

About

Segmenting clouds from sky images using watershedding

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages