Skip to content

zygmuntszpak/ImageComponentAnalysis.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

83 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ImageComponentAnalysis

Build Status Build Status Codecov

A Julia package containing a number of algorithms for analyzing connected components in binary images. In general, the input is an array of labelled components, and the output is a DataFrame where each row represents a connected component, and each column represents an attribute of that connected component. When combined with Query it affords a very flexible and easy way of filtering connected components based on their attributes.

The general usage pattern of this package is:

measurements = analyze_components(components, algorithm::AbstractComponentAnalysisAlgorithm)

For more detailed usage and a full list of algorithms, please check the documentation.