Skip to content

Latest commit

 

History

History
279 lines (269 loc) · 21.7 KB

README.md

File metadata and controls

279 lines (269 loc) · 21.7 KB

HSkanner3D

3D scanning using a network of Raspberry Pies with camera modules and photogrammetry. This project is funded and overseen by Hochschule Karlsruhe - Technik und Wirtschaft and developed by Benedikt Reinberger. It involves the design and assembly of a complete 3D scanner (hardware and software). If you want to build your own, this may be a good starting point.

HSkanner3D system architecture

HSkanner3D system architecture

The Scanner in the Lab in Karlsruhe

HSkanner3D camera array

Setup

Hardware

To run your own instance of HSkanner3D or to set it up from scratch, first gather the required hardware.

  • PC with NVidia graphics card (needed for photogrammetry software Meshroom, uses CUDA exclusively)
  • keyboard, mouse, monitor for interfacing with the PC
  • one or more Raspberry Pi 4, Model B
  • one SD card, 16GB is plenty
  • one or more ethernet cable(s)
  • an ethernet switch with at least one interface for each Raspberry Pi and the PC (unmanaged is fine)

Naming Conventions

First, some naming conventions.

  • the PC will run computation of the 3D model, so it is the compute node (CN)
  • the PC will run networking and camera array control, so it also is the array server (AS)
  • the Raspberry Pies will be connected to the camera sensors and are used to interface the cameras to the network, so they are sensor nodes (SN)
  • the SN are attached to metal structures to keep them suspended at a calculated height and angle. The metal structures are called towers.
  • for each tower, there is one SN controlling the RGBW led strip for lighting and light effects. That one also is a lighting node (LN).

Expert Installation Guide

  • install Ubuntu 18.04 on the PC.
  • install the required software by running
    sudo add-apt-repository -y ppa:waveform/ppa && sudo apt-get update && sudo apt-get install -y git meshlab python3-tk ntp python-pip python3-pip python3.7 compoundpi-client && pip install setuptools
  • set up the NTP server by running
    echo "broadcast 192.168.128.255" | sudo tee -a /etc/ntp.conf
    echo "server 127.127.1.0" | sudo tee -a /etc/ntp.conf
    echo "fudge 127.127.1.0 stratum 10" | sudo tee -a /etc/ntp.conf
  • then, edit /etc/ntp.conf to remove the "limited" option from the lines
    restrict -4 default kod notrap nomodify nopeer noquery limited
    restrict -6 default kod notrap nomodify nopeer noquery limited
    ->
    restrict -4 default kod notrap nomodify nopeer noquery
    restrict -6 default kod notrap nomodify nopeer noquery
  • from this repo, execute
    /installation_setup/pxe_setup/pxe_setup_script_static.sh
  • download RaspiOS buster lite armhf 2020-02-13 (2020-12-04 will work, too), then flash it to a micro SD card.
  • copy bootloader-flash-utils and cpi_setup from the /installation_setup directory of hskanner3d to /home/pi on the rootfs.
  • then, copy over the 00_lighting_control directory from the /processing_chain of hskanner3d.
  • on the Raspberry Pi, execute
    /bootloader-flash-utils/flash_bootloader.sh
  • to flash the bootloader to one that can boot PXE. This script is made for automation. Add a cron job @reboot if you want to flash multiple Raspberry Pies headless.
  • make sure you have internet access on the Pi, then execute
    /cpi_setup/cpi_server_SN_setup.sh
  • then install the software required for the lighting to work using
    sudo apt-get install -y python3-pip python3.7 python3-rpi.gpio
    sudo pip3 install adafruit-circuitpython-neopixel rpi_ws281x
  • to enable the lighting control at boot, run
    crontab -e
  • and add
    @reboot sudo python3.7 /home/pi/00_lighting_control/lighting_receiver.py
    @reboot sudo service ntp stop && sudo ntpd -gq && sudo service ntp start
  • or equivalent, then save and exit.
  • enable the camera interface on the Pi.
  • mount the micro SD card on the PC and execute
    /installation_setup/pxe_setup/pxe_refresh_OS.sh
  • look at the config file in /processing_chain and modify the variables to suit your needs (keeping the data types).
  • reboot the PC
  • connect and power up the Raspberry Pies.
  • start the GUI from /processing_chain using python3.7.

Beginner Installation Guide

Operating System Setup

The HSkanner3D software is designed around the linux family of operating systems, thus we will be installing a linux distro on our PC to turn it into the CN and AS.

  • go to the download page for Ubuntu 18.04 and download the Ubuntu 18.04 .iso (HSkanner3D is known to work with Ubuntu 18.04 - other distros or versions may work, but 18.04 has all the majority of required software in the repositories or otherwise easily accessible). I recommend Ubuntu because it has the option to easily install and run the proprietary NVidia driver, which is needed for smooth operation.
  • on Windows, download Rufus or a similar tool and use it to flash the .iso to a USB medium from which we'll boot and install the OS.
  • on Linux, you can use dd to flash the .iso to an external installation medium using
    sudo dd if=/path/to/iso/name_of_iso.iso  of=/dev/sdx status=progress bs=4096 conv=fsync
    #    /dev/sdx should be substituted for the drive you want to flash the .iso to. Note that all partitions from that drive have to be unmounted first for dd to work.
  • insert the newly created usb installation medium into the PC and boot from it (you can look up the function key for the boot menu of your motherboard in the manual, or go into the BIOS and use boot override if available).
  • follow the instructions of the installation.
  • you will likely want to make a clean install, erasing everything on the OS disk before installing the new OS. Make sure you backed up any important files or partitions you want to keep beforehand, using a tool like Clonezilla for partitions and OS installs, or just copying the files to external media. I chose the minimal install, but either one should be fine. You can leave the boxes for third parties and updates unticked, we will deal with those manually.
  • to make networking easier, I recommend getting internet into the PC by using a different network interface than the one connected to the scanning array. The easiest way to do this is to use a smartphone connected to the PC using USB tethering. To do that, on your smartphone running Android, go to Settings > Network and Internet > Hotspot and tethering and toggle the USB tethering option while the phone is connected to the internet by the means of WiFi. Note that you have to toggle it every time the PC is rebooted.
  • if you chose Ubuntu 18.04, you will have to manually enable the proprietary NVidia drivers after the first boot. Press the Windows (Super) key on the keyboard and type "Software & Updates" to search for it. Click on the first result and navigate to the "Additional drivers" tab, then select the latest proprietary driver and install it.

Software Install on CN

  • now that we have internet access on the PC, it is time to install the software.
  • open a terminal by pressing the Windows (Super) key, then type "terminal". Click on the icon or press enter.
  • first, we will install git, a version control system I used when I developed the software. This will be used to download all the project files to the target machine. To do that, type
    sudo apt-get install -y git
  • into the terminal and press enter.
  • now that git is installed, we will download the project files by execution of
    git clone https://github.com/uncle-ben-devel/hskanner3d.git
  • this will create the development folder of the project on the PC at the home directory root. (/home/your-username-here/)
  • now you can open this file (README.md) in a text editor of your choice and copy the commands directly instead of typing them out. You can do that by selecting the text with the mouse, then mousewheel clicking inside the terminal.
  • install the required software by execution of the following line:
    sudo add-apt-repository -y ppa:waveform/ppa && sudo apt-get update && sudo apt-get install -y meshlab python3-tk ntp python-pip python3-pip python3.7 compoundpi-client && pip install setuptools 
    # meshlab: used as 3D data visualizer
    # python3-tk: python3 library for GUI development
    # ntp: service for time sync over the network
    # python-pip: source for python2.x software
    # python3-pip: source for python3.x software
    # python3.7: the version of python that is verified to work with all the involved software and scripts. Other versions may work, but are not tested.
    # compoundpi-client: part of the image capture software running on the AS.
  • enter the password if prompted.
  • we need additional software that is not provided within the Ubuntu packages. Namely, Meshroom (Version 2019 2.0 is known to work). Download it using the provided link, then move the folder named 'Meshroom-2019.2.0-linux' to /home/your-username-here/Documents/software. If the directory does not exist yet, create it. Alternatively, you can move it wherever you like and change the meshroomroot variable in the hskanner3d.config file. If you choose to use a version of Meshroom that is different from 2019.2.0-linux, make sure to correct this path in the config file as well.
  • to add the Raspberry Pi camera module to the camera database, replace the cameraSensors.db that comes with Meshroom (/aliceVision/share/aliceVision) with the one from /installation_setup.
  • if you want to be able to open the design files (CAD and simulation), you will need Freecad 0.19 with the Assembly4 and SheetMetal workbenches (Freecad 0.18 will NOT work since it can not open multiple project files at once) and Blender 2.90.0 with the MDLab plugin and the demo assets.
  • to set up the array network, search for 'Network' and click on the one under the 'Settings' category. First, click on the gear by PCI Ethernet to get into the settings of the on-board ethernet. Under the 'IPv4' tab, select 'Manual' for IPv4 Method and enter 192.168.128.2 as Address, and 255.255.255.0 as Netmask. Leave the Gateway empty. Disable IPv6 in its tab by selecting the 'Disable' option for 'IPv6 Method'. Toggle the interface on and off to apply the new settings.
  • set up the NTP server by running
    echo "broadcast 192.168.128.255" | sudo tee -a /etc/ntp.conf
    echo "server 127.127.1.0" | sudo tee -a /etc/ntp.conf
    echo "fudge 127.127.1.0 stratum 10" | sudo tee -a /etc/ntp.conf
  • this will broadcast the time on the subnet 192.168.128.0/24. Additionally, if time can not be obtained from the internet, it will use the internal clock instead.
  • then, edit /etc/ntp.conf to remove the "limited" option from the lines
    restrict -4 default kod notrap nomodify nopeer noquery limited
    restrict -6 default kod notrap nomodify nopeer noquery limited
    ->
    restrict -4 default kod notrap nomodify nopeer noquery
    restrict -6 default kod notrap nomodify nopeer noquery
  • this will ensure that time will be synchronized even if there are more than three clients.
  • make sure the PC has internet connection. Then, to enable PXE (booting the SNs over network) on the PC (AS) side, go to /installation_setup/pxe_setup. Afterwards, rightclick in the directory and select 'open in terminal' and execute
    ./pxe_setup_script_static.sh
  • this script sets up a DHCP server, a PXE server, fixes some common issues, and lays the groundwork for the SN to be able to boot from the ethernet interface. The DHCP server gives IP addresses from 192.168.128.100 to 192.168.128.200 to its clients. Make sure to change that when you have more than one hundred SN.

Software install on SN (and LN)

  • download RaspiOS buster lite armhf, .zip file, then flash it to a micro SD card. I tested the 2020-12-04 as well as the 2020-02-13 version, and both work. To help making flashing using dd easier, you can use the 'Disks' utility in Ubuntu. First, unmount all partitions on the SD card by clicking on them and then on the sqare icon below the partitions. After that, you can format it by clicking on the three horizontal lines > Format Disk ... > Format ... > Format. You can also get the device lettering from here (/dev/sdX).
  • once it is flashed, open the file browser and navigate to /media/your-username-here/boot and create an empty file called 'ssh' by opening a terminal there and executing
    sudo touch ssh
  • this enables us to remote into the Raspberry, omitting the use of a screen and keyboard.
  • next, navigate to /media/your-username-here/rootfs/etc and execute
    sudo nano dhcpcd.conf
  • then, add the lines
    interface eth0
    static ip_address=192.168.128.10/24
  • to the end of the file to set a static IP for the Pi. This makes it much easier to remote into it. Save the changes with Ctrl + S, then exit the editor using Ctrl + X.
  • navigate to /media/your-username-here/rootfs/home/pi, then copy over bootloader-flash-utils and cpi_setup from the /installation_setup directory of hskanner3d.
  • then, copy over the 00_lighting_control directory from the /processing_chain of hskanner3d.
  • after the files have been copied over, you can eject the SD card and insert it into the Raspberry Pi.
  • power up the Raspberry Pi and connect it to the network.
  • open up a terminal on the PC (AS), and connect to the Pi using ssh:
    ssh pi@192.168.128.10
  • the password is raspberry.
  • first, we need to flash a bootloader to the Pi that will allow it to boot over the network. To do that, go to the /bootloader-flash-utils directory using cd
    cd ~/bootloader-flash-utils
  • hint: you can use tab for autocompletion.
  • then, execute
    sudo ./flash_bootloader.sh
  • the system will reboot and sever the ssh connection. Reconnect to it. If you want to flash multiple Pies, add a cron job @reboot that executes the flashing script. It will flash, do the mandatory reboot, then shut down.
  • once you are reconnected, you'll need internet access for the Raspberry. You can use USB tethering again. Test for internet connection using
    ping www.google.com
  • if you can't reach it, the Pi likely tries to access the internet using the ethernet interface, the local network. To circumvent this, execute
    sudo ip route delete default
  • make sure you have internet access, then change directory (cd) to ~/cpi_setup, then execute
    ./cpi_server_SN_setup.sh
  • then install the software required for the lighting to work using
    sudo apt-get install -y python3-pip python3.7 python3-rpi.gpio
    sudo pip3 install adafruit-circuitpython-neopixel rpi_ws281x
  • to enable the lighting control at boot, run
    crontab -e
  • and add
    @reboot sudo python3.7 /home/pi/00_lighting_control/lighting_receiver.py
    @reboot sudo service ntp stop && sudo ntpd -gq && sudo service ntp start
  • or equivalent, then save and exit. The second line is to force a NTP synchronization at boot which is required for compound pi synchronized capture.
  • next, we will remove the static IP we set for easy SSH. Execute
    sudo nano /etc/dhcpcd.conf
  • and delete the last two lines we added earlier.
  • enable the camera interface using
    sudo raspi-config
  • and navigating to Interfaces > Camera > enable
  • we can now shut down the Raspberry Pi using
    sudo shutdown now
  • and remove the micro SD card.

Last steps for PXE booting

  • insert the SD card into the PC. Then, navigate to the /installation_setup/pxe_setup directory from hskanner3d and execute
    ./pxe_refresh_OS.sh
  • this script backs up the current OS setup, then takes the OS install from a SD card and copies it onto the local disk. Afterwards, it formats it in a way that wakes it compatible with network booting.
  • After the script has been executed, reboot. You can also remove the SD card now.
  • Powercycle the Raspberry Pi AFTER the PC has booted and been running for a little while. It should now boot from the network. To verify, execute
    cat /var/lib/misc/dnsmasq.leases
  • if there is no output, nothing has happened (yet). If everything goes smooth, the third field will have an IP address that was assigned to a Pi. The third field will say "raspberrypi" (the hostname of the device). The green status LED of the Pi should cycle between blinking fast twice, and pausing for about a second after it has booted with PXE. The boot may take a while (sometimes minutes), depending on the order the bootloader looks for PXE files on the network share.

Using HSkanner3D

  • look at the config file in /processing_chain and modify the variables to suit your needs (keeping the data types).
The [default] section provides defaults for all other sections. It is loaded by pressing the "load defaults" option in the GUI.
The [custom] section is loaded on GUI startup and is used as persistant storage for the user settings.
    meshroomroot        is the complete path from filesystem root to the root of meshroom (the first folder that contains files other than a single folder)
    pipe_file_hq        is the name of the meshroom pipeline file that will be used when the "high quality" option for computation is chosen in the GUI.
    pipe_file_fast      same as pipe_file_hq, but for the "fast" option.
    number_sensor_nodes the number of Raspberry Pies attached to the scanning array. This is used by compoundpi to stop scanning for more servers when the defined number of SN has been found. If the number of SN in the array is lower than this variable, compound pi will throw an assertion error.
    network_subnet      is the local network we use for the scanning array, in CIDR-notation. It's recommended you don't change this, since this is not the only place you would need to change IP addresses to use a different network for the scanner. Read the setup if you want to look where IP addresses and ranges are set for this application.
    shutterspeed        is the shutterspeed of the Raspberry Pi camera module to be used. It is set in milliseconds and invalid values will result in the camera module using its default value. Since we want to scan humans, 1/50s...1/60s is a decent shutter speed.
    isosetting          is the ISO value of the camera module. Invalid values will result in the camera module using the highest or lowest possible setting (depending on whether you over- or undershot it), but writing the set ISO to the image metadata.
    whitebalance        is the whitebalance setting of the camera module. auto works well. If set values like tungsten are set, different camera modules will still have different color temperature in the end, with auto this problem is less visible.
    selftimer           is additional wait time in seconds before the shot is taken. It takes more time from pressing an action button (take images, 3d scan, ...) to the actual capture because of program overhead and general slowness of compoundpi. If selftimer is 0.0, the captures are not synchronized (on purpose) - the cameras will fire as soon as possible. That is usually good enough for a 3D scan of a human. One disadvantage of synced capture is that the clock of SN and AS need to be in sync, and there is no apparent way to easily check for that. Since the capture timing is set from the AS, it sets a timestamp at current time + selftimer time. If the SN are one hour behind, it will take one hour until a capture will happen. Don't set the selftimer too short (smaller than 0.1s), because Compound Pi will not be fast enough to react, yielding the error message 'Timestamp is in the past'. A value of 1.0s is usually a good time for decently fast reaction times with sync ong.
    rotation            rotation of the captured images in increments of 90 (degree). It's not required to rotate the images for Meshroom, it does not care. However, it is nicer to look at for humans.
    openfilebrowser     can be either 1 or 0 (enabled and disabled). If it's enabled, a file browser will open after image capture and the user can open the images to observe the captured material.
    view_mesh           can be either 1 or 0 (enabled and disabled). If it's enabled, Meshlab will open the generated 3D data for visualization after generation.
    strip_length        is the number of LEDs contained in a LED strip of a single tower.
    comet_tail_length   is length of in number of LEDs the comet effect (scanner idle decorative lighting) will have, minus one (the leading LED, the "comet").
    comet_brightness    is the brighness of the comet effect LEDs and can be from 0.0 to 1.0
    comet_r/g/b/w       are the color values of the comet, integers from 0 to 255.
    comet_sleeptime     is waiting time in seconds in between instances of the animation loop and thus defines how fast the effect will run through the strip.
    photo_light_r/g/b/w are the color values the LED strips will assume before and while taking photos, integers from 0 to 255.
  • now you can execute the GUI in a terminal or create a desktop shortcut (or modify the one supplied with the repo). The buttons and tabs of the GUI should be self-explanatory.
    python3.7 $HOME/hskanner3d/processing_chain/hskanner3d_gui.py