Separation of Overlapping Text from Graphics

Size: px
Start display at page:

Download "Separation of Overlapping Text from Graphics"

Transcription

1 Separation of Overlapping Text from Graphics Ruini Cao, Chew Lim Tan School of Computing, National University of Singapore 3 Science Drive 2, Singapore {caorn, tancl}@comp.nus.edu.sg Abstract The separation of overlapping text from graphics is a challenging problem in document image analysis. This paper proposes a specific method for detecting and extracting characters that are touching graphics. It is based on the observation that the constituent strokes of characters are usually short segments in comparison with those of graphics. It combines line continuation with the feature line width to decompose and reconstruct segments underlying the region of intersection. Experimental results showed that the proposed method improved the percentage of correctly detected text as well as the accuracy of character recognition significantly. 1. Introduction The separation of overlapping text from graphics is a challenging problem in document image analysis [1-2]. This problem is found in many applications, including forms processing, maps interpretation and engineering drawings interpretation, where text and graphics are processed in fundamentally different ways. Fletcher and Kasturi [3] developed an algorithm for text string separation from mixed text/graphics image. Taking account of curving labeled road names in the map, Tan and Ng [4] developed a system using the pyramid to extract text strings. Both methods, however, assume that the text does not touch or overlap with graphics. In forms processing, the problem of overlapping text has been dealt with reasonably well [5-8]. The reason is that forms contain only straight lines and the problem is much simplified. However, for engineer drawings [9-11], especially maps [12], the problem is much more complex since there are more types of data, various types of lines, possible curvature and even branching of graphics. The segmentation of overlapping text and graphics is in fact a chicken-and-egg problem. On the one hand, the purpose of segmentation is character recognition. On the other hand, correct segmentation may require the recognition of the characters. A recent paper [13] presented a method for cooperative processing of text and line-art in topographic maps and gave promising experimental results. Yet, the method assumed that all the text should be detected and grouped prior to segmentation. The method as well as some other methods in the literature searched for graphics-connected characters in the neighboring areas of detected isolated characters. In this paper, we present an improved method for detecting, extracting and grouping characters, including characters connected to graphics. The improvement is in that it can detect the strings whose constituent characters are all connected to graphics without the risk of introducing too many false alarms. The damages to the text image are also reduced by appropriate reconstruction of the strokes at the intersections. 2. The proposed method 2.1. Preprocessing and initial classification The preprocessing includes sub-layer separation, solid graphical components removal and dashed lines removal. We extract the black layer in the following way: if the r, g, b values of one pixel are all less than a predefined threshold, then the pixel is considered black. The solid graphical components are removed by a morphological method [9]. Dashed lines are removed by detecting repeated bars with similar orientation and size [18]. After the preprocessing, we perform initial classification as described in [4]. In summary, connected components are generated first. Then, we use a size filter to roughly classify the components into text and graphics. Large components are identified as graphics and small components as text. Then, we get the minimum size S min and the maximum size S max of the text components to be used as refined size filters in the subsequent steps Detection and reconstruction of touching characters In the initial classification, text connected to graphics will be incorrectly classified as graphics since the touching text and graphics form a whole large connected component. We need to further search the graphics image

2 for these touching characters. It is observed that constituent strokes of characters are usually small in comparison with those of graphics. Therefore, so long as we can decompose the graphics image with touching characters into appropriate segments in such a way that each segment is either a textual stroke or a graphical line, we can then use a size filter to separate them from each other. We perform the decomposition process after thinning [16] since intersection points can be easily detected in the thinned graphics image. Intersection points are found at pixel locations where there are 3 or more neighbors. We first break the graphics image into small segments at the intersection points and then merge those segments that connected to the same junction by line continuation based on similar slopes of the adjoining segments within a thresholded difference. The slope of each segment is estimated by line fitting [17]. After decomposition, we use the size filters obtained in the initial classification to separate textual strokes from graphical segments. We extract all the segments less than S max and together with the intersection for which at least one segment connected to it has been restored. Then, we generate new connected components from the resultant image and remove those components smaller than S min with some tolerance. Figure 1 gives one example. CENTRAL CAVENAGH (d) Figure 1. Detection of touching characters: the original image; the thinned graphics image with intersection points grayed; combination of isolated characters with touching characters; (d) OCR results Removal of large graphical segments may damage the touching characters in the overlapping area. The reason is that some parts of removed segments possibly belong to both graphics and text. The damages may affect the OCR results severely. Figure 2 gives such an example. We can see the damaged touching character E is mis-recognized as F, and L is mis-recognized as I. To achieve better recognition results, we should restore the damaged characters. KFNG IFF RD KG JAVA Figure 2. Detection of touching characters: the original binary image; detected constituent strokes of touching characters; part of OCR results It is observed that the line is usually thicker in the overlapping part (Figure 2a). To reconstruct the damaged characters, we can restore the thicker parts of the removed segments. We choose the average width of the longest line segment in the image as the threshold. First, we pick the longest line segment in the thinned graphics image and represent it as a series of pixels: {P 1 (x 1, y 1 ), P 2 (x 2, y 2 ),, P n (x n,y n )}, where P i-1, P i+1 are the two neighbors of P i, and P 1, P n are endpoints. The line normal direction, which is perpendicular to the line slope direction, at pixel P i (x i, y i ) can be estimated as the cross product of the left 1-slope and the right 1-slope of this pixel: Ni = ( pi 1 pi ) ( pi + 1 pi ) (1) The line width W i is roughly the distance between the two boundary points along the normal direction in the original image (Figure 3). For each pixel at the removed segments, if the line width at this pixel is larger than the average line width, then add it onto the text image. Figure 4 shows the reconstructed touching characters of Figure Characters clustering We assume that the gap between (denoted as T w ) is larger than the gaps within (denoted as T c ). We perform a dilation operation on the character images with a square structuring element larger than T c and smaller than T w. The characters of each word will form a connected component in this way. The coarse text-box can be drawn by finding the top, bottom, leftmost and rightmost side of each component in the resultant image. This clustering method is efficient in comparison with the Hough Transformation based method in [3]. It also has

3 the advantage of the method in [4], that is, it can group curving labeled road names. One disadvantage is that it may group two that are too close incorrectly if the assumption given at the beginning of this sub-section is violated. W i P i-1 - P i N i Figure 3. Estimation of line normal direction and line width at each pixel, here P i-1, P i, and P i+1 are on the thinned line segments, W i is calculated on the thick line images KENG LEE RD KG JAVA Figure 4. The reconstructed touching characters (thinned) with isolated characters (thick); part of OCR results 3. Experiments and discussions P i+1 - P i We scanned 24 large maps at 300dpi and saved them in raw TIFF format. We cut out the neighboring area of touching text and obtained about 137 small images for the experiments. Table 1 shows the statistic data of the testing images. We can see that the touching of and graphics was serious (touching : 39.7%; totally touching : 6.9%). Here totally touching means all the characters within the word are connected to graphics. Table 1. Statistic Data of the Testing Images Touching Totally touching Total # of # % # % Total # of Touching characters characters # % The well-known IR standard measures, precision and recall, were used to measure the performance of the proposed method. Precision and recall are defined as follows: Precision = # of correctly detected / # of detected, Recall = # of correctly detected / # of in the image. If all the constituent characters of a word are detected, then the word is considered as correctly detected. Table 2 shows the experimental results of the proposed method. The results from initial classification are also shown to give some comparison. As we can see in Table 2, the proposed method detected almost all of the text in the test images. It improved the recall greatly (60.3% to 99.4%). At the same time, it did not decrease the precision (87.5% to 87.1%). The increase of false alarms was mainly due to small bars connected to graphics, some of which were dashed lines and some road line segments isolated by occlusion. Figure 5a shows part of the detection results for one of the large map images. Detected are shown within their bounding boxes. Figure 5b shows the corresponding extracted text image. Table 2. Text Detection Evaluation # of # of correctly false Precision detected alarms Recall Before % 60.3% After % 99.4% The extracted were also tested using an OCR system. The OCR system we used was the commercial system bundled with the HP scanner. The system can only recognize upright characters. Therefore, we rotated the characters into upright position before we conducted OCR experiments. Table 3 shows the testing results. As we can see, the recognition accuracy of both isolated characters and touching characters improved significantly after text extraction (71.7% to 94.3%, 30.2% to 64.8% respectively). Though our segmentation method only restores the touching characters and has no effect on the isolated characters, the recognition of the restored touching characters may have provided context information to the OCR system to improve the recognition of the nearby isolated characters. There are several difficult cases for recognizing touching text. As we explained earlier, the proposed method merges line segments at the intersections by line continuation. However, the outlines of the buildings are usually polygon contours. Therefore, when text touches these outlines at the adjoining points, the line segments may not be merged correctly. As a result, there are still some short graphical segments remaining within the text boxes. These segments usually cause confusion. Besides, some strokes of touching characters and lines coincide perfectly. The touching parts have the same line width as

4 the free lines. In this case, the touching parts of the characters cannot be restored. This also results in failure of recognition of the touching characters. Figure 6 shows two of such unsuccessful examples. Table 3. Text Extraction Evaluation by OCR Accuracy of Accuracy of Average Isolated Touching Accuracy Characters Characters Before 71.7% 30.2% 54.7% After 94.3% 64.8% 82.2% 4. Conclusions and future work A method of detecting and extracting text connected to graphics has been proposed in this paper. The proposed method combines line continuation with line width to interpret connection of text and graphics. Experiments showed that the proposed method improved the percentage of correctly detected text as well as the accuracy of OCR significantly. The commercial OCR system we used can only recognize upright characters, whereas, the road names can be in any orientation. Further, the characters within one word can also be in different orientations. Therefore, when we did the experiments, we rotated the characters into upright positions manually. In the near future, we hope to develop a method to rotate the characters upright automatically. The accuracy of recognizing touching text is still far too low to be usable. The integration of segmentation and recognition may be one promising approach to separate the touching characters completely from graphics. 5. References [1] G. Nagy, Twenty years of document image analysis in PAMI, IEEE Transactions on Pattern Analysis and Machine Intelligence, Vol. 22, No. 1, pp , January 2000 [2] D. S. Doermann, An introduction to vectorization and segmentation, in Graphics Recognition: Algorithms and Systems, K. Tombre and A. K. Chhabra (eds.), Lecture Notes in Computer Science 1389, Springer, pp. 1 8, 1998 [3] L. A. Fletcher and R. Kasturi, A robust algorithm for text string separation from mixed text/graphics images, IEEE Transactions on Pattern Analysis and Machine Intelligence, Vol. 10, No. 6, pp , November 1988 [4] C. L. Tan and P. O. Ng, Text extraction using pyramid, Pattern Recognition, Vol. 31, No. 1, pp , 1998 [5] D. Wang and S. N. Srihari, Analysis of form images, in Document Image Analysis, H. Bunke, P. S. P. Wang, H. Baird (eds.), World Scientific, pp , 1994 [6] S. Naoi, Y. Hotta, M. Yabuki, and A. Asakawa, Global interpolation in the segmentation of handwritten characters overlapping a border, Proceeding of 1st IEEE International Conference on Image Processing, pp , 1994 [7] J. Yoo, M. Kim, S. Y. Han, and Y. Kwon, Line removal and restoration of handwritten characters on the form documents, Proceeding of 4th International Conference on Document Analysis and Recognition, pp , 1997 [8] K. Lee, H. Byun, and Y. Lee, Robust reconstruction of damaged character images on the form documents. In Graphics Recognition: Algorithms and Systems, K. Tombre and A. K. Chhabra (eds.), Lecture Notes in Computer Science 1389, Springer, pp , 1998 [9] R. Kasturi, S. T. Bow, W. El-Masri, J. Shah, J. R. Gattiker, and U. B. Mokate, A system for interpretation of line drawings, IEEE Transactions on Pattern Analysis and Machine Intelligence, Vol. 12, No. 10, pp , October 1990 [10] D. Dori and Liu W., Vector-based segmentation of text connected to graphics in engineering drawings, in Advances in Structural and Syntactical Pattern Recognition, P. Perner, P. Wang, A. Rosenfeld (eds.), Springer, pp , 1996 [11] Z. Lu, Detection of text regions from digital engineering drawings, IEEE Transactions on Pattern Analysis and Machine Intelligence, Vol. 20, No. 4, pp , April 1998 [12] H. Luo, G. Agam, and I. Dinstein, Directional mathematical morphology approach for line thinning and extraction of character strings from maps and line drawings, Proceeding of 3rd International Conference on Document Analysis and Recognition, pp , 1995 [13] L. Li, G. Nagy, A. Samal, S. Seth, Y. Xu, Cooperative text and line-art extraction from a topographic map, Proceedings of 5th International Conference on Document Analysis and Recognition, pp , 1999 [14] D. Dori, Liu W. and M. Peleg, How to win a dashed line detection contest, in Graphics Recognition: methods and Applications, R. Kasturi and K. Tombre (eds.), Lecture Notes in Computer Science 1072, Springer, pp , 1996 [15] R. Jain, R. Kasturi, and B. G. Schunck, Machine Vision, MIT Press and McGraw-Hill, 1995 [16] B. K. Jang and R. T. Chin, One-Pass Parallel Thinning: Analysis, Properties, and Quantitative Evaluation, IEEE Transactions on Pattern Analysis and Machine Intelligence, Vol. 14, No. 11, pp , November 1992 [17] T. Pavlidis, Algorithms for graphics and image processing, Computer Science Press, 1982 [18] R. Cao and C. L. Tan, Text/graphics separation in maps, Proceedings of 4th IAPR International Workshop on Graphics Recognition, Ontario, Canada, September 2001

5 Figure 5. Part of for one of the large map images: text detection results; text extraction results ITE BaLestier tcampus 1) f4nder iedevatopryentu AVFNIlF Figure 6. Some unsuccessful examples of OCR: the original images; the extracted text images; the OCR results

A System to Retrieve Text/Symbols from Color Maps using Connected Component and Skeleton Analysis

A System to Retrieve Text/Symbols from Color Maps using Connected Component and Skeleton Analysis A System to Retrieve Text/Symbols from Color Maps using Connected Component and Skeleton Analysis Partha Pratim Roy 1, Eduard Vazquez 1, Josep Lladós 1, Ramon Baldrich 1, and Umapada Pal 2 1 Computer Vision

More information

Recognition-based Segmentation of Nom Characters from Body Text Regions of Stele Images Using Area Voronoi Diagram

Recognition-based Segmentation of Nom Characters from Body Text Regions of Stele Images Using Area Voronoi Diagram Author manuscript, published in "International Conference on Computer Analysis of Images and Patterns - CAIP'2009 5702 (2009) 205-212" DOI : 10.1007/978-3-642-03767-2 Recognition-based Segmentation of

More information

Text Separation from Graphics by Analyzing Stroke Width Variety in Persian City Maps

Text Separation from Graphics by Analyzing Stroke Width Variety in Persian City Maps Text Separation from Graphics by Analyzing Stroke Width Variety in Persian City Maps Ali Ghafari-Beranghar Department of Computer Engineering, Science and Research Branch, Islamic Azad University, Tehran,

More information

Extracting Layers and Recognizing Features for Automatic Map Understanding. Yao-Yi Chiang

Extracting Layers and Recognizing Features for Automatic Map Understanding. Yao-Yi Chiang Extracting Layers and Recognizing Features for Automatic Map Understanding Yao-Yi Chiang 0 Outline Introduction/ Problem Motivation Map Processing Overview Map Decomposition Feature Recognition Discussion

More information

A Model-based Line Detection Algorithm in Documents

A Model-based Line Detection Algorithm in Documents A Model-based Line Detection Algorithm in Documents Yefeng Zheng, Huiping Li, David Doermann Laboratory for Language and Media Processing Institute for Advanced Computer Studies University of Maryland,

More information

A New Algorithm for Detecting Text Line in Handwritten Documents

A New Algorithm for Detecting Text Line in Handwritten Documents A New Algorithm for Detecting Text Line in Handwritten Documents Yi Li 1, Yefeng Zheng 2, David Doermann 1, and Stefan Jaeger 1 1 Laboratory for Language and Media Processing Institute for Advanced Computer

More information

Line Net Global Vectorization: an Algorithm and Its Performance Evaluation

Line Net Global Vectorization: an Algorithm and Its Performance Evaluation Line Net Global Vectorization: an Algorithm and Its Performance Evaluation Jiqiang Song 1, Feng Su 1, Jibing Chen 1, Chiewlan Tai 2, and Shijie Cai 1 1 Department of Computer Science of Nanjing University,

More information

Layout Segmentation of Scanned Newspaper Documents

Layout Segmentation of Scanned Newspaper Documents , pp-05-10 Layout Segmentation of Scanned Newspaper Documents A.Bandyopadhyay, A. Ganguly and U.Pal CVPR Unit, Indian Statistical Institute 203 B T Road, Kolkata, India. Abstract: Layout segmentation algorithms

More information

Morphological Image Processing

Morphological Image Processing Morphological Image Processing Binary image processing In binary images, we conventionally take background as black (0) and foreground objects as white (1 or 255) Morphology Figure 4.1 objects on a conveyor

More information

Staff Line Detection by Skewed Projection

Staff Line Detection by Skewed Projection Staff Line Detection by Skewed Projection Diego Nehab May 11, 2003 Abstract Most optical music recognition systems start image analysis by the detection of staff lines. This work explores simple techniques

More information

Restoring Warped Document Image Based on Text Line Correction

Restoring Warped Document Image Based on Text Line Correction Restoring Warped Document Image Based on Text Line Correction * Dep. of Electrical Engineering Tamkang University, New Taipei, Taiwan, R.O.C *Correspondending Author: hsieh@ee.tku.edu.tw Abstract Document

More information

Recognition of Unconstrained Malayalam Handwritten Numeral

Recognition of Unconstrained Malayalam Handwritten Numeral Recognition of Unconstrained Malayalam Handwritten Numeral U. Pal, S. Kundu, Y. Ali, H. Islam and N. Tripathy C VPR Unit, Indian Statistical Institute, Kolkata-108, India Email: umapada@isical.ac.in Abstract

More information

HOUGH TRANSFORM CS 6350 C V

HOUGH TRANSFORM CS 6350 C V HOUGH TRANSFORM CS 6350 C V HOUGH TRANSFORM The problem: Given a set of points in 2-D, find if a sub-set of these points, fall on a LINE. Hough Transform One powerful global method for detecting edges

More information

Digital Image Processing Fundamentals

Digital Image Processing Fundamentals Ioannis Pitas Digital Image Processing Fundamentals Chapter 7 Shape Description Answers to the Chapter Questions Thessaloniki 1998 Chapter 7: Shape description 7.1 Introduction 1. Why is invariance to

More information

A System for Joining and Recognition of Broken Bangla Numerals for Indian Postal Automation

A System for Joining and Recognition of Broken Bangla Numerals for Indian Postal Automation A System for Joining and Recognition of Broken Bangla Numerals for Indian Postal Automation K. Roy, U. Pal and B. B. Chaudhuri CVPR Unit; Indian Statistical Institute, Kolkata-108; India umapada@isical.ac.in

More information

Morphological Image Processing

Morphological Image Processing Morphological Image Processing Morphology Identification, analysis, and description of the structure of the smallest unit of words Theory and technique for the analysis and processing of geometric structures

More information

Automated Digital Conversion of Hand-Drawn Plots

Automated Digital Conversion of Hand-Drawn Plots Automated Digital Conversion of Hand-Drawn Plots Ruo Yu Gu Department of Electrical Engineering Stanford University Palo Alto, U.S.A. ruoyugu@stanford.edu Abstract An algorithm has been developed using

More information

The Processing of Form Documents

The Processing of Form Documents The Processing of Form Documents David S. Doermann and Azriel Rosenfeld Document Processing Group, Center for Automation Research University of Maryland, College Park 20742 email: doermann@cfar.umd.edu,

More information

I. INTRODUCTION. Figure-1 Basic block of text analysis

I. INTRODUCTION. Figure-1 Basic block of text analysis ISSN: 2349-7637 (Online) (RHIMRJ) Research Paper Available online at: www.rhimrj.com Detection and Localization of Texts from Natural Scene Images: A Hybrid Approach Priyanka Muchhadiya Post Graduate Fellow,

More information

A Laplacian Based Novel Approach to Efficient Text Localization in Grayscale Images

A Laplacian Based Novel Approach to Efficient Text Localization in Grayscale Images A Laplacian Based Novel Approach to Efficient Text Localization in Grayscale Images Karthik Ram K.V & Mahantesh K Department of Electronics and Communication Engineering, SJB Institute of Technology, Bangalore,

More information

Robust line segmentation for handwritten documents

Robust line segmentation for handwritten documents Robust line segmentation for handwritten documents Kamal Kuzhinjedathu, Harish Srinivasan and Sargur Srihari Center of Excellence for Document Analysis and Recognition (CEDAR) University at Buffalo, State

More information

Skew Detection and Correction of Document Image using Hough Transform Method

Skew Detection and Correction of Document Image using Hough Transform Method Skew Detection and Correction of Document Image using Hough Transform Method [1] Neerugatti Varipally Vishwanath, [2] Dr.T. Pearson, [3] K.Chaitanya, [4] MG JaswanthSagar, [5] M.Rupesh [1] Asst.Professor,

More information

Part-Based Skew Estimation for Mathematical Expressions

Part-Based Skew Estimation for Mathematical Expressions Soma Shiraishi, Yaokai Feng, and Seiichi Uchida shiraishi@human.ait.kyushu-u.ac.jp {fengyk,uchida}@ait.kyushu-u.ac.jp Abstract We propose a novel method for the skew estimation on text images containing

More information

A Graphics Image Processing System

A Graphics Image Processing System A Graphics Image Processing System Linlin Li and Chew Lim Tan Department of Computer Science, National University of Singapore Kent Ridge, Singapore 117543 {lilinlin,lusj,tancl}@comp.nus.edu.sg Abstract

More information

Multi-scale Techniques for Document Page Segmentation

Multi-scale Techniques for Document Page Segmentation Multi-scale Techniques for Document Page Segmentation Zhixin Shi and Venu Govindaraju Center of Excellence for Document Analysis and Recognition (CEDAR), State University of New York at Buffalo, Amherst

More information

An Interpretation System for Cadastral Maps

An Interpretation System for Cadastral Maps An Interpretation System for Cadastral Maps E. Katona and Gy. Hudra József Attila University, H-6720 Szeged, Árpád tér 2, Hungary katona@inf.u-szeged.hu, hudra@inf.u-szeged.hu Abstract To create a spatial

More information

Text Extraction from Gray Scale Document Images Using Edge Information

Text Extraction from Gray Scale Document Images Using Edge Information Text Extraction from Gray Scale Document Images Using Edge Information Q. Yuan, C. L. Tan Dept. of Computer Science, School of computing National University of Singapore 3 Science Drive, Singapore 117543

More information

Time Stamp Detection and Recognition in Video Frames

Time Stamp Detection and Recognition in Video Frames Time Stamp Detection and Recognition in Video Frames Nongluk Covavisaruch and Chetsada Saengpanit Department of Computer Engineering, Chulalongkorn University, Bangkok 10330, Thailand E-mail: nongluk.c@chula.ac.th

More information

CITS 4402 Computer Vision

CITS 4402 Computer Vision CITS 4402 Computer Vision A/Prof Ajmal Mian Adj/A/Prof Mehdi Ravanbakhsh, CEO at Mapizy (www.mapizy.com) and InFarm (www.infarm.io) Lecture 02 Binary Image Analysis Objectives Revision of image formation

More information

Extracting Road Vector Data from Raster Maps

Extracting Road Vector Data from Raster Maps Extracting Road Vector Data from Raster Maps Yao-Yi Chiang and Craig A. Knoblock University of Southern California, Department of Computer Science and Information Sciences Institute 4676 Admiralty Way,

More information

MORPHOLOGICAL EDGE DETECTION AND CORNER DETECTION ALGORITHM USING CHAIN-ENCODING

MORPHOLOGICAL EDGE DETECTION AND CORNER DETECTION ALGORITHM USING CHAIN-ENCODING MORPHOLOGICAL EDGE DETECTION AND CORNER DETECTION ALGORITHM USING CHAIN-ENCODING Neeta Nain, Vijay Laxmi, Ankur Kumar Jain & Rakesh Agarwal Department of Computer Engineering Malaviya National Institute

More information

Segmentation of Kannada Handwritten Characters and Recognition Using Twelve Directional Feature Extraction Techniques

Segmentation of Kannada Handwritten Characters and Recognition Using Twelve Directional Feature Extraction Techniques Segmentation of Kannada Handwritten Characters and Recognition Using Twelve Directional Feature Extraction Techniques 1 Lohitha B.J, 2 Y.C Kiran 1 M.Tech. Student Dept. of ISE, Dayananda Sagar College

More information

An Objective Evaluation Methodology for Handwritten Image Document Binarization Techniques

An Objective Evaluation Methodology for Handwritten Image Document Binarization Techniques An Objective Evaluation Methodology for Handwritten Image Document Binarization Techniques K. Ntirogiannis, B. Gatos and I. Pratikakis Computational Intelligence Laboratory, Institute of Informatics and

More information

1 Introduction. 1.1 Raster-to-vector conversion

1 Introduction. 1.1 Raster-to-vector conversion 1 Introduction 1.1 Raster-to-vector conversion Vectorization (raster-to-vector conversion) consists of analyzing a raster image to convert its pixel representation to a vector representation The basic

More information

Input sensitive thresholding for ancient Hebrew manuscript

Input sensitive thresholding for ancient Hebrew manuscript Pattern Recognition Letters 26 (2005) 1168 1173 www.elsevier.com/locate/patrec Input sensitive thresholding for ancient Hebrew manuscript Itay Bar-Yosef * Department of Computer Science, Ben Gurion University,

More information

Local Segmentation of Touching Characters using Contour based Shape Decomposition

Local Segmentation of Touching Characters using Contour based Shape Decomposition 2012 10th IAPR International Workshop on Document Analysis Systems Local Segmentation of Touching Characters using Contour based Shape Decomposition Le Kang, David Doermann Institute for Advanced Computer

More information

An Efficient Single Chord-based Accumulation Technique (SCA) to Detect More Reliable Corners

An Efficient Single Chord-based Accumulation Technique (SCA) to Detect More Reliable Corners An Efficient Single Chord-based Accumulation Technique (SCA) to Detect More Reliable Corners Mohammad Asiful Hossain, Abdul Kawsar Tushar, and Shofiullah Babor Computer Science and Engineering Department,

More information

Introduction. Computer Vision & Digital Image Processing. Preview. Basic Concepts from Set Theory

Introduction. Computer Vision & Digital Image Processing. Preview. Basic Concepts from Set Theory Introduction Computer Vision & Digital Image Processing Morphological Image Processing I Morphology a branch of biology concerned with the form and structure of plants and animals Mathematical morphology

More information

Hidden Loop Recovery for Handwriting Recognition

Hidden Loop Recovery for Handwriting Recognition Hidden Loop Recovery for Handwriting Recognition David Doermann Institute of Advanced Computer Studies, University of Maryland, College Park, USA E-mail: doermann@cfar.umd.edu Nathan Intrator School of

More information

Texture Analysis of Painted Strokes 1) Martin Lettner, Paul Kammerer, Robert Sablatnig

Texture Analysis of Painted Strokes 1) Martin Lettner, Paul Kammerer, Robert Sablatnig Texture Analysis of Painted Strokes 1) Martin Lettner, Paul Kammerer, Robert Sablatnig Vienna University of Technology, Institute of Computer Aided Automation, Pattern Recognition and Image Processing

More information

Scene Text Detection Using Machine Learning Classifiers

Scene Text Detection Using Machine Learning Classifiers 601 Scene Text Detection Using Machine Learning Classifiers Nafla C.N. 1, Sneha K. 2, Divya K.P. 3 1 (Department of CSE, RCET, Akkikkvu, Thrissur) 2 (Department of CSE, RCET, Akkikkvu, Thrissur) 3 (Department

More information

arxiv: v1 [cs.cv] 9 Aug 2017

arxiv: v1 [cs.cv] 9 Aug 2017 Anveshak - A Groundtruth Generation Tool for Foreground Regions of Document Images Soumyadeep Dey, Jayanta Mukherjee, Shamik Sural, and Amit Vijay Nandedkar arxiv:1708.02831v1 [cs.cv] 9 Aug 2017 Department

More information

1. Introduction 16 / 1 SEGMENTATION AND CLASSIFICATION OF DOCUMENT IMAGES. 2. Background. A Antonacopoulos and R T Ritchings

1. Introduction 16 / 1 SEGMENTATION AND CLASSIFICATION OF DOCUMENT IMAGES. 2. Background. A Antonacopoulos and R T Ritchings SEGMENTATION AND CLASSIFICATION OF DOCUMENT IMAGES A Antonacopoulos and R T Ritchings 1. Introduction There is a significant and growing need to convert documents from printed paper to an electronic fonn.

More information

Skeletonization Algorithm for Numeral Patterns

Skeletonization Algorithm for Numeral Patterns International Journal of Signal Processing, Image Processing and Pattern Recognition 63 Skeletonization Algorithm for Numeral Patterns Gupta Rakesh and Kaur Rajpreet Department. of CSE, SDDIET Barwala,

More information

LECTURE 6 TEXT PROCESSING

LECTURE 6 TEXT PROCESSING SCIENTIFIC DATA COMPUTING 1 MTAT.08.042 LECTURE 6 TEXT PROCESSING Prepared by: Amnir Hadachi Institute of Computer Science, University of Tartu amnir.hadachi@ut.ee OUTLINE Aims Character Typology OCR systems

More information

N.Priya. Keywords Compass mask, Threshold, Morphological Operators, Statistical Measures, Text extraction

N.Priya. Keywords Compass mask, Threshold, Morphological Operators, Statistical Measures, Text extraction Volume, Issue 8, August ISSN: 77 8X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com A Combined Edge-Based Text

More information

Biomedical Image Analysis. Mathematical Morphology

Biomedical Image Analysis. Mathematical Morphology Biomedical Image Analysis Mathematical Morphology Contents: Foundation of Mathematical Morphology Structuring Elements Applications BMIA 15 V. Roth & P. Cattin 265 Foundations of Mathematical Morphology

More information

Text Information Extraction And Analysis From Images Using Digital Image Processing Techniques

Text Information Extraction And Analysis From Images Using Digital Image Processing Techniques Text Information Extraction And Analysis From Images Using Digital Image Processing Techniques Partha Sarathi Giri Department of Electronics and Communication, M.E.M.S, Balasore, Odisha Abstract Text data

More information

ABJAD: AN OFF-LINE ARABIC HANDWRITTEN RECOGNITION SYSTEM

ABJAD: AN OFF-LINE ARABIC HANDWRITTEN RECOGNITION SYSTEM ABJAD: AN OFF-LINE ARABIC HANDWRITTEN RECOGNITION SYSTEM RAMZI AHMED HARATY and HICHAM EL-ZABADANI Lebanese American University P.O. Box 13-5053 Chouran Beirut, Lebanon 1102 2801 Phone: 961 1 867621 ext.

More information

Isolated Handwritten Words Segmentation Techniques in Gurmukhi Script

Isolated Handwritten Words Segmentation Techniques in Gurmukhi Script Isolated Handwritten Words Segmentation Techniques in Gurmukhi Script Galaxy Bansal Dharamveer Sharma ABSTRACT Segmentation of handwritten words is a challenging task primarily because of structural features

More information

FIGURE DETECTION AND PART LABEL EXTRACTION FROM PATENT DRAWING IMAGES. Jaco Cronje

FIGURE DETECTION AND PART LABEL EXTRACTION FROM PATENT DRAWING IMAGES. Jaco Cronje FIGURE DETECTION AND PART LABEL EXTRACTION FROM PATENT DRAWING IMAGES Jaco Cronje Council for Scientific and Industrial Research, Pretoria, South Africa Email: jcronje@csir.co.za ABSTRACT The US Patent

More information

OCR For Handwritten Marathi Script

OCR For Handwritten Marathi Script International Journal of Scientific & Engineering Research Volume 3, Issue 8, August-2012 1 OCR For Handwritten Marathi Script Mrs.Vinaya. S. Tapkir 1, Mrs.Sushma.D.Shelke 2 1 Maharashtra Academy Of Engineering,

More information

An Accurate Method for Skew Determination in Document Images

An Accurate Method for Skew Determination in Document Images DICTA00: Digital Image Computing Techniques and Applications, 1 January 00, Melbourne, Australia. An Accurate Method for Skew Determination in Document Images S. Lowther, V. Chandran and S. Sridharan Research

More information

EECS490: Digital Image Processing. Lecture #17

EECS490: Digital Image Processing. Lecture #17 Lecture #17 Morphology & set operations on images Structuring elements Erosion and dilation Opening and closing Morphological image processing, boundary extraction, region filling Connectivity: convex

More information

Automatic Recognition and Verification of Handwritten Legal and Courtesy Amounts in English Language Present on Bank Cheques

Automatic Recognition and Verification of Handwritten Legal and Courtesy Amounts in English Language Present on Bank Cheques Automatic Recognition and Verification of Handwritten Legal and Courtesy Amounts in English Language Present on Bank Cheques Ajay K. Talele Department of Electronics Dr..B.A.T.U. Lonere. Sanjay L Nalbalwar

More information

SKEW DETECTION AND CORRECTION

SKEW DETECTION AND CORRECTION CHAPTER 3 SKEW DETECTION AND CORRECTION When the documents are scanned through high speed scanners, some amount of tilt is unavoidable either due to manual feed or auto feed. The tilt angle induced during

More information

Automatic Detection of Change in Address Blocks for Reply Forms Processing

Automatic Detection of Change in Address Blocks for Reply Forms Processing Automatic Detection of Change in Address Blocks for Reply Forms Processing K R Karthick, S Marshall and A J Gray Abstract In this paper, an automatic method to detect the presence of on-line erasures/scribbles/corrections/over-writing

More information

Character Recognition

Character Recognition Character Recognition 5.1 INTRODUCTION Recognition is one of the important steps in image processing. There are different methods such as Histogram method, Hough transformation, Neural computing approaches

More information

Skew Detection Technique for Binary Document Images based on Hough Transform

Skew Detection Technique for Binary Document Images based on Hough Transform Skew Detection Technique for Binary Document Images based on Hough Transform Manjunath Aradhya V N*, Hemantha Kumar G, and Shivakumara P Abstract Document image processing has become an increasingly important

More information

Using Layered Color Precision for a Self-Calibrating Vision System

Using Layered Color Precision for a Self-Calibrating Vision System ROBOCUP2004 SYMPOSIUM, Instituto Superior Técnico, Lisboa, Portugal, July 4-5, 2004. Using Layered Color Precision for a Self-Calibrating Vision System Matthias Jüngel Institut für Informatik, LFG Künstliche

More information

RESEARCH ON OPTIMIZATION OF IMAGE USING SKELETONIZATION TECHNIQUE WITH ADVANCED ALGORITHM

RESEARCH ON OPTIMIZATION OF IMAGE USING SKELETONIZATION TECHNIQUE WITH ADVANCED ALGORITHM 881 RESEARCH ON OPTIMIZATION OF IMAGE USING SKELETONIZATION TECHNIQUE WITH ADVANCED ALGORITHM Sarita Jain 1 Sumit Rana 2 Department of CSE 1 Department of CSE 2 Geeta Engineering College 1, Panipat, India

More information

A Method of Annotation Extraction from Paper Documents Using Alignment Based on Local Arrangements of Feature Points

A Method of Annotation Extraction from Paper Documents Using Alignment Based on Local Arrangements of Feature Points A Method of Annotation Extraction from Paper Documents Using Alignment Based on Local Arrangements of Feature Points Tomohiro Nakai, Koichi Kise, Masakazu Iwamura Graduate School of Engineering, Osaka

More information

Recognition of Gurmukhi Text from Sign Board Images Captured from Mobile Camera

Recognition of Gurmukhi Text from Sign Board Images Captured from Mobile Camera International Journal of Information & Computation Technology. ISSN 0974-2239 Volume 4, Number 17 (2014), pp. 1839-1845 International Research Publications House http://www. irphouse.com Recognition of

More information

SYSTEM APPROACH TO A RASTER-TO-VECTOR CONVERSION: From Research to Commercial System. Dr. Eugene Bodansky ESRI. Extended abstract

SYSTEM APPROACH TO A RASTER-TO-VECTOR CONVERSION: From Research to Commercial System. Dr. Eugene Bodansky ESRI. Extended abstract SYSTEM APPROACH TO A RASTER-TO-VECTOR CONVERSION: From Research to Commercial System Dr. Eugene Bodansky ESRI Extended abstract Contact between scientists and the developers who create new commercial systems

More information

Auto-Digitizer for Fast Graph-to-Data Conversion

Auto-Digitizer for Fast Graph-to-Data Conversion Auto-Digitizer for Fast Graph-to-Data Conversion EE 368 Final Project Report, Winter 2018 Deepti Sanjay Mahajan dmahaj@stanford.edu Sarah Pao Radzihovsky sradzi13@stanford.edu Ching-Hua (Fiona) Wang chwang9@stanford.edu

More information

Texture Image Segmentation using FCM

Texture Image Segmentation using FCM Proceedings of 2012 4th International Conference on Machine Learning and Computing IPCSIT vol. 25 (2012) (2012) IACSIT Press, Singapore Texture Image Segmentation using FCM Kanchan S. Deshmukh + M.G.M

More information

Human pose estimation using Active Shape Models

Human pose estimation using Active Shape Models Human pose estimation using Active Shape Models Changhyuk Jang and Keechul Jung Abstract Human pose estimation can be executed using Active Shape Models. The existing techniques for applying to human-body

More information

GENERAL AUTOMATED FLAW DETECTION SCHEME FOR NDE X-RAY IMAGES

GENERAL AUTOMATED FLAW DETECTION SCHEME FOR NDE X-RAY IMAGES GENERAL AUTOMATED FLAW DETECTION SCHEME FOR NDE X-RAY IMAGES Karl W. Ulmer and John P. Basart Center for Nondestructive Evaluation Department of Electrical and Computer Engineering Iowa State University

More information

CHAPTER 1 INTRODUCTION

CHAPTER 1 INTRODUCTION CHAPTER 1 INTRODUCTION 1.1 Introduction Pattern recognition is a set of mathematical, statistical and heuristic techniques used in executing `man-like' tasks on computers. Pattern recognition plays an

More information

Chinese Handwritten Character Segmentation in Form Documents

Chinese Handwritten Character Segmentation in Form Documents Chinese andwritten Character Segmentation in Form Documents Jiun-Lin Chen, Chi-ong Wu and si-jian Lee Department of Computer Science and Information Engineering National Chiao Tung University, sinchu,

More information

BUILDING DETECTION AND STRUCTURE LINE EXTRACTION FROM AIRBORNE LIDAR DATA

BUILDING DETECTION AND STRUCTURE LINE EXTRACTION FROM AIRBORNE LIDAR DATA BUILDING DETECTION AND STRUCTURE LINE EXTRACTION FROM AIRBORNE LIDAR DATA C. K. Wang a,, P.H. Hsu a, * a Dept. of Geomatics, National Cheng Kung University, No.1, University Road, Tainan 701, Taiwan. China-

More information

Slant Correction using Histograms

Slant Correction using Histograms Slant Correction using Histograms Frank de Zeeuw Bachelor s Thesis in Artificial Intelligence Supervised by Axel Brink & Tijn van der Zant July 12, 2006 Abstract Slant is one of the characteristics that

More information

CIS UDEL Working Notes on ImageCLEF 2015: Compound figure detection task

CIS UDEL Working Notes on ImageCLEF 2015: Compound figure detection task CIS UDEL Working Notes on ImageCLEF 2015: Compound figure detection task Xiaolong Wang, Xiangying Jiang, Abhishek Kolagunda, Hagit Shatkay and Chandra Kambhamettu Department of Computer and Information

More information

SEVERAL METHODS OF FEATURE EXTRACTION TO HELP IN OPTICAL CHARACTER RECOGNITION

SEVERAL METHODS OF FEATURE EXTRACTION TO HELP IN OPTICAL CHARACTER RECOGNITION SEVERAL METHODS OF FEATURE EXTRACTION TO HELP IN OPTICAL CHARACTER RECOGNITION Binod Kumar Prasad * * Bengal College of Engineering and Technology, Durgapur, W.B., India. Rajdeep Kundu 2 2 Bengal College

More information

Toward Part-based Document Image Decoding

Toward Part-based Document Image Decoding 2012 10th IAPR International Workshop on Document Analysis Systems Toward Part-based Document Image Decoding Wang Song, Seiichi Uchida Kyushu University, Fukuoka, Japan wangsong@human.ait.kyushu-u.ac.jp,

More information

HCR Using K-Means Clustering Algorithm

HCR Using K-Means Clustering Algorithm HCR Using K-Means Clustering Algorithm Meha Mathur 1, Anil Saroliya 2 Amity School of Engineering & Technology Amity University Rajasthan, India Abstract: Hindi is a national language of India, there are

More information

Dynamic Stroke Information Analysis for Video-Based Handwritten Chinese Character Recognition

Dynamic Stroke Information Analysis for Video-Based Handwritten Chinese Character Recognition Dynamic Stroke Information Analysis for Video-Based Handwritten Chinese Character Recognition Feng Lin and Xiaoou Tang Department of Information Engineering The Chinese University of Hong Kong Shatin,

More information

Reference Point Detection for Arch Type Fingerprints

Reference Point Detection for Arch Type Fingerprints Reference Point Detection for Arch Type Fingerprints H.K. Lam 1, Z. Hou 1, W.Y. Yau 1, T.P. Chen 1, J. Li 2, and K.Y. Sim 2 1 Computer Vision and Image Understanding Department Institute for Infocomm Research,

More information

RESTORATION OF DEGRADED DOCUMENTS USING IMAGE BINARIZATION TECHNIQUE

RESTORATION OF DEGRADED DOCUMENTS USING IMAGE BINARIZATION TECHNIQUE RESTORATION OF DEGRADED DOCUMENTS USING IMAGE BINARIZATION TECHNIQUE K. Kaviya Selvi 1 and R. S. Sabeenian 2 1 Department of Electronics and Communication Engineering, Communication Systems, Sona College

More information

13 Vectorizing. Overview

13 Vectorizing. Overview 13 Vectorizing Vectorizing tools are used to create vector data from scanned drawings or images. Combined with the display speed of Image Manager, these tools provide an efficient environment for data

More information

Finding the Best-Fit Bounding-Boxes

Finding the Best-Fit Bounding-Boxes Finding the Best-Fit Bounding-Boxes Bo Yuan 1, Leong Keong Kwoh 1, and Chew Lim Tan 2 1 Centre for Remote Imaging, Sensing and Processing National University of Singapore, Singapore 119260 {yuanbo, lkkwoh}@nus.edu.sg

More information

ORDER-INVARIANT TOBOGGAN ALGORITHM FOR IMAGE SEGMENTATION

ORDER-INVARIANT TOBOGGAN ALGORITHM FOR IMAGE SEGMENTATION ORDER-INVARIANT TOBOGGAN ALGORITHM FOR IMAGE SEGMENTATION Yung-Chieh Lin( ), Yi-Ping Hung( ), Chiou-Shann Fuh( ) Institute of Information Science, Academia Sinica, Taipei, Taiwan Department of Computer

More information

An Object-Oriented Progressive-Simplification- Based Vectorization System for Engineering Drawings: Model, Algorithm, and Performance

An Object-Oriented Progressive-Simplification- Based Vectorization System for Engineering Drawings: Model, Algorithm, and Performance 1048 IEEE TRANSACTIONS ON PATTERN ANALYSIS AND MACHINE INTELLIGENCE, VOL. 24, NO. 8, AUGUST 2002 An Object-Oriented Progressive-Simplification- Based Vectorization System for Engineering Drawings: Model,

More information

Pedestrian Detection Using Correlated Lidar and Image Data EECS442 Final Project Fall 2016

Pedestrian Detection Using Correlated Lidar and Image Data EECS442 Final Project Fall 2016 edestrian Detection Using Correlated Lidar and Image Data EECS442 Final roject Fall 2016 Samuel Rohrer University of Michigan rohrer@umich.edu Ian Lin University of Michigan tiannis@umich.edu Abstract

More information

An Efficient Character Segmentation Based on VNP Algorithm

An Efficient Character Segmentation Based on VNP Algorithm Research Journal of Applied Sciences, Engineering and Technology 4(24): 5438-5442, 2012 ISSN: 2040-7467 Maxwell Scientific organization, 2012 Submitted: March 18, 2012 Accepted: April 14, 2012 Published:

More information

Keyword Spotting in Document Images through Word Shape Coding

Keyword Spotting in Document Images through Word Shape Coding 2009 10th International Conference on Document Analysis and Recognition Keyword Spotting in Document Images through Word Shape Coding Shuyong Bai, Linlin Li and Chew Lim Tan School of Computing, National

More information

Keywords Connected Components, Text-Line Extraction, Trained Dataset.

Keywords Connected Components, Text-Line Extraction, Trained Dataset. Volume 4, Issue 11, November 2014 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Language Independent

More information

Human Performance on the USPS Database

Human Performance on the USPS Database Human Performance on the USPS Database Ibrahim Chaaban Michael R. Scheessele Abstract We found that the human error rate in recognition of individual handwritten digits is 2.37%. This differs somewhat

More information

Fingerprint Verification applying Invariant Moments

Fingerprint Verification applying Invariant Moments Fingerprint Verification applying Invariant Moments J. Leon, G Sanchez, G. Aguilar. L. Toscano. H. Perez, J. M. Ramirez National Polytechnic Institute SEPI ESIME CULHUACAN Mexico City, Mexico National

More information

Determining Document Skew Using Inter-Line Spaces

Determining Document Skew Using Inter-Line Spaces 2011 International Conference on Document Analysis and Recognition Determining Document Skew Using Inter-Line Spaces Boris Epshtein Google Inc. 1 1600 Amphitheatre Parkway, Mountain View, CA borisep@google.com

More information

Morphological Change Detection Algorithms for Surveillance Applications

Morphological Change Detection Algorithms for Surveillance Applications Morphological Change Detection Algorithms for Surveillance Applications Elena Stringa Joint Research Centre Institute for Systems, Informatics and Safety TP 270, Ispra (VA), Italy elena.stringa@jrc.it

More information

Power Functions and Their Use In Selecting Distance Functions for. Document Degradation Model Validation. 600 Mountain Avenue, Room 2C-322

Power Functions and Their Use In Selecting Distance Functions for. Document Degradation Model Validation. 600 Mountain Avenue, Room 2C-322 Power Functions and Their Use In Selecting Distance Functions for Document Degradation Model Validation Tapas Kanungo y ; Robert M. Haralick y and Henry S. Baird z y Department of Electrical Engineering,

More information

Structure in On-line Documents

Structure in On-line Documents Structure in On-line Documents Anil K. Jain and Anoop M. Namboodiri Department of Comp. Sci. and Engg. Michigan State University East Lansing, MI 4884 fjain, anoopg@cse.msu.edu Jayashree Subrahmonia IBM

More information

Pattern Recognition Using Graph Theory

Pattern Recognition Using Graph Theory ISSN: 2278 0211 (Online) Pattern Recognition Using Graph Theory Aditya Doshi Department of Computer Science and Engineering, Vellore Institute of Technology, Vellore, India Manmohan Jangid Department of

More information

A Novel Logo Detection and Recognition Framework for Separated Part Logos in Document Images

A Novel Logo Detection and Recognition Framework for Separated Part Logos in Document Images Australian Journal of Basic and Applied Sciences, 5(9): 936-946, 2011 ISSN 1991-8178 A Novel Logo Detection and Recognition Framework for Separated Part Logos in Document Images Sina Hassanzadeh, Hossein

More information

A Fast Caption Detection Method for Low Quality Video Images

A Fast Caption Detection Method for Low Quality Video Images 2012 10th IAPR International Workshop on Document Analysis Systems A Fast Caption Detection Method for Low Quality Video Images Tianyi Gui, Jun Sun, Satoshi Naoi Fujitsu Research & Development Center CO.,

More information

Logical Templates for Feature Extraction in Fingerprint Images

Logical Templates for Feature Extraction in Fingerprint Images Logical Templates for Feature Extraction in Fingerprint Images Bir Bhanu, Michael Boshra and Xuejun Tan Center for Research in Intelligent Systems University of Califomia, Riverside, CA 9252 1, USA Email:

More information

Recognition of Multi-Oriented, Multi-Sized, and Curved Text

Recognition of Multi-Oriented, Multi-Sized, and Curved Text Recognition of Multi-Oriented, Multi-Sized, and Curved Text Yao-Yi Chiang University of Southern California, Information Sciences Institute and Spatial Sciences Institute, 4676 Admiralty Way, Marina del

More information

A Fast Recognition System for Isolated Printed Characters Using Center of Gravity and Principal Axis

A Fast Recognition System for Isolated Printed Characters Using Center of Gravity and Principal Axis Applied Mathematics, 2013, 4, 1313-1319 http://dx.doi.org/10.4236/am.2013.49177 Published Online September 2013 (http://www.scirp.org/journal/am) A Fast Recognition System for Isolated Printed Characters

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