圖像 reduce_domain(Image, Region, Ima..."/>
溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Halcon之計(jì)算距離算子

發(fā)布時間:2020-07-14 17:43:15 來源:網(wǎng)絡(luò) 閱讀:10179 作者:小格林 欄目:編程語言
*讀取一張圖像
read_image(Image,'Circle.jpg')
*畫生成區(qū)域
draw_region(Region, 3600)
*區(qū)域->圖像
reduce_domain(Image, Region, ImageReduced)
*閾值分割
threshold(ImageReduced, Region1, 0, 35)
*區(qū)域連通->將區(qū)域分開
connection(Region1, ConnectedRegions)
*區(qū)域排序
sort_region(ConnectedRegions, SortedRegions, 'first_point', 'true', 'column')
*輸出第幾個區(qū)域(區(qū)域1區(qū)域2)
select_obj(SortedRegions, ObjectSelected, 1)
select_obj(SortedRegions, ObjectSelected1, 2)
*區(qū)域面積,得到區(qū)域面積及中心點(diǎn)坐標(biāo)
area_center(ObjectSelected,Area, Row, Column)
area_center(ObjectSelected1, Area1, Row1, Column1)
*區(qū)域轉(zhuǎn)輪廓(gen_region_contour_xld輪廓轉(zhuǎn)區(qū)域)
gen_contour_region_xld(ObjectSelected1,Contours, 'border')
***************點(diǎn)到點(diǎn)距離
distance_pp(Row,Column,Row1, Column1, Distance)
***************點(diǎn)到區(qū)域距離
distance_pr(ObjectSelected1,Row,Column,DistanceMin, DistanceMax)
***************點(diǎn)到輪廓距離
distance_pc(Contours,Row,Column,DistanceMin1, DistanceMax1)
draw_region(Region2, 3600)
reduce_domain(Image, Region2, ImageReduced1)
*提取亞像素邊緣
edges_sub_pix(ImageReduced1, Edges, 'sobel_fast', 82, 30, 50)
count_obj(Edges, Number)
*輪廓排序
sort_contours_xld(Edges, SortedContours, 'upper_left', 'true', 'row')
*選擇輪廓(直線1直線2)
select_obj(SortedContours, ObjectSelected2, 1)
select_obj(SortedContours, ObjectSelected3, 2)
*輪廓擬合(直線1直線2)
fit_line_contour_xld(ObjectSelected2,'tukey', -1, 0, 5, 2, RowBegin, ColBegin, RowEnd, ColEnd, Nr, Nc, Dist)
fit_line_contour_xld(ObjectSelected3, 'tukey', -1, 0, 5, 2, RowBegin1, ColBegin1, RowEnd1, ColEnd1, Nr1, Nc1, Dist1)
*將輸入行存儲為區(qū)域
*gen_region_line(RegionLines, RowBegin, ColBegin, RowEnd, ColEnd)
*從區(qū)域中提取XLD輪廓
*gen_contour_region_xld(RegionLines, Contours1, 'border')
*******************點(diǎn)到直線距離
distance_pl(Row,Column,RowBegin,ColBegin,RowEnd,ColEnd,Distance1)
*******************線段到線段距離
distance_ss(RowBegin1,ColBegin1,RowEnd1,ColEnd1,RowBegin,ColBegin,RowEnd,ColEnd,DistanceMin2, DistanceMax2)
*******************直線到區(qū)域距離
distance_lr(ObjectSelected,RowBegin1,ColBegin1,RowEnd1,ColEnd1,DistanceMin3, DistanceMax3)
*******************線段到區(qū)域距離
distance_sr(ObjectSelected,RowBegin1,ColBegin1,RowEnd1,ColEnd1,DistanceMin4, DistanceMax4)


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI