
Halcon经验分享
guoyunfei20
object detection, visual object tracking, face recognition, metric learning, pose estimation, activity recognition, semantic segmentation...
展开
-
intersection算子耗时问题
在Halcon中,我们通常认为算子intersection(Region1, Region2 : RegionIntersection : : ) 中的Region1和Region2是不分先后的。大部分情况下他们确实不用分先后顺序,因为大部分情况下,输入的两个区域都各包含一个区域,此时无论两个区域谁是先谁是后,出来的结果都是一样的。 但根据Halcon的解释:intersectio原创 2014-01-03 13:09:52 · 4155 阅读 · 0 评论 -
利用select_region_point算子可以通过区域内的一个点或者区域的一部分,获取完整区域
如果知道区域内的一个点,获取包含该点的完整区域,实例:connection(WordReg, Regions)while (1) get_mbutton(WindowHandle,Row,Col,Button) select_region_point(Regions, TarginRegion, Row, Col) dev_display(Image) dev原创 2014-01-02 18:00:37 · 2761 阅读 · 0 评论 -
sort_region——对区域进行排序
The operator sort_region sorts the regions with respect to their relative position. All sorting methods with the exception of 'character' use one point of the region. With the help of the parameter原创 2014-05-16 09:27:30 · 10537 阅读 · 0 评论 -
junctions_skeleton——通过该算子获取骨架的交点和端点,可判断前景的几何简单性(二次分割定位)
junctions_skeleton (Operator)Namejunctions_skeleton — Find junctions and end points in a skeleton.Signaturejunctions_skeleton(Region : EndPoints,JuncPoints : : ) Descriptionjunctio原创 2014-06-09 14:23:00 · 4048 阅读 · 0 评论 -
ubuntu14.04+opencv 3.0安装及测试
ubuntu14.04+opencv 3.0安装及测试本文记录ubuntu下安装opencv过程,步骤来自 opencv官网1、安装opencv所需的库(编译器、必须库、可选库)转载请说明 http://www.cnblogs.com/llxrl/p/4471831.html GCC 4.4.x or later CMake 2.6 or higher Git GTK+2.x or higher,翻译 2016-07-06 18:45:29 · 340 阅读 · 0 评论