From Friday, April 19th (11:00 PM CDT) through Saturday, April 20th (2:00 PM CDT), 2024, ni.com will undergo system upgrades that may result in temporary service interruption.

We appreciate your patience as we improve our online experience.

NI產品與技術 討論區

取消
顯示結果 
搜尋替代 
您的意思是: 

Image corner detection(角偵測)

請問 NI Vision 是否有 corner detection(角偵測) 的函式.

類似 :

i. 1988 年Harris-Stephens 角偵測法
ii. 1978 年Hessian matrix 角偵測法
iii. 2004 年EoH角偵測法
iv. 1997 年SUSAN 角偵測法
v. 2006 年FAST 角偵測器

0 積分
1 條訊息(共 2 條)
5,880 檢視

Hey Simon, 

 

NI Vision 似乎沒有直接做corner detection的function,

 

但是有一些間接的 方法可以做到basic corner detector ,

 

corner.png

 

上圖是利用Vision assisant 做的結果圖,你可以看到可以找到左上與右下的角點,

 

如果是API 你可以用imaqconvolve來達到套用特定kernel的功能,

 

float kernel[9] = {0,0,0,0,-1,1,0,1,-1};

imaqConvolve(image, image, kernel, 3, 3, 0, NULL)

Regards,
Sean
0 積分
2 條訊息(共 2 條)
5,858 檢視