版权声明:本文为博主原创文章,未经博主允许不得转载。 版权声明:本文为博主原创文章,未经博主允许不得转载。 overpaint_gray ( ImageDestination, ImageSource : : : ) 将灰度值不相同区域用不同颜色绘制到ImageDestination中, Image ...
分类:
其他好文 时间:
2017-07-27 23:36:10
阅读次数:
954
change_format ( Image : ImagePart : Width, Height : ) 改变Image图像大小,而且ImagePart图像为灰度值图像。 crop_domain ( Image : ImagePart : : ) 从Image图像中裁剪一个矩形区域。这个矩形的周长 ...
分类:
其他好文 时间:
2017-07-27 23:35:35
阅读次数:
350
1、copy_image ( Image : DupImage : : ) 复制image图像 2、region_to_bin ( Region : BinImage : ForegroundGray, BackgroundGray,Width, Height : ) 将区域Region转换为一幅二 ...
分类:
其他好文 时间:
2017-07-27 23:31:36
阅读次数:
352
1、add_channels ( Regions, Image : GrayRegions : : ) 将Image图像的灰度值赋给区域Regions,得到GrayRegions。 2、change_domain ( Image, NewDomain : ImageNew : : ) 改变Image ...
分类:
其他好文 时间:
2017-07-27 23:30:08
阅读次数:
281
sobel_amp ( Image : EdgeAmplitude : FilterType, Size : ) 根据图像的一次导数计算图像的边缘 close_edges ( Edges, EdgeImage : RegionResult : MinAmplitude : ) close_edges ...
分类:
其他好文 时间:
2017-07-27 23:28:08
阅读次数:
422
机器视觉应用工程开发思路 机器视觉应用工程主要可划分为两大部分,硬件部分和软件部分。 1.硬件部分,硬件的选型至关重要,决定了后续工作是否可以正常开展,其中关键硬件部分包括:光源,相机以及镜头。 2.软件部分,目前业内商业库主要有Halcon,康耐视,DALSA,evision,NI等,开源库有Op ...
分类:
其他好文 时间:
2017-07-17 14:33:36
阅读次数:
364
寻找图中边缘突出的部分,解决思路: 1、阈值分割,找出黑色部分 2、生成一个小矩形作为StructElement,进行opening操作,即可找到如下图的部分 3、与阈值分割后的进行difference操作,即可找到突出部分,后面再进行求取突出的最边缘部分。 其完整代码如下: 1 read_imag ...
分类:
其他好文 时间:
2017-07-01 15:20:00
阅读次数:
1233
HALCON 算子函数——Chapter 4 : File 4.1 Images 1. read_image 功能:读取有不同文件格式的图像。 2. read_sequence 功能:读取图像。 3. write_image 功能:用图形格式写图像。 4.2 Misc 1. delete_file ...
分类:
其他好文 时间:
2017-06-25 22:32:54
阅读次数:
258
标签: 学习 杂谈 分类: halcon学习 学习 杂谈 1.open_file( : : FileName, FileType : FileHandle) FileType: 'output':创建文本 ‘append':在原有的文本基础上写入该文件 'input':打开文件 2.fwrite_s ...
分类:
其他好文 时间:
2017-06-25 22:07:59
阅读次数:
216
方式一: 1.project -》设置(Alt+F7) -》 C/C++ -》分类:预处理器 -》附加包括路径 添加:$(HALCONROOT)/include,$(HALCONROOT)/include/cpp 2.project -》设置(Alt+F7) -》 连接 -》分类:输入 -》附加库路 ...
分类:
编程语言 时间:
2017-05-13 22:07:49
阅读次数:
207