read_image(Image,'fabrik')
threshold_sub_pix(Image,Border,35)
dev_display(Border)
Image是输入的原始图像,Threshold是设定的阈值,Width和Height是像素值计算区域的大小,ThresholdedRegion是经过分割后得到的二值化结果。
在对图像进行二值化处理时,threshold_sub_pix函数会对每个像素的值进行比较,并根据设定的阈值将其划分为前景或背景。
彩色区域为阈值(边界)
像素值大于或等于阈值,则该像素被视为前景像素
如果像素值小于阈值,则该像素被视为背景像素。