THE TERRESTRIAL LASER SCANNING APPROACH EX. 2 MESHLAB. Afonso Maria C. F. A. Gonçalves

Size: px
Start display at page:

Download "THE TERRESTRIAL LASER SCANNING APPROACH EX. 2 MESHLAB. Afonso Maria C. F. A. Gonçalves"

Transcription

1 THE TERRESTRIAL LASER SCANNING APPROACH EX. 2 MESHLAB Afonso Maria C. F. A. Gonçalves

2 ADVANCED STUDIES PROGRAM IN COMPUTATION APPLIED TO ARCHITECTURE, URBAN PLANNING AND DESIGN _INTRODUCTION In the last article we leaned over the process of using photogrammetry as a method to produce a point cloud for later mesh reconstruction. Although this approach provides a relatively quick and satisfactory way to survey an object it lacks the precision and quality needed for most survey studies. If the intention is to survey large areas, say a street or an archeological site, more precise survey methods are required. This is where laser technology proves its worth, especially TLS (Terrestrial Laser Scanners). Such scanners are capable of producing very dense and accurate point clouds without the rigmarole of taking vast amounts of photographs. This time, for the purposes of this exercise, we were given 4 existing point clouds from a survey conducted on a street using a TLS. The aim was to learn the workflow of working with several large and dense point clouds that need first to be edited and worked on in order to produce the intended results. As mentioned in the last article, this time, we ll lean over the methods of down sampling, aligning and gluing several point clouds for later mesh reconstruction. This time, the process will be entirely conducted in MeshLab since the point clouds have already been created by the TRL. The first stage will be to import these point clouds into MeshLab and then proceed to down sample them in order to make them easier to manipulate. In the second stage we will proceed to roughly align them according to one another by sequentially setting references and choosing homologous points in the point clouds. Since this process is a rough and not very precise way of aligning points we will then have to optimize the alignment by changing a few parameters. The final result should be a set of point clouds very closely aligned with each other. In fact, if the alignment is done accurately, there should be no clear evidence that the final composition is actually formed by more than one point cloud. 1

3 ADVANCED STUDIES PROGRAM IN COMPUTATION APPLIED TO ARCHITECTURE, URBAN PLANNING AND DESIGN STAGE 1 DOWN SAMPLING POINT CLOUDS 1 IMPORTING ORIGINAL POINT CLOUDS TO MESHLAB AND DOWN SAMPLING Point clouds as they come out of the scanner can be unnecessarily dense for our purposes. Dealing with such dense clouds of points can not only make the alignment process more difficult but also decrease software and hardware performance due to large file sizes. Therefore, if we know we won t need high densities of points in the cloud we can down sample it to make it easier to manipulate. Therefore the first step of the process is to import each individual point cloud into MeshLab, down sample it and save the down sampled cloud to a new file. For this we make use of the Poisson-disk Sampling option (Filters > Sampling > Poisson-disk Sampling) which allows us to choose the average spacing between points. We should also check the Base Mesh Sampling box. For values I chose an explicit radius between 0.02 and The down sampled points need then to be saved (File > Export Mesh As) with the Normals box checked. We do this step for all four point clouds. FIG.1 Down sampling through the Poisson-disk Sampling of all four point clouds 2

4 ADVANCED STUDIES PROGRAM IN COMPUTATION APPLIED TO ARCHITECTURE, URBAN PLANNING AND DESIGN STAGE 2 ALIGNMENT OF POINT CLOUDS 2 ROUGH ALIGNMENT OF DOWNSAMPLED POINT CLOUDS USING HOMOLOGOUS POINTS When surveying a large area it s often necessary to survey it from different places to make sure every angle, feature and blind spots of the place are covered by the laser scanner. This obviously will wield more than one point cloud as we said before. If the laser scanner has an inbuilt inclination sensor then the point clouds it generates will come out already leveled and need only to be aligned together, using one of them as reference for the others. This means applying a transformation (translation and rotation) to every point cloud that is to be aligned with the reference cloud. This transformation will be translated into a transformation matrix that is stored in the project file. After importing all four of the point clouds into MeshLab and saving the project file (as.aln) we can open it on Notepad++ and see said transformation matrix (fig 2). What we see here are all of the four point clouds represented by their respective transformation matrix. Because, at this stage, no alignment has yet been done, all of them have the identity matrix assigned. As we will see, this will change once the alignment as been completed. FIG.2 Transformation matrixes of the unaligned point clouds We start the alignment process by clicking the Align button (or Edit > Align). To choose the point cloud that will be used as reference we first need to select it and then choose the Glue Here Mesh option. A small asterisk should then appear in the name of the point cloud telling us it has now been glued and set as reference. Next, we select the next point cloud and select Point Based Glueing to start the alignment process. In the new window that pops up we can see, on the lefthand side, the point cloud set as reference and, on the right-hand side, the point cloud that will be aligned. Now all we need to do is manually select homologous points in both clouds (at least 4 for a more accurate alignment), being careful to follow a certain order to make sure each point selected in one has its corresponding match in the other. After all points have been selected and the process acknowledged, the point cloud, which has just been aligned, will now too be set as a 3

5 ADVANCED STUDIES PROGRAM IN COMPUTATION APPLIED TO ARCHITECTURE, URBAN PLANNING AND DESIGN reference. We now repeat the same process for the remaining two point clouds. After all point clouds have been manually aligned the project was saved once more. FIG.3 Alignment process by choosing homologous points 4

6 ADVANCED STUDIES PROGRAM IN COMPUTATION APPLIED TO ARCHITECTURE, URBAN PLANNING AND DESIGN 3 ADJUSTING PARAMETERS OF ALIGNMENT No matter how careful or meticulous we are when choosing the homologous points it is almost certain that we won t reach a perfect alignment of all point clouds. To achieve a more satisfactory result we will need to optimize the previous manual alignment by changing the ICP parameters (Iterative Closest Points) in the Align Tool. For the parameters, the Minimal Starting Distance was set to 0.1 and the Target Distance to If we are entirely sure all point clouds have the same scale, which we do in this case, then the box Rigid Matching should also checked otherwise a scaling factor will be applied. Clicking Process will launch the ICP algorithm and the result will be shown in the log window below. The end result should be a much more accurate alignment of all the point clouds. The project is once more saved after this step. FIG.4 ICP parameters optimization Comparing the three transformation matrixes (fig. 5) we can get a general idea of what happened to our point clouds during the alignment process. The first image shows all four point clouds as they come out of the TRL. They are all identified by the identity matrix since no transformation has been applied. The second image shows the transformations after the first alignment with homologous points. The first point cloud still shows the identity matrix because it was used as the base reference for the alignment of the other point clouds. The final image shows the result of processing the ICP parameters. This last step helps optimize and refine the rough alignment made previously. We can see that there was very little variation of the transformation values and that s to be expected since this last step helps optimize and refine the previous rough alignment process. 5

7 ADVANCED STUDIES PROGRAM IN COMPUTATION APPLIED TO ARCHITECTURE, URBAN PLANNING AND DESIGN FIG.5 The three transformation matrixes 4 MERGING ALL POINT CLOUDS This final step is optional but, if desired, the point clouds can now all be merged into one single point cloud and used later to reconstruct a 3D mesh with respective color. To merge all four point clouds we choose Flatten Visible Layers in the Layer Dialog box (by right clicking on one of the layers), being sure to check Keep Unreferenced Vertexes. This merged point cloud can now be reconstructed and the color transferred. Since this process has already been covered in the previous exercise I won t go into detail here. FIG.6 The final merged result 6

8 ADVANCED STUDIES PROGRAM IN COMPUTATION APPLIED TO ARCHITECTURE, URBAN PLANNING AND DESIGN _CONCLUSION In this article we learnt the workflow of manipulation point clouds generated by a Terrestrial Laser Scanner. Because this method of survey wields more than one point cloud the data needs to be manipulated further by means of down sampling and aligning all point clouds. By setting references and choosing homologous points we are able to, at first, achieve a rough alignment that will afterwards be optimized by changing the alignment parameters. The aligned point clouds can then be merged together and used to any desired purpose. The alignment process can have one more step which was not covered here. For a correct surveying process, the acquisition of information from digital means, whether photogrammetry of laser scanning, should also be coupled with manual information collected in situ, such as measurements. The measurements collected can be used later in the process to guide the transformation process of aligning all point clouds. This will result in a much more accurate depiction of the observable reality since the information collected in situ is used as a source reference for the correct scaling, translation and rotation of the point clouds. This involves manipulating transformation matrixes with the aid of specific software like Java Graticule 3D and Cloud Compare and will be covered in greater detail in the next article. 7

9 Afonso Maria de Castro Fernandes Abreu Gonçalves, n.º This work was conducted for the 3D Scanning course Advanced Studies Program in Computation Applied to Architecture, Urban Planning and Design Faculdade de Arquitectura Universidade de Lisboa 2013 / 2014

A. OPENING POINT CLOUDS. (Notepad++ Text editor) (Cloud Compare Point cloud and mesh editor) (MeshLab Point cloud and mesh editor)

A. OPENING POINT CLOUDS. (Notepad++ Text editor) (Cloud Compare Point cloud and mesh editor) (MeshLab Point cloud and mesh editor) MeshLAB tutorial 1 A. OPENING POINT CLOUDS (Notepad++ Text editor) (Cloud Compare Point cloud and mesh editor) (MeshLab Point cloud and mesh editor) 2 OPENING POINT CLOUDS IN NOTEPAD ++ Let us understand

More information

Topographic Change Detection Using CloudCompare Version 1.0

Topographic Change Detection Using CloudCompare Version 1.0 Topographic Change Detection Using CloudCompare Version 1.0 Emily Kleber, Arizona State University Edwin Nissen, Colorado School of Mines J Ramón Arrowsmith, Arizona State University Introduction CloudCompare

More information

GUIDE TO POST-PROCESSING OF THE POINT CLOUD

GUIDE TO POST-PROCESSING OF THE POINT CLOUD GUIDE TO POST-PROCESSING OF THE POINT CLOUD Contents Contents 3 Reconstructing the point cloud with MeshLab 16 Reconstructing the point cloud with CloudCompare 2 Reconstructing the point cloud with MeshLab

More information

HIGH AND LOW RESOLUTION TEXTURED MODELS OF COMPLEX ARCHITECTURAL SURFACES

HIGH AND LOW RESOLUTION TEXTURED MODELS OF COMPLEX ARCHITECTURAL SURFACES HIGH AND LOW RESOLUTION TEXTURED MODELS OF COMPLEX ARCHITECTURAL SURFACES E. K. Stathopoulou a, A. Valanis a, J. L. Lerma b, A. Georgopoulos a a Laboratory of Photogrammetry, National Technical University

More information

The patch tool and content-aware filling

The patch tool and content-aware filling The patch tool and content-aware filling 1 Patch tool The patch tool uses the same algorithm as the healing brush to carry out its blend calculations, except the patch tool uses selection-defined areas

More information

Why is pre-processing necessary? Overall steps of this workflow: Batch RAW to DNG with Adobe Digital Negative (DNG) Converter Software

Why is pre-processing necessary? Overall steps of this workflow: Batch RAW to DNG with Adobe Digital Negative (DNG) Converter Software http://gmv.cast.uark.edu A Method Store for Advanced Survey and Modeling Technologies Mon, 01 Apr 2013 03:29:18 +0000 en-us hourly 1 http://wordpress.org/?v=3.5.1 http://gmv.cast.uark.edu/photogrammetry/software-photogrammetry/photomodeler/workflowphotomodeler/pre-processing-digital-images-for-close-range-photogrammetry-crp/

More information

ACCURACY ASSESSMENT OF BUILDING POINT CLOUDS AUTOMATICALLY GENERATED FROM IPHONE IMAGES

ACCURACY ASSESSMENT OF BUILDING POINT CLOUDS AUTOMATICALLY GENERATED FROM IPHONE IMAGES ACCURACY ASSESSMENT OF BUILDING POINT CLOUDS AUTOMATICALLY GENERATED FROM IPHONE IMAGES B. Sirmacek, R. Lindenbergh Delft University of Technology, Department of Geoscience and Remote Sensing, Stevinweg

More information

Files Used in this Tutorial

Files Used in this Tutorial Generate Point Clouds Tutorial This tutorial shows how to generate point clouds from IKONOS satellite stereo imagery. You will view the point clouds in the ENVI LiDAR Viewer. The estimated time to complete

More information

Real-Time 3D Reconstruction Using a Kinect Sensor

Real-Time 3D Reconstruction Using a Kinect Sensor Computer Science and Information Technology 2(2): 95-99, 2014 DOI: 10.13189/csit.2014.020206 http://www.hrpub.org Real-Time 3D Reconstruction Using a Kinect Sensor Claudia Raluca Popescu *, Adrian Lungu

More information

Photogrammetric Point Clouds

Photogrammetric Point Clouds Photogrammetric Point Clouds Origins of digital point clouds: Basics have been around since the 1980s. Images had to be referenced to one another. The user had to specify either where the camera was in

More information

How to create PDF maps, pdf layer maps and pdf maps with attributes using ArcGIS. Lynne W Fielding, GISP Town of Westwood

How to create PDF maps, pdf layer maps and pdf maps with attributes using ArcGIS. Lynne W Fielding, GISP Town of Westwood How to create PDF maps, pdf layer maps and pdf maps with attributes using ArcGIS Lynne W Fielding, GISP Town of Westwood PDF maps are a very handy way to share your information with the public as well

More information

Enhanced Bar Code Engine

Enhanced Bar Code Engine Enhanced Bar Code Engine Introduction Access to the Kofax Standard bar code recognition engine is provided through ImageControls-based applications and ISIS-based applications. In addition to the standard

More information

RiMONITOR. Monitoring Software. for RIEGL VZ-Line Laser Scanners. Ri Software. visit our website www.riegl.com. Preliminary Data Sheet

RiMONITOR. Monitoring Software. for RIEGL VZ-Line Laser Scanners. Ri Software. visit our website www.riegl.com. Preliminary Data Sheet Monitoring Software RiMONITOR for RIEGL VZ-Line Laser Scanners for stand-alone monitoring applications by autonomous operation of all RIEGL VZ-Line Laser Scanners adaptable configuration of data acquisition

More information

Open Source Tools for 3D Forensic Reconstructions Part 3 Eugene Liscio, P. Eng. November 2011

Open Source Tools for 3D Forensic Reconstructions Part 3 Eugene Liscio, P. Eng. November 2011 Page 1 of 7 Open Source Tools for 3D Forensic Reconstructions Part 3 Eugene Liscio, P. Eng. November 2011 In the past several years, there have been some interesting developments and availability of open

More information

LASER SCANNER APPLICATION ON COMPLEX SHAPES OF ARCHITECTURE. PROFILES EXTRACTION PROCESSING AND 3D MODELLING.

LASER SCANNER APPLICATION ON COMPLEX SHAPES OF ARCHITECTURE. PROFILES EXTRACTION PROCESSING AND 3D MODELLING. LASER SCANNER APPLICATION ON COMPLEX SHAPES OF ARCHITECTURE. PROFILES EXTRACTION PROCESSING AND 3D MODELLING. Carlo MONTI Full Professor E-mail: carlo.monti@polimi.it Luigi FREGONESE Research Assegnist

More information

Pipeline External Corrosion Analysis Using a 3D Laser Scanner

Pipeline External Corrosion Analysis Using a 3D Laser Scanner Pipeline Technology Conference 2013 Pipeline External Corrosion Analysis Using a 3D Laser Scanner Pierre-Hugues ALLARD, Charles MONY Creaform, www.creaform3d.com 5825 rue St-Georges, Lévis (QC), Canada,

More information

How To Fuse A Point Cloud With A Laser And Image Data From A Pointcloud

How To Fuse A Point Cloud With A Laser And Image Data From A Pointcloud REAL TIME 3D FUSION OF IMAGERY AND MOBILE LIDAR Paul Mrstik, Vice President Technology Kresimir Kusevic, R&D Engineer Terrapoint Inc. 140-1 Antares Dr. Ottawa, Ontario K2E 8C4 Canada paul.mrstik@terrapoint.com

More information

LESSON 7: IMPORTING AND VECTORIZING A BITMAP IMAGE

LESSON 7: IMPORTING AND VECTORIZING A BITMAP IMAGE LESSON 7: IMPORTING AND VECTORIZING A BITMAP IMAGE In this lesson we ll learn how to import a bitmap logo, transform it into a vector and perform some editing on the vector to clean it up. The concepts

More information

Trace Layer Import for Printed Circuit Boards Under Icepak

Trace Layer Import for Printed Circuit Boards Under Icepak Tutorial 13. Trace Layer Import for Printed Circuit Boards Under Icepak Introduction: A printed circuit board (PCB) is generally a multi-layered board made of dielectric material and several layers of

More information

ReCap, ReCap Pro Features, and ReCap 360 Web Services FAQ

ReCap, ReCap Pro Features, and ReCap 360 Web Services FAQ ReCap, ReCap Pro Features, and ReCap 360 Web Services FAQ Autodesk Reality Solutions Group R e Cap FAQ 1 I. What are the ReCap Products and Services available today? - ReCap is Autodesk desktop application

More information

VOLUMNECT - Measuring Volumes with Kinect T M

VOLUMNECT - Measuring Volumes with Kinect T M VOLUMNECT - Measuring Volumes with Kinect T M Beatriz Quintino Ferreira a, Miguel Griné a, Duarte Gameiro a, João Paulo Costeira a,b and Beatriz Sousa Santos c,d a DEEC, Instituto Superior Técnico, Lisboa,

More information

WebEHRS-DMS (Document Management System) Troubleshooting and How To Guide. Table of Contents

WebEHRS-DMS (Document Management System) Troubleshooting and How To Guide. Table of Contents WebEHRS-DMS (Document Management System) Troubleshooting and How To Guide Table of Contents How to Troubleshoot DMS Errors for WebEHRS.page 2 Uninstalling and Reinstalling DMS. page 5 How to Upload/Attach

More information

Photogrammetry and 3D Car Navigation

Photogrammetry and 3D Car Navigation Strassenburg-Kleciak 309 Photogrammetry and 3D Car Navigation MAREK STRASSENBURG-KLECIAK, Hamburg ABSTRACT The technological development of recent hardware systems of car navigation systems allows the

More information

CREATING A 3D VISUALISATION OF YOUR PLANS IN PLANSXPRESS AND CORTONA VRML CLIENT

CREATING A 3D VISUALISATION OF YOUR PLANS IN PLANSXPRESS AND CORTONA VRML CLIENT CREATING A 3D VISUALISATION OF YOUR PLANS IN PLANSXPRESS AND CORTONA VRML CLIENT 20-25 Minutes This topic is for users of PlansXpress Total Toolkit Edition. To upgrade to PlansXpress Total Toolkit, call

More information

Rev9 TOPCON Global Marketing Group

Rev9 TOPCON Global Marketing Group Quick Start Guide Rev9 TOPCON Global Marketing Group 1/18 The flow of Data Processing 1-1 Create a new project Obtain data by remote-controlling the GLS-1000 Obtain data by standalone 2-A-1 Connect PC

More information

The Chillon Project: Aerial / Terrestrial and Indoor Integration

The Chillon Project: Aerial / Terrestrial and Indoor Integration The Chillon Project: Aerial / Terrestrial and Indoor Integration How can one map a whole castle efficiently in full 3D? Is it possible to have a 3D model containing both the inside and outside? The Chillon

More information

What is new or different in AppScan Enterprise v9.0.2 if you re upgrading from v9.0.1.1

What is new or different in AppScan Enterprise v9.0.2 if you re upgrading from v9.0.1.1 What is new or different in AppScan Enterprise v9.0.2 if you re upgrading from v9.0.1.1 Larissa Berger Miriam Fitzgerald April 24, 2015 Abstract: This white paper guides customers through the new features

More information

MeshLab and Arc3D: Photo-Reconstruction and Processing of 3D meshes

MeshLab and Arc3D: Photo-Reconstruction and Processing of 3D meshes MeshLab and Arc3D: Photo-Reconstruction and Processing of 3D meshes P. Cignoni, M Corsini, M. Dellepiane, G. Ranzuglia, (Visual Computing Lab, ISTI - CNR, Italy) M. Vergauven, L. Van Gool (K.U.Leuven ESAT-PSI

More information

RESOLUTION MERGE OF 1:35.000 SCALE AERIAL PHOTOGRAPHS WITH LANDSAT 7 ETM IMAGERY

RESOLUTION MERGE OF 1:35.000 SCALE AERIAL PHOTOGRAPHS WITH LANDSAT 7 ETM IMAGERY RESOLUTION MERGE OF 1:35.000 SCALE AERIAL PHOTOGRAPHS WITH LANDSAT 7 ETM IMAGERY M. Erdogan, H.H. Maras, A. Yilmaz, Ö.T. Özerbil General Command of Mapping 06100 Dikimevi, Ankara, TURKEY - (mustafa.erdogan;

More information

CLOUD DIGITISER 2014!

CLOUD DIGITISER 2014! CLOUD DIGITISER 2014 Interactive measurements of point cloud sequences July 2014 Cloud Digitiser Manual 1 CLOUD DIGITISER Interactive measurement of point clouds Bill Sellers July 2014 Introduction Photogrammetric

More information

Differentiation of 3D scanners and their positioning method when applied to pipeline integrity

Differentiation of 3D scanners and their positioning method when applied to pipeline integrity 11th European Conference on Non-Destructive Testing (ECNDT 2014), October 6-10, 2014, Prague, Czech Republic More Info at Open Access Database www.ndt.net/?id=16317 Differentiation of 3D scanners and their

More information

EFFICIENT INTEGRATION OF AERIAL AND TERRESTRIAL LASER DATA FOR VIRTUAL CITY MODELING USING LASERMAPS

EFFICIENT INTEGRATION OF AERIAL AND TERRESTRIAL LASER DATA FOR VIRTUAL CITY MODELING USING LASERMAPS EFFICIENT INTEGRATION OF AERIAL AND TERRESTRIAL LASER DATA FOR VIRTUAL CITY MODELING USING LASERMAPS Jan Böhm, Norbert Haala University of Stuttgart, Institute for Photogrammetry, Germany Forename.Lastname@ifp.uni-stuttgart.de

More information

3D Laser Scanner. Extra long range laser scanner combined with a high resolution digital panoramic camera

3D Laser Scanner. Extra long range laser scanner combined with a high resolution digital panoramic camera 3D Laser Scanner Fast, PORTABLE, accurate Extra long range laser scanner combined with a high resolution digital panoramic camera INTRODUCING THE MAPTEK I-SITE 8800 LASER SCANNER > From Pit to Mine Model

More information

Copyright 2007 Casa Software Ltd. www.casaxps.com. ToF Mass Calibration

Copyright 2007 Casa Software Ltd. www.casaxps.com. ToF Mass Calibration ToF Mass Calibration Essentially, the relationship between the mass m of an ion and the time taken for the ion of a given charge to travel a fixed distance is quadratic in the flight time t. For an ideal

More information

Smoke Density Monitor application documentation

Smoke Density Monitor application documentation Smoke Density Monitor application documentation Navigating the User interface Fig. 1 Screen shot of the application layout. Description Graphical Monitor Data Browser Trending Graph Alarm View Create Report

More information

The Lighting Effects Filter

The Lighting Effects Filter Appendix appendix E The Lighting Effects Filter The Lighting Effects filter is like a little program in itself. With this filter, you can create a wealth of different lighting effects, from making a particular

More information

ZENO ScanItPontic. User Manual for 3Shape's 3D Scanning Software

ZENO ScanItPontic. User Manual for 3Shape's 3D Scanning Software ZENO ScanItPontic User Manual for 3Shape's 3D Scanning Software Contents 1 Foreword... 2 ScanItPontic user interface... 2.1 Scan Toolbar... 2.2 Visualization Toolbar... 3 How to scan... 3.1 Pontic fixture...

More information

Using the Surface Zeta Potential Cell Kit

Using the Surface Zeta Potential Cell Kit Using the Surface Zeta Potential Cell Kit Note: Malvern has a video that goes through all of these steps in detail. There is a link on the NBTC Zetasizer information page and it is bookmarked on the Zetasizer

More information

Mobile Robot FastSLAM with Xbox Kinect

Mobile Robot FastSLAM with Xbox Kinect Mobile Robot FastSLAM with Xbox Kinect Design Team Taylor Apgar, Sean Suri, Xiangdong Xi Design Advisor Prof. Greg Kowalski Abstract Mapping is an interesting and difficult problem in robotics. In order

More information

Universidad de Cantabria Departamento de Tecnología Electrónica, Ingeniería de Sistemas y Automática. Tesis Doctoral

Universidad de Cantabria Departamento de Tecnología Electrónica, Ingeniería de Sistemas y Automática. Tesis Doctoral Universidad de Cantabria Departamento de Tecnología Electrónica, Ingeniería de Sistemas y Automática Tesis Doctoral CONTRIBUCIONES AL ALINEAMIENTO DE NUBES DE PUNTOS 3D PARA SU USO EN APLICACIONES DE CAPTURA

More information

ASSESSMENT OF VISUALIZATION SOFTWARE FOR SUPPORT OF CONSTRUCTION SITE INSPECTION TASKS USING DATA COLLECTED FROM REALITY CAPTURE TECHNOLOGIES

ASSESSMENT OF VISUALIZATION SOFTWARE FOR SUPPORT OF CONSTRUCTION SITE INSPECTION TASKS USING DATA COLLECTED FROM REALITY CAPTURE TECHNOLOGIES ASSESSMENT OF VISUALIZATION SOFTWARE FOR SUPPORT OF CONSTRUCTION SITE INSPECTION TASKS USING DATA COLLECTED FROM REALITY CAPTURE TECHNOLOGIES ABSTRACT Chris Gordon 1, Burcu Akinci 2, Frank Boukamp 3, and

More information

A System for Capturing High Resolution Images

A System for Capturing High Resolution Images A System for Capturing High Resolution Images G.Voyatzis, G.Angelopoulos, A.Bors and I.Pitas Department of Informatics University of Thessaloniki BOX 451, 54006 Thessaloniki GREECE e-mail: pitas@zeus.csd.auth.gr

More information

RHINO TO STL BEST PRACTICES

RHINO TO STL BEST PRACTICES WHITE PAPER RHINO TO STL BEST PRACTICES AUTHOR VERONICA DE LA ROSA RHINO TO STL BEST PRACTICES INTRODUCTION In order to get the best quality 3D prints from RHINO CAD models it is important to be familiar

More information

PREPARING PHOTOS for PRINTING

PREPARING PHOTOS for PRINTING PREPARING PHOTOS for PRINTING GENERAL WORKFLOW Open a PSD file SAVE AS a TIFF File Resize to Printer Resolution using IMAGE SIZE Sharpen with Layer Sharpen Add a Black Border using CANVAS SIZE Set the

More information

Getting the most from Contracts Finder

Getting the most from Contracts Finder Getting the most from Contracts Finder A guide for businesses and the public May 2012 What s in this guide What s this guide for?...2 What s on Contracts Finder...2 Searching for notices the basics...2

More information

DWGSee Professional User Guide

DWGSee Professional User Guide DWGSee Professional User Guide DWGSee is comprehensive software for viewing, printing, marking and sharing DWG files. It is fast, powerful and easy-to-use for every expert and beginners. Starting DWGSee

More information

Oracle Primavera. P6 Resource Leveling Demo Script

Oracle Primavera. P6 Resource Leveling Demo Script Oracle Primavera P6 Resource Leveling Demo Script Script Team Information Role Name Email Primary Author L. Camille Frost Camille.Frost@oracle.com Contributor Reviewer Geoff Roberts Geoff.Roberts@oracle.com

More information

Nessus Cloud User Registration

Nessus Cloud User Registration Nessus Cloud User Registration Create Your Tenable Nessus Cloud Account 1. Click on the provided URL to create your account. If the link does not work, please cut and paste the entire URL into your browser.

More information

Contouring and Advanced Visualization

Contouring and Advanced Visualization Contouring and Advanced Visualization Contouring Underlay your oneline with an image Geographic Data Views Auto-created geographic data visualization Emphasis of Display Objects Make specific objects standout

More information

Asset Track Getting Started Guide. An Introduction to Asset Track

Asset Track Getting Started Guide. An Introduction to Asset Track Asset Track Getting Started Guide An Introduction to Asset Track Contents Introducing Asset Track... 3 Overview... 3 A Quick Start... 6 Quick Start Option 1... 6 Getting to Configuration... 7 Changing

More information

ENGN 2502 3D Photography / Winter 2012 / SYLLABUS http://mesh.brown.edu/3dp/

ENGN 2502 3D Photography / Winter 2012 / SYLLABUS http://mesh.brown.edu/3dp/ ENGN 2502 3D Photography / Winter 2012 / SYLLABUS http://mesh.brown.edu/3dp/ Description of the proposed course Over the last decade digital photography has entered the mainstream with inexpensive, miniaturized

More information

Multiphase Flow - Appendices

Multiphase Flow - Appendices Discovery Laboratory Multiphase Flow - Appendices 1. Creating a Mesh 1.1. What is a geometry? The geometry used in a CFD simulation defines the problem domain and boundaries; it is the area (2D) or volume

More information

TRIMBLE TX5 3D LASER SCANNER QUICK START GUIDE

TRIMBLE TX5 3D LASER SCANNER QUICK START GUIDE TRIMBLE TX5 3D LASER SCANNER QUICK START GUIDE Equipment 1 8 9 5 6 7 4 3 2 The TX5 laser scanner ships with the following equipment: 1 Scanner transport and carry case 6 USB memory card reader 2 AC power

More information

Course Developer: Charles Shami, Professor, Savannah College of Art and Design

Course Developer: Charles Shami, Professor, Savannah College of Art and Design Course Developer: Charles Shami, Professor, Savannah College of Art and Design Course: Survey of Computer Art Applications Description: This class is for students already well versed in the use of art

More information

XXI International CIPA Symposium, 01-06 October, Athens, Greece

XXI International CIPA Symposium, 01-06 October, Athens, Greece 2 DIFFERENT TECHNIQUES OF SCANNING CULTURAL HERITAGE 1. CLOSE-RANGE-SCANNING OF 250 CLAYFIGURINES IN XIAN, CHINA 2. LASER-SCANNING OF 3.200 DINOSAUR-STEPS IN SUCRE, BOLIVIA Stefan Linsinger a Dipl.-Ing.

More information

Mail Merge Creating Mailing Labels 3/23/2011

Mail Merge Creating Mailing Labels 3/23/2011 Creating Mailing Labels in Microsoft Word Address data in a Microsoft Excel file can be turned into mailing labels in Microsoft Word through a mail merge process. First, obtain or create an Excel spreadsheet

More information

1051-232 Imaging Systems Laboratory II. Laboratory 4: Basic Lens Design in OSLO April 2 & 4, 2002

1051-232 Imaging Systems Laboratory II. Laboratory 4: Basic Lens Design in OSLO April 2 & 4, 2002 05-232 Imaging Systems Laboratory II Laboratory 4: Basic Lens Design in OSLO April 2 & 4, 2002 Abstract: For designing the optics of an imaging system, one of the main types of tools used today is optical

More information

Working with the New Visio Methodology

Working with the New Visio Methodology Working with the New Visio Methodology 1. Save the template with a new descriptive name (e.g. Verizon Data Center 1.vsd) 2. Place an equipment rack: From the stencil named CommScope Racks and Cabinets,

More information

Automatic Labeling of Lane Markings for Autonomous Vehicles

Automatic Labeling of Lane Markings for Autonomous Vehicles Automatic Labeling of Lane Markings for Autonomous Vehicles Jeffrey Kiske Stanford University 450 Serra Mall, Stanford, CA 94305 jkiske@stanford.edu 1. Introduction As autonomous vehicles become more popular,

More information

DAMAGED ROAD TUNNEL LASER SCANNER SURVEY

DAMAGED ROAD TUNNEL LASER SCANNER SURVEY University of Brescia - ITALY DAMAGED ROAD TUNNEL LASER SCANNER SURVEY Prof. Giorgio Vassena giorgio.vassena@unibs.it WORKFLOW - Demand analysis - Instruments choice - On field operations planning - Laser

More information

JEDDAH HISTORICAL BUILDING INFORMATION MODELING "JHBIM" OLD JEDDAH - SAUDI ARABIA

JEDDAH HISTORICAL BUILDING INFORMATION MODELING JHBIM OLD JEDDAH - SAUDI ARABIA JEDDAH HISTORICAL BUILDING INFORMATION MODELING "JHBIM" OLD JEDDAH - SAUDI ARABIA A.Baik a,, J. boehm b, S. Robson c a Dept. of Geomatic Engineering, University College London, Gower Street, London, WC1E

More information

Scanning Settings and Standards. Banner Document Management (BDM)

Scanning Settings and Standards. Banner Document Management (BDM) (BDM) Scanning Settings and Standards 1 This support guide is intended for use by the BDM Functional Specialists in the various business offices using. The guide provides general details on common scanning

More information

The 2015 Leapfrog Hospital Survey Online Tool Quick Start Guide

The 2015 Leapfrog Hospital Survey Online Tool Quick Start Guide The 2015 Leapfrog Hospital Survey Online Tool Quick Start Guide This guide is designed to help you navigate the online survey tool available on the Leapfrog Hospital Survey website at www.leapfroghospitalsurvey.org.

More information

Use this translator to save ArchiCAD layouts/views in DXF/DWG format if you plan to continue

Use this translator to save ArchiCAD layouts/views in DXF/DWG format if you plan to continue Tip Sheet ArchiCAD 11 Mark Horrocks Graphisoft New Zealand May 2007 DWG Translator In Architectural practice you often send and receive content from co-working Structural, Mechanical or Electrical Engineers.

More information

PCB Component Placement Inspection

PCB Component Placement Inspection Executive Summary PCB Component Placement Inspection Optimet s ConoProbe Mark10 HD with a 50 mm focal length lens was used to inspect PCB component placement. The PCB board inspected contained both individual

More information

ACE: Illustrator CC Exam Guide

ACE: Illustrator CC Exam Guide Adobe Training Services Exam Guide ACE: Illustrator CC Exam Guide Adobe Training Services provides this exam guide to help prepare partners, customers, and consultants who are actively seeking accreditation

More information

MoneyView Online Check Deposit USER GUIDE

MoneyView Online Check Deposit USER GUIDE MoneyView Online Check Deposit USER GUIDE In MoneyView Online, one of the menu options is Remote Deposit. With this service, you can deposit a check to your PVFCU checking account by using either a scanner

More information

Email Export. Exporting Client Email Addresses

Email Export. Exporting Client Email Addresses Email Export Exporting Client Email Addresses STX has the ability to export email addresses from the Client file. Once those addresses are exported, STX has nothing else to do with getting the addresses

More information

Virtual CRASH 3.0 Staging a Car Crash

Virtual CRASH 3.0 Staging a Car Crash Virtual CRASH 3.0 Staging a Car Crash Virtual CRASH Virtual CRASH 3.0 Staging a Car Crash Changes are periodically made to the information herein; these changes will be incorporated in new editions of

More information

Example Chapter 08-Number 09: This example demonstrates some simple uses of common canned effects found in popular photo editors to stylize photos.

Example Chapter 08-Number 09: This example demonstrates some simple uses of common canned effects found in popular photo editors to stylize photos. 08 SPSE ch08 2/22/10 11:34 AM Page 156 156 Secrets of ProShow Experts: The Official Guide to Creating Your Best Slide Shows with ProShow Gold and Producer Figure 8.18 Using the same image washed out and

More information

ONLINE PREVIEWER MANUAL

ONLINE PREVIEWER MANUAL ONLINE PREVIEWER MANUAL Version: 1.20120103 1 Table of Contents 2 About the Adrime Previewer... 3 2.1 Accessing the Previewer... 3 2.2 Account overview... 4 3 Setting up your flight... 6 3.1 Step 1: Uploading

More information

3D Scanner using Line Laser. 1. Introduction. 2. Theory

3D Scanner using Line Laser. 1. Introduction. 2. Theory . Introduction 3D Scanner using Line Laser Di Lu Electrical, Computer, and Systems Engineering Rensselaer Polytechnic Institute The goal of 3D reconstruction is to recover the 3D properties of a geometric

More information

How To Use Bodescan For 3D Imaging Of The Human Body

How To Use Bodescan For 3D Imaging Of The Human Body «Bodescan» THE ULTIMATE 3D SCANNER FOR DATA ACQUISITION OF HUMAN BODY A COMPREHENSIVE SYSTEM INCLUDING HARDWARE AND SOFTWARE TOOLS Page 2 of 9 Bodescan HUMAN BODY3D SCANNING HARDWARE AND SOFTWARE INCLUDED

More information

Semester Thesis Traffic Monitoring in Sensor Networks

Semester Thesis Traffic Monitoring in Sensor Networks Semester Thesis Traffic Monitoring in Sensor Networks Raphael Schmid Departments of Computer Science and Information Technology and Electrical Engineering, ETH Zurich Summer Term 2006 Supervisors: Nicolas

More information

Introduction to Computer Graphics

Introduction to Computer Graphics Introduction to Computer Graphics Torsten Möller TASC 8021 778-782-2215 torsten@sfu.ca www.cs.sfu.ca/~torsten Today What is computer graphics? Contents of this course Syllabus Overview of course topics

More information

How to Make the Most of Excel Spreadsheets

How to Make the Most of Excel Spreadsheets How to Make the Most of Excel Spreadsheets Analyzing data is often easier when it s in an Excel spreadsheet rather than a PDF for example, you can filter to view just a particular grade, sort to view which

More information

Manufacturing Process and Cost Estimation through Process Detection by Applying Image Processing Technique

Manufacturing Process and Cost Estimation through Process Detection by Applying Image Processing Technique Manufacturing Process and Cost Estimation through Process Detection by Applying Image Processing Technique Chalakorn Chitsaart, Suchada Rianmora, Noppawat Vongpiyasatit Abstract In order to reduce the

More information

Introduction to Data Tables. Data Table Exercises

Introduction to Data Tables. Data Table Exercises Tools for Excel Modeling Introduction to Data Tables and Data Table Exercises EXCEL REVIEW 2000-2001 Data Tables are among the most useful of Excel s tools for analyzing data in spreadsheet models. Some

More information

Exporting Email Addresses. for Use in Outlook Express

Exporting Email Addresses. for Use in Outlook Express Exporting Email Addresses for Use in Outlook Express If your Keystroke Customer database includes email addresses, it is a relatively simple and easy process to export the Customer records and import them

More information

3D Laser Scanning for Manufacturing Facilities Developing the Business Case. By Bill Campbell Founder, Digital Dimensions 360, LLC

3D Laser Scanning for Manufacturing Facilities Developing the Business Case. By Bill Campbell Founder, Digital Dimensions 360, LLC 3D Laser Scanning for Manufacturing Facilities Developing the Business Case By Bill Campbell Founder, Digital Dimensions 360, LLC Table of Contents Introduction The Importance of Accuracy Workflow and

More information

Getting Started with WebSite Tonight

Getting Started with WebSite Tonight Getting Started with WebSite Tonight WebSite Tonight Getting Started Guide Version 3.0 (12.2010) Copyright 2010. All rights reserved. Distribution of this work or derivative of this work is prohibited

More information

Resource Scheduler (Meeting Room Manager) User s Manual

Resource Scheduler (Meeting Room Manager) User s Manual Resource Scheduler (Meeting Room Manager) User s Manual Resource Scheduler (or Meeting Room Manager) is a web based software package for reserving facilities and equipment. The NS&M web client can be run

More information

Business Portal for Microsoft Dynamics GP 2010. User s Guide Release 5.1

Business Portal for Microsoft Dynamics GP 2010. User s Guide Release 5.1 Business Portal for Microsoft Dynamics GP 2010 User s Guide Release 5.1 Copyright Copyright 2011 Microsoft. All rights reserved. Limitation of liability This document is provided as-is. Information and

More information

Application note for listmode scanning

Application note for listmode scanning Application note for listmode scanning This application note explains what listmode acquisition is, how a listmode scan is done and how to process a listmode scan with SkyScan software. What is listmode?

More information

9 Working With DICOM. Configuring the DICOM Option

9 Working With DICOM. Configuring the DICOM Option 9 Working With DICOM DICOM (Digital Imaging and Communications in Medicine) is a format created by NEMA (National Electrical Manufacturers Association) to aid in the distribution and viewing of medical

More information

application Our Assets agronomy operational visibility pollutant monitoring urban microclimate animal tracking internet of things smart city

application Our Assets agronomy operational visibility pollutant monitoring urban microclimate animal tracking internet of things smart city field work management system model validation asset tracking remote surveillance operational visibility pollutant monitoring urban microclimate animal tracking internet of things smart city Advanced 360

More information

NetBeans Profiler is an

NetBeans Profiler is an NetBeans Profiler Exploring the NetBeans Profiler From Installation to a Practical Profiling Example* Gregg Sporar* NetBeans Profiler is an optional feature of the NetBeans IDE. It is a powerful tool that

More information

IP-S3 HD1. Compact, High-Density 3D Mobile Mapping System

IP-S3 HD1. Compact, High-Density 3D Mobile Mapping System IP-S3 HD1 Compact, High-Density 3D Mobile Mapping System Integrated, turnkey solution Ultra-compact design Multiple lasers minimize scanning shades Unparalleled ease-of-use No user calibration required

More information

3D BYZANTINEB 3D ARCHAEOA. 3D Crypts. 3D Sub Divo RCHAEO

3D BYZANTINEB 3D ARCHAEOA. 3D Crypts. 3D Sub Divo RCHAEO Electronic Imaging 2003 20/01/2003 Electronic Imaging 2003 Santa Clara, California Videometrics VII Wednesday 22 January Santa Clara, USA J-A Beraldin(1), Picard(1), El-Hakim(1), M. S.F. G. V. Valzano(2),

More information

CHAPTER 14 Understanding an App s Architecture

CHAPTER 14 Understanding an App s Architecture CHAPTER 14 Understanding an App s Architecture Figure 14-1. This chapter examines the structure of an app from a programmer s perspective. It begins with the traditional analogy that an app is like a recipe

More information

Programming Lists of Data

Programming Lists of Data Chapter 19 Programming Lists of Data As you ve already seen, apps handle events and make decisions; such processing is fundamental to computing. But the other fundamental part of an app is its data the

More information

Contents. Release notes: February 2014 SC. 2014.1

Contents. Release notes: February 2014 SC. 2014.1 The following updates are planned for the Scopus release on February 1, 014. For questions or to provide us with feedback, please email Scopus Product Marketing at scopus.1@elsevier.com. We will try to

More information

Description of field acquisition of LIDAR point clouds and photos. CyberMapping Lab UT-Dallas

Description of field acquisition of LIDAR point clouds and photos. CyberMapping Lab UT-Dallas Description of field acquisition of LIDAR point clouds and photos CyberMapping Lab UT-Dallas Description of field acquisition of LIDAR point clouds and photos Objective: Introduce the basic steps that

More information

Using Microsoft Word. Working With Objects

Using Microsoft Word. Working With Objects Using Microsoft Word Many Word documents will require elements that were created in programs other than Word, such as the picture to the right. Nontext elements in a document are referred to as Objects

More information

Guide to Understanding X-ray Crystallography

Guide to Understanding X-ray Crystallography Guide to Understanding X-ray Crystallography What is X-ray Crystallography and why do I need to learn it? X-ray Crystallography is a scientific method of determining the precise positions/arrangements

More information

What Resolution Should Your Images Be?

What Resolution Should Your Images Be? What Resolution Should Your Images Be? The best way to determine the optimum resolution is to think about the final use of your images. For publication you ll need the highest resolution, for desktop printing

More information

CAD / CAM Dr. P. V. Madhusuthan Rao Department of Mechanical Engineering Indian Institute of Technology, Delhi Lecture No. # 12 Reverse Engineering

CAD / CAM Dr. P. V. Madhusuthan Rao Department of Mechanical Engineering Indian Institute of Technology, Delhi Lecture No. # 12 Reverse Engineering CAD / CAM Dr. P. V. Madhusuthan Rao Department of Mechanical Engineering Indian Institute of Technology, Delhi Lecture No. # 12 Reverse Engineering So what we will do in today s lecture is basically take

More information

Agent s Handbook. Your guide to satisfied customers

Agent s Handbook. Your guide to satisfied customers Agent s Handbook Your guide to satisfied customers Introduction LiveChat is a tool that facilitates communication between a company and its customers. Agents who wield that tool use it to make customers

More information