上一页 1 ··· 36 37 38 39 40 41 42 43 44 ··· 78 下一页
摘要: HALCON中存在两类基本变量:图像变量(iconic data)和控制变量(control data),其中图像变量包括image, region和XLD contours,控制变量包括integers, strings, handles等。 详细内容可参照quick_guide文档2.1.2节 阅读全文
posted @ 2017-08-02 09:33 qqhfeng16 阅读(310) 评论(0) 推荐(0) 编辑
摘要: read_image(Image,'monkey') gen_circle(region,200,200,150) reduce_domain(Image,region,Mask) crop_domain(Mask, ImagePart1) write_image(ImagePart1, 'bmp' 阅读全文
posted @ 2017-08-02 09:32 qqhfeng16 阅读(497) 评论(0) 推荐(0) 编辑
摘要: halcon代码: 1: read_image(Image,'D:/MyFile/halcon/车牌识别/图片.jpg') 2: decompose3(Image,ImageR,ImageG,ImageB) 3: trans_from_rgb(ImageR,ImageG,ImageB,ImageRe 阅读全文
posted @ 2017-08-01 09:13 qqhfeng16 阅读(962) 评论(0) 推荐(0) 编辑
摘要: halcon代码: 1: *读取并截取图片 2: dev_close_window() 3: read_image (Image, 'D:/MyFile/halcon/长度和角度测量/图.png') 4: crop_rectangle1 (Image, ImagePart, 75, 0, 400, 阅读全文
posted @ 2017-08-01 09:11 qqhfeng16 阅读(2023) 评论(0) 推荐(0) 编辑
摘要: HALCON中的算子大全(中英对照) Chapter 1 :Classification1.1 Gaussian-Mixture-Models1.add_sample_class_gmm功能:把一个训练样本添加到一个高斯混合模型的训练数据上。2.classify_class_gmm功能:通过一个高斯 阅读全文
posted @ 2017-07-31 15:42 qqhfeng16 阅读(2144) 评论(0) 推荐(0) 编辑
摘要: 1、dev_set_window — Activate a graphics window. 设置活动窗口 2、dev_open_window — Open a new graphics window. 打开活动窗口 3、dev_clear_window — Clear the contents o 阅读全文
posted @ 2017-07-31 15:26 qqhfeng16 阅读(208) 评论(0) 推荐(0) 编辑
摘要: 在循环读取文件的位置时,常用到数字与字符的转换。 数字与字符的转换 将字符转换为数字 tuple_number(StringImageIndex,IntImageIndex)` 1 2 1 2 将数字转换为字符 tuple_string (IntImageIndex, '0', StringImag 阅读全文
posted @ 2017-07-30 16:31 qqhfeng16 阅读(1242) 评论(0) 推荐(0) 编辑
摘要: read_image(Image,'monkey') gen_circle(region,200,200,150) reduce_domain(Image,region,Mask) crop_domain(Mask, ImagePart1) write_image(ImagePart1, 'bmp' 阅读全文
posted @ 2017-07-30 14:32 qqhfeng16 阅读(7554) 评论(0) 推荐(0) 编辑
摘要: assign : 对数据赋值,对数组的初始化。但不能对数组中的某一个值进行赋值。 举例:Tuple1 := [1,0,3,4,5,6,7,8,9] // 对数组进行初始化 Val := sin(1.2) + cos(1.2) // 对某一个值进行赋值 Tuple2 := [] // 数组定义 ass 阅读全文
posted @ 2017-07-29 17:28 qqhfeng16 阅读(12348) 评论(0) 推荐(1) 编辑
摘要: The operator sort_region sorts the regions with respect to their relative position. All sorting methods with the exception of 'character' use one poin 阅读全文
posted @ 2017-07-29 17:07 qqhfeng16 阅读(1406) 评论(0) 推荐(0) 编辑
上一页 1 ··· 36 37 38 39 40 41 42 43 44 ··· 78 下一页