How to install Emgucv on Raspberry pi
Mono เป็นโปรแกรมที่ใช้เขียนภาษา C# ซึ่งลักษณะการเขียนก็เหมือนกับ Microsoft Visual Studio ที่ใช้เขียนเฉพาะ Platfroms ของ Windows แต่ตัว Mono ออกแบบมาเพื่อใช้กับ Platfroms ของ Linux
OpenCV เป็น Library ของ Function โปรแกรมประมวลผลภาพหรือเรียกว่า Image Processing ซึ้งสามารถประมวลผลภาพในแบบที่ต้องการได้ด้วยการได้ขึ้นอยู่กับการโปรแกรมควบคุมภาพ
How to install mono (C#)
ขั้นตอนการติดตั้งโปรแกรม Mono
#sudo apt-get update
#sudo apt-get upgrade
#sudo apt-get install emacs
#sudo apt-get install mono-complete
How to install emgucv
ตั้ดตั้ง git แล้วโหลด Source
#sudo apt-get install git
#git clone git://git.code.sf.net/p/emgucv/code emgucv
#cd emgucv
ทำการอัพเดท submodule
#git submodule update --init --recursive
ทำการติดตั้ง dependency คอนฟิก cmake
#cd platforms/raspbian
#./apt_install_dependency
#./cmake_configure
#cd ../../..
Compile ไฟล์ open CV ถ้าได้ 100% ไม่มี Error แสดงว่าผ่าน
#sudo make
ถ้า error จะแสดงประมาณนี้
วิธีแก้หาก Error เหมือนกับตัวอย่างดังต่อไปนี้แก้ตามได้เลย
ถ้า Compile ผ่านจะได้ดังนี้
ทดสอบโปรแกรมตัวอย่างที่ได้จากการคอมไพล
#cd bin
#export LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH
#mono Example.PlanarSubdivision.monoexe
#mono Example.PlanarSubdivision.monoexe
Video
RF : http://www.emgu.com/wiki/index.php/Download_And_Installation#Raspbian_.28Raspberry_Pi_2.29
http://logicalgenetics.com/raspberry-pi-and-mono-hello-world/
http://micro2440.blogspot.com/
https://www.facebook.com/BooindyIt?ref=hl
https://www.youtube.com/channel/UCDs7h_zNn444ONo5J3Ot3iQ/videos?sort=dd&view=0&shelf_id=1
How to install Emgucv on Raspberry pi