Ubuntu 23.04安装最新版本Halcon 23.05

这篇具有很好参考价值的文章主要介绍了Ubuntu 23.04安装最新版本Halcon 23.05。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

Halcon23.05更新的内容

Ubuntu 23.04安装最新版本Halcon 23.05,笔记,记录,软件安装,ubuntu,linux,人工智能,深度学习,经验分享
DEEP COUNTING:快速可靠地对大量物体进行计数和位置检测;
DEEP OCR 的训练 – 检测:可以非常稳定地读取文字,甚至不会受到方向和字体的影响;
3D 抓取点检测的训练:可以可靠地检测任何物体上适合用吸力抓取的表面;
简易扩展接口:借助 HALCON 扩展包,可以集成外部编程语言。

官网下载

去Halcon官网:https://www.mvtec.com/products/halcon/,注册或登录,点击Download:
Ubuntu 23.04安装最新版本Halcon 23.05,笔记,记录,软件安装,ubuntu,linux,人工智能,深度学习,经验分享
或者进入大恒网站,点击软件:
Ubuntu 23.04安装最新版本Halcon 23.05,笔记,记录,软件安装,ubuntu,linux,人工智能,深度学习,经验分享

安装

Ubuntu 23.04安装最新版本Halcon 23.05,笔记,记录,软件安装,ubuntu,linux,人工智能,深度学习,经验分享
正如Winodws一样,点击 som 文件,会进入浏览器跳入一个网页端:

Ubuntu 23.04安装最新版本Halcon 23.05,笔记,记录,软件安装,ubuntu,linux,人工智能,深度学习,经验分享
然后设置安装目录:
Ubuntu 23.04安装最新版本Halcon 23.05,笔记,记录,软件安装,ubuntu,linux,人工智能,深度学习,经验分享
点击保存设置。
最后进行安装:
Ubuntu 23.04安装最新版本Halcon 23.05,笔记,记录,软件安装,ubuntu,linux,人工智能,深度学习,经验分享
Ubuntu 23.04安装最新版本Halcon 23.05,笔记,记录,软件安装,ubuntu,linux,人工智能,深度学习,经验分享
然后开始进行安装…

最后进行Halcon的许可证处理,在这里推荐一个License的博客:
Halcon License - 2023.7.1(持续更新)

环境变量设置

利用命令打开:

sudo gedit ~/.bashrc

显示:
Ubuntu 23.04安装最新版本Halcon 23.05,笔记,记录,软件安装,ubuntu,linux,人工智能,深度学习,经验分享
在末尾添加(注意对应文件路径):

HALCONARCH=x64-linux; export HALCONARCH
HALCONROOT=/opt/halcon; export HALCONROOT
HALCONEXAMPLES=${HALCONROOT}/examples; export HALCONEXAMPLES
HALCONIMAGES=${HALCONROOT}/examples/images; export HALCONIMAGES
PATH=${HALCONROOT}/bin/${HALCONARCH}:${HALCONROOT}/FLEXlm/${HALCONARCH}:${PATH}
export PATH
if [ ${LD_LIBRARY_PATH} ] ; then
LD_LIBRARY_PATH=${HALCONROOT}/lib/${HALCONARCH}:${LD_LIBRARY_PATH}
export LD_LIBRARY_PATH
else
LD_LIBRARY_PATH=${HALCONROOT}/lib/${HALCONARCH}; export LD_LIBRARY_PATH
fi
if [ "x${FLEXID_LIBRARY_PATH}" = "x" ]; then
FLEXID_LIBRARY_PATH="${HALCONROOT}/FLEXlm/${HALCONARCH}/flexid9:/usr/lib"
export FLEXID_LIBRARY_PATH
fi

进行:source ~/.bashrc,使得环境变量设置后生效。
最后,可以在终端上输入:hdevelop,即可打开。

创建快捷方式

1.打开桌面,新建一个文件,以.desktop为后缀:

sudo gedit halcon.desktop

2.在文档中输入:

[Desktop Entry]

Name=Halcon23.05 //自定义图标名称

Exec=/opt/halcon/bin/x64-linux/hdevelop //程序对应的路径
Icon=/home/xrobot/Applications/halcon/halcon.png //图标存放的路径,可以是png,jpg,也可以是ico
Type=Application

StartupNotify=false

保存文档

3.右键属性,更改权限,勾选:允许作为程序执行文件

给个最新ubuntu的镜像源地址

sudo gedit /etc/apt/sources.list

加入:

阿里云

# aliyun
deb http://mirrors.aliyun.com/ubuntu/ lunar main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ lunar main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ lunar-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ lunar-security main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ lunar-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ lunar-updates main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ lunar-proposed main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ lunar-proposed main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ lunar-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ lunar-backports main restricted universe multiverse

清华源

# tsinghua
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar main restricted universe multiverse
deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-updates main restricted universe multiverse
deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-updates main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-backports main restricted universe multiverse
deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-backports main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-security main restricted universe multiverse
deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-security main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-proposed main restricted universe multiverse
deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ lunar-proposed main restricted universe multiverse

中科大

# 中科大
deb https://mirrors.ustc.edu.cn/ubuntu/ lunar main restricted universe multiverse
deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar main restricted universe multiverse
deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-updates main restricted universe multiverse
deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-updates main restricted universe multiverse
deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-backports main restricted universe multiverse
deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-backports main restricted universe multiverse
deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-security main restricted universe multiverse
deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-security main restricted universe multiverse
deb https://mirrors.ustc.edu.cn/ubuntu/ lunar-proposed main restricted universe multiverse
deb-src https://mirrors.ustc.edu.cn/ubuntu/ lunar-proposed main restricted universe multiverse

163源文章来源地址https://www.toymoban.com/news/detail-580070.html

# 163
deb http://mirrors.163.com/ubuntu/ lunar main restricted universe multiverse
deb http://mirrors.163.com/ubuntu/ lunar-security main restricted universe multiverse
deb http://mirrors.163.com/ubuntu/ lunar-updates main restricted universe multiverse
deb http://mirrors.163.com/ubuntu/ lunar-proposed main restricted universe multiverse
deb http://mirrors.163.com/ubuntu/ lunar-backports main restricted universe multiverse
deb-src http://mirrors.163.com/ubuntu/ lunar main restricted universe multiverse
deb-src http://mirrors.163.com/ubuntu/ lunar-security main restricted universe multiverse
deb-src http://mirrors.163.com/ubuntu/ lunar-updates main restricted universe multiverse
deb-src http://mirrors.163.com/ubuntu/ lunar-proposed main restricted universe multiverse
deb-src http://mirrors.163.com/ubuntu/ lunar-backports main restricted universe multiverse

到了这里,关于Ubuntu 23.04安装最新版本Halcon 23.05的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • PPT开发控件Aspose.Slides最新版v23.05更新一览!

    Aspose.Slides 是一款用于生成,管理和转换PowerPoint幻灯片的本机API,可以使用多种格式,而不需要Microsoft PowerPoint。并且可在任何平台上操作PowerPoint演示文稿。 Aspose API 支持流行文件格式处理,并允许将各类文档导出或转换为固定布局文件格式和最常用的图像/多媒体格式。旗

    2024年02月08日
    浏览(34)
  • 解决python 3.11版本在linux ubuntu 23.04上使用pip命令报错:error: externally-managed-environment

    按照提示,需使用虚拟环境方可正常使用pip install相关命令,应该是python版本升级之后在linux环境将这点作为了必选项。

    2024年02月07日
    浏览(37)
  • Ubuntu 23.04 正式发布

    Ubuntu 23.04 “Lunar Lobster” 是 Ubuntu 操作系统的最新短期支持版本,该版本将获得 9 个月的支持,直到 2024 年 1 月。如果你需要长期支持,建议使用 Ubuntu 22.04 LTS 代替。 Linux 内核 Ubuntu 23.04 采用了新的 Linux 6.2 内核。 值得注意的 Ubuntu 内核功能: 支持构建和运行具有通用和低延

    2023年04月22日
    浏览(32)
  • Ubuntu 23.04、22.04、18.04国内源

    配置文件说明     Ubuntu配置文件位置:/etc/apt/sources.list     需要用root权限:     2种修改方式     1)把原文件中:archive.ubuntu.com,替换为:archive.aliyun.com(或其他更新源网址)     2)直接复制下方的内容,覆盖原文件中的内容即可。     修改完成后,更新本地安装包

    2024年02月09日
    浏览(54)
  • Ubuntu 23.04 作为系统盘的体验和使用感受

    由于公司发电脑了,我自己也有一台台式电脑,然后也想去折腾一下Ubuntu,就把自己的笔记本装成Ubuntu系统了, 我使用的是23.04的桌面版,带图形化界面的。我准备换回Windows 11了(因为软件大部分我都不想去折腾了,比较折腾时间吧)。。。。虽然很不舍得,毕竟花费了蛮多

    2024年02月14日
    浏览(27)
  • 初窥Edubuntu 23.04:装有教育软件的Ubuntu桌面

    导读 4月20日,Edubuntu将作为Ubuntu官方口味卷土重来,作为即将发布的Ubuntu 23.04(Lunar Lobster)的一部分,所以我认为让你们先看看这个重制版中包含的内容是个好主意。 Edubuntu以前被称为Ubuntu教育版,最初是与教师和技术专家合作开发的,作为一个官方的Ubuntu风味,旨在学校、

    2023年04月24日
    浏览(25)
  • Ubuntu23.04-配置静态IP地址TCP/IP参数

    Ubuntu 23.04 点击右上角网络图标中的设置   先开启服务 使用ip a命令查看一下        

    2024年02月09日
    浏览(43)
  • 【笔记】解决Ubuntu 23.04下Warning: Could not find TensorRT的问题

    1. 有一块quadro显卡,想要试用一下, 先使用conda list安装了tensorflow 和 tensorrt 代码: import tensorflow as tf print(tf.test.is_built_with_cuda()) print(tf.config.list_physical_devices(\\\'GPU\\\')) 遇到如下问题: W tensorflow/compiler/tf2tensorrt/utils/py_utils.cc:38] TF-TRT Warning: Could not find TensorRT True W tensorflow/core/co

    2024年02月07日
    浏览(35)
  • Ubuntu 23.04、22.04、20.04、18.04国内源--阿里云、中科大、163、清华更新源(sources.list)

    Ubuntu配置文件位置:/etc/apt/sources.list 需要用root权限: 用vi、gedit、vs code等任何熟悉的编辑工具打开文件进行修改 2种修改方式 1)把原文件中:archive.ubuntu.com,替换为:archive.aliyun.com(或其他更新源网址) 2)直接复制下方的内容,覆盖原文件中的内容即可。 修改完成后,更

    2023年04月22日
    浏览(46)
  • Ubuntu20.04部署安装Kubernetes1.23<最新尝试,无坑版>

    节点安排: name IP master 172.16.10.21 node1 172.16.10.22 node2 172.16.10.23 如果接下来的步骤中没有特殊指明是哪台机器要做的话,就都要执行 1.1.首先安装ubuntu的虚拟机,配置静态IP地址,使其能够正常上网,更换为国内镜像源,并且能够被xshell正常连接上(如果这步出现问题可以查看

    2024年02月11日
    浏览(51)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包