国产精品久久久aaaa,日日干夜夜操天天插,亚洲乱熟女香蕉一区二区三区少妇,99精品国产高清一区二区三区,国产成人精品一区二区色戒,久久久国产精品成人免费,亚洲精品毛片久久久久,99久久婷婷国产综合精品电影,国产一区二区三区任你鲁

0
  • 聊天消息
  • 系統(tǒng)消息
  • 評(píng)論與回復(fù)
登錄后你可以
  • 下載海量資料
  • 學(xué)習(xí)在線課程
  • 觀看技術(shù)視頻
  • 寫(xiě)文章/發(fā)帖/加入社區(qū)
會(huì)員中心
創(chuàng)作中心

完善資料讓更多小伙伴認(rèn)識(shí)你,還能領(lǐng)取20積分哦,立即完善>

3天內(nèi)不再提示

ElfBoard開(kāi)源項(xiàng)目|車(chē)牌識(shí)別項(xiàng)目技術(shù)文檔

ElfBoard ? 2024-12-06 10:30 ? 次閱讀
加入交流群
微信小助手二維碼

掃碼添加小助手

加入工程師交流群

車(chē)牌識(shí)別項(xiàng)目基于百度智能云平臺(tái),旨在利用其強(qiáng)大的OCR服務(wù)實(shí)現(xiàn)車(chē)牌號(hào)碼的自動(dòng)識(shí)別。選擇百度智能云的原因是其高效的API接口和穩(wěn)定的服務(wù)質(zhì)量,能夠幫助開(kāi)發(fā)者快速實(shí)現(xiàn)車(chē)牌識(shí)別應(yīng)用。
這個(gè)開(kāi)源項(xiàng)目使用攝像頭捕捉圖像后,通過(guò)集成百度OCR服務(wù)的API,能夠輕松識(shí)別圖像中的車(chē)牌號(hào)碼,并將識(shí)別結(jié)果實(shí)時(shí)顯示在Qt界面上。

wKgZPGdSXAKAe97hAAF1niBICsk821.png

功能特性
1、圖片處理和OCR識(shí)別:使用百度OCR服務(wù),能夠通過(guò)API輕松識(shí)別圖片中的車(chē)牌號(hào)碼。
2、攝像頭實(shí)時(shí)采集圖像并保存:使用Qt設(shè)計(jì)了直觀的用戶(hù)界面,控制USB攝像頭的打開(kāi)、關(guān)閉以及實(shí)時(shí)顯示攝像頭捕獲的視頻流,并將采集到的視頻流保存為圖像。

環(huán)境說(shuō)明

1、開(kāi)發(fā)環(huán)境操作系統(tǒng):Ubuntu18.04 64位版

2、交叉編譯工具鏈:arm-poky-linux-gnueabi-gcc 5.3.0

3、開(kāi)發(fā)板使用Bootloader版本:u-boot-2016.03

4、開(kāi)發(fā)板內(nèi)核版本:linux-4.1.155、開(kāi)發(fā)板移植QT版本:qt5.6.2

圖片處理和OCR識(shí)別

百度智能云網(wǎng)址:cloud.baidu.com

本次車(chē)牌識(shí)別的方案是通過(guò)百度智能云平臺(tái)進(jìn)行實(shí)現(xiàn)的。首先進(jìn)入百度智能云網(wǎng)頁(yè)- >選擇文字識(shí)別 - > 車(chē)牌識(shí)別。

wKgZPGdSXqOAD0znAAtQzcM_vvk149.pngwKgZO2dSXqKAXKm8AAJu9FVPrDY201.png

進(jìn)入車(chē)牌識(shí)別頁(yè)面之后可通過(guò)閱讀技術(shù)文檔來(lái)學(xué)習(xí)車(chē)牌識(shí)別的使用方法。

在線識(shí)別車(chē)牌圖片

在本地實(shí)現(xiàn)之前可通過(guò)平臺(tái)提供的在線驗(yàn)證方法進(jìn)行驗(yàn)證,如下圖,需要在旁邊輸入一張車(chē)牌圖片的base64 編碼的字符串或者選擇上傳一張車(chē)牌圖片,即可進(jìn)行在線識(shí)別。視頻教程:cloud.baidu.com/video-center/video/741

wKgZO2dSXqKAXKm8AAJu9FVPrDY201.png

識(shí)別本地車(chē)牌圖片

本地實(shí)現(xiàn)車(chē)牌識(shí)別的方法需要將識(shí)別代碼拷貝到本地,并需要實(shí)現(xiàn)一個(gè)將圖片轉(zhuǎn)換為base64編碼的函數(shù)。需要輸入自己的access_token(通過(guò)閱讀文檔可知怎么獲取)。

#include

#include

#include

#include

#include

#include

#include #include #include #include #include ? inline size_t onWriteData(void * buffer, size_t size, size_t nmemb, void * userp) { std::string * str = dynamic_cast((std::string *)userp);

str->append((char *)buffer, size * nmemb); return nmemb;

} ? std::string getFileBase64Content(const char * path, bool urlencoded=false) { const std::string base64_chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" "abcdefghijklmnopqrstuvwxyz" "0123456789+/"; std::string ret;

int i = 0; int j = 0;

unsigned char char_array_3[3]; unsigned char char_array_4[4]; unsigned int bufferSize = 1024; unsigned char buffer[bufferSize]; std::ifstream file_read; file_read.open(path, std::ios::binary);

while (!file_read.eof()){ file_read.read((char *) buffer, bufferSize * sizeof(char));

int num = file_read.gcount(); int m = 0;

while (num--){ char_array_3[i++] = buffer[m++]; if(i == 3){ char_array_4[0] = (char_array_3[0] & 0xfc) >> 2;

char_array_4[1] = ((char_array_3[0] & 0x03) << 4) + ((char_array_3[1] & 0xf0) >> 4); char_array_4[2] = ((char_array_3[1] & 0x0f) << 2) + ((char_array_3[2] & 0xc0) >> 6); char_array_4[3] = char_array_3[2] & 0x3f;

for(i = 0; (i <4) ; i++) ret += base64_chars[char_array_4[i]]; i = 0;

} } } file_read.close(); if(i){ for(j = i; j < 3; j++) char_array_3[j] = '\0'; char_array_4[0] = (char_array_3[0] & 0xfc) >> 2; char_array_4[1] = ((char_array_3[0] & 0x03) << 4) + ((char_array_3[1] & 0xf0) >> 4); char_array_4[2] = ((char_array_3[1] & 0x0f) << 2) + ((char_array_3[2] & 0xc0) >> 6); char_array_4[3] = char_array_3[2] & 0x3f;

for(j = 0; (j < i + 1); j++) ret += base64_chars[char_array_4[j]]; while((i++ < 3)) ret += '='; } if (urlencoded) ret = curl_escape(ret.c_str(), ret.length());

return ret; } std::string performCurlRequest(const char *pic_path, const std::string &token) { std::string result;

char *web_curl = nullptr;

CURL *curl = curl_easy_init(); CURLcode res; if (!asprintf(&web_curl, "https://aip.baidubce.com/rest/2.0/ocr/v1/license_plate?access_token=%s", token.c_str())) { perror("asprintf error"); } curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, "POST");

curl_easy_setopt(curl, CURLOPT_URL, web_curl); curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L); curl_easy_setopt(curl, CURLOPT_DEFAULT_PROTOCOL, "https"); ? curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0L); curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0L); ? struct curl_slist *headers = NULL; headers = curl_slist_append(headers, "Content-Type: application/x-www-form-urlencoded");

headers = curl_slist_append(headers, "Accept: application/json"); curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers); std::string base64_image = getFileBase64Content(pic_path, true); std::string post_data = "image=" + base64_image + "&multi_detect=false&multi_scale=false";

curl_easy_setopt(curl, CURLOPT_POSTFIELDS, post_data.c_str()); curl_easy_setopt(curl, CURLOPT_WRITEDATA, &result); curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, onWriteData); ? curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, false); curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0L);

if(curl_easy_perform(curl) != CURLE_OK) fprintf(stderr, "Curl request failed: %s\n", curl_easy_strerror(res)); curl_easy_cleanup(curl); free(web_curl); return result;

} int main(int argc, char *argv[]) { std::string access_token = "24.d69c300e601a1d2e3f735d916d45eb5a.2592000.1724636199.282335-99367601"; //填自己的access_tocken std::string result;

std::string car_number; ? result = performCurlRequest("/home/root/num/1.jpg", access_token); //存放圖片的路徑 ? std::string json = result; std::regex pattern(""number":"(.*?)""); std::smatch match; if (std::regex_search(json, match, pattern)) { car_number = match[1].str(); std::cout << "read car number is: " << car_number << std::endl; } }

依賴(lài)庫(kù)編譯

編譯車(chē)牌識(shí)別的應(yīng)用需要依賴(lài)Curl庫(kù)、OpenSSL庫(kù)、OpenCv庫(kù)、JsonCPP庫(kù)。詳細(xì)的依賴(lài)庫(kù)安裝步驟請(qǐng)參考以下鏈接:

bbs.elfboard.com/forum.php?mod=viewthread&tid=496&extra=page%3D1

bbs.elfboard.com/forum.php?mod=viewthread&tid=495&extra=page%3D1

bbs.elfboard.com/forum.php?mod=viewthread&tid=497&extra=page%3D1

bbs.elfboard.com/forum.php?mod=viewthread&tid=498&extra=page%3D1

應(yīng)用編譯

elf@ubuntu:~/work$ . /opt/fsl-imx-x11/4.1.15-2.0.0/environment-setup-cortexa7hf-neon-poky-linux-gnueabi elf@ubuntu:~/work$ $CXX demoCar.cpp -o demoCar -I /home/elf/work/curl-7.71.1/install/include/ -I /home/elf/work/jsoncpp-1.9.5/install/include/ -I /home/elf/work/opencv-3.4.1/install/include/ -std=c++11 -L /home/elf/work/curl-7.71.1/install/lib/ -L /home/elf/work/jsoncpp-1.9.5/install/lib/ -L /home/elf/work/opencv-3.4.1/install/lib/ -lopencv_core -lopencv_highgui -lopencv_imgproc -lopencv_videoio -lopencv_imgcodecs -lcurl

編譯完成將文件通過(guò)scp拷貝到ELF 1開(kāi)發(fā)板運(yùn)行即可,這樣就可以將本地的車(chē)牌圖片通過(guò)HTTPS發(fā)送到百度智能云進(jìn)行識(shí)別,并將識(shí)別結(jié)果返回。

攝像頭實(shí)時(shí)采集圖像并保存

程序設(shè)計(jì)

在前面一個(gè)章節(jié)實(shí)現(xiàn)了對(duì)本地車(chē)牌圖片的識(shí)別,下面來(lái)介紹如何通過(guò)攝像頭進(jìn)行車(chē)牌識(shí)別,采用USB攝像頭進(jìn)行識(shí)別,程序設(shè)計(jì)如下圖所示。

wKgZPGdSYC-ADVntAACniexGP6E983.png

主函數(shù)的實(shí)現(xiàn)main.cpp

int main(int argc, char *argv[]) { QApplication a(argc, argv); Camera w; w.setWindowFlags(w.windowFlags()& ~Qt::WindowMaximizeButtonHint& ~Qt::WindowMinimizeButtonHint ); w.showMaximized(); w.show(); return a.exec(); }

設(shè)置UI

ui->setupUi(this); timer = new QTimer; QDesktopWidget* desktopWidget = QApplication::desktop(); QRect screenRect = desktopWidget->screenGeometry(); qDebug("screen.width = %d , screen.height = %d",screenRect.width(),screenRect.height());

this->imageWidget = new ImageWidget(this);

this->imageWidget->setBackgroundRole(QPalette::Dark); this->imageWidget->setSizePolicy(QSizePolicy::Ignored, QSizePolicy::Ignored); this->imageWidget->setObjectName(QString::fromUtf8("imageWidget"));

if(screenRect.width()==800) { ui->pbt_start->setGeometry(60,300,70,50); ui->pbt_stop->setGeometry(190,300,70,50); this->imageWidget->setGeometry(QRect(5, 30, 350, 250)); } else if(screenRect.width()>800) { ui->pbt_start->setGeometry(80,400,70,70); ui->pbt_stop->setGeometry(260,400,70,70);

this->imageWidget->setGeometry(QRect(6, 37, 500, 330)); }

打開(kāi)攝像頭設(shè)備

void deviceOpen(void) { fd = open(deviceName, O_RDWR | O_NONBLOCK, 0); if (-1 == fd) { QMessageBox::about(NULL, "About", "camera open error"); exit(EXIT_FAILURE); } }

初始化攝像頭設(shè)備

void deviceInit(void) { struct v4l2_capability cap; struct v4l2_cropcap cropcap; struct v4l2_crop crop; struct v4l2_format fmt; struct v4l2_streamparm sparm; unsigned int min;

if (-1 == xioctl(fd, VIDIOC_QUERYCAP, &cap)) { if (EINVAL == errno) { QMessageBox::about(NULL,"Information"," no V4L2 device");

exit(EXIT_FAILURE); } else { errno_exit("VIDIOC_QUERYCAP");

} } if (!(cap.capabilities & V4L2_CAP_VIDEO_CAPTURE)) { QMessageBox::about(NULL,"Information"," no video capture device"); exit(EXIT_FAILURE); } struct v4l2_input input; input.index = 0; if ( ioctl(fd, VIDIOC_ENUMINPUT, &input) != 0) { QMessageBox::about(NULL,"Information","set input error");

exit(0); }

if ((ioctl(fd, VIDIOC_S_INPUT, &input)) < 0) { QMessageBox::about(NULL,"Information","set s_input error");?

exit(0); } CLEAR(cropcap); cropcap.type = V4L2_BUF_TYPE_VIDEO_CAPTURE; if (0 == xioctl(fd, VIDIOC_CROPCAP, &cropcap)) { crop.type = V4L2_BUF_TYPE_VIDEO_CAPTURE; crop.c.top = 0; crop.c.left = 0; crop.c.height = 720; crop.c.width = 1280; if (-1 == xioctl(fd, VIDIOC_S_CROP, &crop)) { switch (errno) { case EINVAL: break; default: break; } } } CLEAR (fmt);

// v4l2_format fmt.type = V4L2_BUF_TYPE_VIDEO_CAPTURE; fmt.fmt.pix.width = width; fmt.fmt.pix.height = height; fmt.fmt.pix.pixelformat = V4L2_PIX_FMT_YUYV; fmt.fmt.pix.field = V4L2_FIELD_ANY; if (-1 == xioctl(fd, VIDIOC_S_FMT, &fmt)) errno_exit("VIDIOC_S_FMT");

/* Note VIDIOC_S_FMT may change width and height.*/ if (width != fmt.fmt.pix.width) { width = fmt.fmt.pix.width; //fprintf(stderr,"Image width set to %i by device %s.\n",width,deviceName); } if (height != fmt.fmt.pix.height) { height = fmt.fmt.pix.height; //fprintf(stderr,"Image height set to %i by device %s.\n",height,deviceName); } /*Buggy driver paranoia. */ min = fmt.fmt.pix.width * 2; if (fmt.fmt.pix.bytesperline < min) fmt.fmt.pix.bytesperline = min;?

min = fmt.fmt.pix.bytesperline * fmt.fmt.pix.height; if (fmt.fmt.pix.sizeimage < min) fmt.fmt.pix.sizeimage = min; CLEAR (sparm); sparm.type = V4L2_BUF_TYPE_VIDEO_CAPTURE; sparm.parm.capture.capturemode = 0; sparm.parm.capture.timeperframe.numerator = 1; sparm.parm.capture.timeperframe.denominator = 30; if(xioctl(fd,VIDIOC_S_PARM,&sparm) < 0){ errno_exit("cam s parm"); // exit(1); } mmapInit(); }

開(kāi)啟視頻流捕獲

void captureStart(void) { unsigned int i; enum v4l2_buf_type type; for (i = 0; i < n_buffers; ++i) { struct v4l2_buffer buf; CLEAR (buf); buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE; buf.memory = V4L2_MEMORY_MMAP; buf.index = i; if (-1 == xioctl(fd, VIDIOC_QBUF, &buf)) errno_exit("VIDIOC_QBUF"); } type = V4L2_BUF_TYPE_VIDEO_CAPTURE; if (-1 == xioctl(fd, VIDIOC_STREAMON, &type)) errno_exit("VIDIOC_STREAMON"); }

超時(shí)處理

void Camera::up_date() { unsigned char image_buf[921600+54]; frameRead(image_buf); this->imageWidget->setPixmap(image_buf); }

應(yīng)用編譯及測(cè)試

編譯

elf@ubuntu:~/work/camera-demo$ . /opt/fsl-imx-x11/4.1.15-2.0.0/environment-setup-cortexa7hf-neon-poky-linux-gnueabi elf@ubuntu:~/work/camera-demo$ qmake elf@ubuntu:~/work/camera-demo$ make

拷貝camera-demo到ELF 1開(kāi)發(fā)板的/home/root路徑下,運(yùn)行測(cè)試

root@ELF1:~# cp /run/media/sda1/camera-demo ./ root@ELF1:~# chmod 777 camera-demo root@ELF1:~# export DISPLAY=:0.0 root@ELF1:~# ./camera-demo

點(diǎn)擊start按鈕之后,使用ls num路徑下查看會(huì)有攝像頭拍攝的圖片。液晶屏上會(huì)實(shí)時(shí)預(yù)覽攝像頭拍到的圖像,如下圖所示:

wKgZPGdSYRCAUYsRAAGWgTwKOp4829.png

在這里就可以和前面車(chē)牌識(shí)別結(jié)合起來(lái)了,比如攝像頭里面的畫(huà)面是一張車(chē)牌信息,通過(guò)截取攝像頭中的實(shí)時(shí)畫(huà)面到本地,然后上傳到百度智能云的后臺(tái)進(jìn)行識(shí)別,至此就完成了通過(guò)攝像頭進(jìn)行車(chē)牌識(shí)別的過(guò)程。

項(xiàng)目測(cè)試

在此基礎(chǔ)上再次完善應(yīng)用,識(shí)別車(chē)牌的應(yīng)用將識(shí)別到的車(chē)牌信息保存到文本中,基于攝像頭的應(yīng)用讀取文檔中的車(chē)牌信息顯示在Qt界面中。

1、確保開(kāi)發(fā)板已連接USB攝像頭和屏幕

2、設(shè)置Wi-Fi連接

root@ELF1:~# elf1_cmd_wifi.sh -i 8723 -s 賬號(hào) -p 密碼

執(zhí)行應(yīng)用

root@ELF1:~# ./camera-demo & root@ELF1:~# ./demoCar

單擊“start”按鈕,識(shí)別結(jié)果如下圖所示

wKgZPGdSXAKAe97hAAF1niBICsk821.png

聲明:本文內(nèi)容及配圖由入駐作者撰寫(xiě)或者入駐合作網(wǎng)站授權(quán)轉(zhuǎn)載。文章觀點(diǎn)僅代表作者本人,不代表電子發(fā)燒友網(wǎng)立場(chǎng)。文章及其配圖僅供工程師學(xué)習(xí)之用,如有內(nèi)容侵權(quán)或者其他違規(guī)問(wèn)題,請(qǐng)聯(lián)系本站處理。 舉報(bào)投訴
  • 單片機(jī)
    +關(guān)注

    關(guān)注

    6076

    文章

    45494

    瀏覽量

    670260
  • 嵌入式
    +關(guān)注

    關(guān)注

    5198

    文章

    20442

    瀏覽量

    333976
  • 開(kāi)發(fā)板
    +關(guān)注

    關(guān)注

    26

    文章

    6289

    瀏覽量

    118048
  • 開(kāi)源代碼
    +關(guān)注

    關(guān)注

    0

    文章

    41

    瀏覽量

    3953
收藏 人收藏
加入交流群
微信小助手二維碼

掃碼添加小助手

加入工程師交流群

    評(píng)論

    相關(guān)推薦
    熱點(diǎn)推薦

    【MYD-Y6ULX申請(qǐng)】基于攝像頭的人臉識(shí)別項(xiàng)目

    項(xiàng)目名稱(chēng):基于攝像頭的人臉識(shí)別項(xiàng)目試用計(jì)劃:申請(qǐng)理由:本人在嵌入式領(lǐng)域有兩年多的學(xué)習(xí)和開(kāi)發(fā)經(jīng)驗(yàn),想借助MYD-Y6ULX實(shí)現(xiàn)基于攝像頭的人臉識(shí)別系統(tǒng)。近年來(lái)很多新興的技術(shù)開(kāi)始得到廣泛應(yīng)
    發(fā)表于 01-30 11:25

    【瑞芯微RK1808計(jì)算棒試用申請(qǐng)】AIoT領(lǐng)域車(chē)牌識(shí)別Demo

    項(xiàng)目名稱(chēng):AIoT領(lǐng)域車(chē)牌識(shí)別Demo試用計(jì)劃:申請(qǐng)理由目前在調(diào)研的車(chē)牌識(shí)別項(xiàng)目主要是字母和數(shù)字識(shí)別
    發(fā)表于 09-23 15:40

    【HarmonyOS HiSpark AI Camera】智能充電站項(xiàng)目-車(chē)牌識(shí)別、刷臉充電、空閑車(chē)位

    車(chē)牌識(shí)別、身份證、行駛證識(shí)別、空閑車(chē)位檢測(cè)、火災(zāi)、煙霧、場(chǎng)站衛(wèi)生檢測(cè)。想借助發(fā)燒友論壇和鴻蒙 AI套件 Hi3516DV300平臺(tái)在邊緣側(cè)加速落地。項(xiàng)目計(jì)劃①根據(jù)
    發(fā)表于 11-18 18:42

    【瑞芯微RK1808計(jì)算棒試用申請(qǐng)】AIoT領(lǐng)域車(chē)牌識(shí)別Demo

    項(xiàng)目名稱(chēng):AIoT領(lǐng)域車(chē)牌識(shí)別Demo試用計(jì)劃:申請(qǐng)理由目前在調(diào)研的車(chē)牌識(shí)別項(xiàng)目主要是字母和數(shù)字識(shí)別
    發(fā)表于 12-28 10:33

    三步就能在OpenHarmony中實(shí)現(xiàn)車(chē)牌識(shí)別

    作者:張榮OpenHarmony 知識(shí)體系工作組介紹本車(chē)牌識(shí)別項(xiàng)目是基于開(kāi)源項(xiàng)目 EasyPR(Easy to do Plate Recognition)實(shí)現(xiàn)。EasyPR 是一個(gè)
    發(fā)表于 06-28 10:15

    三步就能在OpenHarmony中實(shí)現(xiàn)車(chē)牌識(shí)別

    介紹本車(chē)牌識(shí)別項(xiàng)目是基于開(kāi)源項(xiàng)目 EasyPR(Easy to do Plate Recognition)實(shí)現(xiàn)。EasyPR 是一個(gè)開(kāi)源的中
    發(fā)表于 07-06 11:20

    基于OpenCV開(kāi)源庫(kù)開(kāi)發(fā)的在OpenHarmony中實(shí)現(xiàn)車(chē)牌識(shí)別

    ? 張榮 OpenHarmony 知識(shí)體系工作組 介紹 本車(chē)牌識(shí)別項(xiàng)目是基于開(kāi)源項(xiàng)目 EasyPR(Easy to do Plate Recognition)實(shí)現(xiàn)。EasyPR 是一個(gè)
    的頭像 發(fā)表于 06-30 11:16 ?6303次閱讀

    Arduino Nano 33 BLE Sense的語(yǔ)音識(shí)別項(xiàng)目

    電子發(fā)燒友網(wǎng)站提供《Arduino Nano 33 BLE Sense的語(yǔ)音識(shí)別項(xiàng)目.zip》資料免費(fèi)下載
    發(fā)表于 12-07 09:32 ?3次下載
    Arduino Nano 33 BLE Sense的語(yǔ)音<b class='flag-5'>識(shí)別項(xiàng)目</b>

    眼神科技獨(dú)家中標(biāo)渤海銀行人臉識(shí)別項(xiàng)目

    這并不是眼神科技公司第一次中標(biāo)渤海銀行項(xiàng)目。眼神科技提供的生物識(shí)別統(tǒng)一認(rèn)證平臺(tái)已于2015年在渤海銀行正式上市,構(gòu)建了多母式生物識(shí)別場(chǎng)景生態(tài)。此次中標(biāo)渤海銀行面部識(shí)別項(xiàng)目,是對(duì)雙方合作
    的頭像 發(fā)表于 06-12 09:41 ?2113次閱讀

    項(xiàng)目分享|基于ELF 1開(kāi)發(fā)板的車(chē)牌識(shí)別系統(tǒng)

    項(xiàng)目選用ElfBoardELF1開(kāi)發(fā)板作為核心硬件平臺(tái),利用USB接口連接的攝像頭捕捉并識(shí)別車(chē)牌信息。一旦車(chē)牌成功識(shí)別,系統(tǒng)會(huì)觸發(fā)綠燈指示
    的頭像 發(fā)表于 03-12 09:22 ?1442次閱讀
    <b class='flag-5'>項(xiàng)目</b>分享|基于ELF 1開(kāi)發(fā)板的<b class='flag-5'>車(chē)牌</b><b class='flag-5'>識(shí)別</b>系統(tǒng)

    ElfBoard開(kāi)源項(xiàng)目|“智慧教室”開(kāi)源項(xiàng)目技術(shù)文檔

    “智慧教室”項(xiàng)目的目標(biāo)是實(shí)現(xiàn)實(shí)時(shí)采集環(huán)境中的溫度、濕度及光照信息,并將這些數(shù)據(jù)可視化地呈現(xiàn)在Qt圖形界面上。用戶(hù)既可以選擇手動(dòng)控制風(fēng)扇與窗簾的開(kāi)關(guān),也可以設(shè)置系統(tǒng)根據(jù)所采集的環(huán)境參數(shù)自動(dòng)調(diào)節(jié),以達(dá)到舒適的室內(nèi)環(huán)境。接下來(lái),將和各位小伙伴深入探討這一項(xiàng)目的具體實(shí)現(xiàn)方式。
    的頭像 發(fā)表于 09-11 10:51 ?1225次閱讀
    <b class='flag-5'>ElfBoard</b><b class='flag-5'>開(kāi)源</b><b class='flag-5'>項(xiàng)目</b>|“智慧教室”<b class='flag-5'>開(kāi)源</b><b class='flag-5'>項(xiàng)目</b><b class='flag-5'>技術(shù)</b><b class='flag-5'>文檔</b>

    ElfBoard開(kāi)源項(xiàng)目|“智慧光伏”開(kāi)源項(xiàng)目技術(shù)文檔

    最大化地捕捉和利用。下面就和各位小伙伴詳細(xì)介紹一下這一開(kāi)源項(xiàng)目是怎樣實(shí)現(xiàn)的。環(huán)境說(shuō)明1.開(kāi)發(fā)環(huán)境操作系統(tǒng):Ubuntu18.0464位版2.交叉編譯工具鏈:arm-
    的頭像 發(fā)表于 10-11 15:52 ?1493次閱讀
    <b class='flag-5'>ElfBoard</b><b class='flag-5'>開(kāi)源</b><b class='flag-5'>項(xiàng)目</b>|“智慧光伏”<b class='flag-5'>開(kāi)源</b><b class='flag-5'>項(xiàng)目</b><b class='flag-5'>技術(shù)</b><b class='flag-5'>文檔</b>

    【實(shí)戰(zhàn)】人工智能0基礎(chǔ)入門(mén):基于Python+OpenCV的車(chē)牌識(shí)別項(xiàng)目(課程+平臺(tái)實(shí)踐)

    01引言隨著智能交通系統(tǒng)的發(fā)展,車(chē)牌識(shí)別技術(shù)在車(chē)輛管理、交通監(jiān)控、停車(chē)收費(fèi)等多個(gè)領(lǐng)域發(fā)揮著重要作用。接下來(lái)小編將帶你深入了解車(chē)牌識(shí)別項(xiàng)目的全
    的頭像 發(fā)表于 12-16 10:43 ?1412次閱讀
    【實(shí)戰(zhàn)】人工智能0基礎(chǔ)入門(mén):基于Python+OpenCV的<b class='flag-5'>車(chē)牌</b><b class='flag-5'>識(shí)別項(xiàng)目</b>(課程+平臺(tái)實(shí)踐)

    ElfBoard開(kāi)源項(xiàng)目|百度智能云平臺(tái)的人臉識(shí)別項(xiàng)目

    百度智能云平臺(tái)的人臉識(shí)別項(xiàng)目,旨在利用其強(qiáng)大的人臉識(shí)別服務(wù)實(shí)現(xiàn)自動(dòng)人臉識(shí)別。選擇百度智能云的原因是其高效的API接口和穩(wěn)定的服務(wù)質(zhì)量,能夠幫助開(kāi)發(fā)者快速實(shí)現(xiàn)人臉識(shí)別應(yīng)用。 本
    的頭像 發(fā)表于 12-24 10:54 ?2184次閱讀
    <b class='flag-5'>ElfBoard</b><b class='flag-5'>開(kāi)源</b><b class='flag-5'>項(xiàng)目</b>|百度智能云平臺(tái)的人臉<b class='flag-5'>識(shí)別項(xiàng)目</b>

    ElfBoard開(kāi)源項(xiàng)目|智能消防車(chē)項(xiàng)目

    項(xiàng)目——利用ELF 1開(kāi)發(fā)板打造的智慧消防車(chē)。該項(xiàng)目展現(xiàn)了物聯(lián)網(wǎng)、數(shù)據(jù)處理等前沿技術(shù)在消防領(lǐng)域的應(yīng)用潛力,下面就和各位小伙伴展示一下這個(gè)開(kāi)源項(xiàng)目
    的頭像 發(fā)表于 01-04 16:43 ?1251次閱讀
    <b class='flag-5'>ElfBoard</b><b class='flag-5'>開(kāi)源</b><b class='flag-5'>項(xiàng)目</b>|智能消防車(chē)<b class='flag-5'>項(xiàng)目</b>