Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 1.58 KB

README.md

File metadata and controls

24 lines (18 loc) · 1.58 KB

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.