Skip to content

robert-wettstaedt/image-processing

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Image processing

Different image processing algorithms for the browser using only JavaScript and the HTML5 canvas.

Subfolders

  1. Binarization with threshold and automatic determination of best threshold (ISODATA)
  2. Flood filling algorithms (breadth-first, depth-first and sequential region labeling)
  3. Identifying contours of a binary image (Potrace algorithm)
  4. Approximating the contours of 3. with polygons (Potrace algorithm)
  5. Smoothing the polygons of 4. with bezier curves and converting to SVG (Potrace algorithm)