THE KHOROS SOFTWARE DEVELOPMENT ENVIRONMENT FOR IMAGE AND SIGNAL PROCESSING. Konstantinos Konstantinides and John R.
|
|
|
- Lorraine Farmer
- 10 years ago
- Views:
Transcription
1 THE KHOROS SOFTWARE DEVELOPMENT ENVIRONMENT FOR IMAGE AND SIGNAL PROCESSING Konstantinos Konstantinides and John R. Rasure ABSTRACT Data flow visual language systems allow users to graphically create a block diagram of their applications and interactively control input, output, and system variables. Khoros is an integrated software development environment for information processing and visualization. It is particularly attractive for image processing because of its rich collection of tools for image and digital signal processing. This paper presents a general overview of Khoros with emphasis on its image processing and DSP tools. Various examples are presented and the future direction of Khoros is discussed. Internal Accession Date Only K. Konstantinides is with Hewlett-Packard Laboratories, J. Rasure is with the Dept. of Electrical Engr., Univ. of New Mexico Albuquerque.
2 1. Introduction The repetition of a simulation process with different parameters until a satisfactory solution is found, known as iterative processing, is a key element of the scientific process. For example, in image processing of noisy satellite data, one may iterate through the use of various image filtering kernels before the received images can be considered noise-free and can be processed with other imaging techniques, such as image enhancement or pattern recognition SIMULATE MAP (TRANSFORM) RENDER INTERPRET TERMINAL MODE GRAPHICS MODE a) SIMULATE MAP (TRANSFORM) RENDER INTERPRET GRAPHICS MODE b) Fig. 1: Iterative scientific processing. a) Traditional approach, b) Using an application builder. algorithms. Fig. 1a shows a block diagram of a traditional iterative scientific processing. It consists of four main steps: (a) computer simulation, which may also include data input and data processing, (b) mapping, where the simulation data are transformed into a displayable form, (for example, data may be mapped to a color palette) (c) rendering, where the data are plotted or displayed on a computer screen, and (d) interpretation. In a traditional setting, simulation and mapping are executed in "batch" mode on a main-frame or super-computer using a terminal interface and only the rendering step is performed interactively on a graphics terminal or workstation. Data renderers, such as Plot3D [1], and the Personal Visualizer [2] provide great flexibility in viewing data, but have no control on the simulation and mapping process. 2
3 Advances in workstations, graphics, and visual languages now allow for the complete scientific cycle to be executed interactively in "graphics" mode (Fig. 1b). The user can visually program and control both the data viewing parameters and the system variables. Such visual programming environments are usually called Application Builders. In general, an application builder is a visual environment that allows a user to: (a) create a block diagram of his application by graphically connecting system "blocks," (b) graphically control input, output and simulation variables, and (c) visualize the data. Examples of application builders include ape [3] [4] and AVS [5] for the processing of volumetric data (for example, data generated from simulations in fluid dynamics), HP VEE for instrument control and data processing [6], and Gabriel [7] for data communication and signal processing. In this paper we present a general overview of Khoros, a visual environment developed at the University of New Mexico, with special emphasis on its tools for image and signal processing. Khoros was originally developed for research in image processing, but now it is being used as a research and development tool in a variety of scientific applications, including geographical imaging systems (GIS), medical imaging, and distributed processing. Because of its rich collection of signal and image processing routines, Khoros is particularly attractive as a prototyping tool in research in image processing. Section two presents an overview of Khoros and its tools for image processing and analysis. The Khoros tools for digital signal processing are discussed in section three. Other tools in the Khoros environment are presented in section four. We conclude with a short discussion on the future features of Khoros and a summary. 2. Khoros Overview Khoros is an integrated software development environment for information processing and visualization. Khoros has been under development at the Department of Electrical and Computer Engineering at the University of New Mexico since It includes a visual programming language (cantata) [8], code generators for extending the visual language and adding new application packages to the system, an interactive user interface editor, interactive image display programs, surface visualization, an extensive library (over 260 routines) of image processing, numerical analysis, and signal processing routines, and 2D/3D plotting packages. Besides its use in research in image processing, pattern recognition, GIS, and other related fields, Khoros may also be a valuable tool for teaching image and signal processing. 2.1 Cantata Fig. 2 shows a snapshot of cantata, the visual programming environment for the Khoros system. Cantata is a general purpose programming language based on the data flow paradigm. It includes support for conditionals, iteration, and subprocedures. Fig. 2 shows a block diagram of a simple image processing application and output results at various stages of execution. Each element of the block diagram is called a glyph. Glyphs are placed on the cantata 3
4 Fig. 2: Block diagram of an image processing application in Khoros. canvas by selecting the appropriate routines either from the top menus (INPUT SOURCES, 4
5 OUTPUT, IMAGE PROCESSING, etc.), or from a list of all available routines from the ROUTINES menu at the left of the canvas. Glyphs are connected together by clicking at the appropriate input/output glyph arrows. In this example on edge detection, input (from MRI_input) is a multiband MRI image, where each band represents a slice of the MRI scan of a human head. Glyph vbandspt1 selects one of the MRI slices. That image is subsampled using the vshrink routine and is displayed with the put_update glyph. (Subsampling is not necessary in edge-detection, but it is done here so that all output images can fit nicely on the screen.) After differentiation (vdiff) and thresholding (vthresh), the edges of the input slice are displayed again using put_update. Glyph vmskel computes the skeleton of its input so that a refined set of edges can be obtained. The FFT glyph computes the logarithm of the norm of the 2-D FFT of the subsampled scanned image. The original multi-band image is also input to the animate glyph. The animate routine can be used to either browse through the various bands of the input image or to animate them. Glyphs communicate via temporary files or shared memory, depending on the system architecture and the user s preference. The entire workspace, the data flow, and intermediate results can be saved and restored for later use. From Fig. 2, on top of each glyph there are three iconic buttons. A click on the bomb icon removes the glyph from the cantata canvas. A click on the on-off switch, turns on/off that application, and a click on the middle (text) icon opens a window that displays information and control options for that glyph. The tree-like icon, in the middle of a glyph, appears only if distributed processing is enabled. A click on that icon allows the user to specify the machine that will execute that glyph. For example, in Fig. 2, module FFT will be executed on host hpkronos.hpl.hp.com. The rest of the glyphs will be executed on the local host. 2.2 Glyph Control A major difference and advantage of Khoros from other application builders such as ape and AVS is that a single workspace is used for both data flow and module control. This feature is particularly attractive in cases were many similar modules are used. When a separate workspace is used for control, it is often difficult to remember the correspondence among control and execution modules. In Khoros, the control panel (or graphical user interface (GUI)) for each glyph is enabled by clicking on the middle "text" icon. For example, Fig. 3 shows the control panels of the threshold glyph vthresh. The threshold routine is part of the segmentation set of image processing routines. A list of all available routines in this set is shown in Fig. 3. For the threshold operation, one can control the lower and upper threshold levels (set here at 128 and 255 respectively), and can define the value of the non-zero Pixel level. On-line help is provided via the "HELP" buttons. 5
6 2.3 Data Types Fig. 3: Graphical user interface for the threshold glyph. 6
7 Khoros uses a unified data format for all its modules [9] (Vol. II, Chapter 1). A single format facilitates data interchange among the Khoros routines and the development of new modules. The Khoros format (VIFF) includes information for an application to properly interpret the data and perform basic error checking. The VIFF data structure is used for both 1-D and 2-D data processing and the visualization of 3-D data. It has a 1024 byte header, followed by (optional) map and location data, and the image data. The header provides information on data storage and interpretation, data location (implicit or explicit), and the color space. The VIFF header is extensible for future applications such as multi-dimensional data processing and 3-D data rendering. Because of the wide range of existing image data formats (i.e, GIF, TIFF, raster, PBM, etc.) Khoros includes many data conversion routines for easier processing of existing data. 2.4 Program Hierarchy Cantata allows an hierarchy of workspaces so that the visual complexity of large data flow graphs can be reduced. Multiple glyphs can be combined into another cantata workspace. Then that workspace can be used as a regular cantata glyph. Fig. 4 shows the structure of the MRI_input glyph used in Fig. 2. It consists of two input modules and the count_loop and vbandcomb modules. The purpose of this sub-procedure is to combine a set of MRI scanned images into a single "multiband" image, where each band represents an MRI slice. This This figure is not currently available! Fig. 4: Block diagram of the MRI_input subprocedure. example also shows the use of global variables and loop control within cantata. Module vbandcomb combines two (or more) input images into a single image. The output image has as many image bands as the sum of bands in its inputs. Denote by head.i.img (i=0, 1, 2,..., N), the i-th slice of the MRI scan. The flow diagram in Fig. 4 evaluates the following loop: vbandcomb -i1 head.0.img -i2 head.1.img -o head.out.img for i=2 to N do vbandcomb -i1 head.i.img -i2 head.out.img -o head.out.img done In Fig. 4, one of the input glyphs (the input to count_loop) points to head.0.img and the other to head.i.img. The final output is available either from the output of vbandcomb or from the top right output of count_loop. 2.5 Execution Scheduling A visual language process is analogous to an operating system process. It is a running visual program with a state and data. The functionality and the execution of the operators, and the characteristics of the data that an operator works on vary dramatically from one visual language system to the next. The differences can be attributed to the fact that each system is trying to optimize the visual language process for a specific application domain or computing architecture. 7
8 In cantata, there are three separate phases of the process that are re-evaluated continuously: translation, scheduling, and dispatching. The translation step is an interpretation of the visible network of connections and glyphs into a recursive netlist. The netlist contains such information as whether a glyph is a source or a sink, whether valid data is available at the input of a glyph, and whether the parameters have been modified. The netlist information is used as input into the scheduler. The scheduler can be run in a data driven or demand driven (responsive) mode. In either case, glyphs are scheduled if either their parameters have been modified or data at their inputs is invalid. All glyphs that are scheduled are then dispatched as local or remote Unix Processes. The dispatcher uses input from the visual language to determine both the location of execution and the method of data transport (file, socket, shared memory). 2.6 Tools for Image Processing Khoros provides library routines or executables for a large range of image processing applications, including basic pixel-arithmetic, low-level image processing, and image analysis. Routines are available either as "stand-alone" programs that can be used from a terminal or in cantata, or as library calls that can be linked by the user during the development of new code. Table 1 shows a partial list of the routines available now for image processing. These routines are divided into three main classes: Arithmetic, Image Processing, and Image Analysis. The Arithmetic class includes all the pixel-level arithmetic and logical operations. The core of image processing routines (filtering, geometric manipulation, and transforms) is in the Image Processing class. Finally, the Image Analysis class includes various routines in segmentation, feature extraction and classification. 3. Tools for Digital Signal Processing Although Khoros was originally developed as an image processing environment, it has a rich selection of tools for digital signal processing. Hence, it can also be used as a powerful prototyping tool for DSP applications. Fig. 5 shows a cantata environment with a simple filtering application. A sinusoid signal (generated in dgsin ) and white Gaussian noise (generated in dggauss) are added together in vadd. The noisy signal is passed through a low pass filter (dfilter) designed in dfiltlp. Finally, the noisy and filtered signals are displayed in both the time and frequency domains using xprism2. The frequency response of the signals are evaluated in the composite FFt-norm modules. Each FFT-norm module consists of the dfft1d glyph, which computes a 1-D complex FFT, followed by the dmpp glyph which evaluates the logarithm of the norm of its input data. The displayed plots show the outputs of this flow graph for a low-pass Butterworth filter with cutoff frequency at 0.1 Hz and rejection frequency at 0.4 Hz. The left plot shows the noisy Unix is a registered trademark of AT&T. 8
9 Table 1 Khoros Routines for Image Processing ARITHMETIC Unary Arithmetic Binary arithmetic Logical Operations IMAGE PROCESSING Spatial Filters Morphology Transforms Frequency Filters Geometric Manipulation Subregion IMAGE ANALYSIS Segmentation Feature Extraction Classification Scale, Normalize, Invert, Clip, etc. Add, Subtract, Multiply, Blend, etc. And, Or, Xor, Shift. Sobel, Median, 2-D convolution, Edge Extraction, etc. Erosion, Dilation, Skeletonization, etc. FFT, Hadamard. LPF, BPF, HPF, Band-Reject, Inverse, Wiener Restoration, etc. Shrink, Rotate, Transpose, Interactive image warping, etc. Extract, Insert, Pad, etc. Threshold, Medial Axis Transf., etc. Shape analysis, Region Matching, Fractal Analysis, Texture Extraction, etc. K-means, Labeling, LRF-classifier, etc. (dotted line) and filtered data (solid line) in the time domain, and the right plot shows the corresponding data in the frequency domain. The Z-transform of the low-pass filter is computed by the filter-design glyph dfiltlp. In designing the filter, the user needs to provide the type of the filter (Butterworth, Chebychev I or II ), the sampling frequency, the cutoff and rejection frequencies, and the passband and stopband gains. Similar glyphs also exist for band-pass and high-pass filters. Table 2 shows a partial list of the available Khoros routines for DSP. The list includes data input generation routines, transforms, filter design tools, DSP operations, and matrix operations. 3.1 Interaction The major advantage of application builders is the ability to easily view data and interact at different stages of the data flow graph, and the ability to selectively add, delete, and control modules. Thus, one can experiment with any part of the iterative process. For example, in the flow graph of Fig. 5 one can change the filter design type (in dfiltlp) from Butterworth to Chebychev with a click of the mouse, and then see the updated plots. Designs could even be compared side by side. Similarly, one could change the input signal or noise parameters and 9
10 Fig. 5: Block diagram of a DSP application in Khoros. evaluate the performance of a specific filter design. 10
11 Table 2 Khoros Routines for DSP INPUT MODIFY SEQUENCE TRANSFORMS FILTERS DSP OPERATIONS MATRIX OPERATIONS Sinusoid, Pulse, Noise (Gaussian, Rayleigh) Normalize, Subsample, Scale, Window, Extract, Insert, etc. FFT/IFFT, Hartley, Hadamard. LMS Transversal, LMS Lattice, Butterworth, Chebychev I or II, etc. Autocorrelation, Cross-Correlation, Spectral Estimation, etc. SVD, LU Eigenvalues/Eigenvectors, etc. 4. Companion Utilities In addition to the programs for image and digital signal processing, Khoros provides many other interactive tools. Editimage is an interactive image editor, and can be used to extract information on an image, edit it, change its colormap, or annotate it with text and graphics. With Viewimage one can combine imagery data with elevation data to create a 3-D image of a terrain. This module is particularly useful in GIS applications. In many applications, such as the evaluation of medical images by doctors located at different sites, it is important that the users of a visualization system can share and interact on the same data simultaneously. Khoros allows that capability through Concert. All Khoros interactive applications inherit the ability to broadcast and receive user events. Concert is the program that coordinates multiple copies of the Khoros application. For example, the command concert -command editimage -d2 remote_machine.company:0 will start two copies of editimage, one locally and one remote. However, both the local and the remote users will have equal control of each others screens. Using concert, the X events that correspond to a user event, such as a button click or the motion of a scroll bar, are broadcast to all the other copies of the application that concert started. The result is that the local copy of the application can receive events from both the local and the remote user. The same X event broadcasting technique can be used to create journal files of a user session. Instead of broadcasting to another application, the events are sent to a file. This file can then be used as the source of user events for an automatic playback of the recorded session. As mentioned before, Khoros is not just a visual programming and data visualization environment, but a complete development system. Regardless of the number of available 11
12 modules in any visualization system, users always want to incorporate their own versions of existing modules or new ones. Khoros provides support for both the generation of code and the user interface for new modules. Composer is an interactive editor of User Interface Specification (UIS). It allows the user to interactively customize the user interface of an application [10]. Finally, Ghostwriter is a program development toolkit that allows the user to integrate the user interface created by Composer, new code and documentation, and code from the Khoros libraries, into a new module and into the Khoros environment. 5. Future Directions of Khoros There is much excitement about the capabilities of Visual Development Environments both for PC s and Workstations [11], [12]. Howev er, the popular view of visual development is really only a small and incomplete component of the overall software development process. One main focus of the Khoros project is to merge two currently separate visual programming paradigms: the direct manipulation of the graphical user interface development and the data flow visual programming (cantata). This merger will create a more complete visual programming environment and in some cases will allow an end-user to write complete programs without using any textual (i.e. C) code. This visual programming environment will be augmented by visual CASE tools for program maintenance and installation and will be integrated into existing software development products such as those offered by CenterLine and Hewlett-Packard. Another emphasis of Khoros is distributed computing. The applications that are built using Khoros tools should run as a network application, utilizing resources as appropriate. The concert program and the distributed computing capability in cantata are examples of this. In general, the intention is to broaden the applicability of Khoros as a software environment for data processing and visualization. 6. Summary and Conclusions This paper presented a general overview of Khoros, with emphasis on its tools for image and DSP processing. Khoros is a very powerful prototyping tool for a variety of applications. It is being provided free to the public, as an Open System, via anonymous ftp, and it is being supported on a large array of hardware platforms, from workstations to super-computers. Its tools allow visual data-flow programming, data visualization, and the easy integration of new modules. The current version (1.5) lacks the 3-D rendering capabilities of other application builders (i.e. ape, AVS), but compensates with its excellent support for a large number of image processing functions. Present workstations have excellent graphics capabilities, but they may lack the processing power required for compute-intensive applications. The Khoros capability for distributed processing allows users to interface to a computer network of (probably) heterogenious machines under a single visual environment. 12
13 7. Acknowledgments We would like to acknowledge that Khoros is the outcome of an on going team effort by the Khoros development group at the University of New Mexico. REFERENCES 1. State of the Art in Data Visualization, ACM SIGGRAPH 89 Course notes. 2. The Personal Visualizer User s Guide, Hewlett-Packard, D. S. Dyer, "A dataflow toolkit for visualization," IEEE Comp. Graphics and Applications, Vol. 10, No. 4, pp , July M. V. Wettering, "ape 2.0," Pixel, pp , Nov./Dec. 1990, Pixel Communications, Inc. 5. C. Upson et al., "The Application Visualization System: A Computational Environment for Scientific Visualization," IEEE Computer Graphics and Applications, pp , July HP VEE-Engine and HP VEE-Test Reference, Hewlett-Packard, P.N. E , Apr E. A. Lee, W-H. Ho, E. E. Goei, J. C. Bier, and S. Bhattacharyya, "Gabriel: A design environment for DSP," IEEE Trans. on ASSP, Vol. 37, No. 11, pp , Nov J. Rasure and C. Williams, "An integrated data flow visual language and software environment," Journal of Visual Languages and Computing, Vol. 2, No. 3, Sept. 91, Academic Press. 9. Khoros Programmer s Manual, Univ. of New Mexico, D. Argiro and J. Rasure, "An X windows based application programming system," Xhibition 92: A window on distributed computing, San Jose, Charles Petzold, "The Visual Development Environment: More than a pretty face?", PC Magazine, pp , June 16, Steven Mikes, "Visual Programming Tools for X," X Journal, Vol. 1, No. 5, pp ,
14 14
Data Mining. SPSS Clementine 12.0. 1. Clementine Overview. Spring 2010 Instructor: Dr. Masoud Yaghini. Clementine
Data Mining SPSS 12.0 1. Overview Spring 2010 Instructor: Dr. Masoud Yaghini Introduction Types of Models Interface Projects References Outline Introduction Introduction Three of the common data mining
Lab 3: Introduction to Data Acquisition Cards
Lab 3: Introduction to Data Acquisition Cards INTRODUCTION: In this lab, you will be building a VI to display the input measured on a channel. However, within your own VI you will use LabVIEW supplied
Processing Ramac GPR Data with Reflex - 5/3/2010; Steve Sheriff
Processing Ramac GPR Data with Reflex - 5/3/2010; Steve Sheriff Initial Filtering and 2D analysis 1. Make the file names of your Mala GPR data numerically sequential (100, 101,, 135). 2. Start Reflex,
In: Proceedings of RECPAD 2002-12th Portuguese Conference on Pattern Recognition June 27th- 28th, 2002 Aveiro, Portugal
Paper Title: Generic Framework for Video Analysis Authors: Luís Filipe Tavares INESC Porto [email protected] Luís Teixeira INESC Porto, Universidade Católica Portuguesa [email protected] Luís Corte-Real
LabVIEW Day 1 Basics. Vern Lindberg. 1 The Look of LabVIEW
LabVIEW Day 1 Basics Vern Lindberg LabVIEW first shipped in 1986, with very basic objects in place. As it has grown (currently to Version 10.0) higher level objects such as Express VIs have entered, additional
Lecture Notes, CEng 477
Computer Graphics Hardware and Software Lecture Notes, CEng 477 What is Computer Graphics? Different things in different contexts: pictures, scenes that are generated by a computer. tools used to make
DIGITAL IMAGE PROCESSING AND ANALYSIS
DIGITAL IMAGE PROCESSING AND ANALYSIS Human and Computer Vision Applications with CVIPtools SECOND EDITION SCOTT E UMBAUGH Uffi\ CRC Press Taylor &. Francis Group Boca Raton London New York CRC Press is
Facts about Visualization Pipelines, applicable to VisIt and ParaView
Facts about Visualization Pipelines, applicable to VisIt and ParaView March 2013 Jean M. Favre, CSCS Agenda Visualization pipelines Motivation by examples VTK Data Streaming Visualization Pipelines: Introduction
AMS Suite: Machinery Health Manager v5.4
S-NSF033010 October 2010 AMS Suite: Machinery Health Manager v5.4 The AMS Machinery Manager v5.4 release is the result of user input collected during plant visits and documented by our customer support
CATIA Basic Concepts TABLE OF CONTENTS
TABLE OF CONTENTS Introduction...1 Manual Format...2 Log on/off procedures for Windows...3 To log on...3 To logoff...7 Assembly Design Screen...8 Part Design Screen...9 Pull-down Menus...10 Start...10
Time Domain and Frequency Domain Techniques For Multi Shaker Time Waveform Replication
Time Domain and Frequency Domain Techniques For Multi Shaker Time Waveform Replication Thomas Reilly Data Physics Corporation 1741 Technology Drive, Suite 260 San Jose, CA 95110 (408) 216-8440 This paper
Creo Simulate 1.0 April 2011
Creo Simulate 1.0 April 2011 Creo Simulate a Creo family app Installed / Un-installed separately Creo Simulate in two modes: Embedded mode module of Creo Parametric Standalone mode In Standalone mode:
Visualization of 2D Domains
Visualization of 2D Domains This part of the visualization package is intended to supply a simple graphical interface for 2- dimensional finite element data structures. Furthermore, it is used as the low
Using Flow Control with the HEAD Recorder
03/15 Using with the HEAD Recorder The HEAD Recorder is a data acquisition software program that features an editable Flow Control function. This function allows complex program sequences to be predefined,
Technical What s New. Autodesk Alias Product Line
Autodesk Alias Product Line Purpose-built for industrial designers and creative professionals, digital modelers/sculptors, and automotive/transportation designers, the Autodesk Alias 2010 product line
Introduction to Computer Graphics
Introduction to Computer Graphics Torsten Möller TASC 8021 778-782-2215 [email protected] www.cs.sfu.ca/~torsten Today What is computer graphics? Contents of this course Syllabus Overview of course topics
Integrated Open-Source Geophysical Processing and Visualization
Integrated Open-Source Geophysical Processing and Visualization Glenn Chubak* University of Saskatchewan, Saskatoon, Saskatchewan, Canada [email protected] and Igor Morozov University of Saskatchewan,
A DESIGN OF DSPIC BASED SIGNAL MONITORING AND PROCESSING SYSTEM
ISTANBUL UNIVERSITY JOURNAL OF ELECTRICAL & ELECTRONICS ENGINEERING YEAR VOLUME NUMBER : 2009 : 9 : 1 (921-927) A DESIGN OF DSPIC BASED SIGNAL MONITORING AND PROCESSING SYSTEM Salih ARSLAN 1 Koray KÖSE
Visualization with OpenDX
Alexey I. Baranov Visualization with OpenDX User s Guide Springer Contents 1 Visualization with OpenDX..................................... 1 1.1 OpenDX module installation.................................
IBM Business Process Manager Version 8 Release 5. Hiring Tutorial IBM
IBM Business Process Manager Version 8 Release 5 Hiring Tutorial IBM Note Before using this information and the product it supports, read the information in Notices on page 95. This edition applies to
Visualization with ParaView
Visualization with ParaView Before we begin Make sure you have ParaView 4.1.0 installed so you can follow along in the lab section http://paraview.org/paraview/resources/software.php Background http://www.paraview.org/
WINDAQ Data Acquisition and Playback Software
WINDAQ Data Acquisition and Playback Software Supports All DI-Series Data Acquisition Hardware Disk Streaming and Real Time Display At the Hardware Rate Check Hardware Page For Supported Sampling Rates
Software version 1.1 Document version 1.0
Software version 1.1 Document version 1.0 1 RDNET PROTOCOL OVERVIEW... 2 1.1 Network description... 2 1.2 Connection topology... 2 2 SOFTWARE BASIC OPERATIONS... 3 2.1 Main View elements... 3 2.2 Scanning
Colorado School of Mines Computer Vision Professor William Hoff
Professor William Hoff Dept of Electrical Engineering &Computer Science http://inside.mines.edu/~whoff/ 1 Introduction to 2 What is? A process that produces from images of the external world a description
WESTMORELAND COUNTY PUBLIC SCHOOLS 2011 2012 Integrated Instructional Pacing Guide and Checklist Computer Math
Textbook Correlation WESTMORELAND COUNTY PUBLIC SCHOOLS 2011 2012 Integrated Instructional Pacing Guide and Checklist Computer Math Following Directions Unit FIRST QUARTER AND SECOND QUARTER Logic Unit
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
Maple Quick Start. Introduction. Talking to Maple. Using [ENTER] 3 (2.1)
Introduction Maple Quick Start In this introductory course, you will become familiar with and comfortable in the Maple environment. You will learn how to use context menus, task assistants, and palettes
This tutorial assumes that Visual3D has been installed and that a model has been created as described in Tutorial #1.
C-Motion Online Documentation Visual3D : Tutorial : Data Visualization Objectives (# 1318) This tutorial assumes that Visual3D has been installed and that a model has been created as described in Tutorial
Morphological segmentation of histology cell images
Morphological segmentation of histology cell images A.Nedzved, S.Ablameyko, I.Pitas Institute of Engineering Cybernetics of the National Academy of Sciences Surganova, 6, 00 Minsk, Belarus E-mail [email protected]
Building a Simulink model for real-time analysis V1.15.00. Copyright g.tec medical engineering GmbH
g.tec medical engineering GmbH Sierningstrasse 14, A-4521 Schiedlberg Austria - Europe Tel.: (43)-7251-22240-0 Fax: (43)-7251-22240-39 [email protected], http://www.gtec.at Building a Simulink model for real-time
EET 310 Programming Tools
Introduction EET 310 Programming Tools LabVIEW Part 1 (LabVIEW Environment) LabVIEW (short for Laboratory Virtual Instrumentation Engineering Workbench) is a graphical programming environment from National
Final Year Project Progress Report. Frequency-Domain Adaptive Filtering. Myles Friel. Supervisor: Dr.Edward Jones
Final Year Project Progress Report Frequency-Domain Adaptive Filtering Myles Friel 01510401 Supervisor: Dr.Edward Jones Abstract The Final Year Project is an important part of the final year of the Electronic
Computing Concepts with Java Essentials
2008 AGI-Information Management Consultants May be used for personal purporses only or by libraries associated to dandelon.com network. Computing Concepts with Java Essentials 3rd Edition Cay Horstmann
MetaMorph Software Basic Analysis Guide The use of measurements and journals
MetaMorph Software Basic Analysis Guide The use of measurements and journals Version 1.0.2 1 Section I: How Measure Functions Operate... 3 1. Selected images... 3 2. Thresholding... 3 3. Regions of interest...
WebSphere Business Monitor V6.2 Business space dashboards
Copyright IBM Corporation 2009 All rights reserved IBM WEBSPHERE BUSINESS MONITOR 6.2 LAB EXERCISE WebSphere Business Monitor V6.2 What this exercise is about... 2 Lab requirements... 2 What you should
Enhanced LIC Pencil Filter
Enhanced LIC Pencil Filter Shigefumi Yamamoto, Xiaoyang Mao, Kenji Tanii, Atsumi Imamiya University of Yamanashi {[email protected], [email protected], [email protected]}
Digital image processing
746A27 Remote Sensing and GIS Lecture 4 Digital image processing Chandan Roy Guest Lecturer Department of Computer and Information Science Linköping University Digital Image Processing Most of the common
Propagation Channel Emulator ECP_V3
Navigation simulators Propagation Channel Emulator ECP_V3 1 Product Description The ECP (Propagation Channel Emulator V3) synthesizes the principal phenomena of propagation occurring on RF signal links
Visualization Plugin for ParaView
Alexey I. Baranov Visualization Plugin for ParaView version 1.3 Springer Contents 1 Visualization with ParaView..................................... 1 1.1 ParaView plugin installation.................................
SPREADSHEET EDUCATION MATERIAL USING REMOTE SENSING IMAGE AND MAP IMAGE
SPREADSHEET EDUCATION MATERIAL USING REMOTE SENSING IMAGE AND MAP IMAGE Kiyotada Sato a, *, Ryuzo Yokoyama b a Ichinoseki National College of Technology Mechanical Engineering, Hagisho Ichinoseki City,
Intellect Platform - The Workflow Engine Basic HelpDesk Troubleticket System - A102
Intellect Platform - The Workflow Engine Basic HelpDesk Troubleticket System - A102 Interneer, Inc. Updated on 2/22/2012 Created by Erika Keresztyen Fahey 2 Workflow - A102 - Basic HelpDesk Ticketing System
Medical Image Processing on the GPU. Past, Present and Future. Anders Eklund, PhD Virginia Tech Carilion Research Institute [email protected].
Medical Image Processing on the GPU Past, Present and Future Anders Eklund, PhD Virginia Tech Carilion Research Institute [email protected] Outline Motivation why do we need GPUs? Past - how was GPU programming
DataPA OpenAnalytics End User Training
DataPA OpenAnalytics End User Training DataPA End User Training Lesson 1 Course Overview DataPA Chapter 1 Course Overview Introduction This course covers the skills required to use DataPA OpenAnalytics
Analecta Vol. 8, No. 2 ISSN 2064-7964
EXPERIMENTAL APPLICATIONS OF ARTIFICIAL NEURAL NETWORKS IN ENGINEERING PROCESSING SYSTEM S. Dadvandipour Institute of Information Engineering, University of Miskolc, Egyetemváros, 3515, Miskolc, Hungary,
Extracting, Storing And Viewing The Data From Dicom Files
Extracting, Storing And Viewing The Data From Dicom Files L. Stanescu, D.D Burdescu, A. Ion, A. Caldare, E. Georgescu University of Kraiova, Romania Faculty of Control Computers and Electronics www.software.ucv.ro/en.
IBM Business Process Manager Version 8 Release 5. Hiring Tutorial
IBM Business Process Manager Version 8 Release 5 Hiring Tutorial Note Before using this information and the product it supports, read the information in Notices. This edition applies to version 8.5 of
Structural Health Monitoring Tools (SHMTools)
Structural Health Monitoring Tools (SHMTools) Getting Started LANL/UCSD Engineering Institute LA-CC-14-046 c Copyright 2014, Los Alamos National Security, LLC All rights reserved. May 30, 2014 Contents
WinCC. Configuration Manual. Manual Volume 2
WinCC Configuration Manual Manual Volume 2 This manual is part of the documentation package with the order number: 6AV6392-1CA05-0AB0 Release: September 1999 WinCC, SIMATIC, SINEC, STEP are trademarks
SPSS: Getting Started. For Windows
For Windows Updated: August 2012 Table of Contents Section 1: Overview... 3 1.1 Introduction to SPSS Tutorials... 3 1.2 Introduction to SPSS... 3 1.3 Overview of SPSS for Windows... 3 Section 2: Entering
ADVANCED APPLICATIONS OF ELECTRICAL ENGINEERING
Development of a Software Tool for Performance Evaluation of MIMO OFDM Alamouti using a didactical Approach as a Educational and Research support in Wireless Communications JOSE CORDOVA, REBECA ESTRADA
Thomas Jefferson High School for Science and Technology Program of Studies Foundations of Computer Science. Unit of Study / Textbook Correlation
Thomas Jefferson High School for Science and Technology Program of Studies Foundations of Computer Science updated 03/08/2012 Unit 1: JKarel 8 weeks http://www.fcps.edu/is/pos/documents/hs/compsci.htm
Formulas, Functions and Charts
Formulas, Functions and Charts :: 167 8 Formulas, Functions and Charts 8.1 INTRODUCTION In this leson you can enter formula and functions and perform mathematical calcualtions. You will also be able to
EasyC. Programming Tips
EasyC Programming Tips PART 1: EASYC PROGRAMMING ENVIRONMENT The EasyC package is an integrated development environment for creating C Programs and loading them to run on the Vex Control System. Its Opening
Ovation Operator Workstation for Microsoft Windows Operating System Data Sheet
Ovation Operator Workstation for Microsoft Windows Operating System Features Delivers full multi-tasking operation Accesses up to 200,000 dynamic points Secure standard operating desktop environment Intuitive
Lectures 6&7: Image Enhancement
Lectures 6&7: Image Enhancement Leena Ikonen Pattern Recognition (MVPR) Lappeenranta University of Technology (LUT) [email protected] http://www.it.lut.fi/ip/research/mvpr/ 1 Content Background Spatial
Introduction to ROOT and data analysis
Introduction to ROOT and data analysis What is ROOT? Widely used in the online/offline data analyses in particle and nuclear physics Developed for the LHC experiments in CERN (root.cern.ch) Based on Object
Guide to SAS/AF Applications Development
Guide to SAS/AF Applications Development SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2012. Guide to SAS/AF Applications Development. Cary, NC:
CURRICULUM VITAE EDUCATION:
CURRICULUM VITAE Jose Antonio Lozano Computer Science and Software Development / Game and Simulation Programming Program Chair 1902 N. Loop 499 Harlingen, TX 78550 Computer Sciences Building Office Phone:
Department of Electrical and Computer Engineering Ben-Gurion University of the Negev. LAB 1 - Introduction to USRP
Department of Electrical and Computer Engineering Ben-Gurion University of the Negev LAB 1 - Introduction to USRP - 1-1 Introduction In this lab you will use software reconfigurable RF hardware from National
Adaptive Enterprise Solutions
Reporting User Guide Adaptive Enterprise Solutions 8401 Colesville Road Suite 450 Silver Spring, MD 20910 800.237.9785 Toll Free 301.589.3434 Voice 301.589.9254 Fax www.adsystech.com Version 5 THIS USER
a powerful graphical developing tool for prototyping image processing tasks
a powerful graphical developing tool for prototyping image processing tasks PD Dr.-Ing. habil. Karl-Heinz Franke / Rico Nestler Ilmenau Technical University Faculty of Computer Science and Automation Computer
S m a r t M a s t e B T E C O R P O R A T I O N USER MANUAL
S m a r t M a s t e rtm 2014 B T E C O R P O R A T I O N USER MANUAL S m a r t M a s t e r T M 2 0 1 4 U s e r M a n u a l P a g e 1 o f 2 3 Contents Contents...1 Introduction...2 Audience...2 SmartMaster
COMPARISON OF OBJECT BASED AND PIXEL BASED CLASSIFICATION OF HIGH RESOLUTION SATELLITE IMAGES USING ARTIFICIAL NEURAL NETWORKS
COMPARISON OF OBJECT BASED AND PIXEL BASED CLASSIFICATION OF HIGH RESOLUTION SATELLITE IMAGES USING ARTIFICIAL NEURAL NETWORKS B.K. Mohan and S. N. Ladha Centre for Studies in Resources Engineering IIT
Centralized Monitoring Management Platform Manual
Centralized Monitoring Management Platform Manual 1 Contents 1 Products...3 1.1. Summary...3 1.2. Network topology...4 1.3. Application Environment...4 1.4. Related technology...4 2. System Architecture...5
ACE: After Effects CC
Adobe Training Services Exam Guide ACE: After Effects CC Adobe Training Services provides this exam guide to help prepare partners, customers, and consultants who are actively seeking accreditation as
How To Program With Adaptive Vision Studio
Studio 4 intuitive powerful adaptable software for machine vision engineers Introduction Adaptive Vision Studio Adaptive Vision Studio software is the most powerful graphical environment for machine vision
Advanced Presentation Features and Animation
There are three features that you should remember as you work within PowerPoint 2007: the Microsoft Office Button, the Quick Access Toolbar, and the Ribbon. The function of these features will be more
WebSphere Business Monitor
WebSphere Business Monitor Dashboards 2010 IBM Corporation This presentation should provide an overview of the dashboard widgets for use with WebSphere Business Monitor. WBPM_Monitor_Dashboards.ppt Page
Lecture 1-6: Noise and Filters
Lecture 1-6: Noise and Filters Overview 1. Periodic and Aperiodic Signals Review: by periodic signals, we mean signals that have a waveform shape that repeats. The time taken for the waveform to repeat
THE CERN/SL XDATAVIEWER: AN INTERACTIVE GRAPHICAL TOOL FOR DATA VISUALIZATION AND EDITING
THE CERN/SL XDATAVIEWER: AN INTERACTIVE GRAPHICAL TOOL FOR DATA VISUALIZATION AND EDITING Abstract G. Morpurgo, CERN As a result of many years of successive refinements, the CERN/SL Xdataviewer tool has
Software Review: ITSM 2000 Professional Version 6.0.
Lee, J. & Strazicich, M.C. (2002). Software Review: ITSM 2000 Professional Version 6.0. International Journal of Forecasting, 18(3): 455-459 (June 2002). Published by Elsevier (ISSN: 0169-2070). http://0-
How To Fix Out Of Focus And Blur Images With A Dynamic Template Matching Algorithm
IJSTE - International Journal of Science Technology & Engineering Volume 1 Issue 10 April 2015 ISSN (online): 2349-784X Image Estimation Algorithm for Out of Focus and Blur Images to Retrieve the Barcode
DSP Laboratory: Analog to Digital and Digital to Analog Conversion
OpenStax-CNX module: m13035 1 DSP Laboratory: Analog to Digital and Digital to Analog Conversion Erik Luther This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License
OPNET Network Simulator
Simulations and Tools for Telecommunications 521365S: OPNET Network Simulator Jarmo Prokkola Research team leader, M. Sc. (Tech.) VTT Technical Research Centre of Finland Kaitoväylä 1, Oulu P.O. Box 1100,
Desktop, Web and Mobile Testing Tutorials
Desktop, Web and Mobile Testing Tutorials * Windows and the Windows logo are trademarks of the Microsoft group of companies. 2 About the Tutorial With TestComplete, you can test applications of three major
WebSphere Business Monitor V7.0 Business space dashboards
Copyright IBM Corporation 2010 All rights reserved IBM WEBSPHERE BUSINESS MONITOR 7.0 LAB EXERCISE WebSphere Business Monitor V7.0 What this exercise is about... 2 Lab requirements... 2 What you should
How To Run A Factory I/O On A Microsoft Gpu 2.5 (Sdk) On A Computer Or Microsoft Powerbook 2.3 (Powerpoint) On An Android Computer Or Macbook 2 (Powerstation) On
User Guide November 19, 2014 Contents 3 Welcome 3 What Is FACTORY I/O 3 How Does It Work 4 I/O Drivers: Connecting To External Technologies 5 System Requirements 6 Run Mode And Edit Mode 7 Controls 8 Cameras
Introduction to Digital Filters
CHAPTER 14 Introduction to Digital Filters Digital filters are used for two general purposes: (1) separation of signals that have been combined, and (2) restoration of signals that have been distorted
Barcode Based Automated Parking Management System
IJSRD - International Journal for Scientific Research & Development Vol. 2, Issue 03, 2014 ISSN (online): 2321-0613 Barcode Based Automated Parking Management System Parth Rajeshbhai Zalawadia 1 Jasmin
Software: Systems and Application Software
Software: Systems and Application Software Computer Software Operating System Popular Operating Systems Language Translators Utility Programs Applications Programs Types of Application Software Personal
ACE: After Effects CS6
Adobe Training Services Exam Guide ACE: After Effects CS6 Adobe Training Services provides this exam guide to help prepare partners, customers, and consultants who are actively seeking accreditation as
Adding A Student Course Survey Link For Fully Online Courses Into A Canvas Course
Adding A Student Course Survey Link For Fully Online Courses Into A Canvas Course Instructors who teach fully online courses using Canvas can add a link to the online course survey for their class to their
GETTING STARTED WITH LABVIEW POINT-BY-POINT VIS
USER GUIDE GETTING STARTED WITH LABVIEW POINT-BY-POINT VIS Contents Using the LabVIEW Point-By-Point VI Libraries... 2 Initializing Point-By-Point VIs... 3 Frequently Asked Questions... 5 What Are the
LEGENDplex Data Analysis Software
LEGENDplex Data Analysis Software Version 7.0 User Guide Copyright 2013-2014 VigeneTech. All rights reserved. Contents Introduction... 1 Lesson 1 - The Workspace... 2 Lesson 2 Quantitative Wizard... 3
PHP Code Design. The data structure of a relational database can be represented with a Data Model diagram, also called an Entity-Relation diagram.
PHP Code Design PHP is a server-side, open-source, HTML-embedded scripting language used to drive many of the world s most popular web sites. All major web servers support PHP enabling normal HMTL pages
IDL. Get the answers you need from your data. IDL
Get the answers you need from your data. IDL is the preferred computing environment for understanding complex data through interactive visualization and analysis. IDL Powerful visualization. Interactive
SignalDraw: GUI Tool For Generating Pulse Sequences
SignalDraw: GUI Tool For Generating Pulse Sequences Konstantin Berlin Department of Computer Science University of Maryland College Park, MD 20742 [email protected] December 9, 2005 Abstract Generating
Nuclear Science and Technology Division (94) Multigroup Cross Section and Cross Section Covariance Data Visualization with Javapeño
June 21, 2006 Summary Nuclear Science and Technology Division (94) Multigroup Cross Section and Cross Section Covariance Data Visualization with Javapeño Aaron M. Fleckenstein Oak Ridge Institute for Science
Recording Supervisor Manual Presence Software
Presence Software Version 9.2 Date: 09/2014 2 Contents... 3 1. Introduction... 4 2. Installation and configuration... 5 3. Presence Recording architectures Operating modes... 5 Integrated... with Presence
Organizational Development Qualtrics Online Surveys for Program Evaluation
The purpose of this training unit is to provide training in an online survey tool known as Qualtrics. Qualtrics is a powerful online survey tool used by many different kinds of professionals to gather
IntelliSpace PACS 4.4. Image Enabled EMR Workflow and Enterprise Overview. Learning Objectives
IntelliSpace PACS 4.4 Image Enabled EMR Workflow and Enterprise Overview Learning Objectives Use the Cerner EMR to view images and reports via IntelliSpace PACS: Image Launch Workflow (SUBI Image Viewer)
A QUICK OVERVIEW OF THE OMNeT++ IDE
Introduction A QUICK OVERVIEW OF THE OMNeT++ IDE The OMNeT++ 4.x Integrated Development Environment is based on the Eclipse platform, and extends it with new editors, views, wizards, and additional functionality.
Table of Contents. Part I Welcome. Part II Introduction. Part III Getting Started. Part IV The User Interface. Part V Quick Start Tutorials
Contents I Table of Contents Part I Welcome 5 Part II Introduction 5 1 Overview... 5 2 Product... Levels 5 3 Technical... Support 6 4 Copyright... 7 Part III Getting Started 7 1 Installation... 7 2 Register...
USER GUIDE Version 2.0
USER GUIDE Version 2.0 TABLE of CONTENTS Introduction... 3 Hardware Overview... 3 Software Overview... 4 DAYSHIFT Panel... 5 Settings Panel... 6 Setup Tab... 6 Configure... 6 Show User Guide... 6 Preview
Microsoft Office Access 2007 Basics
Access(ing) A Database Project PRESENTED BY THE TECHNOLOGY TRAINERS OF THE MONROE COUNTY LIBRARY SYSTEM EMAIL: [email protected] MONROE COUNTY LIBRARY SYSTEM 734-241-5770 1 840 SOUTH ROESSLER
