Difference between revisions of "Raspberry PI Chessboard Camera"
Jump to navigation
Jump to search
(→Links) |
(→Links) |
||
Line 104: | Line 104: | ||
* https://www.raspberrypi.org/magpi/chess-board-raspberry-pi/ | * https://www.raspberrypi.org/magpi/chess-board-raspberry-pi/ | ||
* https://codereview.stackexchange.com/questions/220915/python-chess-game | * https://codereview.stackexchange.com/questions/220915/python-chess-game | ||
+ | * https://hobbylark.com/board-games/Top-5-Free-Chess-GUIs-for-UCI-Engines | ||
[[Category:Raspberry]] | [[Category:Raspberry]] |
Revision as of 16:48, 15 October 2019
Parts List
# | picture | part | example sources | documents | ~ price |
---|---|---|---|---|---|
1 | Chessboard | Wikipedia | 25 € | ||
2 | Chess pieces | Wikipedia | 25 € | ||
3 | Raspberry PI | Wikipedia | 45 € | ||
4 | Web Camera | Raspberry PI compatibility list (german) | 60 € | ||
5 | USB Powerbank | 15 € | |||
6 | 16 GByte Micro SD Card | 5 € |
Pictures
Installation
see
- Raspberry_PI for Raspberry PI software installation
- Raspberry PI WebCam for the WebCam installation.
CV_Chess
Trying out the CV_Chess project from https://classes.engineering.wustl.edu/ese205/core/index.php?title=CV_Chess Fork of it at:
Installation
git clone https://github.com/WolfgangFahl/ESE205-CVChess/
./installOpenCV
./install
Test
./test
============================= test session starts ==============================
platform linux -- Python 3.7.3, pytest-5.2.1, py-1.8.0, pluggy-0.13.0
rootdir: /home/wf/source/python/ESE205-CVChess
collected 2 items
test_camera.py . [ 50%]
test_webcam.py . [100%]
============================== 2 passed in 3.87s ===============================
Preview
# see https://opencv-python-tutroals.readthedocs.io/en/latest/py_tutorials/py_gui/py_video_display/py_video_display.html
import numpy as np
import cv2
cap = cv2.VideoCapture(0)
while(True):
# Capture frame-by-frame
ret, frame = cap.read()
# Our operations on the frame come here
#gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
# Display the resulting frame
cv2.imshow('Camera',frame)
if cv2.waitKey(1) & 0xFF == ord('q'):
break
# When everything done, release the capture
cap.release()
cv2.destroyAllWindows()
start the above code - stop by pressing 'q'
python3 preview.py
Links
- https://buildmedia.readthedocs.org/media/pdf/python-chess/
- https://classes.engineering.wustl.edu/ese205/core/index.php?title=CV_Chess
- https://en.chessbase.com/post/how-to-build-your-own-usb-electronic-che-board
- https://www.raspberrypi.org/magpi/chess-board-raspberry-pi/
- https://codereview.stackexchange.com/questions/220915/python-chess-game
- https://hobbylark.com/board-games/Top-5-Free-Chess-GUIs-for-UCI-Engines