라즈베리파이 카메라 사용법 상세한 자료 파이선 코드 [링크]
라즈베리파이에서 GUI 구현을 위해 찾아 본 사이트들. 미처 알지 못했던 것들이 늘 회한으로 다가오면서도 또 역시 배우지 않고 지나치는 적이 얼마나 많은가.
Get Started With Raspberry Pi GUI https://www.instructables.com/id/Get-Started-With-Raspberry-PI-GUI/
Make Simple GUIs With the Raspberry Pi Using EasyGUI https://www.lifewire.com/make-simple-guis-with-the-raspberry-pi-using-easygui-4094706
Python GUI – tkinter 참고 https://www.geeksforgeeks.org/python-gui-tkinter/
Use C# and .NET to develop your own GUI apps for the Raspberry Pi https://tutorials-raspberrypi.com/write-raspberry-pi-gui-apps-c-sharp-dot-net/
The Best GUI Widgets for Raspberry Pi https://www.digikey.com/en/maker/blogs/2018/the-best-gui-widgets-for-raspberry-pi
라즈베리파이 카메라 사용을 위해 자료를 찾던 중 아주 좋은 자료가 있어 링크로 연력한다. 카피한 곳 출처는 다음과 같다. 링크 자료출처: https://picamera.readthedocs.io/en/release-1.9/index.html#picamera
picamera
This package provides a pure Python interface to the Raspberry Pi camera module for Python 2.7 (or above) or Python 3.2 (or above).
Links
- The code is licensed under the BSD license
- The source code can be obtained from GitHub, which also hosts the bug tracker
- The documentation (which includes installation, quick-start examples, and lots of code recipes) can be read on ReadTheDocs
- Packages can be downloaded from PyPI, but reading the installation instructions is more likely to be useful
Table of Contents
- 1. Python 2.7+ Installation
- 2. Python 3.2+ Installation
- 3. Quick Start
- 4. Basic Recipes
- 4.1. Capturing to a file
- 4.2. Capturing to a stream
- 4.3. Capturing to a PIL Image
- 4.4. Capturing to an OpenCV object
- 4.5. Capturing resized images
- 4.6. Capturing consistent images
- 4.7. Capturing timelapse sequences
- 4.8. Capturing in low light
- 4.9. Capturing to a network stream
- 4.10. Recording video to a file
- 4.11. Recording video to a stream
- 4.12. Recording over multiple files
- 4.13. Recording to a circular stream
- 4.14. Recording to a network stream
- 4.15. Overlaying images on the preview
- 4.16. Overlaying text on the output
- 4.17. Controlling the LED
- 5. Advanced Recipes
- 5.1. Unencoded image capture (YUV format)
- 5.2. Unencoded image capture (RGB format)
- 5.3. Rapid capture and processing
- 5.4. Rapid capture and streaming
- 5.5. Capturing images whilst recording
- 5.6. Recording at multiple resolutions
- 5.7. Recording motion vector data
- 5.8. Splitting to/from a circular stream
- 5.9. Custom outputs
- 5.10. Custom encoders
- 5.11. Raw Bayer data captures
- 6. Frequently Asked Questions (FAQ)
- 6.1. Can I put the preview in a window?
- 6.2. Help! I started a preview and can’t see my console!
- 6.3. The preview doesn’t work on my PiTFT screen
- 6.4. How much power does the camera require?
- 6.5. How can I take two consecutive pictures with equivalent settings?
- 6.6. Can I use picamera with a USB webcam?
- 6.7. How can I tell what version of picamera I have installed?
- 6.8. How come I can’t upgrade to the latest version?
- 7. Camera Hardware
- 8. Deprecated Functionality
- 9. API Reference
- 9.1. PiCamera
- 9.2. PiCameraCircularIO
- 9.3. CircularIO
- 9.4. PiVideoFrameType
- 9.5. PiVideoFrame
- 9.6. PiEncoder
- 9.7. PiVideoEncoder
- 9.8. PiImageEncoder
- 9.9. PiRawMixin
- 9.10. PiCookedVideoEncoder
- 9.11. PiRawVideoEncoder
- 9.12. PiOneImageEncoder
- 9.13. PiMultiImageEncoder
- 9.14. PiRawImageMixin
- 9.15. PiCookedOneImageEncoder
- 9.16. PiRawOneImageEncoder
- 9.17. PiCookedMultiImageEncoder
- 9.18. PiRawMultiImageEncoder
- 9.19. PiRenderer
- 9.20. PiOverlayRenderer
- 9.21. PiPreviewRenderer
- 9.22. PiNullSink
- 9.23. Exceptions
- 10. Array Extensions
- 11. Change log
- 11.1. Release 1.9 (2015-01-01)
- 11.2. Release 1.8 (2014-09-05)
- 11.3. Release 1.7 (2014-08-08)
- 11.4. Release 1.6 (2014-07-21)
- 11.5. Release 1.5 (2014-06-11)
- 11.6. Release 1.4 (2014-05-06)
- 11.7. Release 1.3 (2014-03-22)
- 11.8. Release 1.2 (2014-02-02)
- 11.9. Release 1.1 (2014-01-25)
- 11.10. Release 1.0 (2014-01-11)
- 11.11. Release 0.8 (2013-12-09)
- 11.12. Release 0.7 (2013-11-14)
- 11.13. Release 0.6 (2013-10-30)
- 11.14. Release 0.5 (2013-10-21)
- 11.15. Release 0.4 (2013-10-11)
- 11.16. Release 0.3 (2013-10-04)
- 11.17. Release 0.2
- 12. License
Indices and tables
'라즈베리파이' 카테고리의 다른 글
온습도 센서 DHT11 실습 python 코드 (0) | 2019.04.02 |
---|---|
온습도 센서 DHT11 - 비동기 방식으로 값을 얻는 C코드 (0) | 2019.04.01 |
FSR402센서, FSR (Force Sensing Resistors) 힘 감지 센서 라즈베리파이 파이선 코드 (0) | 2019.03.27 |
라즈베리파이 BMP180 대기압 측정센서 C와 Python 코드 (0) | 2019.03.26 |
모든 센서종류, 센서타입 리스트 (0) | 2019.03.26 |