Skip to main content

Document Image Analysis


Document Image Analysis is our first exercise in Advance Image Processing. In this exercise, I will use OpenCV and Python.

The shaded area in the form below should be classified.


All the forms were pre-processed with given center of the circles. The circles should be classified in three different categories: shaded, not shaded, and crossed-out

First, the given center of the circles should be plotted from csv to the python code.  
At first, I had a hard time dealing with the syntax of python so I spent quite a few hours studying and trying out sample codes so that I can use the basic operations and functions for this exercise. I used a normal file upload then I loop the file line by line. Finally, I boxed all the circles in green lines using OpenCV's rectangle function.

After the initial boxing, the mean intensity of the boxed circles was gathered. Lower intensity means darker. The darker circles are detected blue (I assumed that the student crossed-out the circle so it is darker than the filled circle). A threshold between the black and the unshaded circle are colored by red. 

This is a sample resulting image.

I found minor errors such as filled circles with minimum intensity and those misaligned images. However, I believe that my exercise has a higher accuracy of attaining the correct answer.
  

Comments

Popular posts from this blog

Document Layout Analysis

Document Layout Analysis is our second exercise. Using the three images above our program needs to do the following: Individual characters are boxed Individual words are boxed Lines are boxed Paragraphs are boxed The paragraphs with margins I used a bottom-up approach for this exercise. It means that I started detecting and boxing the letters to words to line to paragraph and lastly to the paragraph with margin. I created a function for each of the objectives. I used a trial and error approach for determining the appropriate kernel size for the specific function. I have a very simple step for every objectives: Load the images. Assigning of output images Convert images to grayscale Cleaning the images using Otsu's Thresholding method. (with the inversed binarized image) Assigning kernel size (1 or 2 kernels depending in the objective) Morphological Operations (Dilation, Erosion, Closing and Opening) Find the Contours Box the contours (I added some offs...

Installing AsgardCMS for your Web Application

AsgardCMS is a full-featured modular and multilingual CMS on top of the Laravel Framework. Here are the steps for installing the aforementioned CMS. You can get the code using this command: composer create-project asgardcms/platform your-project-name If the terminal ask you for a token. Just follow the steps of generating a new token here: https://help.github.com/articles/creating-an-access-token-for-command-line-use/  After that, the installation must be smooth-sailing. Go t the directory of your project php artisan asgard:install Then, you will now set-up the database connection and admin creation. Finally, you can run  php artisan serve or php artisan serve --port=your-port Access the application: Application : localhost:your-port/en Admin: localhost:your-port/en/backend References:  https://asgardcms.com/install https://www.youtube.com/watch?v=MeX_D-aql6g http://asgardcms.blogspot.in/2015/12/asgardcms-inst...

UX Research: Understanding User Needs and Behaviors

As someone who has recently started a UX course on Coursera, I have learned that UX research is a critical aspect of the design process. The purpose of UX research is to gain a deep understanding of the users, their needs, and behaviors. This information is used to inform design decisions and create products and services that meet the needs and expectations of the users. There are several methods that can be used for UX research, including: Surveys: Surveys are a quick and easy way to gather information from a large number of users. They can be administered online or in person and can be used to gather information about demographics, user behavior, and product or service usage. User interviews: User interviews are one-on-one conversations with users. They are an effective way to gather in-depth information about a user's experiences, thoughts, and opinions. User interviews can be conducted in person or over the phone and can last anywhere from 30 minutes to an hour. User testing: U...