国产 无码 综合区,色欲AV无码国产永久播放,无码天堂亚洲国产AV,国产日韩欧美女同一区二区

Ubuntu 23.04安裝最新版本Halcon 23.05

這篇具有很好參考價值的文章主要介紹了Ubuntu 23.04安裝最新版本Halcon 23.05。希望對大家有所幫助。如果存在錯誤或未考慮完全的地方,請大家不吝賜教,您也可以點擊"舉報違法"按鈕提交疑問。

Halcon23.05更新的內(nèi)容

Ubuntu 23.04安裝最新版本Halcon 23.05,筆記,記錄,軟件安裝,ubuntu,linux,人工智能,深度學習,經(jīng)驗分享
DEEP COUNTING:快速可靠地對大量物體進行計數(shù)和位置檢測;
DEEP OCR 的訓練 – 檢測:可以非常穩(wěn)定地讀取文字,甚至不會受到方向和字體的影響;
3D 抓取點檢測的訓練:可以可靠地檢測任何物體上適合用吸力抓取的表面;
簡易擴展接口:借助 HALCON 擴展包,可以集成外部編程語言。

官網(wǎng)下載

去Halcon官網(wǎng):https://www.mvtec.com/products/halcon/,注冊或登錄,點擊Download:
Ubuntu 23.04安裝最新版本Halcon 23.05,筆記,記錄,軟件安裝,ubuntu,linux,人工智能,深度學習,經(jīng)驗分享
或者進入大恒網(wǎng)站,點擊軟件:
Ubuntu 23.04安裝最新版本Halcon 23.05,筆記,記錄,軟件安裝,ubuntu,linux,人工智能,深度學習,經(jīng)驗分享

安裝

Ubuntu 23.04安裝最新版本Halcon 23.05,筆記,記錄,軟件安裝,ubuntu,linux,人工智能,深度學習,經(jīng)驗分享
正如Winodws一樣,點擊 som 文件,會進入瀏覽器跳入一個網(wǎng)頁端:

Ubuntu 23.04安裝最新版本Halcon 23.05,筆記,記錄,軟件安裝,ubuntu,linux,人工智能,深度學習,經(jīng)驗分享
然后設(shè)置安裝目錄:
Ubuntu 23.04安裝最新版本Halcon 23.05,筆記,記錄,軟件安裝,ubuntu,linux,人工智能,深度學習,經(jīng)驗分享
點擊保存設(shè)置。
最后進行安裝:
Ubuntu 23.04安裝最新版本Halcon 23.05,筆記,記錄,軟件安裝,ubuntu,linux,人工智能,深度學習,經(jīng)驗分享
Ubuntu 23.04安裝最新版本Halcon 23.05,筆記,記錄,軟件安裝,ubuntu,linux,人工智能,深度學習,經(jīng)驗分享
然后開始進行安裝…

最后進行Halcon的許可證處理,在這里推薦一個License的博客:
Halcon License - 2023.7.1(持續(xù)更新)

環(huán)境變量設(shè)置

利用命令打開:

sudo gedit ~/.bashrc

顯示:
Ubuntu 23.04安裝最新版本Halcon 23.05,筆記,記錄,軟件安裝,ubuntu,linux,人工智能,深度學習,經(jīng)驗分享
在末尾添加(注意對應文件路徑):

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,使得環(huán)境變量設(shè)置后生效。
最后,可以在終端上輸入:hdevelop,即可打開。

創(chuàng)建快捷方式

1.打開桌面,新建一個文件,以.desktop為后綴:

sudo gedit halcon.desktop

2.在文檔中輸入:

[Desktop Entry]

Name=Halcon23.05 //自定義圖標名稱

Exec=/opt/halcon/bin/x64-linux/hdevelop //程序?qū)穆窂?br> Icon=/home/xrobot/Applications/halcon/halcon.png //圖標存放的路徑,可以是png,jpg,也可以是ico
Type=Application

StartupNotify=false

保存文檔

3.右鍵屬性,更改權(quán)限,勾選:允許作為程序執(zhí)行文件

給個最新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源文章來源地址http://www.zghlxwxcb.cn/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

到了這里,關(guān)于Ubuntu 23.04安裝最新版本Halcon 23.05的文章就介紹完了。如果您還想了解更多內(nèi)容,請在右上角搜索TOY模板網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持TOY模板網(wǎng)!

本文來自互聯(lián)網(wǎng)用戶投稿,該文觀點僅代表作者本人,不代表本站立場。本站僅提供信息存儲空間服務,不擁有所有權(quán),不承擔相關(guān)法律責任。如若轉(zhuǎn)載,請注明出處: 如若內(nèi)容造成侵權(quán)/違法違規(guī)/事實不符,請點擊違法舉報進行投訴反饋,一經(jīng)查實,立即刪除!

領(lǐng)支付寶紅包贊助服務器費用

相關(guān)文章

  • PPT開發(fā)控件Aspose.Slides最新版v23.05更新一覽!

    Aspose.Slides 是一款用于生成,管理和轉(zhuǎn)換PowerPoint幻燈片的本機API,可以使用多種格式,而不需要Microsoft PowerPoint。并且可在任何平臺上操作PowerPoint演示文稿。 Aspose API?支持流行文件格式處理,并允許將各類文檔導出或轉(zhuǎn)換為固定布局文件格式和最常用的圖像/多媒體格式。旗

    2024年02月08日
    瀏覽(20)
  • 解決python 3.11版本在linux ubuntu 23.04上使用pip命令報錯:error: externally-managed-environment

    解決python 3.11版本在linux ubuntu 23.04上使用pip命令報錯:error: externally-managed-environment

    按照提示,需使用虛擬環(huán)境方可正常使用pip install相關(guān)命令,應該是python版本升級之后在linux環(huán)境將這點作為了必選項。

    2024年02月07日
    瀏覽(27)
  • Ubuntu 23.04 正式發(fā)布

    Ubuntu 23.04 正式發(fā)布

    Ubuntu 23.04 “Lunar Lobster” 是 Ubuntu 操作系統(tǒng)的最新短期支持版本,該版本將獲得 9 個月的支持,直到 2024 年 1 月。如果你需要長期支持,建議使用 Ubuntu 22.04 LTS 代替。 Linux 內(nèi)核 Ubuntu 23.04 采用了新的 Linux 6.2 內(nèi)核。 值得注意的 Ubuntu 內(nèi)核功能: 支持構(gòu)建和運行具有通用和低延

    2023年04月22日
    瀏覽(21)
  • Ubuntu 23.04、22.04、18.04國內(nèi)源

    配置文件說明 ??? Ubuntu配置文件位置:/etc/apt/sources.list ??? 需要用root權(quán)限: ??? 2種修改方式 ??? 1)把原文件中:archive.ubuntu.com,替換為:archive.aliyun.com(或其他更新源網(wǎng)址) ??? 2)直接復制下方的內(nèi)容,覆蓋原文件中的內(nèi)容即可。 ??? 修改完成后,更新本地安裝包

    2024年02月09日
    瀏覽(60)
  • 初窺Edubuntu 23.04:裝有教育軟件的Ubuntu桌面

    初窺Edubuntu 23.04:裝有教育軟件的Ubuntu桌面

    導讀 4月20日,Edubuntu將作為Ubuntu官方口味卷土重來,作為即將發(fā)布的Ubuntu 23.04(Lunar Lobster)的一部分,所以我認為讓你們先看看這個重制版中包含的內(nèi)容是個好主意。 Edubuntu以前被稱為Ubuntu教育版,最初是與教師和技術(shù)專家合作開發(fā)的,作為一個官方的Ubuntu風味,旨在學校、

    2023年04月24日
    瀏覽(25)
  • Ubuntu 23.04 作為系統(tǒng)盤的體驗和使用感受

    Ubuntu 23.04 作為系統(tǒng)盤的體驗和使用感受

    由于公司發(fā)電腦了,我自己也有一臺臺式電腦,然后也想去折騰一下Ubuntu,就把自己的筆記本裝成Ubuntu系統(tǒng)了, 我使用的是23.04的桌面版,帶圖形化界面的。我準備換回Windows 11了(因為軟件大部分我都不想去折騰了,比較折騰時間吧)。。。。雖然很不舍得,畢竟花費了蠻多

    2024年02月14日
    瀏覽(19)
  • Ubuntu23.04-配置靜態(tài)IP地址TCP/IP參數(shù)

    Ubuntu23.04-配置靜態(tài)IP地址TCP/IP參數(shù)

    Ubuntu 23.04 點擊右上角網(wǎng)絡(luò)圖標中的設(shè)置 ? 先開啟服務 使用ip a命令查看一下 ? ? ? ?

    2024年02月09日
    瀏覽(25)
  • 【筆記】解決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日
    瀏覽(28)
  • Ubuntu 23.04、22.04、20.04、18.04國內(nèi)源--阿里云、中科大、163、清華更新源(sources.list)

    Ubuntu配置文件位置:/etc/apt/sources.list 需要用root權(quán)限: 用vi、gedit、vs code等任何熟悉的編輯工具打開文件進行修改 2種修改方式 1)把原文件中:archive.ubuntu.com,替換為:archive.aliyun.com(或其他更新源網(wǎng)址) 2)直接復制下方的內(nèi)容,覆蓋原文件中的內(nèi)容即可。 修改完成后,更

    2023年04月22日
    瀏覽(34)
  • Ubuntu20.04部署安裝Kubernetes1.23<最新嘗試,無坑版>

    節(jié)點安排: name IP master 172.16.10.21 node1 172.16.10.22 node2 172.16.10.23 如果接下來的步驟中沒有特殊指明是哪臺機器要做的話,就都要執(zhí)行 1.1.首先安裝ubuntu的虛擬機,配置靜態(tài)IP地址,使其能夠正常上網(wǎng),更換為國內(nèi)鏡像源,并且能夠被xshell正常連接上(如果這步出現(xiàn)問題可以查看

    2024年02月11日
    瀏覽(29)

覺得文章有用就打賞一下文章作者

支付寶掃一掃打賞

博客贊助

微信掃一掃打賞

請作者喝杯咖啡吧~博客贊助

支付寶掃一掃領(lǐng)取紅包,優(yōu)惠每天領(lǐng)

二維碼1

領(lǐng)取紅包

二維碼2

領(lǐng)紅包