上传者: u010724134
|
上传时间: 2022-03-09 21:21:20
|
文件大小: 938B
|
文件类型: -
双黑线的识别及黑线提取
for(i=start_lie; i>=10; i--)
{
////////////////////////////////////////找左邊界點
for(j=pre_left_point-3;j<=pre_left_point+10;j++)
{
if((image_data[i][j]|image_data[i][j+1]|image_data[i][j+2]|image_data[i][j+3]==1)&&(image_data[i][j-1]&image_data[i][j-2]&image_data[i][j-3]&image_data[i][j-4]==0))
{
Left_point=j;
pre_left_point=j;
border_line[i][left_border]=j;
}
}