Raspberry pi
sudo apt-get --allow-releaseinfo-change update
sudo apt-get upgrade
pip install numpy
pip3 install numpy
sudo apt-get install -y libhdf5-dev libhdf5-serial-dev python3-pyqt5 libatlas-base-dev
pip install opencv-contrib-python==4.0.0.10
เวลาลงจะมี ขึ้น Vi agreement ให้กด q
ทดสอบ opencv
# define a video capture object
vid = cv2.VideoCapture(0)
while(True):
# Capture the video frame
# by frame
ret, frame = vid.read()
# Display the resulting frame
cv2.imshow('frame', frame)
# the 'q' button is set as the
# quitting button you may use any
# desired button of your choice
if cv2.waitKey(1) & 0xFF == ord('q'):
break
# After the loop release the cap object
vid.release()
# Destroy all the windows
cv2.destroyAllWindows()
Install samba share folder
sudo apt-get install samba samba-common-bin
sudo chmod 777 /etc/samba/smb.conf
—add ลงใน smb.conf
[Home]
comment=Raspberry Pi Share
path=/home/pi
browseable=Yes
writeable=Yes
only guest=no
create mask=0777
directory mask=0777
public=yes
--- จบแล้ว แก้ permission ของ Folder
sudo pcmanfm
—right click at home/pi "anyone"
Reboot