Update 2024: Het programma `Raspberry Pi Imager` kan rechtstreeks op een USB-drive het PIOS image schrijven. Hiermee vervalt onderstaande stap 6 om een SD-card te kopiëren naar een aangesloten USB-drive op De Raspberry PI. — Sinds april 2021, is het makkelijker geworden om een Raspberry PI 4 van USB-SSD op te starten. Dat heeft vele
Category: Technical Notes
Raspberry PI – installatie van OpenCV met broncode
Installatie van OpenCV op Raspberry PI met de broncode van OpenCV. Configuratie:• Raspberry PI met 120GB SSD: Buster, armv71 (32-bit).• OpenCV versie 4.5.2 (feb’21). Installatie volgens de Terminal instructies van PyImageSearch. Ik heb de installatie van OpenCV met compileren van de broncode uitgevoerd. Volgens PyImageSearch zitten daar enkele interessante algoritmen bij (Non-Free algorithms). De hele
Microcontroller USB-Serial port op MacOS Big Sur
MacOS Big Sur (macos 11.*) heeft vele veiligheidsaspecten ingebouwd. Vooral op gebied van drivers is het zoeken naar een voor MacOS Big Sur geschikte programmatuur. De Raspberry PI PICO is een microcontroller waarop software te maken is met MicroPython, CircuitPython of C/C++. Ik beperk mezelf tot de eerste twee SDK’s. In eerste instantie is er
Technical Note: Using a Python virtual environment in Jupyter notebooks
When testing or using various Python packages, the risk is that the new packages mangle the current Python installation, or, are in conflict with the current Python installation. Python virtual environments are an answer to solve this kind of problems. A Jupyter notebook uses a “base” installation when the Anaconda distribution is installed. How to