Toward Real-Time Biopsy Image Analysis and Cell Segmentation

Size: px
Start display at page:

Download "Toward Real-Time Biopsy Image Analysis and Cell Segmentation"

Transcription

1 Toward Real-Time Biopsy Image Analysis and Cell Segmentation Luis Hernandez, Paula Gothreaux, Liwen Shih Computer Engineering, University of Houston - Clear Lake (UHCL) Gerald Campbell Neuropathology, University of Texas Medical Branch Galveston (UTMB) Abstract This Digital Signal Processing (DSP) study is aimed at real-time capture and analysis of pathological brain images to improve accuracy and efficiency. Simply analyzing cell density statistics and average cell nucleus diameters of a slide image is shown to be useful to determine the abnormality of brain sample. Numerous biopsy samples of various types obtained around the world daily are sent for screening and diagnosis to enable proper treatment, often while patients may be painfully suffering the symptoms for days to weeks anxiously awaiting the biopsy results. In general, pathological image analysis using a computer-based application could demonstrate great precision and efficiency for screening large quantities of cells on one or numerous sample slides, as opposed to the tedious and error-prone human eye counting and measuring hundreds to thousands of cells in one sample slide under a microscope. As a high-level, interactive environment for data visualization/analysis/computation, MATLAB is currently utilized to perform automatic image analysis and segmentation of brain cells on a computer. By comparing cell concentration and cell nucleus sizes between cancerous and normal image groups, MATLAB can be programmed to distinguish normal brain cells from questionable ones. Currently, MATLAB image analysis works on captured/digitized slide images and takes a minute per image to automatically pre-screen abnormalities that require further human expert analysis. With future real-time/parallel/machine-intelligent improvements, we hope that DSP can help physicians, pathologists, and patients everywhere to get immediate diagnosis for timely/effective treatment, and can show accuracy within acceptable levels that are comparable to human pathologists in dealing with cell-overlapping and noncell objects existing in slide images. Keyword: Pathological Image Analysis, Morphology, Cell Density, Nucleus Diameter, Real-Time DSP Acknowledgement: Sample brain cell slide images were provided by UTMB-Galveston. 1. Computer-Based Pathology One of the biggest challenges faced in image analysis at the microscopic cellular level today is the randomness of the cells and the uniqueness of each cell, as well as the presence of other objects such as blood vessels, nerves, etc. The presence of these other objects within typical sample slides encumbers the sample slide image analysis. The presence of abnormal cells complicates the analysis even further. The purpose of this study was to evaluate and design a computer-based tool for screening pathological slide samples, providing slide specific statistics to aid in determining normality (or abnormality) of the sample. Utilizing previous research, Image Analysis and Segmentation of Brain Cells by Luis Hernandez [1], as a starting point, we expanded the philosophy to optimize the analysis methodology. The goal was to enhance the accuracy of statistical results. In addition, a Graphical User Interface (GUI) was designed to simplify the usability of the tool (e.g. a selectable image listing to expedite analyses of multiple samples). In the previous research, the method chosen to perform image segmentation was grayscale thresholding. The threshold methodology is performed by obtaining a digital picture of a slide and then by converting the picture to grayscale (divided into 256 shades of gray) for computation efficiency. Since the areas of interest are the cells nuclei, which appear darker with a circular geometry, the grayscale threshold reference is chosen to focus on these features. Once the distinction between nuclei and other objects is made, the image is filtered to highlight cell nuclei. At this point, we were left with a cell segmentation issue for cell nuclei that were touching/overlapping. They appear as one cell to the computer-based tool, which distorts the statistical data. Several enhancement techniques were attempted, such as functions like strel and morphology techniques like tophat and watershed, which will be discussed in detail later. The issue of statistical data accuracy was resolved and the optimized MATLAB script was combined with the GUI user interface to form the final product [2].

2 2. Counting and Measuring Cells on a Slide The initial MATLAB script consisted of reading an image from the computer hard drive into memory using MATLAB s function imread. Once the image was in memory, it was converted to grayscale for faster processing using the function rgb2gray. The grayscale image, in a range from 0 to 255 shades, can greatly reduce computation complexity of the original color image and can also eliminate possible complications caused by the stain/lighting used when the picture was taken. In order for the image conversion to take place, the original image has to be in.jpg format. Care must be taken when imaging the slide samples so that the pictures are not established in.gif format. The properties of.gif files are not recognized by the rgb2gray function and the script would cease operation at that point. To view the density distribution of the different shades of gray the function imhist is used to create a histogram. Typically, each cell has one nucleus, and cells with abnormally bigger nuclei are typically bigger than normal cells. For cell counting and relative cell size measuring, the cells nuclei are the items of interest in each image, because the nuclei appear darker and clearer than the rest of the objects in the picture. To simplify cell segmentation, the function imhmax is used to filter out the light areas and create a uniform background with the histogram analysis. As a result, the cells nuclei are highlighted, as can be seen in Figure 1. Figure 1. Original gray and filtered images Now that the light areas have been eliminated and the cells nuclei are highlighted, another filter is applied to eliminate the lighter areas of the image. The function imopen is used with the strel structuring function to create a binary image of the region of interest. The strel function uses the syntax var = strel (shape, parameters). In this case, we use the disk shape, parameter three for the radius of structuring element. Figure 2 shows the disk-structuring element with a radius of three. The purpose of the imopen function is to have only elements that fit the shape of the strel function segmented into the binary image. The binary image has all bits that fit the structuring element turned on, with the rest turned off. Figure 2. Disk structuring element with R = 3 The cleaned cell nuclei result of the imopen function applied to the filtered image and applied with the strel function is shown in Figure 3. Figure 3. Cleaned binary image From Figure 3, it can be seen that not all the cell nuclei are round and some areas that are not parts of cell nuclei appear in the image. To filter the extra parts from the image, the strel function is used again, but this time with the line structuring element applied in the vertical and horizontal direction in conjunction with the imdilate function. Another function, used after the imdilate is used to remove the parts that are not part of the cell nuclei, the imfill function is used with the holes parameters to fill in any nonuniformities inside the cell nuclei and make the inside of the cell nuclei uniform in the binary image. At this time, all the cell nuclei are segmented from the rest of the image, but if we are to obtain statistics of the cell nucleus sizes, the cell nuclei touching the border are not complete cell nuclei and will distort the statistics. The function imclearborder eliminates the cell nuclei touching the border from the image. The number of cell nuclei touching the borders was so small in comparison to the difference in cell numbers between normal and abnormal cells in the brain cell samples we tested that the partial cell nuclei on the borders are negligible. Alternatively, after the average nucleus size is calculated later excluding the incomplete border

3 nuclei, it is possible to estimate the equivalent total number of border cell nuclei by adding all partial cell nucleus areas to be divided by the average size, if the border cell count is needed in analyzing different types of tissue sample. Figure 4 shows the filtered and dilated image with holes filled and the cell nuclei touching the border removed. This is not entirely accurate since the cells that are touching are treated as one element. Figure 4. Border elements removed When the statistics were performed on this picture, the area of the cells that are touching was twice as large as the single cells. Further work was done to the script to segment the overlapping cells. One method that was researched is to shrink the cells in the binary image until they separate and then enlarge them back until they touch creating a mask that can be applied to the original image to segment the individual cells. To visualize the accuracy of the script, the binary image shown in Figure 4 is outlined and superimposed on the original image. Figure 5 shows visually how the script outlined the cell nuclei. The bwlabel function is used to label the connected components of the binary image and this data can be used to get a count of the cell nuclei using the numobjects function and the area of the connected components using the regionprops function. Figure 5. Original with outline of cell nuclei As can be seen from Figure 5 above, the problem with this un-optimized script is that the overlapping cells are counted as one cell. One of our challenges was to determine a way to segment the touching cells in order to be able to produce more accurate statistics. The data obtained with un-optimized script from this picture was 15 objects with an average size of 220 pixels. From the distribution chart generated, we get the following statistics as in Table 1. Table 1. Area and distribution of cell nuclei Number of Objects Area in Pixels Accurate Overlapped-Cell Segmentation Several functions built into MATLAB were used to attempt optimization of the cell segmentation process (to increase accuracy). Specifically, the image segmentation functions (already in the code) were tweaked with new variables and rearranged multiple times. New functions were also inserted appropriately (i.e. watershed techniques) to attempt this optimization. However, no consistency was found that would provide acceptable results. After some research, the SDC Morphological Toolbox for MATLAB was found. The toolbox works with MATLAB, and it enhances some of its functions dealing with image analysis/segmentation. An evaluation copy was downloaded and integrated into our project to evaluate how it could improve the previous script. There was significant improvement. The new script starts similar to the previous one by reading the original color image into memory. The original image is converted to grayscale using the rgb2gray function for simplicity, as it was done before. From the histogram, it is determined that setting a grayscale threshold of 200, removed most background noises, leaving the cell nuclei for further analysis. (The threshold value can be tuned based on image brightness or for tissue samples in another application.) To remove any particles that are not cells and fill in any pores within a cell, the mmareaopen is used from the morphology toolbox. Figure 6 shows the original picture converted to grayscale and the threshold applied turning the image to a binary format to display the nuclei and background areas. As can be seen, there is noise in the image that needs to be removed. To remove the noise, a function to smooth the edges of the cells and

4 consider only objects that fit an octagonal geometry of a specified size is applied. Figure 8. Markers applied to peaks and watershed applied Figure 6. Original picture and mmareaopen function Figure 7 shows how the noise is filtered from the image and the cell nuclei appear to have a smooth geometric shape. Up to this point, not much has changed from what the original script had done, but the next function applied is what makes the segmentation of the touching cell nuclei possible. The areas where the cells are located are analyzed by dilating the region maximum of the distance transforms for each cell nucleus. The cell nuclei are then displayed as topographical images as can be seen also in Figure 7 below. By looking at both pictures in Figure 8, it can be noted that if a peak can be identified, the cell can be segmented. There is one cluster of two cells that were not segmented, but from the figure in the left, it can be seen that only one peak was identified for the cluster and by looking at the original picture, one of the cells in the cluster had a light center. More research needs to be performed to determine if light areas in a cell prevent them from being identified and segmented. The watershed division lines are applied to the segmented image to make a clear separation of the touching cell nuclei. Figure 9 shows the watershed lines superimposed to the segmented image and in the other picture, the lines are removed leaving segmented cell nuclei only. Figure 7. Smoothed edges and topographical surface At this point, the image appears to be a series of mountains with each mountain peak representing an individual cell nucleus. From Figure 7, it can be seen how three cell clusters of two touching cells now appear to be two touching mountains. To visualize the individual mountain peaks, markers are applied to every peak as can be seen in Figure 8. The watershed function starts at the peaks expands in every direction until it reaches an edge from another peak or the edge of the picture. Figure 8 shows the segmentation of every individual mountain including the ones that were touching. Figure 9. Watershed lines applied to segmented image and lines removed Segmenting the cells in the manner described above not only improves the accuracy of the cell count, but also the accuracy of the cell nucleus area statistics. In order to make statistics with regards to cell nucleus area even more accurate, we remove any cell nuclei that are touching the border, since most of those cells are more likely to be incomplete cells. Again, after the average nucleus size is calculated, excluding the incomplete border nuclei, it is possible to estimate the equivalent total number of border cell nuclei by adding all partial cell nucleus areas to be divided by the average size, if the border cell count is needed in

5 analyzing different types of tissue sample. It is also possible to double count the projected overlapping nuclei area (intersection) to improve the accuracy of the cell nucleus area statistics. After the cell distribution graph is displayed, the statistics for cell counts and average area of the cell nuclei are calculated and displayed. For this example, the number of cells found was optimized up to 20 and the average cell nucleus size was down to pixels. 4. GUI for Pathology Image Analysis Figure 10. Border cell nuclei removed and final segmented image Figure 10 above shows a cell count of 20 cells, that is five more cells than what the original script found. To be able to see which cells are identified and which are missed, an outline of the segmented cell nuclei are superimposed over original grayscale image, as shown in Figure 10. For ease in visualizing the accuracy of the script, the picture used in this example is a 20-cell subsection of a full slide that has over 1000 cells. Once the script was optimized and acceptable results were obtained, the script was used to obtain statistics on several samples containing normal and abnormal cells. We will discuss the statistics obtained later. The last step of the script was to display a graph showing number of cells vs. cell nucleus area to see the cell distribution in a graphical format. Figure 11 below shows a cell distribution graph for the analysis described above. From the graph, it can be seen that most of the cell nuclei have an area between 125 and 175 pixels, with two cell nuclei being larger than the rest, indicating that they didn t segment properly, and one being smaller than the rest, indicating the presence of a very abnormal cells or improper segmentation. Figure 11. Graph of cell distribution At the time the script was being optimized, it was realized that a GUI-based, user interface was needed to be able to easily change the image file to be analyzed. The image file to be analyzed was hard coded into the script along with the path, and every time a new image was to be analyzed, the script would have to be edited with the new name/path of the file. To solve this problem, it was decided to have all image files in the directory c:\images. The script looks in that directory by default, and the GUI displays a listing of all the image files in the default directory. The user can simply select the file to be analyzed. Once an image file is chosen, the analyze button is selected to start the analysis of that image file. The script mentioned above is executed, performing all image segmentation calculations, and displays the results in the GUI window. The number of cells counted is displayed in a text box, along with the average cell nucleus size in pixels. The user has the ability to compare the original image with the segmented image to be able to see the accuracy of the analysis by visual inspection of the two files. An important part of the analysis is to be able to see the cell distribution in a graphical format, so the final analysis graph was added to the GUI display window. A template for the user interface was created using the GUIDE MATLAB function. The template has areas with axes to display the pictures and graphs. A list box was added to display a listing of all the images in the default, image directory. Two text boxes were added to the template to display the numerical results of the script, and a push button was included to give the user the ability to start the analysis of a new image, at will. Figure 12 shows the end result after a file is chosen and the analyze button is selected. The properties for the text boxes are initialized to 0 at the execution of the script and are updated at the conclusion of the each script execution. Editing the property tab of each object in the template sets the properties and initial values for each object in the template. Here, the value for the number of cells and average size were reset to zero and the list box was set to display the path to the default directory c:\images.

6 Figure 13 shows a clear separation between the normal and abnormal cells. The normal slide images have cell counts between 100 and 300 cells per image, while the abnormal ones vary from 400 to 800 cells. Keep in mind that these statistics were taken with the un-optimized script and touching cells were counted as one, so the statistics shown here count fewer than actual number of cells with inflated cell nucleus sizes. Figure 12. GUI window design All of the intermediate steps described before are not displayed while using this interface. Only the original and end result segmentation image are displayed along with the statistics and cell distribution. To run an analysis on a different image, it is just a matter of selecting a different image file from the list box and selecting the analyze button. If more files need to be analyzed, those images must be added to the c:\images directory and they will appear in the list box. Statistics were obtained from all the images of normal and abnormal cells to try to determine a clear separation between the slide samples. 5. Statistics - Cell Count and Nucleus Size A series of normal and abnormal slide samples were obtained and analyzed with the original script. The statistics obtained from the original cell segmentation script were graphed to display the number of cells for particular types of cells. For this study, the normal slide samples had normal white matter, normal gray matter and corpus stratium. The abnormal cells analyzed included samples of anaplastic astrocytoma, pilocytic astrocytoma and oligodendroglioma. Figure 14. Average cell nucleus size vs. slide sample Figure 14 shows the statistics obtained concerning the average cell nucleus size. Again, a clear separation can be seen between the normal and abnormal cell samples with the exception of one of the anaplastic astrocytoma sample that is very close to the gray matter samples. Since cell segmentation was not optimized at this time, the error tends to be set toward the cells having a larger area than they really have due to improper cell segmentation. For comparison, the same slide images were analyzed with the optimized script. The results are given in the figures below. Figure 15. Optimized cell count vs. slide sample Figure 13. Graph of cell count vs. slide sample From Figure 15, it can be seen that the normal cell count is now between 200 and 400 cells per slide image and the abnormal ones range from 600 to 1400 cells. Here we have a 200-cell gap between the normal and abnormal ones as opposed to a 100-cell gap we had before. The optimized cell size graph also shows some interesting results.

7 Figure 16. Optimized cell nuclei size vs. slide sample Figure 16 shows that the average cell nucleus size for normal white matter ranges from 60 to 100 pixels, while the normal gray matter average is from 90 to 110 pixels. The gap between the average cell nucleus size of normal and abnormal cells is not that clear. The abnormal cell nucleus size are larger, but the average cell nucleus size is between 110 and 175 pixels. More samples need to be analyzed before more conclusive results can be obtained, but this can be used as a start to have a computer make a distinction between normal and questionable slide samples. Since 9 samples were used for white and gray matter, a clear pattern can be seen for the results. However, there were not enough samples of the other cell types to establish a pattern. Nevertheless, even with the small number of abnormal samples analyzed, it can clearly be seen that the cell density is considerably higher in abnormal cells than in normal cell samples. 6. Clinical Real-time Interactive Pathology The study presented in this paper shows some very interesting results in a field where very little research has been done. Computerized instruments have been developed and used in the areas of cytology and hematology using neural networks. In the case of hematology, instruments are available to count and recognize the number of red blood cells, white blood cells and platelets. This helps medical personnel look at large numbers of slides by letting a machine flag the slides that don t meet the normal specifications. This allows the trained professional to look at only those slides that exceed the normal thresholds, along with spot-checking the normal ones to make sure that the machine is correctly analyzing the normal samples. Hopefully, in the near future, this work can be expanded to develop a tool that can be used to analyze a slide sample real-time with the aid of a DSP board. This will allow statistical information to be provided and flagged as normal, or questionable, while a pathologist looks at it under a microscope. Some ideas for future enhancement of this work include: to give the user the capability to choose the grayscale threshold value to remove the background noise interactively, or by computer automatically with the help of histogram. This can be done by the addition of a slider bar with the range from 0 to 255 with a default setting of 200 (a static value that the script has at this time). Another enhancement could be to establish cutoff values between normal and abnormal values and have the results display in different colors depending on these values. For example, if the results have a cell count between 200 and 400, display the results in green, but if the results have a cell count above 600 cells, display the results in red, and then anything between 400 and 600, display them as yellow. At this time, the full image is analyzed and it takes less than one minute to analyze a picture of about 500KB. Another enhancement can be to select only a small region of interest to speed up the process. This would not be a problem if a DSP board, like TI TMS320DM642, can be integrated to perform the video capture and analysis, while MATLAB handles the user interface and communication with the DSP board [3]. The Image Acquisition Toolbox, that is available from Mathworks, can also be used to capture images directly from a digital camera connected to a microscope, thus eliminating the need to digitally photograph the slide sample and then send it to the c:\images directory of the computer for analysis. Since the pixel size is relative to the size of the image, there is no way to determine the actual cell nucleus size. We can only give a relative number to the size in pixels. This method works, as long as all the images are taken at the same resolution and they are not magnified differently. For this study, all images were taken at a 20x magnification. To solve this problem, a scale can be added to establish a physical size relationship in microns between actual nucleus size, magnification power, and pixel resolution, regardless if image is zoomed in or the common size relationship is lost between pictures. 7. References [1] Luis Hernandez, Image Analysis and Segmentation of Brain Cells, UHCL technical report, Fall 2003 [2] Mathworks MATLAB Reference Manuals with SDC Morphological Toolbox [3] TI Developers Conference Image Analysis & Segmentation presenters and presentation

Using MATLAB to Measure the Diameter of an Object within an Image

Using MATLAB to Measure the Diameter of an Object within an Image Using MATLAB to Measure the Diameter of an Object within an Image Keywords: MATLAB, Diameter, Image, Measure, Image Processing Toolbox Author: Matthew Wesolowski Date: November 14 th 2014 Executive Summary

More information

Scanners and How to Use Them

Scanners and How to Use Them Written by Jonathan Sachs Copyright 1996-1999 Digital Light & Color Introduction A scanner is a device that converts images to a digital file you can use with your computer. There are many different types

More information

Tutorial for Tracker and Supporting Software By David Chandler

Tutorial for Tracker and Supporting Software By David Chandler Tutorial for Tracker and Supporting Software By David Chandler I use a number of free, open source programs to do video analysis. 1. Avidemux, to exerpt the video clip, read the video properties, and save

More information

Creating a Poster Presentation using PowerPoint

Creating a Poster Presentation using PowerPoint Creating a Poster Presentation using PowerPoint Course Description: This course is designed to assist you in creating eye-catching effective posters for presentation of research findings at scientific

More information

Image Analysis Using the Aperio ScanScope

Image Analysis Using the Aperio ScanScope Image Analysis Using the Aperio ScanScope Allen H. Olson, PhD Algorithm Development Engineer Aperio Technologies INTRODUCTION Why should I choose the Aperio ScanScope over competing systems for image analysis?

More information

Multi-Zone Adjustment

Multi-Zone Adjustment Written by Jonathan Sachs Copyright 2008 Digital Light & Color Introduction Picture Window s 2-Zone Adjustment and3-zone Adjustment transformations are powerful image enhancement tools designed for images

More information

Excel -- Creating Charts

Excel -- Creating Charts Excel -- Creating Charts The saying goes, A picture is worth a thousand words, and so true. Professional looking charts give visual enhancement to your statistics, fiscal reports or presentation. Excel

More information

MetaMorph Software Basic Analysis Guide The use of measurements and journals

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...

More information

Colour Image Segmentation Technique for Screen Printing

Colour Image Segmentation Technique for Screen Printing 60 R.U. Hewage and D.U.J. Sonnadara Department of Physics, University of Colombo, Sri Lanka ABSTRACT Screen-printing is an industry with a large number of applications ranging from printing mobile phone

More information

Digital Versus Analog Lesson 2 of 2

Digital Versus Analog Lesson 2 of 2 Digital Versus Analog Lesson 2 of 2 HDTV Grade Level: 9-12 Subject(s): Science, Technology Prep Time: < 10 minutes Activity Duration: 50 minutes Materials Category: General classroom National Education

More information

University of Arkansas Libraries ArcGIS Desktop Tutorial. Section 2: Manipulating Display Parameters in ArcMap. Symbolizing Features and Rasters:

University of Arkansas Libraries ArcGIS Desktop Tutorial. Section 2: Manipulating Display Parameters in ArcMap. Symbolizing Features and Rasters: : Manipulating Display Parameters in ArcMap Symbolizing Features and Rasters: Data sets that are added to ArcMap a default symbology. The user can change the default symbology for their features (point,

More information

Microsoft Excel 2010 Charts and Graphs

Microsoft Excel 2010 Charts and Graphs Microsoft Excel 2010 Charts and Graphs Email: training@health.ufl.edu Web Page: http://training.health.ufl.edu Microsoft Excel 2010: Charts and Graphs 2.0 hours Topics include data groupings; creating

More information

Fixplot Instruction Manual. (data plotting program)

Fixplot Instruction Manual. (data plotting program) Fixplot Instruction Manual (data plotting program) MANUAL VERSION2 2004 1 1. Introduction The Fixplot program is a component program of Eyenal that allows the user to plot eye position data collected with

More information

ITS Training Class Charts and PivotTables Using Excel 2007

ITS Training Class Charts and PivotTables Using Excel 2007 When you have a large amount of data and you need to get summary information and graph it, the PivotTable and PivotChart tools in Microsoft Excel will be the answer. The data does not need to be in one

More information

Scientific Graphing in Excel 2010

Scientific Graphing in Excel 2010 Scientific Graphing in Excel 2010 When you start Excel, you will see the screen below. Various parts of the display are labelled in red, with arrows, to define the terms used in the remainder of this overview.

More information

Analecta Vol. 8, No. 2 ISSN 2064-7964

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,

More information

Basic 3D reconstruction in Imaris 7.6.1

Basic 3D reconstruction in Imaris 7.6.1 Basic 3D reconstruction in Imaris 7.6.1 Task The aim of this tutorial is to understand basic Imaris functionality by performing surface reconstruction of glia cells in culture, in order to visualize enclosed

More information

Power Point 2003 Table of Contents

Power Point 2003 Table of Contents Power Point 2003 Table of Contents Creating a Presentation... 2 Selecting Background and Format for Slide... 3 Creating the Title Slide... 4 Adding a New Slide... 5 Types of Text for a Slide: Taken from

More information

VECTORAL IMAGING THE NEW DIRECTION IN AUTOMATED OPTICAL INSPECTION

VECTORAL IMAGING THE NEW DIRECTION IN AUTOMATED OPTICAL INSPECTION VECTORAL IMAGING THE NEW DIRECTION IN AUTOMATED OPTICAL INSPECTION Mark J. Norris Vision Inspection Technology, LLC Haverhill, MA mnorris@vitechnology.com ABSTRACT Traditional methods of identifying and

More information

MASKS & CHANNELS WORKING WITH MASKS AND CHANNELS

MASKS & CHANNELS WORKING WITH MASKS AND CHANNELS MASKS & CHANNELS WORKING WITH MASKS AND CHANNELS Masks let you isolate and protect parts of an image. When you create a mask from a selection, the area not selected is masked or protected from editing.

More information

Spotfire v6 New Features. TIBCO Spotfire Delta Training Jumpstart

Spotfire v6 New Features. TIBCO Spotfire Delta Training Jumpstart Spotfire v6 New Features TIBCO Spotfire Delta Training Jumpstart Map charts New map chart Layers control Navigation control Interaction mode control Scale Web map Creating a map chart Layers are added

More information

Introduction to CATIA V5

Introduction to CATIA V5 Introduction to CATIA V5 Release 16 (A Hands-On Tutorial Approach) Kirstie Plantenberg University of Detroit Mercy SDC PUBLICATIONS Schroff Development Corporation www.schroff.com www.schroff-europe.com

More information

Data Visualization. Prepared by Francisco Olivera, Ph.D., Srikanth Koka Department of Civil Engineering Texas A&M University February 2004

Data Visualization. Prepared by Francisco Olivera, Ph.D., Srikanth Koka Department of Civil Engineering Texas A&M University February 2004 Data Visualization Prepared by Francisco Olivera, Ph.D., Srikanth Koka Department of Civil Engineering Texas A&M University February 2004 Contents Brief Overview of ArcMap Goals of the Exercise Computer

More information

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

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

More information

CATIA Tubing and Piping TABLE OF CONTENTS

CATIA Tubing and Piping TABLE OF CONTENTS TABLE OF CONTENTS Introduction...1 Manual Format...2 Tubing and Piping design...3 Log on/off procedures for Windows...4 To log on...4 To logoff...8 Pull-down Menus...9 Edit...9 Insert...12 Tools...13 Analyze...16

More information

Jitter Measurements in Serial Data Signals

Jitter Measurements in Serial Data Signals Jitter Measurements in Serial Data Signals Michael Schnecker, Product Manager LeCroy Corporation Introduction The increasing speed of serial data transmission systems places greater importance on measuring

More information

CONFOCAL LASER SCANNING MICROSCOPY TUTORIAL

CONFOCAL LASER SCANNING MICROSCOPY TUTORIAL CONFOCAL LASER SCANNING MICROSCOPY TUTORIAL Robert Bagnell 2006 This tutorial covers the following CLSM topics: 1) What is the optical principal behind CLSM? 2) What is the spatial resolution in X, Y,

More information

Virtual Mouse Using a Webcam

Virtual Mouse Using a Webcam 1. INTRODUCTION Virtual Mouse Using a Webcam Since the computer technology continues to grow up, the importance of human computer interaction is enormously increasing. Nowadays most of the mobile devices

More information

LESSON 7: IMPORTING AND VECTORIZING A BITMAP IMAGE

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

More information

Automatic Detection of PCB Defects

Automatic Detection of PCB Defects IJIRST International Journal for Innovative Research in Science & Technology Volume 1 Issue 6 November 2014 ISSN (online): 2349-6010 Automatic Detection of PCB Defects Ashish Singh PG Student Vimal H.

More information

AngioSys 2.0 Image Analysis Software Manual

AngioSys 2.0 Image Analysis Software Manual AngioSys 2.0 Image Analysis Software Manual Table of contents Introduction and ordering Activate your software Analyse a new plate Open a previous plate Add well details Delete well details Fill a row/column

More information

GETTING STARTED WITH MEKKO GRAPHICS A GUIDE FOR MS OFFICE 2007, 2010, AND 2013 USERS. 10/21/2014 MG6.9 Of07/10/13

GETTING STARTED WITH MEKKO GRAPHICS A GUIDE FOR MS OFFICE 2007, 2010, AND 2013 USERS. 10/21/2014 MG6.9 Of07/10/13 GETTING STARTED WITH MEKKO GRAPHICS A GUIDE FOR MS OFFICE 2007, 2010, AND 2013 USERS 10/21/2014 MG6.9 Of07/10/13 CONTENTS Chapter 1 Getting Started... 3 What is Mekko Graphics?...3 Chapter 2 Installing

More information

Protocol for Leaf Image Analysis Surface Area

Protocol for Leaf Image Analysis Surface Area Protocol for Leaf Image Analysis Surface Area By Kitren Glozer Associate Project Scientist Dept. of Plant Sciences, University of California, Davis Contact information: Dept. of Plant Sciences, University

More information

Designing a Graphical User Interface

Designing a Graphical User Interface Designing a Graphical User Interface 1 Designing a Graphical User Interface James Hunter Michigan State University ECE 480 Design Team 6 5 April 2013 Summary The purpose of this application note is to

More information

Using Microsoft Word. Working With Objects

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

More information

Blind Deconvolution of Barcodes via Dictionary Analysis and Wiener Filter of Barcode Subsections

Blind Deconvolution of Barcodes via Dictionary Analysis and Wiener Filter of Barcode Subsections Blind Deconvolution of Barcodes via Dictionary Analysis and Wiener Filter of Barcode Subsections Maximilian Hung, Bohyun B. Kim, Xiling Zhang August 17, 2013 Abstract While current systems already provide

More information

The Olympus stereology system. The Computer Assisted Stereological Toolbox

The Olympus stereology system. The Computer Assisted Stereological Toolbox The Olympus stereology system The Computer Assisted Stereological Toolbox CAST is a Computer Assisted Stereological Toolbox for PCs running Microsoft Windows TM. CAST is an interactive, user-friendly,

More information

User Tutorial on Changing Frame Size, Window Size, and Screen Resolution for The Original Version of The Cancer-Rates.Info/NJ Application

User Tutorial on Changing Frame Size, Window Size, and Screen Resolution for The Original Version of The Cancer-Rates.Info/NJ Application User Tutorial on Changing Frame Size, Window Size, and Screen Resolution for The Original Version of The Cancer-Rates.Info/NJ Application Introduction The original version of Cancer-Rates.Info/NJ, like

More information

MICROSCOPY. To demonstrate skill in the proper utilization of a light microscope.

MICROSCOPY. To demonstrate skill in the proper utilization of a light microscope. MICROSCOPY I. OBJECTIVES To demonstrate skill in the proper utilization of a light microscope. To demonstrate skill in the use of ocular and stage micrometers for measurements of cell size. To recognize

More information

Welcome to the topic on creating key performance indicators in SAP Business One, release 9.1 version for SAP HANA.

Welcome to the topic on creating key performance indicators in SAP Business One, release 9.1 version for SAP HANA. Welcome to the topic on creating key performance indicators in SAP Business One, release 9.1 version for SAP HANA. 1 In this topic, you will learn how to: Use Key Performance Indicators (also known as

More information

Examples of Data Representation using Tables, Graphs and Charts

Examples of Data Representation using Tables, Graphs and Charts Examples of Data Representation using Tables, Graphs and Charts This document discusses how to properly display numerical data. It discusses the differences between tables and graphs and it discusses various

More information

EPSON SCANNING TIPS AND TROUBLESHOOTING GUIDE Epson Perfection 3170 Scanner

EPSON SCANNING TIPS AND TROUBLESHOOTING GUIDE Epson Perfection 3170 Scanner EPSON SCANNING TIPS AND TROUBLESHOOTING GUIDE Epson Perfection 3170 Scanner SELECT A SUITABLE RESOLUTION The best scanning resolution depends on the purpose of the scan. When you specify a high resolution,

More information

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

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

More information

USER MANUAL SlimComputer

USER MANUAL SlimComputer USER MANUAL SlimComputer 1 Contents Contents...2 What is SlimComputer?...2 Introduction...3 The Rating System...3 Buttons on the Main Interface...5 Running the Main Scan...8 Restore...11 Optimizer...14

More information

Medical Image Segmentation of PACS System Image Post-processing *

Medical Image Segmentation of PACS System Image Post-processing * Medical Image Segmentation of PACS System Image Post-processing * Lv Jie, Xiong Chun-rong, and Xie Miao Department of Professional Technical Institute, Yulin Normal University, Yulin Guangxi 537000, China

More information

Instructions for Creating a Poster for Arts and Humanities Research Day Using PowerPoint

Instructions for Creating a Poster for Arts and Humanities Research Day Using PowerPoint Instructions for Creating a Poster for Arts and Humanities Research Day Using PowerPoint While it is, of course, possible to create a Research Day poster using a graphics editing programme such as Adobe

More information

Basic Understandings

Basic Understandings Activity: TEKS: Exploring Transformations Basic understandings. (5) Tools for geometric thinking. Techniques for working with spatial figures and their properties are essential to understanding underlying

More information

imc FAMOS 6.3 visualization signal analysis data processing test reporting Comprehensive data analysis and documentation imc productive testing

imc FAMOS 6.3 visualization signal analysis data processing test reporting Comprehensive data analysis and documentation imc productive testing imc FAMOS 6.3 visualization signal analysis data processing test reporting Comprehensive data analysis and documentation imc productive testing www.imcfamos.com imc FAMOS at a glance Four editions to Optimize

More information

Intermediate PowerPoint

Intermediate PowerPoint Intermediate PowerPoint Charts and Templates By: Jim Waddell Last modified: January 2002 Topics to be covered: Creating Charts 2 Creating the chart. 2 Line Charts and Scatter Plots 4 Making a Line Chart.

More information

QUALITY TESTING OF WATER PUMP PULLEY USING IMAGE PROCESSING

QUALITY TESTING OF WATER PUMP PULLEY USING IMAGE PROCESSING QUALITY TESTING OF WATER PUMP PULLEY USING IMAGE PROCESSING MRS. A H. TIRMARE 1, MS.R.N.KULKARNI 2, MR. A R. BHOSALE 3 MR. C.S. MORE 4 MR.A.G.NIMBALKAR 5 1, 2 Assistant professor Bharati Vidyapeeth s college

More information

3D Interactive Information Visualization: Guidelines from experience and analysis of applications

3D Interactive Information Visualization: Guidelines from experience and analysis of applications 3D Interactive Information Visualization: Guidelines from experience and analysis of applications Richard Brath Visible Decisions Inc., 200 Front St. W. #2203, Toronto, Canada, rbrath@vdi.com 1. EXPERT

More information

IncuCyte ZOOM Whole Well Imaging Overview

IncuCyte ZOOM Whole Well Imaging Overview IncuCyte ZOOM Whole Well Imaging Overview With the release of the 2013B software, IncuCyte ZOOM users will have the added ability to image the complete surface of select multi-well plates and 35 mm dishes

More information

Creating Web Pages with Microsoft FrontPage

Creating Web Pages with Microsoft FrontPage Creating Web Pages with Microsoft FrontPage 1. Page Properties 1.1 Basic page information Choose File Properties. Type the name of the Title of the page, for example Template. And then click OK. Short

More information

Updates to Graphing with Excel

Updates to Graphing with Excel Updates to Graphing with Excel NCC has recently upgraded to a new version of the Microsoft Office suite of programs. As such, many of the directions in the Biology Student Handbook for how to graph with

More information

Application Note #503 Comparing 3D Optical Microscopy Techniques for Metrology Applications

Application Note #503 Comparing 3D Optical Microscopy Techniques for Metrology Applications Screw thread image generated by WLI Steep PSS angles WLI color imaging Application Note #503 Comparing 3D Optical Microscopy Techniques for Metrology Applications 3D optical microscopy is a mainstay metrology

More information

Petrel TIPS&TRICKS from SCM

Petrel TIPS&TRICKS from SCM Petrel TIPS&TRICKS from SCM Knowledge Worth Sharing Histograms and SGS Modeling Histograms are used daily for interpretation, quality control, and modeling in Petrel. This TIPS&TRICKS document briefly

More information

Microsoft Office Project Standard 2007 Project Professional 2007. April 2006. February 2006

Microsoft Office Project Standard 2007 Project Professional 2007. April 2006. February 2006 Microsoft Office Project Standard 2007 Project Professional 2007 April 2006 February 2006 February 2006 Table of Contents Overview of Microsoft Office Project Standard 2007 and Office Project Professional

More information

Excel Tutorial. Bio 150B Excel Tutorial 1

Excel Tutorial. Bio 150B Excel Tutorial 1 Bio 15B Excel Tutorial 1 Excel Tutorial As part of your laboratory write-ups and reports during this semester you will be required to collect and present data in an appropriate format. To organize and

More information

Epson Brightlink Interactive Board and Pen Training. Step One: Install the Brightlink Easy Interactive Driver

Epson Brightlink Interactive Board and Pen Training. Step One: Install the Brightlink Easy Interactive Driver California State University, Fullerton Campus Information Technology Division Documentation and Training Services Handout Epson Brightlink Interactive Board and Pen Training Downloading Brightlink Drivers

More information

Creating a Digital Movie with Pinnacle Studio (v. 10) Overview... 2. Using Pinnacle Studio... 3

Creating a Digital Movie with Pinnacle Studio (v. 10) Overview... 2. Using Pinnacle Studio... 3 Creating a Digital Movie with Pinnacle Studio (v. 10) Overview... 2 Understanding Movie Formats...2 Permissions and Copyright...2 Using Pinnacle Studio... 3 Step One: Capturing Video from a Digital Camera...3

More information

Preparing Images for PowerPoint, the Web, and Publication

Preparing Images for PowerPoint, the Web, and Publication What is Resolution?... 2 How Resolution Affects File Memory Size... 2 Physical Size vs. Memory Size... 3 Thinking Digitally... 4 What Resolution is Best For Printing?... 5 Professional Publications...

More information

Excel 2007 Basic knowledge

Excel 2007 Basic knowledge Ribbon menu The Ribbon menu system with tabs for various Excel commands. This Ribbon system replaces the traditional menus used with Excel 2003. Above the Ribbon in the upper-left corner is the Microsoft

More information

3D Viewer. user's manual 10017352_2

3D Viewer. user's manual 10017352_2 EN 3D Viewer user's manual 10017352_2 TABLE OF CONTENTS 1 SYSTEM REQUIREMENTS...1 2 STARTING PLANMECA 3D VIEWER...2 3 PLANMECA 3D VIEWER INTRODUCTION...3 3.1 Menu Toolbar... 4 4 EXPLORER...6 4.1 3D Volume

More information

Manual English KOI Desktop App 2.0.x

Manual English KOI Desktop App 2.0.x Manual English KOI Desktop App 2.0.x KOI Kommunikation, Organisation, Information Comm-Unity EDV GmbH 2010 Contents Introduction... 3 Information on how to use the documentation... 3 System requirements:...

More information

Demo: Real-time Tracking of Round Object

Demo: Real-time Tracking of Round Object Page 1 of 1 Demo: Real-time Tracking of Round Object by: Brianna Bikker and David Price, TAMU Course Instructor: Professor Deepa Kundur Introduction Our project is intended to track the motion of a round

More information

Automatic determination of particle size distribution

Automatic determination of particle size distribution Automatic determination of particle size distribution ImageJ is a free, very versatile program package for image processing and manipulation which runs under Java. It can be downloaded from: http://rsb.info.nih.gov/ij/download.html.

More information

Clustering & Visualization

Clustering & Visualization Chapter 5 Clustering & Visualization Clustering in high-dimensional databases is an important problem and there are a number of different clustering paradigms which are applicable to high-dimensional data.

More information

Smartboard and Notebook 10 What s New

Smartboard and Notebook 10 What s New Smartboard and Notebook 10 What s New Smartboard Markers and Eraser (for use with all programs): You may use your finger as the mouse. Press down twice to double click Hold your finger down for a few seconds

More information

VueZone Mobile for iphone/itouch. User Guide Version 2.1.5

VueZone Mobile for iphone/itouch. User Guide Version 2.1.5 VueZone Mobile for iphone/itouch User Guide Version 2.1.5 Contents The VueZone personal video network and your smartphone are a powerful combination. With VueZone Mobile apps, you can take remote video

More information

SDC. Schroff Development Corporation WWW.SDCACAD.COM PUBLICATIONS. MultiMedia CD by Jack Zecher

SDC. Schroff Development Corporation WWW.SDCACAD.COM PUBLICATIONS. MultiMedia CD by Jack Zecher MultiMedia CD by Jack Zecher An audioi/visual presentation of the tutorial exercises SDC PUBLICATIONS Schroff Development Corporation WWW.SDCACAD.COM AutoCAD 2002 Tutorial 2-1 Lesson 2 Geometric Construction

More information

Contents. A-61623 July 2008 i

Contents. A-61623 July 2008 i Contents Image Processing......................................................... 1 Overview.......................................................... 1 Terminology and features..............................................

More information

Adobe Lens Profile Creator User Guide. Version 1.0 Wednesday, April 14, 2010 Adobe Systems Inc

Adobe Lens Profile Creator User Guide. Version 1.0 Wednesday, April 14, 2010 Adobe Systems Inc Adobe Lens Profile Creator User Guide Version 1.0 Wednesday, April 14, 2010 Adobe Systems Inc ii Table of Contents INTRODUCTION:... 1 TERMINOLOGY:... 2 PROCEDURES:... 4 OPENING AND RUNNING FILES THROUGH

More information

What role does the nucleolus have in cell functioning? Glial cells

What role does the nucleolus have in cell functioning? Glial cells Nervous System Lab The nervous system of vertebrates can be divided into the central nervous system, which consists of the brain and spinal cord, and the peripheral nervous system, which contains nerves,

More information

Protocol for Microscope Calibration

Protocol for Microscope Calibration Protocol for Microscope Calibration A properly calibrated system is essential for successful and efficient software use. The following are step by step instructions on how to calibrate the hardware using

More information

Ultrasound Distance Measurement

Ultrasound Distance Measurement Final Project Report E3390 Electronic Circuits Design Lab Ultrasound Distance Measurement Yiting Feng Izel Niyage Asif Quyyum Submitted in partial fulfillment of the requirements for the Bachelor of Science

More information

MAVIparticle Modular Algorithms for 3D Particle Characterization

MAVIparticle Modular Algorithms for 3D Particle Characterization MAVIparticle Modular Algorithms for 3D Particle Characterization version 1.0 Image Processing Department Fraunhofer ITWM Contents Contents 1 Introduction 2 2 The program 2 2.1 Framework..............................

More information

Lab 11: Budgeting with Excel

Lab 11: Budgeting with Excel Lab 11: Budgeting with Excel This lab exercise will have you track credit card bills over a period of three months. You will determine those months in which a budget was met for various categories. You

More information

Sonatype CLM Server - Dashboard. Sonatype CLM Server - Dashboard

Sonatype CLM Server - Dashboard. Sonatype CLM Server - Dashboard Sonatype CLM Server - Dashboard i Sonatype CLM Server - Dashboard Sonatype CLM Server - Dashboard ii Contents 1 Introduction 1 2 Accessing the Dashboard 3 3 Viewing CLM Data in the Dashboard 4 3.1 Filters............................................

More information

KB COPY CENTRE. RM 2300 JCMB The King s Buildings West Mains Road Edinburgh EH9 3JZ. Telephone: 0131 6505001

KB COPY CENTRE. RM 2300 JCMB The King s Buildings West Mains Road Edinburgh EH9 3JZ. Telephone: 0131 6505001 KB COPY CENTRE RM 2300 JCMB The King s Buildings West Mains Road Edinburgh EH9 3JZ Telephone: 0131 6505001 Email: kbcopy@ed.ac.uk martin.byrne@ed.ac.uk colin.doherty@ed.ac.uk Step 1. Set up page orientation

More information

SMART BOARD USER GUIDE FOR PC TABLE OF CONTENTS I. BEFORE YOU USE THE SMART BOARD. What is it?

SMART BOARD USER GUIDE FOR PC TABLE OF CONTENTS I. BEFORE YOU USE THE SMART BOARD. What is it? SMART BOARD USER GUIDE FOR PC What is it? SMART Board is an interactive whiteboard available in an increasing number of classrooms at the University of Tennessee. While your laptop image is projected on

More information

Digitization of Old Maps Using Deskan Express 5.0

Digitization of Old Maps Using Deskan Express 5.0 Dražen Tutić *, Miljenko Lapaine ** Digitization of Old Maps Using Deskan Express 5.0 Keywords: digitization; scanner; scanning; old maps; Deskan Express 5.0. Summary The Faculty of Geodesy, University

More information

Visual Structure Analysis of Flow Charts in Patent Images

Visual Structure Analysis of Flow Charts in Patent Images Visual Structure Analysis of Flow Charts in Patent Images Roland Mörzinger, René Schuster, András Horti, and Georg Thallinger JOANNEUM RESEARCH Forschungsgesellschaft mbh DIGITAL - Institute for Information

More information

Search help. More on Office.com: images templates

Search help. More on Office.com: images templates Page 1 of 7 PowerPoint 2010 Home > PowerPoint 2010 Help and How-to > Getting started with PowerPoint Search help More on Office.com: images templates Basic tasks in PowerPoint 2010 Here are some basic

More information

BCC Multi Stripe Wipe

BCC Multi Stripe Wipe BCC Multi Stripe Wipe The BCC Multi Stripe Wipe is a similar to a Horizontal or Vertical Blind wipe. It offers extensive controls to randomize the stripes parameters. The following example shows a Multi

More information

CATIA Functional Tolerancing & Annotation TABLE OF CONTENTS

CATIA Functional Tolerancing & Annotation TABLE OF CONTENTS TABLE OF CONTENTS Introduction...1 Functional Tolerancing and Annotation...2 Pull-down Menus...3 Insert...3 Functional Tolerancing and Annotation Workbench...4 Bottom Toolbar Changes...5 3D Grid Toolbar...5

More information

Color Balancing Techniques

Color Balancing Techniques Written by Jonathan Sachs Copyright 1996-1999 Digital Light & Color Introduction Color balancing refers to the process of removing an overall color bias from an image. For example, if an image appears

More information

Comparing Digital and Analogue X-ray Inspection for BGA, Flip Chip and CSP Analysis

Comparing Digital and Analogue X-ray Inspection for BGA, Flip Chip and CSP Analysis Comparing Digital and Analogue X-ray Inspection for BGA, Flip Chip and CSP Analysis David Bernard & Steve Ainsworth Dage Precision Industries Abstract Non-destructive testing during the manufacture of

More information

ECDL. European Computer Driving Licence. Spreadsheet Software BCS ITQ Level 2. Syllabus Version 5.0

ECDL. European Computer Driving Licence. Spreadsheet Software BCS ITQ Level 2. Syllabus Version 5.0 European Computer Driving Licence Spreadsheet Software BCS ITQ Level 2 Using Microsoft Excel 2010 Syllabus Version 5.0 This training, which has been approved by BCS, The Chartered Institute for IT, includes

More information

product. Please read this instruction before setup your VenomXTM.

product. Please read this instruction before setup your VenomXTM. Tuact Corp. Ltd. TM Venom X mouse controller combo Setup Software Instruction Thank you for purchasing our VenomXTM product. Please read this instruction before setup your VenomXTM. Introduction Venom

More information

Window Glass Design 5 According to ASTM E 1300

Window Glass Design 5 According to ASTM E 1300 A User s Guide to: Window Glass Design 5 According to ASTM E 1300 A product of: 1 Table of Contents Table of Contents List of Figures Chapter 1: Window Glass Design 5 1.1 Introduction 1.2 Features ii iv

More information

Circulation Stations

Circulation Stations Circulation Stations This worksheet corresponds with stations around the classrooms. Work in groups of 3 and do the stations in any order. Name: Station 1: Blood smear under a microscope Materials: - Microscope

More information

Handheld USB Digital Endoscope/Microscope

Handheld USB Digital Endoscope/Microscope Handheld USB Digital Endoscope/Microscope ehev1-usbplus User s Manual INTRODUCTION FUNCTIONS AND APPLICATIONS The USB Digital Endoscope/Microscope is a new electronic product for the micro observations.

More information

Open icon. The Select Layer To Add dialog opens. Click here to display

Open icon. The Select Layer To Add dialog opens. Click here to display Mosaic Introduction This tour guide gives you the steps for mosaicking two or more image files to produce one image file. The mosaicking process works with rectified and/or calibrated images. Here, you

More information

Kristen Kachurek. Circumference, Perimeter, and Area Grades 7-10 5 Day lesson plan. Technology and Manipulatives used:

Kristen Kachurek. Circumference, Perimeter, and Area Grades 7-10 5 Day lesson plan. Technology and Manipulatives used: Kristen Kachurek Circumference, Perimeter, and Area Grades 7-10 5 Day lesson plan Technology and Manipulatives used: TI-83 Plus calculator Area Form application (for TI-83 Plus calculator) Login application

More information

I ntroduction. Accessing Microsoft PowerPoint. Anatomy of a PowerPoint Window

I ntroduction. Accessing Microsoft PowerPoint. Anatomy of a PowerPoint Window Accessing Microsoft PowerPoint To access Microsoft PowerPoint from your home computer, you will probably either use the Start menu to select the program or double-click on an icon on the Desktop. To open

More information

Introduction to the TI-Nspire CX

Introduction to the TI-Nspire CX Introduction to the TI-Nspire CX Activity Overview: In this activity, you will become familiar with the layout of the TI-Nspire CX. Step 1: Locate the Touchpad. The Touchpad is used to navigate the cursor

More information

Welcome to CorelDRAW, a comprehensive vector-based drawing and graphic-design program for the graphics professional.

Welcome to CorelDRAW, a comprehensive vector-based drawing and graphic-design program for the graphics professional. Workspace tour Welcome to CorelDRAW, a comprehensive vector-based drawing and graphic-design program for the graphics professional. In this tutorial, you will become familiar with the terminology and workspace

More information

MITOSIS IN ONION ROOT TIP CELLS: AN INTRODUCTION TO LIGHT MICROSCOPY

MITOSIS IN ONION ROOT TIP CELLS: AN INTRODUCTION TO LIGHT MICROSCOPY MITOSIS IN ONION ROOT TIP CELLS: AN INTRODUCTION TO LIGHT MICROSCOPY Adapted from Foundations of Biology I; Lab 6 Introduction to Microscopy Dr. John Robertson, Westminster College Biology Department,

More information

MET 306 Activity 6. Using Pro/MFG Milling Operations Creo 2.0. Machining a Mast Step

MET 306 Activity 6. Using Pro/MFG Milling Operations Creo 2.0. Machining a Mast Step Using Pro/MFG Milling Operations Creo 2.0 Machining a Mast Step If the Trim option is grayed out when trimming the mill volume, Save (making sure the.asm file is going to the correct subdirectory), Exit

More information

A Quick Start Guide to Using PowerPoint For Image-based Presentations

A Quick Start Guide to Using PowerPoint For Image-based Presentations A Quick Start Guide to Using PowerPoint For Image-based Presentations By Susan Jane Williams & William Staffeld, Knight Visual Resources Facility College of Architecture, Art and Planning Cornell University.

More information