1 Star 0 Fork 1

超哥/Halcon_Project

forked from xiaodelea/Halcon_Project 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
lowpass.hdev 803 Bytes
一键复制 编辑 原始数据 按行查看 历史
天真到無可救藥 提交于 2018-03-17 11:53 +08:00 . some Halcon's project
<?xml version="1.0" encoding="UTF-8"?>
<hdevelop file_version="1.1" halcon_version="13.0">
<procedure name="main">
<interface/>
<body>
<l>read_image(Image,'fabrik')</l>
<l>get_image_size(Image, Width, Height)</l>
<l>gen_lowpass(ImageLowpass, 0.1, 'n', 'dc_edge',Width ,Height)//低通</l>
<l>fft_generic(Image, ImageFFT, 'to_freq', -1, 'none', 'dc_edge', 'complex')//傅里叶变换</l>
<l>convol_fft(ImageFFT, ImageLowpass, ImageConvol)//混合</l>
<l>fft_generic(ImageConvol, ImageResult, 'from_freq', 1, 'none', 'dc_edge', 'byte')</l>
<l>dev_open_window(0, 0, Width, Height, 'black', WindowHandle)</l>
<l>dev_display(Image)</l>
<l>dev_open_window(0, 0, Width, Height, 'black', WindowHandle1)</l>
<l>dev_display(ImageResult)</l>
</body>
<docu id="main">
<parameters/>
</docu>
</procedure>
</hdevelop>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yhc2020/Halcon_Project.git
git@gitee.com:yhc2020/Halcon_Project.git
yhc2020
Halcon_Project
Halcon_Project
master

搜索帮助