Book Image

OpenCV Essentials

Book Image

OpenCV Essentials

Overview of this book

Table of Contents (15 chapters)
OpenCV Essentials
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

Flood fill


The flood fill operation fills the connected components with a given color. Starting from a seed point, the neighboring pixels are colored with a uniform color. The neighboring pixels can be within a specified range of the current pixel. The flood fill function is int floodFill(InputOutputArray image, Point seedPoint, Scalar newVal, Rect* rect=0, Scalar loDiff=Scalar(), Scalar upDiff=Scalar(),int flags=4). The parameters loDiff and upDiff represent the range to check for every neighboring pixel (note that 3-channel difference thresholds can be specified). The parameter newVal is the color to apply to the pixels that are in range. The lower part of the parameter flags contains the pixel's connectivity value to use (4 or 8). The upper part defines the mode of the operation.

Depending on this mode, the flood fill function will color a neighboring pixel in the input image if it is within the specified range (given by loDiff and upDiff) of either the current pixel or if the neighboring...