SwisTrack/Components/DoubleThresholdColorIndependent
Description
editThis step intends to separate the pixels that belongs to tracked objects. The pixels kept are in white and the black pixels will be considered as the background. Most of the time, this step follows a preprocessing method like background subtraction. In this specific case, the output pixel is white if the three channel values of the input pixel is inside of the respective color boundaries. output= (Blue Low <= inputBlue <= Blue High) && (Green Low <= inputGreen <= Green High) && (Red Low <= inputRed <= Red High)
Input
editA color image.
Output
editA binary (black and white) image.
Parameters
editBlue Low
editLower boundary of the blue channel.
Blue High
editHigher boundary of the blue channel.
Green Low
editLower boundary of the green channel.
Green High
editHigher boundary of the green channel.
Red Low
editLower boundary of the red channel.
Red High
editHigher boundary of the red channel.