June 2018
Beginner to intermediate
202 pages
5h 5m
English
The fast scanning algorithm is another unsupervised image segmentation algorithm. The fast scanning algorithm is efficiently used in food, sport, and medical images. It works by scanning pixels in the image and grouping neighboring pixels that are similar within a predefined threshold.
Julia implements fast scanning algorithms in the fast_scanning function, which is part of Julia's ImageSegmentation package. The fast_scanning function has three input parameters:
We will demonstrate the fast scanning algorithm on an identical example of the Felzenszwalb algorithm. ...