Home - PMaslowski/PictureAnalysis GitHub Wiki

Welcome!


Contents


This repository contains project from HEXAGON company. It's a student project developed during completion of Technical University of Lodz subject from summer term 2015/2016.

The goal was to create an application that would render point clouds from .ply file, allow selecting part of it and count volume of this selected part.

Projects consists of 2 parts:

  1. Web front
  2. RESTfull service

Web front

Web front is a html page styled in css that embeds three.js in order to render geometry and jQuery for REST API.

RESTfull service

Even though it's one C++ project it really consists of three parts:

  • REST API that allows exchanging data between front-end and back-end
  • Part responsible for operations on .ply files
  • Part responsible for counting volume

All those parts are fully described in further part of this documentation.