Journal of Global Pharma Technology

Size: px
Start display at page:

Download "Journal of Global Pharma Technology"

Transcription

1 Survey about Shape Detection Jumana Waleed, Ahmed Brisam* Journal of Global Pharma Technology Available Online at RESEARCH ARTICLE 1 Department of Computer Science, College of Science, University of Diyala/Iraq. 2 College of Agriculture University of Al-Qadisiyah/Iraq. *Corresponding Author: abrisam@troy.edu Abstract ISSN: The simplifying original shoreline of vector data into direction-line is the source of picture of baselines of the shape detection. Applying standard algorithms of vector data confining, such as the Douglas-Peucker algorithm, to analyze the real shoreline within direction-line, disregards the specific elements of a guarantee of general marine interests.to solve this problem, this research suggested an improved Douglas-Peucker algorithm. First, determine the curved vertices of the original shoreline as a choice set of points; later filter division points from curved vertices based on corner and length; ultimately, separate the data into different parts in order to complete the Douglas-Peucker algorithm, and compare the threshold of each part to efficiently select specialty points and protect shape detection. This research uses Python language to carry out the algorithm design, and opencv2. The results show that, compared with the Douglas-Peucker algorithm, the improved Douglas-Peucker algorithm improves how detect the contours, and shape detection, and the accuracy of curve simplification also fixed. Introduction To start the project, define a shape detection module. The detect_shapes.py operator script was used to load a picture from disk, investigate it for shapes, and then make shape detector class (1). This proposed project presents a unique way to line generalization, which uses the idea of "effective area" for increasing simplification of a line by point elimination. Two methods are opted to compare the achievement of this, with one of the commonly used Douglas - Peucker, algorithm (1, 3). The area-based algorithm results compare equally with the standard generalization of the equivalent lines. It is can achieve both caricature generalizations and imperceptible minimal simplifications. Selecting the cut- off values carefully, it is likely to use the one algorithm for both independent generalizations and scaledependent (1). In the same way, independent of the camera settings this formula can take a shot at each camera marks. The same can be connected for video shading exchanges. With the Object and Shape Detection, we detect three-dimensional geometries and the position of things (4, 3). We develop the camera systems laser scanners but also custom-tailored light. These projects take measures at high velocity and with high accuracy, especially from running platforms. We concentrate specifically on activity, robustness and high service life of the operations and effective results evaluation. New applications contain mobile data record from the air, in liquid or by handheld operations (5, 2). Previous Works We could detect and follow an object applying color division. However, we could not recognize the contour of the contour. In this research, let's discuss how to identify a shape and position of an object using contours with Open CV. Using contours with Open CV, you can get a string of points of vertices of any white patch. Instance, you will get three vertices for a triangle, and four vertices for quadrilaterals.so, you can recognize any polygon by an amount of vertices of that polygon (2). You can also know features of polygons such as convexity, concavity, equilateral etc. by determining and comparing lengths between points.a binary form in which your objects should be white and the framework should be black.white observed that the widely used DP algorithm identified more of these critical points , JGPT. All Rights Reserved 231

2 , JGPT. All Rights Reserved 232 McMaster (5) repeatedly asserted Douglas- Peucker algorithm was "mathematically and perceptually superior" to other algorithms he evaluated because it picked out more of these critical points and produced least displacement from the original line proposed extensions to the algorithm; tag values were associated with each point as an indicator of its significance. The values, which are tagged, can be placed in an ascending order of the rank points towards the critical points. This concept of a fixed rank order of critical points is convenient since a tolerance parameter may be used to filter out the required points at run time.visvalingam and Whyatt (8, 10) utilize these tags to understand the predictions of their use, left over characteristics. They came to an understanding that the algorithm does not choose each points that are used for maps.even using relatively simple test data, White only found a 45% agreement between points selected by the algorithm and by respondents in their study(6). Alternative Algorithms for Line Simplification Reumann Witkam (1) Rather of using a point-to-point measure tolerance as a rejection, model (see Radial Distance in Fig. 1) and the O (n) Reumann Witkam algorithm uses a point to line to find distance tolerance. It represents a line through the first two vertices of the original poly line. For each successive vertex xi, its perpendicular distance to this line is determined (15,16). A new key is found at xi- 1, when this distance exceeds the specified tolerance. The pointsxi and xi+1 are then used to another new line. This algorithm is explained below, and it contains the following steps: Select the first point as the key point. If there is less than 3 points after the key point, end the algorithm. Create a line using the key vertex and the vertex following the key point. Select the point two vertices after they key point as the first test point. If the perpendicular distance from the test point to the line is less than a tolerance. Increment the test point. Repeat this step using the new test point. If the perpendicular distance from the test vertex to the line is greater than a tolerance. Remove all points between the key point and the point before the current test point. This keeps the key point and the point with the furthest perpendicular distance within tolerance. If there are no points between them (because the first test point was larger than the tolerance), no points are eliminated. Increment the key point and restart from step 2. Input of Data Requirements DIM represents the dimension, when DIM not equal 0. Change The Forward Iterator value to the value of the Output Iterator Fig. 1: Reumann Witkam The range between first point and last point contains vertex coordinates in multiples of DIM, e.g.: x, y, z, x, y, z, x, y, z when DIM = 4

3 The range between first point and last point contain at least two vertices To first step is not 0 Lang Simplification (17) This algorithm tries to fixed size searchregion. The start point and ends of that exploration area form a part. This section is used to determine the perpendicular distance to each intermediate point. If any computed distance is greater than the specified tolerance, the search region will be narrowed by excluding its last point. This process will continue until all calculated distances drop under the defined tolerance, or when there are no more common points (12, 13).All intermediate points are separated and a new search region is determined to begin at the last point from old search (see Fig. 2). The process is shown below and It contains the following steps: Select the first point as the key point. Select the last point as the end point. If there are no points between the key point and end point. And if the end point is not the last point. Make the end point the new key point. Make the last point the new end point. Restart step 3 using the new end point and key points. And if the end point is the last point. Exit the algorithm If there are points between the key point and the end point. Continue to step 5. Create a line between the key point and the end point. Find the point between the key point and the end point with the largest perpendicular distance from this line. If that distance is greater than some tolerance. Decrement the end point. Restart at step 3 using the new end point. If that distance is less than, or equal to, the tolerance. Eliminate all points between the key point and the end point. Make the end point the new key point. Make the last point the new end point. Restart at step 3. Fig. 2: Lang line simplification Input the Data Requirements DIM represents the dimension of the poly line, when DIM is not equal 0. Change Bidirectional Iterator value to the value of the Output Iterator. The range [first, last) contains vertex coordinates in multiples of DIM, e.g.: x, y, z, x, y, z, x, y, z when DIM = 3. The range between first point and last point contains at least 2 vertices. Look ahead is not equal 0. Douglas-Peucker Algorithm (3) This algorithm works a point-to-edge measure tolerance. The algorithm begins with a crude simplification that is the single edge joining the first point and last point of the initial poly line. It then calculates the , JGPT. All Rights Reserved 233

4 length of all between vertices to that edge. The point that is greatly away from that edge, and that has a calculated distance that is greater than a specified tolerance, will be marked as a key and added to the simplification (7, 9). This process will recurse for each edge in the current simplification until all points of the initial polyline are within the end of the simplification results. This method is drawn in Fig.3 and illustrated below: Choose the effective area for each point in the line. Remove the points with zero value and save them in a different list with this area. REPEAT Choose the point with the least effective area it called the current point. If its compute area first less than that of the last point to be eliminated, use the latter s, area instead. Remove the point from the original list and add this to the new list together with its associated area so that the line may be filtered at run time. Recalculate the effective area of the two adjoining points. Input the Data Requirements DIM represents the dimension of the polyline, when DIM is not 0. Change the Forward Iterator value to the value of the Output Iterator The range between first point and last point contains vertex coordinates in multiples of DIM, e.g.: x, y, z, x, y, z, x, y, z when DIM = 3 The range between first point and last point contains at least 2 vertices To first step is not 0. Constructing the Shape Detector We are creating some code to build the shape description logic. Class Shape Detector: Def init (point): Def detect (point, r): Shapes== "unidentified" Fig. 3 Douglas-Peucker Points peri = cv2(point).arc Length//(r, True) Approx = cv2. (Approx, r)poly DP(c, 0.07 * peri (point), True) Exposed= (Window, Worker), Promise<sequence<Detected Shape>>detect (Image Bitmap Source image); The detecting method detected first needs only a first argument, r, the contour of the shape that we are investigating to use contour approximation. The Contour approximation is an algorithm to reduce the amount of vertices in a line with a compressed set of points. This algorithm is commonly the merge and split algorithm (11). Contour approximation is already implemented in Open CV through. To make contour approximation, calculate the perimeter of the contour, actual contour approximation followed by creating perimeter of the contour , JGPT. All Rights Reserved 234

5 Having the approximated contour, perform shape detection: If len(line, line ) == 3: Shape == triangle "triangle" If len (line, line ) == 4: (W, u, t, g) = cv2.bounding Rect (approx) ar = w / float(h) Shape = "square" if ar >= 0.85 and ar <= 1.15 else "rectangle" if len(approx) == 5: Shape = "pentagon" Else: Shape = "circle" Return x, In this list a contour, contain of a listing of points to check the number of notes, to limit the shape of an image. If it has four vertices or edges, then the shape must be both a rectangle and a square. To find that, measure the aspect ratio of the situation, that is only the width of the contour bounding will divide by the height. If the aspect ratio is ~1.0, then we are checking a square (since all sides have the approximately same length) (4).Unless the shape is a rectangle. If a shape has (5) several points, we can identify it as a pentagon. We can assume that the shape we are examining is a circle. Finally, to the calling method if we return the identified shape. Shape Detection with Open CV Having Shape Detector a defined class, create the detect shapes. Python driver script: From sd. shape detector Import shape Import imutils Import cv2 ap = = argparse. Argument Parser () ap. add_ argument ("-j", "++image", required==true, help="path to the input image") args == vars (ap.parse//args()) Handling parsing line discussions.a particular switch is needed, picture that is the way to where the image that we want to process on disk. Images == CV. I m read (args//image,["image"]) Ratio = image. Shape [0] / float ( resized resized. shape [0]) Gray == cv.cvt Color ( resized resized, cv2.color_rgb to GRAY) Blurred = cv. Gaussian Blur (gray gray, (5, 5), 0) Thresh == cv. threshold (blurred, 56, 255, CV. cnts = cv2.findcontours(thresh. copy(), cv2.retr_external, cv2.chain_approx_simple) cnts == cnts cnts if imutils. Is_ cv () else cnts sd= = Shape Detector image () We need resize it on after upload the image. Keeping the track of the ratio of the old height to the new resized height, the image has been binaries; the shapes will appear just two different colors as a white foreground against a black background. To find shapes in the binary image, the true tuple value from cv2.findcontours to eventually initialize the Shape Detector. D== cv. moments(r) rx = int((d["m10"] / D["m00"]) * ratio) cy = int((m["m01"] / M["m00"]) * ratio) shape = sd. detect detect (r) r = r. as type ("float") R == ratio r = r. as type ("int") Cv. draw Contours (image, [r], -1, (0, 255, 0), , JGPT. All Rights Reserved 235

6 2) Cv. put Text (image, shape, shape (cx, cy), cv. FONT_HERSHEY_SIMPLEX, CV. I am show ("Image", image) Cv. waits Key (0) Looping will start over all of the individual shapes, to calculate the center of the contour for every one of them, followed by performing shape detection and labeling. The shapes selected from the resized image, it is needed to multiply the shapes and center (x, y)- coordinates by the resized ratio. These results will give the right (x, y) coordinates for both the shapes and centroid of the initial picture. Why Choosing Douglas-Peucker Algorithm The Ramer-Douglas Peucker algorithm is an algorithm for reducing the amount of vertices in a curve that is approaching by a set of points. It does so by "thinking" of a line between the front and end point in a set of details that form the curve. It examines which point in connecting is distant away from this line. The Douglas-Peucker algorithm uses a pointto-edge distance tolerance. The algorithm has a simple start, which follows joining the edges of vertices from first and the last. Then it calculates all the distances which have immediate vertices to the that particular edge. Specified tolerance is known when the vertex that is far away from the edge and that which has a computed distance, simplifies the References 1. Reumann K, Witkam APM (1974) Optimizing curve segmentation in computer graphics, in Proceedings of International Computing Symposium, , North Holland Publishing Company, Amsterdam. 2. Chrisman, Nicholas R (1983) Epsilon Filtering: A Technique for Automated Scale Changing, Technical Paper of43rd Annual ACSM Meetings, Washington D.C., Douglas David, H Thomas, K Peucker (1973) Algorithms for Reduction of the Number of Points Required Representing a Digitized Line or its Caricature. The Canadian Cartographer, 10(2): end result key to any simplification. This process helps for all the present simplification edges, till the vertices of all the original polyline are within the simplification lines. Conclusion There are several type of shape detection algorithms; each type of algorithm has its own advantages and limitation. Salient character or caricatures of a line are identified as central to the process of the generalization of the line. The caricatures produced by the Douglas-Peucker algorithm are believed to be the most successful. Shape preserving points on a line can be taken to choose the crucial with the help of the stated algorithm. However, majority of the researchers do not agree with the same thinking about the other methods. These techniques are considered to be suitable only for smallest simplification, and not for generalization, especially of complicated lines. Future Work Now, we know how to achieve shape detection by use python and Open CV. We leveraged contour approach, the method of reducing the amount of points on a curve to a simpler approximated version. Later, based on this shape similarity, we checked an amount of vertices each shape has. Released the vertex number, we were able to correctly label each of the shapes. Our future goal is to get deeper geometric understanding of robot localization. It is well known that shape detection, performs a primary role in human usual understanding. Our research shows that mapping tasks are also based on shape representation and shape matching. 4. Imai, Hiroshi, Masao Iri (1986) Computational Geometric Methods for Polygonal Approximations of a Curve, Computer Vision, Graphics, and Image Processing, 36: McMaster, Robert B, K Stuart Shea, (1992) Generalization in Digital Cartography, Washington, DC: Association of American Geographers. 6. Williams CM (1998) An Efficient Algorithm for the Piecewise Linear Approximation of a Polygonal Curves in the Plane, Computer Vision, Graphics, and Image Processing, Cromley Robert G (1991) Hierarchical Methods of Line Simplification, Cartography and , JGPT. All Rights Reserved 236

7 Geographic Information System, 18(2): Visvalingam M, Whyatt, J D (1990) " The Douglas-Peucker Algorithm for Line Simplification: Re- evaluation through Visualization", Computer Graphics Forum, 9 (3): Visvalingam M, Whyatt, J D (1991a) "Cartographic Algorithms: Problems of Implementation and Evaluation and the Impact of Digitizing Errors", Computer Graphics Forum, 10 (3) Visvalingam M, Whyatt, J D (1991b) " The Importance of Detailed Specification, Consistent Implementation and Rigorous Testing of Cartographic Software", in K. Rybaczuk and M. Blakemore (eds) Mapping The Nations vol 2, 15th Conference of Int. Cartographic Assoc. (September, Bournemouth), White, E R (1983) "Perceptual Evaluation of Line Generalization Algorithms, Unpublished Master s Thesis, University of Oklahoma. 12. Topfer R, Pillewizer W (1999) "The Principles of Selection, The Cartographic Journal, 3 (1): Robinson AH, Sale RD, Morrision JL, Muehrcke PC (1994) Elements of Cartography (Wiley & Sons, New York) 5th Edition. 14. Ramer U (1992) "An Iterative Procedure f) r the Polygonal Approximation of Plane Curves, Computer Graphics and Image Processing, 1: McMaster RB (1997) "Automated Line Generalization", Cartographical, 24 (2): Jenks, G F (1989) "Geographic Logic in Line Generalization, Cartographical, 26 (1): Lang T (1969) Rules for robot draughts men, The Geographical Magazine, 42: , JGPT. All Rights Reserved 237

LINE SIMPLIFICATION ALGORITHMS

LINE SIMPLIFICATION ALGORITHMS LINE SIMPLIFICATION ALGORITHMS Dr. George Taylor Work on the generalisation of cartographic line data, so that small scale map data can be derived from larger scales, has led to the development of algorithms

More information

A non-self-intersection Douglas-Peucker Algorithm

A non-self-intersection Douglas-Peucker Algorithm A non-self-intersection Douglas-Peucker Algorithm WU, SHIN -TING AND MERCEDES ROCÍO GONZALES MÁRQUEZ Image Computing Group (GCI) Department of Industrial Automation and Computer Engineering (DCA) School

More information

LINEAR-TIME SLEEVE-FITTING POLYLINE SIMPLIFICATION ALGORITHMS

LINEAR-TIME SLEEVE-FITTING POLYLINE SIMPLIFICATION ALGORITHMS LINEAR-TIME SLEEVE-FITTING POLYLINE SIMPLIFICATION ALGORITHMS Zhiyuan Zhao, Alan Saalfeld Department of Civil and Environmental Engineering and Geodetic Science The Ohio State University, Columbus, OH

More information

Partition and Conquer: Improving WEA-Based Coastline Generalisation. Sheng Zhou

Partition and Conquer: Improving WEA-Based Coastline Generalisation. Sheng Zhou Partition and Conquer: Improving WEA-Based Coastline Generalisation Sheng Zhou Research, Ordnance Survey Great Britain Adanac Drive, Southampton, SO16 0AS, UK Telephone: (+44) 23 8005 5000 Fax: (+44) 23

More information

Grade 6 Mathematics Item Specifications Florida Standards Assessments

Grade 6 Mathematics Item Specifications Florida Standards Assessments Content Standard MAFS.6.G Geometry MAFS.6.G.1 Solve real-world and mathematical problems involving area, surface area, and volume. Assessment Limits Calculator s Context A shape is shown. MAFS.6.G.1.1

More information

Contour Simplification with Defined Spatial Accuracy

Contour Simplification with Defined Spatial Accuracy Contour Simplification with Defined Spatial Accuracy Bulent Cetinkaya, Serdar Aslan, Yavuz Selim Sengun, O. Nuri Cobankaya, Dursun Er Ilgin General Command of Mapping, 06100 Cebeci, Ankara, Turkey bulent.cetinkaya@hgk.mil.tr

More information

A Distributed Approach to Fast Map Overlay

A Distributed Approach to Fast Map Overlay A Distributed Approach to Fast Map Overlay Peter Y. Wu Robert Morris University Abstract Map overlay is the core operation in many GIS applications. We briefly survey the different approaches, and describe

More information

Mathematics Curriculum

Mathematics Curriculum 6 G R A D E Mathematics Curriculum GRADE 6 5 Table of Contents 1... 1 Topic A: Area of Triangles, Quadrilaterals, and Polygons (6.G.A.1)... 11 Lesson 1: The Area of Parallelograms Through Rectangle Facts...

More information

Archdiocese of Washington Catholic Schools Academic Standards Mathematics

Archdiocese of Washington Catholic Schools Academic Standards Mathematics 5 th GRADE Archdiocese of Washington Catholic Schools Standard 1 - Number Sense Students compute with whole numbers*, decimals, and fractions and understand the relationship among decimals, fractions,

More information

MOVING A VERTEX. How must Kirsten move vertex A to be sure that the area of her new triangle is

MOVING A VERTEX. How must Kirsten move vertex A to be sure that the area of her new triangle is Activity 19 MOVING A VERTEX Kirsten draws the triangle below. A Kirsten decides to change the area of her triangle. She chooses vertex A and moves it to a new position. She keeps the other two vertices

More information

Answer Key: Three-Dimensional Cross Sections

Answer Key: Three-Dimensional Cross Sections Geometry A Unit Answer Key: Three-Dimensional Cross Sections Name Date Objectives In this lesson, you will: visualize three-dimensional objects from different perspectives be able to create a projection

More information

Lesson 21: Surface Area

Lesson 21: Surface Area Lesson 21: Surface Area Classwork Opening Exercise: Surface Area of a Right Rectangular Prism On the provided grid, draw a net representing the surfaces of the right rectangular prism (assume each grid

More information

A Method for Identifying Irregular Lattices of Hexagonal Tiles in Real-time

A Method for Identifying Irregular Lattices of Hexagonal Tiles in Real-time S. E. Ashley, R. Green, A Method for Identifying Irregular Lattices of Hexagonal Tiles in Real-Time, Proceedings of Image and Vision Computing New Zealand 2007, pp. 271 275, Hamilton, New Zealand, December

More information

GEOMETRY & INEQUALITIES. (1) State the Triangle Inequality. In addition, give an argument explaining why it should be true.

GEOMETRY & INEQUALITIES. (1) State the Triangle Inequality. In addition, give an argument explaining why it should be true. GEOMETRY & INEQUALITIES LAMC INTERMEDIATE GROUP - 2/23/14 The Triangle Inequality! (1) State the Triangle Inequality. In addition, give an argument explaining why it should be true. (2) Now we will prove

More information

5th Grade Mathematics Essential Standards

5th Grade Mathematics Essential Standards Standard 1 Number Sense (10-20% of ISTEP/Acuity) Students compute with whole numbers*, decimals, and fractions and understand the relationship among decimals, fractions, and percents. They understand the

More information

SOLIDS.

SOLIDS. SOLIDS Prisms Among the numerous objects we see around us, some have a regular shape while many others do not have a regular shape. Take, for example, a brick and a stone. A brick has a regular shape while

More information

11.1 Understanding Area

11.1 Understanding Area /6/05. Understanding rea Counting squares is neither the easiest or the best way to find the area of a region. Let s investigate how to find the areas of rectangles and squares Objective: fter studying

More information

Developer Brief. Time Series Simplification in kdb+: A Method for Dynamically Shrinking Big Data. Author:

Developer Brief. Time Series Simplification in kdb+: A Method for Dynamically Shrinking Big Data. Author: Developer Brief Time Series Simplification in kdb+: A Method for Dynamically Shrinking Big Data Author: Sean Keevey, who joined First Derivatives in 2011, is a kdb+ consultant and has developed data and

More information

A Massively Parallel Line Simplification Algorithm Implemented Using Chapel

A Massively Parallel Line Simplification Algorithm Implemented Using Chapel A Massively Parallel Line Simplification Algorithm Implemented Using Chapel Michael Scherger Department of Computer Science Texas Christian University Email: m.scherger@tcu.edu Huy Tran Department of Computing

More information

A NON-TRIGONOMETRIC, PSEUDO AREA PRESERVING, POLYLINE SMOOTHING ALGORITHM

A NON-TRIGONOMETRIC, PSEUDO AREA PRESERVING, POLYLINE SMOOTHING ALGORITHM A NON-TRIGONOMETRIC, PSEUDO AREA PRESERVING, POLYLINE SMOOTHING ALGORITHM Wayne Brown and Leemon Baird Department of Computer Science The United States Air Force Academy 2354 Fairchild Dr., Suite 6G- USAF

More information

STANDARDS OF LEARNING CONTENT REVIEW NOTES HONORS GEOMETRY. 3 rd Nine Weeks,

STANDARDS OF LEARNING CONTENT REVIEW NOTES HONORS GEOMETRY. 3 rd Nine Weeks, STANDARDS OF LEARNING CONTENT REVIEW NOTES HONORS GEOMETRY 3 rd Nine Weeks, 2016-2017 1 OVERVIEW Geometry Content Review Notes are designed by the High School Mathematics Steering Committee as a resource

More information

Name: Class: Date: 2. I have four vertices. I have four right angles and all my sides are the same length.

Name: Class: Date: 2. I have four vertices. I have four right angles and all my sides are the same length. 1. Circle the right triangles. Use the corner of a piece of paper to check. 2. I have four vertices. I have four right angles and all my sides are the same length. What am I? 3. I have four vertices. All

More information

Smoothing Via Iterative Averaging (SIA) A Basic Technique for Line Smoothing

Smoothing Via Iterative Averaging (SIA) A Basic Technique for Line Smoothing Smoothing Via Iterative Averaging (SIA) A Basic Technique for Line Smoothing Mohsen Mansouryar and Amin Hedayati, Member, IACSIT Abstract Line Smoothing is the process of curving lines to make them look

More information

Minimising Positional Errors in Line Simplification Using Adaptive Tolerance Values

Minimising Positional Errors in Line Simplification Using Adaptive Tolerance Values ISPRS SIPT IGU UCI CIG ACSG Table of contents Table des matières Authors index Index des auteurs Search Recherches Exit Sortir Minimising Positional Errors in Line Simplification Using Adaptive Tolerance

More information

Line Generalisation Algorithms Specific Theory

Line Generalisation Algorithms Specific Theory Line Generalisation Algorithms Specific Theory Digital Generalisation Digital generalisation can be defined as the process of deriving, from a data source, a symbolically or digitally-encoded cartographic

More information

TIMSS 2011 Fourth Grade Mathematics Item Descriptions developed during the TIMSS 2011 Benchmarking

TIMSS 2011 Fourth Grade Mathematics Item Descriptions developed during the TIMSS 2011 Benchmarking TIMSS 2011 Fourth Grade Mathematics Item Descriptions developed during the TIMSS 2011 Benchmarking Items at Low International Benchmark (400) M01_05 M05_01 M07_04 M08_01 M09_01 M13_01 Solves a word problem

More information

CONSISTENT LINE SIMPLIFICATION BASED ON CONSTRAINT POINTS

CONSISTENT LINE SIMPLIFICATION BASED ON CONSTRAINT POINTS CONSISTENT LINE SIMPLIFICATION BASED ON CONSTRAINT POINTS Shen Ying, Lin Li and Yuanyu Zhang School of Resource and Environment Science, Wuhan University, China, 430079. E-mail: senying@sina.com ABSTRACT

More information

EECS490: Digital Image Processing. Lecture #23

EECS490: Digital Image Processing. Lecture #23 Lecture #23 Motion segmentation & motion tracking Boundary tracking Chain codes Minimum perimeter polygons Signatures Motion Segmentation P k Accumulative Difference Image Positive ADI Negative ADI (ADI)

More information

6 Mathematics Curriculum

6 Mathematics Curriculum New York State Common Core 6 Mathematics Curriculum GRADE GRADE 6 MODULE 5 Table of Contents 1 Area, Surface Area, and Volume Problems... 3 Topic A: Area of Triangles, Quadrilaterals, and Polygons (6.G.A.1)...

More information

A "Quick and Dirty" Introduction to THE GEOMETER'S SKETCHPAD

A Quick and Dirty Introduction to THE GEOMETER'S SKETCHPAD A "Quick and Dirty" Introduction to the GEOMETER'S SKETCHPAD v. 4.0 Dynamic Geometry in the Mathematics Classroom _/_/_/ _/_/_/ _/_/ _/_/ Dr. _/ _/ _/ _/ Distinguished Teaching Professor _/_/_/ _/_/ _/

More information

Lesson Polygons

Lesson Polygons Lesson 4.1 - Polygons Obj.: classify polygons by their sides. classify quadrilaterals by their attributes. find the sum of the angle measures in a polygon. Decagon - A polygon with ten sides. Dodecagon

More information

On Realistic Line Simplification under Area Measure

On Realistic Line Simplification under Area Measure On Realistic Line Simplification under Area Measure Shervin Daneshpajouh Alireza Zarei Mohammad Ghodsi Abstract In this paper, we consider the well-known 2D line simplification problem under area measure.

More information

Performance Evaluation of Line Simplification Algorithms for Vector Generalization

Performance Evaluation of Line Simplification Algorithms for Vector Generalization The Cartographic Journal Vol. 43 No. 1 pp. 27 44 March 2006 # The British Cartographic Society 2006 REFEREED PAPER Performance Evaluation of Line Simplification Algorithms for Vector Generalization Wenzhong

More information

Computer Science 474 Spring 2010 Viewing Transformation

Computer Science 474 Spring 2010 Viewing Transformation Viewing Transformation Previous readings have described how to transform objects from one position and orientation to another. One application for such transformations is to create complex models from

More information

coding of various parts showing different features, the possibility of rotation or of hiding covering parts of the object's surface to gain an insight

coding of various parts showing different features, the possibility of rotation or of hiding covering parts of the object's surface to gain an insight Three-Dimensional Object Reconstruction from Layered Spatial Data Michael Dangl and Robert Sablatnig Vienna University of Technology, Institute of Computer Aided Automation, Pattern Recognition and Image

More information

Lecture 3: Some Strange Properties of Fractal Curves

Lecture 3: Some Strange Properties of Fractal Curves Lecture 3: Some Strange Properties of Fractal Curves I have been a stranger in a strange land. Exodus 2:22 1. Fractal Strangeness Fractals have a look and feel that is very different from ordinary curves.

More information

Unit 10 Study Guide: Plane Figures

Unit 10 Study Guide: Plane Figures Unit 10 Study Guide: Plane Figures *Be sure to watch all videos within each lesson* You can find geometric shapes in art. Whether determining the amount of leading or the amount of glass needed for a piece

More information

Line Simplification Using Self-Organizing Maps

Line Simplification Using Self-Organizing Maps Line Simplification Using Self-Organizing Maps Bin Jiang Division of Geomatics, Dept. of Technology and Built Environment, University of Gävle, Sweden. Byron Nakos School of Rural and Surveying Engineering,

More information

3RD GRADE COMMON CORE VOCABULARY M-Z

3RD GRADE COMMON CORE VOCABULARY M-Z o o o 3RD GRADE COMMON CORE VOCABULARY M-Z mass mass mass The amount of matter in an object. Usually measured by comparing with an object of known mass. While gravity influences weight, it does not affect

More information

UNIT 0 - MEASUREMENT AND GEOMETRY CONCEPTS AND RELATIONSHIPS

UNIT 0 - MEASUREMENT AND GEOMETRY CONCEPTS AND RELATIONSHIPS UNIT 0 - MEASUREMENT AND GEOMETRY CONCEPTS AND RELATIONSHIPS UNIT 0 - MEASUREMENT AND GEOMETRY CONCEPTS AND RELATIONSHIPS... 1 INTRODUCTION MATH IS LIKE A DATING SERVICE... 3 A FRAMEWORK FOR UNDERSTANDING

More information

NAME DATE PERIOD. Areas of Parallelograms and Triangles. Review Vocabulary Define parallelogram in your own words. (Lesson 6-2)

NAME DATE PERIOD. Areas of Parallelograms and Triangles. Review Vocabulary Define parallelogram in your own words. (Lesson 6-2) 11-1 Areas of Parallelograms and Triangles What You ll Learn Skim Lesson 11-1. Predict two things you expect to learn based on the headings and the Key Concept box. 1. Active Vocabulary 2. Review Vocabulary

More information

Grades 7 & 8, Math Circles 20/21/22 February, D Geometry Solutions

Grades 7 & 8, Math Circles 20/21/22 February, D Geometry Solutions Faculty of Mathematics Waterloo, Ontario NL 3G1 Centre for Education in Mathematics and Computing D Geometry Review Grades 7 & 8, Math Circles 0/1/ February, 018 3D Geometry Solutions Two-dimensional shapes

More information

Properties of a Circle Diagram Source:

Properties of a Circle Diagram Source: Properties of a Circle Diagram Source: http://www.ricksmath.com/circles.html Definitions: Circumference (c): The perimeter of a circle is called its circumference Diameter (d): Any straight line drawn

More information

Unit 1, Lesson 11: Polygons

Unit 1, Lesson 11: Polygons Unit 1, Lesson 11: Polygons Lesson Goals Understand and explain that one can find the area of any polygon by decomposing and rearranging it into rectangles and triangles. Understand the defining characteristics

More information

Geometry Regents Lomac Date 3/17 due 3/18 3D: Area and Dissection 9.1R. A point has no measure because a point represents a

Geometry Regents Lomac Date 3/17 due 3/18 3D: Area and Dissection 9.1R. A point has no measure because a point represents a Geometry Regents Lomac 2015-2016 Date 3/17 due 3/18 3D: Area and Dissection Name Per LO: I can define area, find area, and explain dissection it relates to area and volume. DO NOW On the back of this packet

More information

Lesson 1. Unit 2 Practice Problems. Problem 2. Problem 1. Solution 1, 4, 5. Solution. Problem 3

Lesson 1. Unit 2 Practice Problems. Problem 2. Problem 1. Solution 1, 4, 5. Solution. Problem 3 Unit 2 Practice Problems Lesson 1 Problem 1 Rectangle measures 12 cm by 3 cm. Rectangle is a scaled copy of Rectangle. Select all of the measurement pairs that could be the dimensions of Rectangle. 1.

More information

Polygons. Discuss with a partner what a POLYGON is. Write down the key qualities a POLYGON has. Share with the class what a polygon is?

Polygons. Discuss with a partner what a POLYGON is. Write down the key qualities a POLYGON has. Share with the class what a polygon is? Polygons Use a ruler to draw 3 different POLYGONS Discuss with a partner what a POLYGON is Write down the key qualities a POLYGON has Share with the class what a polygon is? *Can you find the area of each

More information

Modeling and Prototypes

Modeling and Prototypes Modeling and Prototypes 4.4.1 Unit 4, Lesson 4 Explanation The Unit Big Idea The Engineering Design process is a systematic, iterative problem solving method which produces solutions to meet human wants

More information

STANDARDS OF LEARNING CONTENT REVIEW NOTES GEOMETRY. 3 rd Nine Weeks,

STANDARDS OF LEARNING CONTENT REVIEW NOTES GEOMETRY. 3 rd Nine Weeks, STANDARDS OF LEARNING CONTENT REVIEW NOTES GEOMETRY 3 rd Nine Weeks, 2016-2017 1 OVERVIEW Geometry Content Review Notes are designed by the High School Mathematics Steering Committee as a resource for

More information

"Unpacking the Standards" 4th Grade Student Friendly "I Can" Statements I Can Statements I can explain why, when and how I got my answer.

Unpacking the Standards 4th Grade Student Friendly I Can Statements I Can Statements I can explain why, when and how I got my answer. 0406.1.1 4th Grade I can explain why, when and how I got my answer. 0406.1.2 I can identify the range of an appropriate estimate. I can identify the range of over-estimates. I can identify the range of

More information

MPM 1D Learning Goals and Success Criteria ver1 Sept. 1, Learning Goal I will be able to: Success Criteria I can:

MPM 1D Learning Goals and Success Criteria ver1 Sept. 1, Learning Goal I will be able to: Success Criteria I can: MPM 1D s and ver1 Sept. 1, 2015 Strand: Number Sense and Algebra (NA) By the end of this course, students will be able to: NA1 Demonstrate an understanding of the exponent rules of multiplication and division,

More information

10 Perimeter and Area

10 Perimeter and Area CHAPTER 10 Perimeter and Area Chapter Outline 10.1 TRIANGLES AND PARALLELOGRAMS 10.2 TRAPEZOIDS, RHOMBI, AND KITES 10.3 AREAS OF SIMILAR POLYGONS 10.4 CIRCUMFERENCE AND ARC LENGTH 10.5 AREAS OF CIRCLES

More information

The National Strategies Secondary Mathematics exemplification: Y8, 9

The National Strategies Secondary Mathematics exemplification: Y8, 9 Mathematics exemplification: Y8, 9 183 As outcomes, Year 8 pupils should, for example: Understand a proof that the sum of the angles of a triangle is 180 and of a quadrilateral is 360, and that the exterior

More information

2D rendering takes a photo of the 2D scene with a virtual camera that selects an axis aligned rectangle from the scene. The photograph is placed into

2D rendering takes a photo of the 2D scene with a virtual camera that selects an axis aligned rectangle from the scene. The photograph is placed into 2D rendering takes a photo of the 2D scene with a virtual camera that selects an axis aligned rectangle from the scene. The photograph is placed into the viewport of the current application window. A pixel

More information

AN INNOVATIVE ANALYSIS TO DEVELOP NEW THEOREMS ON IRREGULAR POLYGON

AN INNOVATIVE ANALYSIS TO DEVELOP NEW THEOREMS ON IRREGULAR POLYGON International Journal of Physics and Mathematical Sciences ISSN: 77-111 (Online) 013 Vol. 3 (1) January-March, pp.73-81/kalaimaran AN INNOVATIVE ANALYSIS TO DEVELOP NEW THEOREMS ON IRREGULAR POLYGON *Kalaimaran

More information

Grades 7 & 8, Math Circles 20/21/22 February, D Geometry

Grades 7 & 8, Math Circles 20/21/22 February, D Geometry Faculty of Mathematics Waterloo, Ontario N2L 3G1 Centre for Education in Mathematics and Computing 2D Geometry Review Grades 7 & 8, Math Circles 20/21/22 February, 2018 3D Geometry Two-dimensional shapes

More information

Unit Lesson Plan: Measuring Length and Area: Area of shapes

Unit Lesson Plan: Measuring Length and Area: Area of shapes Unit Lesson Plan: Measuring Length and Area: Area of shapes Day 1: Area of Square, Rectangles, and Parallelograms Day 2: Area of Triangles Trapezoids, Rhombuses, and Kites Day 3: Quiz over Area of those

More information

Figuring Areas. Instructions. Name Date

Figuring Areas. Instructions. Name Date Name Date A C T I V I T Y 8 Instructions Figuring Areas 1. Press to turn on the Voyage 200 PLT. To reset to the default settings, press e, select 1:RAM, select 2:Default, and press šš. 2. To begin a geometry

More information

Picture Maze Generation by Repeated Contour Connection and Graph Structure of Maze

Picture Maze Generation by Repeated Contour Connection and Graph Structure of Maze Computer Science and Engineering 2013, 3(3): 76-83 DOI: 10.5923/j.computer.20130303.04 Picture Maze Generation by Repeated Contour Connection and Graph Structure of Maze Tomio Kurokawa Department of Information

More information

6th Grade ~ Conceptual Foundations for Unit of Study 8 Geometry DRAFT 6/30/11 Geometry (Spatial Sense & Reasoning) 1. Shapes, Solids and Properties

6th Grade ~ Conceptual Foundations for Unit of Study 8 Geometry DRAFT 6/30/11 Geometry (Spatial Sense & Reasoning) 1. Shapes, Solids and Properties Geometry is the only CCSSM Domain that consistently appears in every grade level K-12. At all grade levels, geometry content goals can be summarized into four main geometric ideas: 1. Shapes, Solids and

More information

Dulwich College. SAMPLE PAPER Mathematics

Dulwich College. SAMPLE PAPER Mathematics 1+ Dulwich College YEAR 9 ENTRANCE AND SCHOLARSHIP EXAMINATION SAMPLE PAPER Mathematics 1 HOUR 0 MINUTES Use a calculator where appropriate. Answer all the questions. Show all your working. Marks for parts

More information

A Method of Measuring Shape Similarity between multi-scale objects

A Method of Measuring Shape Similarity between multi-scale objects A Method of Measuring Shape Similarity between multi-scale objects Peng Dongliang, Deng Min Department of Geo-informatics, Central South University, Changsha, 410083, China Email: pengdlzn@163.com; dengmin028@yahoo.com

More information

1: #1 4, ACE 2: #4, 22. ACER 3: #4 6, 13, 19. ACE 4: #15, 25, 32. ACE 5: #5 7, 10. ACE

1: #1 4, ACE 2: #4, 22. ACER 3: #4 6, 13, 19. ACE 4: #15, 25, 32. ACE 5: #5 7, 10. ACE Homework Answers from ACE: Filling and Wrapping ACE Investigation 1: #1 4, 10 13. ACE Investigation : #4,. ACER Investigation 3: #4 6, 13, 19. ACE Investigation 4: #15, 5, 3. ACE Investigation 5: #5 7,

More information

UNIT PLAN. Big Idea/Theme: Polygons can be identified, classified, and described.

UNIT PLAN. Big Idea/Theme: Polygons can be identified, classified, and described. UNIT PLAN Grade Level: 5 Unit #: 11 Unit Name Geometry Polygons Time: 15 lessons, 18 days Big Idea/Theme: Polygons can be identified, classified, and described. Culminating Assessment: (requirements of

More information

Fixed Perimeter Rectangles Geometry Creating a Document

Fixed Perimeter Rectangles Geometry Creating a Document Activity Overview: This activity provides the steps to create a TI-Nspire document that will be used to investigate side length and area in a rectangle with a fixed perimeter. An algebraic approach is

More information

Exploring Triangles. We can name triangles by the number of equal sides.

Exploring Triangles. We can name triangles by the number of equal sides. UNIT 6 1 STUDENT BOOK Exploring Triangles LESSO N Quick Review At At Home Sc h o o l We can name triangles by the number of equal sides. An equilateral triangle has 3 equal sides. It has three 60 angles.

More information

3D TERRAIN SKELETON APPROXIMATION FROM CONTOURS

3D TERRAIN SKELETON APPROXIMATION FROM CONTOURS 3D TERRAIN SKELETON APPROXIMATION FROM CONTOURS K. Matuk, C.M. Gold, Z. Li The Department of Land Surveying & Geo-Informatics, The Hong Kong Polytechnic University, Hong Kong. (krzysiek.matuk,lszlli)@polyu.edu.hk

More information

Covering & Surrounding

Covering & Surrounding Covering & Surrounding Two-Dimensional Measurement and Three-Dimensional Measurement Name: Hour: Table of Contents Investigation 1 Investigation 1.1 page 3 Investigation 1.2 page 7 Investigation 1.3 page

More information

EE368 Project: Visual Code Marker Detection

EE368 Project: Visual Code Marker Detection EE368 Project: Visual Code Marker Detection Kahye Song Group Number: 42 Email: kahye@stanford.edu Abstract A visual marker detection algorithm has been implemented and tested with twelve training images.

More information

Measurement and Geometry (M&G3)

Measurement and Geometry (M&G3) MPM1DE Measurement and Geometry (M&G3) Please do not write in this package. Record your answers to the questions on lined paper. Make notes on new definitions such as midpoint, median, midsegment and any

More information

The Geometry of Solids

The Geometry of Solids CONDENSED LESSON 10.1 The Geometry of Solids In this lesson you will Learn about polyhedrons, including prisms and pyramids Learn about solids with curved surfaces, including cylinders, cones, and spheres

More information

Analytical and Computer Cartography Winter Lecture 11: Generalization and Structure-to-Structure Transformations

Analytical and Computer Cartography Winter Lecture 11: Generalization and Structure-to-Structure Transformations Analytical and Computer Cartography Winter 2017 Lecture 11: Generalization and Structure-to-Structure Transformations Generalization Transformations Conversion of data collected at higher resolutions to

More information

Extra Practice 1. Name Date. Lesson 1: Exploring Triangles

Extra Practice 1. Name Date. Lesson 1: Exploring Triangles Master 6.36 Extra Practice 1 Lesson 1: Exploring Triangles 1. Draw 3 different triangles. Measure and label the side lengths. Name each triangle as equilateral, isosceles, or scalene. 2. Name each triangle

More information

A Real Time GIS Approximation Approach for Multiphase Spatial Query Processing Using Hierarchical-Partitioned-Indexing Technique

A Real Time GIS Approximation Approach for Multiphase Spatial Query Processing Using Hierarchical-Partitioned-Indexing Technique International Journal of Scientific Research in Computer Science, Engineering and Information Technology 2017 IJSRCSEIT Volume 2 Issue 6 ISSN : 2456-3307 A Real Time GIS Approximation Approach for Multiphase

More information

Let s start with occluding contours (or interior and exterior silhouettes), and look at image-space algorithms. A very simple technique is to render

Let s start with occluding contours (or interior and exterior silhouettes), and look at image-space algorithms. A very simple technique is to render 1 There are two major classes of algorithms for extracting most kinds of lines from 3D meshes. First, there are image-space algorithms that render something (such as a depth map or cosine-shaded model),

More information

Aim: How do we find the volume of a figure with a given base? Get Ready: The region R is bounded by the curves. y = x 2 + 1

Aim: How do we find the volume of a figure with a given base? Get Ready: The region R is bounded by the curves. y = x 2 + 1 Get Ready: The region R is bounded by the curves y = x 2 + 1 y = x + 3. a. Find the area of region R. b. The region R is revolved around the horizontal line y = 1. Find the volume of the solid formed.

More information

Number/Computation. addend Any number being added. digit Any one of the ten symbols: 0, 1, 2, 3, 4, 5, 6, 7, 8, or 9

Number/Computation. addend Any number being added. digit Any one of the ten symbols: 0, 1, 2, 3, 4, 5, 6, 7, 8, or 9 14 Number/Computation addend Any number being added algorithm A step-by-step method for computing array A picture that shows a number of items arranged in rows and columns to form a rectangle associative

More information

Assignment 3: Edge Detection

Assignment 3: Edge Detection Assignment 3: Edge Detection - EE Affiliate I. INTRODUCTION This assignment looks at different techniques of detecting edges in an image. Edge detection is a fundamental tool in computer vision to analyse

More information

Solving Word Jumbles

Solving Word Jumbles Solving Word Jumbles Debabrata Sengupta, Abhishek Sharma Department of Electrical Engineering, Stanford University { dsgupta, abhisheksharma }@stanford.edu Abstract In this report we propose an algorithm

More information

Ohio Tutorials are designed specifically for the Ohio Learning Standards to prepare students for the Ohio State Tests and end-ofcourse

Ohio Tutorials are designed specifically for the Ohio Learning Standards to prepare students for the Ohio State Tests and end-ofcourse Tutorial Outline Ohio Tutorials are designed specifically for the Ohio Learning Standards to prepare students for the Ohio State Tests and end-ofcourse exams. Math Tutorials offer targeted instruction,

More information

CHAPTER 3 SMOOTHING. Godfried Toussaint. (x). Mathematically we can define g w

CHAPTER 3 SMOOTHING. Godfried Toussaint. (x). Mathematically we can define g w CHAPTER 3 SMOOTHING Godfried Toussaint ABSTRACT This chapter introduces the basic ideas behind smoothing images. We begin with regularization of one dimensional functions. For two dimensional images we

More information

Ray Tracer I: Ray Casting Due date: 12:00pm December 3, 2001

Ray Tracer I: Ray Casting Due date: 12:00pm December 3, 2001 Computer graphics Assignment 5 1 Overview Ray Tracer I: Ray Casting Due date: 12:00pm December 3, 2001 In this assignment you will implement the camera and several primitive objects for a ray tracer. We

More information

1.6 Classifying Polygons

1.6 Classifying Polygons www.ck12.org Chapter 1. Basics of Geometry 1.6 Classifying Polygons Learning Objectives Define triangle and polygon. Classify triangles by their sides and angles. Understand the difference between convex

More information

Getting Ready to Teach Unit 6

Getting Ready to Teach Unit 6 Getting Ready to Teach Unit 6 Learning Path in the Common Core Standards In this unit, students study the attributes of triangles, quadrilaterals, and other polygons. They find perimeter and area of various

More information

Compressing 2-D Shapes using Concavity Trees

Compressing 2-D Shapes using Concavity Trees Compressing 2-D Shapes using Concavity Trees O. El Badawy 1 and M. S. Kamel 2 1 Dept. of Systems Design Engineering. 2 Dept. of Electrical and Computer Engineering. Pattern Analysis and Machine Intelligence

More information

Polygons. Discuss with a partner what a POLYGON is. Write down the key qualities a POLYGON has. Share with the class what a polygon is?

Polygons. Discuss with a partner what a POLYGON is. Write down the key qualities a POLYGON has. Share with the class what a polygon is? Polygons Use a ruler to draw 3 different POLYGONS Discuss with a partner what a POLYGON is Write down the key qualities a POLYGON has Share with the class what a polygon is? *Can you find the area of each

More information

CARDSTOCK MODELING Math Manipulative Kit. Student Activity Book

CARDSTOCK MODELING Math Manipulative Kit. Student Activity Book CARDSTOCK MODELING Math Manipulative Kit Student Activity Book TABLE OF CONTENTS Activity Sheet for L.E. #1 - Getting Started...3-4 Activity Sheet for L.E. #2 - Squares and Cubes (Hexahedrons)...5-8 Activity

More information

State if each pair of triangles is similar. If so, state how you know they are similar (AA, SAS, SSS) and complete the similarity statement.

State if each pair of triangles is similar. If so, state how you know they are similar (AA, SAS, SSS) and complete the similarity statement. Geometry 1-2 est #7 Review Name Date Period State if each pair of triangles is similar. If so, state how you know they are similar (AA, SAS, SSS) and complete the similarity statement. 1) Q R 2) V F H

More information

CREATING DESMOS ETOOLS

CREATING DESMOS ETOOLS CREATING DESMOS ETOOLS Table of Contents Using Desmos... 3 Creating & Using a Desmos Account (Top Black Bar)... 4 Domain/Range & Axis Labels & Zoom: (Right side Icons)... 6 Adding Items in the List Tray:

More information

Puzzle page. Mathematical Misfits three dimensional. Dual polygons. Puzzle page

Puzzle page. Mathematical Misfits three dimensional. Dual polygons. Puzzle page 1997 2009, Millennium Mathematics Project, University of Cambridge. Permission is granted to print and copy this page on paper for non commercial use. For other uses, including electronic redistribution,

More information

Computational Geometry

Computational Geometry Lecture 1: Introduction and convex hulls Geometry: points, lines,... Geometric objects Geometric relations Combinatorial complexity Computational geometry Plane (two-dimensional), R 2 Space (three-dimensional),

More information

Measuring Triangles. 1 cm 2. 1 cm. 1 cm

Measuring Triangles. 1 cm 2. 1 cm. 1 cm 3 Measuring Triangles You can find the area of a figure by drawing it on a grid (or covering it with a transparent grid) and counting squares, but this can be very time consuming. In Investigation 1, you

More information

SPRINGBOARD UNIT 5 GEOMETRY

SPRINGBOARD UNIT 5 GEOMETRY SPRINGBOARD UNIT 5 GEOMETRY 5.1 Area and Perimeter Perimeter the distance around an object. To find perimeter, add all sides. Area the amount of space inside a 2 dimensional object. Measurements for area

More information

Using data reduction to improve the transmission and rendering. performance of SVG maps over the Internet

Using data reduction to improve the transmission and rendering. performance of SVG maps over the Internet Using data reduction to improve the transmission and rendering performance of SVG maps over the Internet Haosheng Huang 1 and Yan Li 2 1 Institute of Geoinformation and Cartography, Vienna University of

More information

Geometry 10 and 11 Notes

Geometry 10 and 11 Notes Geometry 10 and 11 Notes Area and Volume Name Per Date 10.1 Area is the amount of space inside of a two dimensional object. When working with irregular shapes, we can find its area by breaking it up into

More information

ACT Math test Plane Geometry Review

ACT Math test Plane Geometry Review Plane geometry problems account for 14 questions on the ACT Math Test that s almost a quarter of the questions on the Subject Test. If you ve taken high school geometry, you ve probably covered all of

More information

Boundary Simplification in Slide 5.0 and Phase 2 7.0

Boundary Simplification in Slide 5.0 and Phase 2 7.0 Boundary Simplification in Slide 5.0 and Phase 2 7.0 Often geometry for a two dimensional slope stability or finite element analysis is taken from a slice through a geological model. The resulting two

More information

Unit 4 End-of-Unit Assessment Study Guide

Unit 4 End-of-Unit Assessment Study Guide Circles Unit 4 End-of-Unit Assessment Study Guide Definitions Radius (r) = distance from the center of a circle to the circle s edge Diameter (d) = distance across a circle, from edge to edge, through

More information

Geometry ~ Chapter 1 Capacity Matrix

Geometry ~ Chapter 1 Capacity Matrix Geometry ~ Chapter 1 Capacity Matrix Learning Targets 1. Drawing and labeling the Geometry Vocabulary 2. Using the distance and midpoint formula 3. Classifying triangles and polygons Section Required Assignments

More information

A plane that is to the base of the figure will create a cross section that is the same shape as the base.

A plane that is to the base of the figure will create a cross section that is the same shape as the base. Objective: 9.1 3 Notes: Surface Area of Solids Name Cross Sections: A cuts through a solid figure to create a cross section. Depending on the way in which the plane cuts through the figure will determine

More information