ShichaoJin / 3D-Point-Cloud-Analytics

Portfolio for 3D Point Cloud Processing from www.shenlanxueyuan.com China

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Docker for 3D Point Cloud Analysis

This is the Docker image for open courseware 3D Point Cloud Analysis from www.shenlanxueyuan.com, China.

All source code are based upon public available resources and starter-code from www.shenlanxueyuan.com.

Please check them before disturbing me with your own stupid claims.


Build Images

The environment can be built with docker-compose as follows:

docker-compose build

Configuration

Volume Mounting

Local directories for source code and data are configured in docker-compose.yml

    volumes:
      # assignments:
      - ${PWD}/workspace/assignments:/workspace/assignments  
      # data volume:
      - ${PWD}/workspace/data:/workspace/data

Network Port Mapping

Config port mappings for supervisord monitor and VNC client access in docker-compose.yml

    ports:
      # standard vnc client:
      - 45901:5900
      # supervisord admin:
      - 49001:9001

Up and Running

Launch VNC Instance

# for cpu environment, launch with docker-compose:
docker-compose up workspace-vnc
# for gpu environment, launch with nvidia-docker:
docker run \
  --gpus all \
  -v ${PWD}/workspace/assignments:/workspace/assignments \
  -v ${PWD}/workspace/data:/workspace/data \
  # ports:
  -p 49001:9001 \
  -p 45901:5900 \
  -p 46006:6006 \
  --name point_cloud_analytics_workspace anaconda/point-cloud-analysis:bionic-gpu-current

Health Check

Access supervisord monitor to make sure all processes have been started: http://[HOST_IP]:49001

Supervisord Health Check

VNC Access:

You can access the desktop with standard VNC client

VNC Client

On the system you can use

  • Remmina on Ubuntu
  • TightVNC Viewer on Windows

to create a VNC session to connect to: http://[HOST_IP]:45901

VNC through VNC Client


About

Portfolio for 3D Point Cloud Processing from www.shenlanxueyuan.com China


Languages

Language:JavaScript 57.2%Language:Python 24.5%Language:HTML 5.9%Language:C 2.8%Language:C++ 2.5%Language:CSS 1.5%Language:Ruby 1.1%Language:Shell 1.1%Language:Cuda 0.8%Language:Clojure 0.6%Language:Gnuplot 0.5%Language:Dockerfile 0.5%Language:Roff 0.4%Language:C# 0.3%Language:Makefile 0.2%Language:Perl 0.0%