Getting Started with Bellus3D Face Camera SDK

Size: px
Start display at page:

Download "Getting Started with Bellus3D Face Camera SDK"

Transcription

1 Getting Started with Bellus3D Face Camera SDK Revision History Version Date Description Author a 2017/12/20 1. Use Service App to support Bellus3D camera connection 2. Recommend to use new Synchronized method for DepthCamera and DeviceCamera class a 2018/02/07 1.Fixed generated model tilt bug 2.Face model cut on the chin bug 3.Texture off bug Please Note: current library doesn t support Android a 2018/03/20 1.Extended expiration date for Face Camera Prototype 2.Fixed sample app open device camera failed bug Please Note: Face Camera Prototype developer must upgrade to this version before April 1 st a 2018/04/27 1.Updated camera driver to support Android 8 2.Support.stl 3d format and.zip output 3. Improved scan results when using registration bite plates for Dental scanning 4.Improved sample app error handling 5.Added sample code for output jialiu@bellus3d.com jialiu@bellus3d.com jialiu@bellus3d.com jialiu@bellus3d.com

2 Table of Contents 1. FOUR MAJOR COMPONENTS DEPTHCAMERA DEVICECAMERA HEADSCANNER HEADPROCESSOR COMPONENT STATES CHANGE DEPTH CAMERA STATE DEVICE CAMERA STATE HEAD SCANNER STATE HEAD PROCESSOR STATE COMPLETE PROCESS OF GETTING A FACE MODEL CONNECT DEPTH CAMERA AND OPEN DEVICE CAMERA TRACKING SCANNING PROCESSING CLOSE SESSION SETTINGS DEVICE CAMERA HEAD SCANNER HEAD PROCESSOR OUTPUT HEADMESH CLASS DIFFERENT FORMAT UPDATE WINDOWS SDK NEW DEVELOPER EXISTING DEVELOPER WEBCAM CONNECTIONS USING EMBEDDED WEBCAM USING EXTERNAL WEBCAM...9

3 FOUR MAJOR COMPONENTS 1.1. DepthCamera Controls the Bellus3D depth camera DeviceCamera Controls Controls PC embeded Device Camera or external Device Camera HeadScanner Performs 3D face tracking and scanning. It operates DepthCamera for capturing depth images, color camera on PC or external device for color images HeadProcessor Performs 3D face model building. It processes images captured by HeadScanner and generates a 3D face model. COMPONENT STATES CHANGE Make sure that you call each function at the correct state Depth Camera State Disconnected State Initial State of Depth Camera when it s unplugged Connecting State Intermediate state when depth camera is connecting Connected State Happens when DepthCamera.connect() successfully Opening State Intermediate state when depth camera is opening Open State Happens when DepthCamera.open() successfully Starting State Intermediate state when depth camera is connecting Steaming State Happens when DepthCamera.startStream() successfully Stopping State Intermediate state when depth camera is stopping Closing State

4 Intermediate state when depth camera is closing Disconnecting State Currently not used Disconnected Connecting DepthCamera.connect() Steaming Connected DepthCamera.startStream() Starting Opening DepthCamera.open() DepthCamera.stopStream() Stopping Closing Open DepthCamera.close() 2.2. Device Camera State Closed State Happens when DeviceCamera.closeSync() successfully Opening State Intermediate state when device camera is opening Open State Happens when DeviceCamera.openSync() successfully Starting State Intermediate state when device camera is connecting Streaming State Happens when DeviceCamera.startStream() successfully Stopping State Intermediate state when device camera is stopping Closing State Intermediate state when device camera is closing.

5 Closed Closing Opening DeviceCamera.openSync() DeviceCamera.startStream() Steaming Starting Open DeviceCamera.closeSync() Stopping DeviceCamera.stopStream() 2.3. Head Scanner State Inactive State Initial state, happens after scanning completed as well Tracking State Happens after HeadScanner.startTracking() Scanning State Happens after HeadScanner.startscanning() Stopping State Intermediate state when HeadScanner is stopping, happens after HeadScanner.stop() HeadScanner.startScanning() Stopping HeadScanner.stop() Inactive Stopping HeadScanner.startTracking() HeadScanner.stop() Scanning Tracking 2.4. Head Processor State Inactive State

6 Initial state, happens after processing completed / cancelled as well Processing State Happens after HeadProcessor.startProcessing() HeadProcessor.startProcessing() Inactive Processing HeadProcessor.cancelProcessing() COMPLETE PROCESS OF GETTING A FACE MODEL 3.1. Connect Depth Camera and Open Device Camera If user choose to use middle camera from Bellus3D Camera, don t open DeviceCamera Tracking Make sure the following before calling HeadScanner.startTracking() a. DepthCamera is in Open state b. DeviceCamera is in Open state c. HeadScanner is in Inactive state d. HeadProcessor is in Inactive state Tracking State Information o FacePosition represents current face position Scanning Make Sure TrackingState s FacePosition is READY_TO_SCAN before calling HeadScanner.startScanning() Scanning State Information o targetprogress represents where your face should be instructively [0, 4]: 0 is in the middle, 1 is most left, 2 is in the middle, 3 is most right, 4 is back to the middle currentposition represents your face rotation angle [-90, 90 ] corresponding to [-1, 1] 3.4. Processing Make Sure HeadScanner InactiveState s sessiondatacompleted is READY_TO_SCAN before calling HeadScanner.startScanning() Processing State Information o progress represents the percentage of current processing progress. o processingstage represents if current state is processing data or recalibrating camera

7 3.5. Close Session SETTINGS Clean up resources for each component. Depending on their State, do following as shown in sample app HeadScanner.stop(); HeadProcessor.cancelProcessing(); DeviceCamera.stopPreview(); DeviceCamera.closeSync(); DepthCamera.stopStreamSync(); Make sure to set up setting to each component before start capture, tracking or scanning by e.g. HeadScanner.setHeadScannerSettings(HeadScannerSettings); 4.1. Device Camera CameraID represents if you are using front or back camera in your device 4.2. Head Scanner CaptureInMemory: true means never save depth images, processing in memory ScanningMode: capture time is increasing for 180, 270, and 270 ext. o 180 means scanning from [-90, 90] o o 4.3. Head Processor OUTPUT 270 [-135, 135], it would capture more data behind your ears 270ext is more for using back camera to do hand holding capture. MeshEnhancement: Choose to enhance or not by color, landmarks or both MeshResolution: Process output to LD, SD or HD resolution MeshSmoothness: How much smooth enhancement to apply to the output model, range from[0, 10] RemoveRawImages: choose if removing captured raw images after processing, default is true TextureSource: choose texture source for texture from Bellus3D color camera or color camera on your device EnableAutoOutput: choose auto output 3D models in format obj. By default, it s enabled EnableRecalibration: choose if doing calibration before processing the model. By default, it s 5.1. HeadMesh Class disabled. Used when you see very bumpy scan Landmarks Contains 77-point ASM facial landmarks Landmarks2d is a Point2f Array. Each Point2f has x and y coordinates.

8 Landmarks3d is a Point3f Array. Each Point3f has x, y and z coordinates Polygons Faces is a float array that contains indices info. Every 3 forms a triangle Vertices is a float array that contains vertices info. Every 8 forms one vertex info. First 3 are x, y and z position coordinates. Following 3 are normal coordinates. And last 2 are texture UV coordinates. getmeshpolys() function include simplify process when gets called at the first time. Keep in mind that it takes some time to finish FrontalImage This is the first captured color image from device camera. You may use it as a thumbnail to for your face model 5.2. Different Format b3d file Use write() to output.b3d file. It includes all the information for HeadMesh obj file Use export() with ***.obj as filename input to export obj file. By default, it would also output material file ***.mtl and texture file ***.jpg Use writelandmarks() with ***.obj as landmarkfilename input to export landmarks file stl file Use export() with ***.stl as filename input to export stl file. UPDATE WINDOWS SDK 6.1. New Developer Follow README file inside your WindowSDK package. Install Inuitive Drivers Setup Environment Variables 6.2. Existing Developer Reinstall Inuitive Driver InuDev_SP_ _X64.exe Make sure your INUITIVE_PATH is still correct in your environment variables Read sample app source code carefully since error handling was improved a lot WEBCAM CONNECTIONS 7.1. Using Embedded Webcam the USB port of Laptop can be either USB 2.0 or USB 3.0

9 the Type-C connector of B3D3 can be either USB 2.0 side or USB 3.0 side 7.2. Using External Webcam Connect webcam and B3D3 to Laptop/PC directly o the USB port of Laptop/PC can be either USB 2.0 or USB 3.0 o the Type-C connector of B3D3 can be either USB 2.0 side or USB 3.0 side Not recommend to connect webcam and B3D3 to Laptop/PC via a USB hub.

STUDIO 12 MANUAL PROCESSING GUIDE

STUDIO 12 MANUAL PROCESSING GUIDE STUDIO 12 MANUAL PROCESSING GUIDE www.artec3d.com Artec Studio offers Autopilot for automatic processing of scan data. While this works very well, sometimes manual processing may be desired or needed.

More information

Bumblebee2 Stereo Vision Camera

Bumblebee2 Stereo Vision Camera Bumblebee2 Stereo Vision Camera Description We use the Point Grey Bumblebee2 Stereo Vision Camera in this lab section. This stereo camera can capture 648 x 488 video at 48 FPS. 1) Microlenses 2) Status

More information

User Manual Of Einscan-S Catalog

User Manual Of Einscan-S Catalog User Manual Of Einscan-S Catalog 1 Software installation... 2 1.1 Software installation... 2 1.2 Software Uninstall...8 2 Software Introduction...8 2.1 First Scan... 8 2.2 Advanced options... 10 3 Calibration...12

More information

Android Camera. Alexander Nelson October 6, University of Arkansas - Department of Computer Science and Computer Engineering

Android Camera. Alexander Nelson October 6, University of Arkansas - Department of Computer Science and Computer Engineering Android Camera Alexander Nelson October 6, 2017 University of Arkansas - Department of Computer Science and Computer Engineering Why use the camera? Why not? Translate Call Learn Capture How to use the

More information

HeadMouse. Robotic Research Team. University of Lleida

HeadMouse. Robotic Research Team. University of Lleida HeadMouse Robotic Research Team University of Lleida User Manual and Frequently Asked Questions What is HeadMouse? HeadMouse is a free program designed to replace the computer mouse. The user can control

More information

Maestro 3D Easy Dental Scan User's Manual

Maestro 3D Easy Dental Scan User's Manual Maestro 3D Easy Dental Scan User's Manual Introduction to the use of scanning software combined with Maestro 3D scanner. AGE SOLUTIONS S.r.l. 1 Introduction to the use of scanning software combined with

More information

Quick User Guide for DVR Camera System

Quick User Guide for DVR Camera System Quick User Guide for DVR Camera System Before Setup Remote Access Make sure you have done: Hook cameras to the DVR using cables included in the package; power on your DVR and cameras; Connect your DVR

More information

HeadMouse. Robotic Research Team. University of Lleida

HeadMouse. Robotic Research Team. University of Lleida HeadMouse Robotic Research Team University of Lleida User Manual and Frequently Asked Questions What is HeadMouse? HeadMouse is a free program designed to replace the computer mouse. The user can control

More information

Speed, Accuracy and Performance at an Affordable Price

Speed, Accuracy and Performance at an Affordable Price Speed, Accuracy and Performance at an Affordable Price 012 2.A ions olut S 3D3 ed. serv s re ht ll rig VERSATILE for Industry Applications The HDI Advance 3D Scanner uses white light technology for capturing

More information

Function Manual Intraoral Scanner i500

Function Manual Intraoral Scanner i500 Function Manual Intraoral Scanner i500 Revised Date: Feb 2019 Revision No.: 0 Contents 1 Introduction and overview... 3 1.1 Intended Use... 3 1.2 Indication for use... 3 1.3 Contraindications... 3 1.4

More information

KODAK EASYSHARE Software CD V1.X Troubleshooting Guide for Mac OS X

KODAK EASYSHARE Software CD V1.X Troubleshooting Guide for Mac OS X KODAK EASYSHARE Software CD V1.X Troubleshooting Guide for Mac OS X Getting Started Use this information to solve problems installing KODAK EASYSHARE Software or getting KODAK EASYSHARE Software to function

More information

Animation & AR Modeling Guide. version 3.0

Animation & AR Modeling Guide. version 3.0 Animation & AR Modeling Guide version 3.0 Contents 1. Introduction... 3 2. Face animation modeling guide...4 2.1. Creating blendshapes...4 2.1.1. Blendshape suggestions...5 2.2. Binding configuration...6

More information

Installation of Hot Disk v 7.3 and later on a PC with Windows 7, 8 or 10

Installation of Hot Disk v 7.3 and later on a PC with Windows 7, 8 or 10 Installation Instruction for Hot Disk TPS 7 2.1 2017-05-09 1(44) Installation of Hot Disk v 7.3 and later on a PC with Windows 7, 8 or 10 Installation Instruction for Hot Disk TPS 7 2.1 2017-05-09 2(44)

More information

CATALOGUE PRICES 2016

CATALOGUE PRICES 2016 CATALOGUE PRICES 2016 Resellers: S.A.S 3D SPARK PVT. LTD. #328, Third Main, Domlur Layout, BENGALURU - 560071, INDIA +91-9008006149 / 9591848886 sales@sas3dspark.com sehgal@sas3dspark.com SLS-3 Structured

More information

User manual of the 4K camera waterproof gimbal

User manual of the 4K camera waterproof gimbal User manual of the 4K camera waterproof gimbal www.swellpro.com Content Installation 03 Operation 04 Gimbal Control Camera Control 04 04 Camera 04 Insert Micro SD card Camera Setting and Usage Camera Setting

More information

Shadow Custom Software. Scan-N-Send USERS Guide

Shadow Custom Software. Scan-N-Send USERS Guide Shadow Custom Software Scan-N-Send USERS Guide Revision Date: 4/1/2008 Table of Content About Scan-N-Send Page 3 Software Application Installation Page 4-7 Scanner Driver Installation Page 7-11 Scanner

More information

Phocus Windows read-me

Phocus Windows read-me Phocus 2.8.3 Windows read-me December 9th 2014 Since Phocus 2.8.2 - in CMOS live video the option to use automatic exposure control has been added via a check box in the viewer top bar (requires firmware

More information

Mobile App User Manual For 3G/4G IP Cameras Powered by Solar Panels. Version:V2018.5

Mobile App User Manual For 3G/4G IP Cameras Powered by Solar Panels.   Version:V2018.5 Mobile App User Manual For 3G/4G IP Cameras Powered by Solar Panels http://iotsmatsolutions.net Version:V2018.5 1 1.App introduction The App CamHi is designed for the 4G camera remote access, preview,

More information

Release Notes. Please refer to the Intel RealSense 3D Camera Software License.rtf for license terms and conditions.

Release Notes. Please refer to the Intel RealSense 3D Camera Software License.rtf for license terms and conditions. Release Notes Intel RealSense Depth Camera Manager (DCM) 1.4 HF2 This release notes covers Release 1.4 HF2 of Intel RealSense Depth Camera Manager F200 These are for use with Intel RealSense F200 Camera.

More information

Arbitrary cut planes Slab control with slab thickness Projection plane adjustment Box cropping Mandible detection MPR cross-section linked views

Arbitrary cut planes Slab control with slab thickness Projection plane adjustment Box cropping Mandible detection MPR cross-section linked views Provides unparalleled quality and performance no need to sacrifice one for the other Enables high fidelity viewing with interactive deep supersampling Requires no GPUs or hardware accelerators a true,

More information

Josefstädter Straße 39. Internet

Josefstädter Straße 39. Internet Virtual IHS-PC Virtual IHS-PCs are centralized computers running at IHS and offer convenient access to IT resources (printers, software, H:, J:, U: and backup) from anywhere, from any device no IHSVPN

More information

Indoor Map Tracker Application

Indoor Map Tracker Application Indoor Map Tracker Application User Manual Michael Margolin & Arieh Leviav / 1170/7101 Getting started... page 2 Calibration... page 5 Connecting to map matching server... page 6 Scan QR code... page 8

More information

Scanning Your Assignment

Scanning Your Assignment Scanning Your Assignment NOTE: In order to scan your assignments, Gradescope recommends using Genius Scan, a free app for ios and Android. This is best way to scan assignments if you do not have a scanner.

More information

PHOTOGRAMMETRY CLEAN UP VER 2.0

PHOTOGRAMMETRY CLEAN UP VER 2.0 PHOTOGRAMMETRY CLEAN UP VER 2.0 Agisoft PhotoScan AutoDesk Maya Photoshop UC win/road Software Wacom Tablet Download object Download texture EQUIPMENT DOWN- LOAD OBJECT Recommend: Video tutorial link:

More information

Cloud WiFi Camera. Operation Manual

Cloud WiFi Camera. Operation Manual Cloud WiFi Camera Operation Manual Dear user, welcome to use this product, please read the operating instruction carefully before using this product and keeping this manual for future use. 1 Main Function

More information

PDF created with pdffactory Pro trial version How USB Ports Work by Marshall Brain. Introduction to How USB Ports Work

PDF created with pdffactory Pro trial version  How USB Ports Work by Marshall Brain. Introduction to How USB Ports Work Main > Computer > Hardware How USB Ports Work by Marshall Brain Introduction to How USB Ports Work Just about any computer that you buy today comes with one or more Universal Serial Bus connectors on the

More information

Copyright Notice. Disclaimer. Limitations of Liability. Content. Products: SVC100 / SVC500. Firmware Version:

Copyright Notice. Disclaimer. Limitations of Liability. Content. Products: SVC100 / SVC500. Firmware Version: Products: SVC100 / SVC500 Firmware Version: 00.20.04.29 Published Date: April 29 th, 2018 Copyright 2018 Copyright Notice This publication, including all photographs, illustrations and software, is protected

More information

Full Screen Layout. Main Menu Property-specific Options. Object Tools ( t ) Outliner. Object Properties ( n ) Properties Buttons

Full Screen Layout. Main Menu Property-specific Options. Object Tools ( t ) Outliner. Object Properties ( n ) Properties Buttons Object Tools ( t ) Full Screen Layout Main Menu Property-specific Options Object Properties ( n ) Properties Buttons Outliner 1 Animation Controls The Create and Add Menus 2 The Coordinate and Viewing

More information

CCS 1000 D Digital Discussion System. Release Notes

CCS 1000 D Digital Discussion System. Release Notes CCS 1000 D Digital Discussion System en Release Notes CCS 1000 D Digital Discussion System Release Notes 2 Table of Contents 1 History... 3 2 GUI languages... 3 3 Upgrade software... 3 4 Known issues...

More information

Ctdigi.com. Instruction manual. Production by S & W Technology Labs

Ctdigi.com. Instruction manual. Production by S & W Technology Labs Ctdigi.com Instruction manual Production by S & W Technology Labs I. Install app II. Guard camera Guard camera Introduction Accessory Sensor Scenario Guard 360 Introduction - Catalog - Install app Scenario

More information

SZC-2001 SZC-2001M SZC-2001W SZC-2002 SZC-2002M SZC-2002W SZC-4002 SZC-4002M SZC-4002W HD CUTOUT SOFTWARE HD HFR SOFTWARE HFR SOFTWARE

SZC-2001 SZC-2001M SZC-2001W SZC-2002 SZC-2002M SZC-2002W SZC-4002 SZC-4002M SZC-4002W HD CUTOUT SOFTWARE HD HFR SOFTWARE HFR SOFTWARE HD CUTOUT SOFTWARE SZC-2001 SZC-2001M SZC-2001W HD HFR SOFTWARE SZC-2002 SZC-2002M SZC-2002W HFR SOFTWARE SZC-4002 SZC-4002M SZC-4002W USER S GUIDE [English] 1st Edition (Revised 2) Overview Installation

More information

TECHNICAL NEWSLETTER No. 36 Title: New release of OmniScan 12.8 Build 2469

TECHNICAL NEWSLETTER No. 36 Title: New release of OmniScan 12.8 Build 2469 www.zeutschel.de info@zeutschel.de TECHNICAL NEWSLETTER No. 36 Title: New release of OmniScan 12.8 Build 2469 Valid from: from now on Affected Systems: All OS12 capable scan systems from series/version:

More information

Do not place or mount Ocli 1 in an area where it will be exposed to water. Ocli 1 is designed for indoor use.

Do not place or mount Ocli 1 in an area where it will be exposed to water. Ocli 1 is designed for indoor use. 1 Manual: Ocli 1 with Observeye Viewer App for Android Setting Up Ocli 1 Live Viewing with Ocli 1 Recording Video and Taking Snapshots Using Advanced Features Setting Up Ocli 1 Place or Mount the Camera

More information

BE INSPIRED.

BE INSPIRED. BE INSPIRED www.scaninabox.com Last update October 2017 PROFESSIONALISM, OUR CORE Accurately manufactured in every detail, Scan in a Box FX offers high quality 3D Scans. The Made in Italy design has been

More information

User s Guide. Creative WebCam NX Ultra

User s Guide. Creative WebCam NX Ultra User s Guide Creative WebCam NX Ultra Information in this document is subject to change without notice and does not represent a commitment on the part of Creative Technology Ltd. No part of this manual

More information

Introduction to Kaltura

Introduction to Kaltura Introduction to Kaltura The Kaltura media content management system allows users to record, stream, and manage multimedia files. This industry-leading enterprise system offers many robust tools. This guide

More information

LobbyGuard Assist Installation Guide

LobbyGuard Assist Installation Guide LobbyGuard Assist Installation Guide Installation Instructions... 3 Step 1: Installation Checklist... 4 Step 2: Install the LobbyGuard Assist Software... 5 Step 3: Install your Hardware... 6 LobbyGuard

More information

FS-IP3000-M User Manual. Ver 1.0

FS-IP3000-M User Manual. Ver 1.0 FS-IP3000-M User Manual Ver 1.0 Sentry360 2014 Table of Contents 1. Overview... 3 1.1 Features... 3 1.2 Package Contents... 4 1.3 Dimensions... 5 1.4 Installation... 6 1.5 Connectors... 7 2. Connect Ethernet

More information

ProDVX Lite Signage Player

ProDVX Lite Signage Player ProDVX Lite Signage Player The ProDVX Lite Signage Player (LSP) is an easy to use tool to distribute your content to Android devices within your local or wide area network. The LSP app can be installed

More information

OPEN SCAN Copings & Bridges

OPEN SCAN Copings & Bridges OPEN SCAN Copings & Bridges User Manuel OpenCAD Rev. 3.0 Laserdenta GmbH Friedrich-Bessel-Strasse 12 50126 Bergheim Germany support@laserdenta.com www.laserdenta.com - 1 - Contens Pages Operation describtion.

More information

AJA Helo Video Streaming. A Quick Start Guide for Streaming Video to You Tube with the AJA Helo

AJA Helo Video Streaming. A Quick Start Guide for Streaming Video to You Tube with the AJA Helo AJA Helo Video Streaming A Quick Start Guide for Streaming Video to You Tube with the AJA Helo The AJA Helo streams and records video. Records: H.264 video at a maximum of 20 mbps. Streams: H.264 video

More information

ProDVX Lite Signage Player

ProDVX Lite Signage Player ProDVX Lite Signage Player The ProDVX Lite Signage Player (LSP) is an easy to use tool to distribute your content to Android devices within your local or wide area network. The LSP app can be installed

More information

INSTRUCTION MANUAL 2.4G Wireless DVR SB-WDVR50

INSTRUCTION MANUAL 2.4G Wireless DVR SB-WDVR50 INSTRUCTION MANUAL 2.4G Wireless DVR SB-WDVR50 Revised: April 26, 2013 Thank you for purchasing from SafetyBasement.com! We appreciate your business. We made this simple manual to help you enjoy your new

More information

Paraben s Photo Backup Stick V2.1. User Manual

Paraben s Photo Backup Stick V2.1. User Manual Paraben s Photo Backup Stick V2.1 User Manual About Paraben s Photo Backup Stick The Photo Backup Stick is an easy-to-use picture and video backup tool for Windows computers, Apple iphones and ipads, and

More information

Orthodontic Systems 2013 for Labs. Product Catalog. Please see price list for more details

Orthodontic Systems 2013 for Labs. Product Catalog. Please see price list for more details Orthodontic Systems 2013 for Labs Product Catalog Please see price list for more details January 2014 3Shape R900 R900 3D scanner with Ortho System 4 x 5.0 MP Cameras RealColor 20005200 R900 (4 x 5 MP

More information

Figure 1 Add Media panel

Figure 1 Add Media panel How to import video There are four basic methods for adding media to your projects: capturing from tape or live sources, importing files from other types of storage, adding from the Organizer workspace,

More information

Highlights. Main Features. Product Images: BD-2402B1. 4CH 720p Video Security System with 1TB HDD and 2 720p Analog Cameras

Highlights. Main Features. Product Images: BD-2402B1. 4CH 720p Video Security System with 1TB HDD and 2 720p Analog Cameras BD-2402B1 4CH 720p Video Security System with 1TB HDD and 2 720p Analog Cameras Highlights 4-Channel DVR with 1TB HDD and 2 HD 720p cameras Upgrade existing standard definition systems to 720p without

More information

USER MANUAL

USER MANUAL www.activeon.com USER MANUAL Table Of Contents Names of each part 1 Operation & button description 2 Start the camera 3 LCD screen shot 4 Graphical icon description 5 Video recording 8 Photo shoot 8 Quick

More information

User Guide for Windows OS

User Guide for Windows OS User Guide for Windows OS PanaCast 2 Utility and Firmware Update April 2018 X0.3.3.40 This guide explains how to update your PanaCast 2 firmware using the PanaCast 2 utility on Windows OS. It also shows

More information

Yale Smart WIFI CCTV FAQs

Yale Smart WIFI CCTV FAQs Can I setup e-mail alerts? Yale Smart WIFI CCTV FAQs Yes, you can get email alerts. Go to main menu, select network, and then the email tab. tick enable box, set the receiver mail and the subject. Test

More information

R2CAD User Guide V1.7. Copyright All rights reserved.

R2CAD User Guide V1.7. Copyright All rights reserved. R2CAD User Guide V1.7 Copyright All rights reserved. Table of Contents 1. About R2CAD... 1 1.1 System Requirements... 1 2. User Interface... 2 2.1 Main menu... 2 2.2 Mouse Operation... 2 2.3 Setting...

More information

Remote Access Instructions. remote.gpmlaw.com

Remote Access Instructions. remote.gpmlaw.com Remote Access Instructions Citrix XenApp 7.8 is the mostly widely-used solution to provide remote access to users while working out of the office. This latest version is more secure and optimized for a

More information

TAGARNO. TAGARNO MEDTECH 320 when quality is paramount

TAGARNO. TAGARNO MEDTECH 320 when quality is paramount TAGARNO when quality is paramount 2 when quality is paramount when quality is paramount Image Capture on SD card Non-contact Measurements Display of Magnification Degree Split Screen Function Training

More information

Package Content. QSG booklet. Warranty, legal & safety booklet. USB cable. Charger. Warranty ARCHOS 11,31

Package Content. QSG booklet. Warranty, legal & safety booklet. USB cable. Charger. Warranty ARCHOS 11,31 Table of contents Package contents... 2 Getting started... 3 Description of the device... 4 Through the wizard... 6 Connecting to a WiFi network... 7 The Android TM interface... 8 Getting familiar with

More information

LobbyGuard Assist Installation Guide

LobbyGuard Assist Installation Guide LobbyGuard Assist Installation Guide Installation Instructions... 3 Step 1: Installation Checklist... 4 Step 2: Install the LobbyGuard Assist Software... 5 Step 3: Install your Hardware... 6 LobbyGuard

More information

Sony Bravia Keeps Manual Usb Wireless Lan Adapter Compatible

Sony Bravia Keeps Manual Usb Wireless Lan Adapter Compatible Sony Bravia Keeps Manual Usb Wireless Lan Adapter Compatible and Widgets The Wi-Fi / Wireless Internet signal drops out or keeps losing connection. Which products require the UWA-BR100 USB adapter for

More information

Guarding Expert (Android) Mobile Client Software User Manual (V3.2)

Guarding Expert (Android) Mobile Client Software User Manual (V3.2) Guarding Expert (Android) Mobile Client Software User Manual (V3.2) UD.6L0202D1247A01 Thank you for purchasing our product. This manual applies to Guarding Expert (Android) mobile client software; please

More information

One of the primary features of 5-Star Students is the ability to capture and store attendance data during school events.

One of the primary features of 5-Star Students is the ability to capture and store attendance data during school events. Conducting Events This guide will assist you with planning and conducting events using 5-Star Students Determine which events you ll track using 5-Star Students Understand requirements and options for

More information

Lechange App. User s Manual V1.0.0

Lechange App. User s Manual V1.0.0 Lechange App User s Manual V1.0.0 Cybersecurity Recommendations Mandatory actions to be taken towards cybersecurity 1. Change Passwords and Use Strong Passwords: The number one reason systems get hacked

More information

SIU s Secure App (XenMobile) Migration for Android

SIU s Secure App (XenMobile) Migration for Android SIU s Secure App (XenMobile) Migration for Android The version of the XenMobile we are currently using has reached its end of support lifespan. In order to maintain support for XenMobile and the associated

More information

A 10-minute introduction to. SynRad+ A test-particle Monte Carlo simulator for synchrotron radiation

A 10-minute introduction to. SynRad+ A test-particle Monte Carlo simulator for synchrotron radiation A 10-minute introduction to SynRad+ A test-particle Monte Carlo simulator for synchrotron radiation 1 The basics First, let s learn the SynRad+ terminology and the interface in a few slides. Or, if you

More information

Juniper Networks. Junos Pulse on Mobile Release 2.0. Android build #7687. BlackBerry build #154. Apple ios build #8059. Juniper Networks, Inc.

Juniper Networks. Junos Pulse on Mobile Release 2.0. Android build #7687. BlackBerry build #154. Apple ios build #8059. Juniper Networks, Inc. Juniper Networks Junos Pulse on Mobile Release 2.0 Android build #7687 BlackBerry build #154 Apple ios build #8059 Juniper Networks, Inc. 1194 North Mathilda Avenue Sunnyvale, CA 94089 USA 408 745 2000

More information

3D measurement for Quality and Speed

3D measurement for Quality and Speed We provide high quality and easy-to-use 3D scanning solutions to the industry. Our system provides high precision by white light measurement technology, enhanced detail with high-resolution twin-camera

More information

WI-FI GARAGE DOOR CONTROLLER WITH CAMERA USER MANUAL

WI-FI GARAGE DOOR CONTROLLER WITH CAMERA USER MANUAL WI-FI GARAGE DOOR CONTROLLER WITH CAMERA USER MANUAL Contents Introduction 4 Product Features 5 Garage Door Controller LED Indicators 6 What s Included 7 Wi-Fi Requirements 8 Mobile Device Requirements

More information

Installing MacBook Pro 15" Unibody Mid 2010 Dual Hard Drive

Installing MacBook Pro 15 Unibody Mid 2010 Dual Hard Drive Installing MacBook Pro 15" Unibody Mid 2010 Dual Hard Drive Use this guide to install a second hard drive in place of the optical drive. Written By: Brittany McCrigler ifixit CC BY-NC-SA www.ifixit.com

More information

CCS 1000 D Digital Discussion System. Release Notes

CCS 1000 D Digital Discussion System. Release Notes CCS 1000 D Digital Discussion System en Release Notes CCS 1000 D Digital Discussion System Release Notes 2 Table of Contents 1 History... 3 2 GUI languages... 3 3 Upgrade software... 3 4 Known issues...

More information

FabulaTech Products Advanced Communications Solutions

FabulaTech Products Advanced Communications Solutions FabulaTech Products Advanced Communications Solutions USB for Remote Desktop Sound for Remote Desktop Webcam for Remote Desktop Printer for Remote Desktop Scanner for Remote Desktop Biometrics for Remote

More information

Fast. Affordable. Complete. Desktop Scanning System from Great Lakes

Fast. Affordable. Complete. Desktop Scanning System from Great Lakes Desktop Scanning System from Great Lakes Fast Affordable Complete Create Virtual Bases Occlusal Mapping Complex Measurements Accurate Digital Study Models Desktop Scanning System Now you can easily convert

More information

A short guide to Whova: the official app of the 2017 Beyond Academia Conference. How do I get Whova? How do I log in to Whova?

A short guide to Whova: the official app of the 2017 Beyond Academia Conference. How do I get Whova? How do I log in to Whova? A short guide to Whova: the official app of the 2017 Beyond Academia Conference This is a short guide to the Whova app, the official schedule and networking app for the Beyond Academia 2017 Conference.

More information

insight3d quick tutorial

insight3d quick tutorial insight3d quick tutorial What can it do? insight3d lets you create 3D models from photographs. You give it a series of photos of a real scene (e.g., of a building), it automatically matches them and then

More information

Single Face Tracker for Unity Plugin v User Manual - Windows, macos, ios and Android Builds. Document Version

Single Face Tracker for Unity Plugin v User Manual - Windows, macos, ios and Android Builds. Document Version Single Face Tracker for Unity Plugin v1.3.20 User Manual - Windows, macos, ios and Android Builds Document Version 1.3.20 8 August 2018 Copyright 2018 ULSee Inc. All Rights Reserved ULSee Inc. is not responsible

More information

Image Measurement Software MicroMeasure Version 1.07 Operating Manual

Image Measurement Software MicroMeasure Version 1.07 Operating Manual Image Measurement Software MicroMeasure Version 1.07 Operating Manual 7th edition Scalar Corporation Index 1. Introduction... 4 2. Contents of the Package... 4 3. System Requirements... 4 4. Setting Up...

More information

7 Android Cabbie s Mate - Trouble shooting and Previously Asked Questions

7 Android Cabbie s Mate - Trouble shooting and Previously Asked Questions 7 Android Cabbie s Mate - Trouble shooting and Previously Asked Questions INDEX CHARGING ISSUES: 1- Device doesn t switch on 2- Device is not charging 3- Device is not holding charge 4- Device battery

More information

User s Guide. Creative WebCam NX

User s Guide. Creative WebCam NX User s Guide Creative WebCam NX Information in this document is subject to change without notice and does not represent a commitment on the part of Creative Technology Ltd. No part of this manual may be

More information

EyeFaceGUI. User Guide. Version

EyeFaceGUI. User Guide. Version EyeFaceGUI User Guide Version 4.4.0615.1 010001010111100101100101011001000110010101100001001000000 101001001100101011000110110111101100111011011100110100101 110100011010010110111101101110010001010111100101100101011

More information

Getting Custom Content Characters into Neverwinter Nights 2

Getting Custom Content Characters into Neverwinter Nights 2 Getting Custom Content Characters into Neverwinter Nights 2 This Tutorial assumes you know how to model and texture in 3DS Max. We will cover step-by-step how to replace existing NWN2 models with custom

More information

2016 Copyright Brüel & Kjær. All rights reserved

2016 Copyright Brüel & Kjær. All rights reserved 3660-A-20x SETUP GUIDE 2016 Copyright Brüel & Kjær. All rights reserved 1-module Wireless LAN Frame Type 3660-A-20x allows wireless connection to a LAN-XI module. It can be used in general analysis applications

More information

COGO-50 v1.81 User Manual By Jacob Wall

COGO-50 v1.81 User Manual By Jacob Wall COGO-50 v1.81 User Manual By Jacob Wall COGO-50 is a (mostly) UserRPL program written for the HP 49g+/50g using ROM Version 2.09 (also tested with ROM Version 2.15). It is a land surveying program capable

More information

Technology Checklist for End of the School Year. To prepare your classroom technology for summer, please confirm that the following are done:

Technology Checklist for End of the School Year. To prepare your classroom technology for summer, please confirm that the following are done: Technology Checklist for End of the School Year Classroom Technology To prepare your classroom technology for summer, please confirm that the following are done: Projector should be powered off, lens cap

More information

Cura (Documentation for version )

Cura (Documentation for version ) Cura (Documentation for version 15.04.06) Getting Started Installation To start the installation of Cura, download it first. After downloading, open the installer and run the installation wizard to complete

More information

INSTRUCTION MANUAL 8hrs Coat Hanger DVR w/ Motion Detection and remote controller

INSTRUCTION MANUAL 8hrs Coat Hanger DVR w/ Motion Detection and remote controller INSTRUCTION MANUAL 8hrs Coat Hanger DVR w/ Motion Detection and remote controller Revised: NOVEMBER 5, 2013 Thank you for purchasing from SafetyBasement.com! We appreciate your business. We made this simple

More information

Quick Reference Guide

Quick Reference Guide Quick Reference Guide Microsoft Surface Hub Learn how to unlock the power of the group by using Microsoft Surface Hub Table of contents Start your session Make a call Add people to a call in progress Use

More information

EyeFaceGUI v User Guide

EyeFaceGUI v User Guide EyeFaceGUI v3.12.0.1 User Guide Copyright 2016, Eyedea Recognition s.r.o. All rights reserved Eyedea Recognition s.r.o. is not responsible for any damages or losses caused by incorrect or inaccurate results

More information

Table of Contents. Introduction. 1 Installing Creative WebCam Notebook. 2 Using PC-CAM Center. 3 Creative WebCam Notebook Applications

Table of Contents. Introduction. 1 Installing Creative WebCam Notebook. 2 Using PC-CAM Center. 3 Creative WebCam Notebook Applications User s Guide Creative WebCam Notebook Information in this document is subject to change without notice and does not represent a commitment on the part of Creative Technology Ltd. No part of this manual

More information

Startup Guide C01

Startup Guide C01 Startup Guide 4012988-00 C01 Startup Guide English Where to Find Information........................ 2 Safety Instructions.............................. 4 Important Safety Instructions...........................

More information

Input Nodes. Surface Input. Surface Input Nodal Motion Nodal Displacement Instance Generator Light Flocking

Input Nodes. Surface Input. Surface Input Nodal Motion Nodal Displacement Instance Generator Light Flocking Input Nodes Surface Input Nodal Motion Nodal Displacement Instance Generator Light Flocking The different Input nodes, where they can be found, what their outputs are. Surface Input When editing a surface,

More information

Race Keeper Dual Stream + HD Export User Guide v1.1 September 2010

Race Keeper Dual Stream + HD Export User Guide v1.1 September 2010 Race Keeper Dual Stream + HD Export User Guide v1.1 September 2010 Trivinci delivers user guides exclusively in soft format Trivinci Systems, LLC Race Keeper Dual Stream and HD Export User Guide v1.1,

More information

Hand-on introduction to 3D Digitisation Stephen Gray & Kirsty Merrett UoB Research Data Service

Hand-on introduction to 3D Digitisation Stephen Gray & Kirsty Merrett UoB Research Data Service Hand-on introduction to 3D Digitisation Stephen Gray & Kirsty Merrett UoB Research Data Service Plan Some basic information Laser scanning practical (in this room) Structured light scanning practical (in

More information

U9 Talk DDNS Server Instruction. -- Cloud Intercom

U9 Talk DDNS Server Instruction. -- Cloud Intercom U9 Talk DDNS Server Instruction -- Cloud Intercom Install Software 1. Install the software U9TalkServer DDNS V1.33 Download link http://url.cn/2ith7og 2. Double click the shortcut of the software to run

More information

FaceCam 321 Table of Contents

FaceCam 321 Table of Contents FaceCam 321 Table of Contents FaceCam 321 Features.2 Set up the device 2 I.P.M(Image Protection Mechanism) setting.3 Using Instant Messenger Application.3 Arcsoft Webcam Companion 4.4 How to use WCC4..4-7

More information

Turbo HD DVR V build Release Notes ( )

Turbo HD DVR V build Release Notes ( ) Turbo HD DVR V3.4.87 build 180108 Release Notes (2018-01-16) Firmware Version: V3.4.87 build 180108 SDK Version: V5.3.1.45 build20171011 Firmware Play Library (PlayCtrl.dll) 6.0.0.5 Basic Information player

More information

KGI HK SP Mobile User Manual

KGI HK SP Mobile User Manual KGI HK SP Mobile User Manual Version 1.1 May 2013 Contents 1 Login Process... 3 2 Home Menu... 5 3 Quotes and Orders... 6 3.1 Quote List... 6 3.2 Add product quote (with product code)... 7 3.3 Add product

More information

Photos, Photos. What to do with All Those Photos? Presented by Phil Goff Area 16 Computers and Technology August 17, 2017

Photos, Photos. What to do with All Those Photos? Presented by Phil Goff Area 16 Computers and Technology August 17, 2017 Photos, Photos. What to do with All Those Photos? Presented by Phil Goff Area 16 Computers and Technology August 17, 2017 1 Photos Have a Different Value Today With film cameras, pictures were taken and

More information

Eclipse Readme Version 3.0.0

Eclipse Readme Version 3.0.0 Eclipse Readme Version 3.0.0 GENERAL Version History Eclipse Version 2.0.0.1640 Release Date Oct. 14, 2013 Eclipse Version 2.1.0.1916 Release Date Dec 13, 2013 Eclipse Version 2.5.0 - Release Date Mar

More information

Samsung Galaxy S 2.1 to 2.3 Update Instructions

Samsung Galaxy S 2.1 to 2.3 Update Instructions Samsung Galaxy S 2.1 to 2.3 Update Instructions NOTE: Based on the software version you are upgrading from, the upgrade will perform different procedures and will required multiple mobile device reboots.

More information

Table of Contents. Logos Imaging Application User s Manual Version Page 1

Table of Contents. Logos Imaging Application User s Manual Version Page 1 Table of Contents About... 4 System Requirements... 5 Uninstall Previous Versions... 5 Install LIA 6.0... 6 Install the Device Drivers... 13 Register... 14 Getting Help... 14 Technical Support... 14 Workspace

More information

[FAQ] GV-AView for Android. Why can t I access the live view even if I have followed the setup steps?

[FAQ] GV-AView for Android. Why can t I access the live view even if I have followed the setup steps? [FAQ] GV-AView for Android Article ID: GV2-11-01-c Release Date: 11/01/2013 Applied to GV-AView for Android Q1 Why can t I access the live view even if I have followed the setup steps? 1. Check the Internet

More information

Cloud IP Camera Note:

Cloud IP Camera Note: Version:V2.0 Cloud IP Camera User s Manual Note: To protect your privacy, please change the initial password after login. Please keep your user name and password safely. Contents 1. Introduction... 2 1.1

More information

1 DIVAR 3000/5000 firmware version (date )

1 DIVAR 3000/5000 firmware version (date ) Video Recorder DIVAR 3000 and 5000 family 1 DIVAR 3000/5000 firmware version 1.3.0 (date 2014-03-28) File name: DVR.V1.3.0.R.20140325.bin If use in combination with BVC, this firmware (v1.3.0) requires

More information

Panowin F1. User Manual

Panowin F1. User Manual Panowin F1 User Manual 1 PANOWIN TECHNOLOGIES CO.,LTD. WARNING power outlet. CAUTION: In case of emergency unplug the Panowin F1 from the WARNING: Carefully monitor the Panowin F1 during operation. Do

More information