Describe how to calculate following regional descriptors


Digital Image Processing Home Work

"Representation and Description"

1. Task.

1. What is a descriptor?

2. Describe how to calculate following regional descriptors and give an example what objects could be well described by these descriptors (like average R,G,B values could be used to separate tomatoes from cucumbers in true color images):

2.1. standard deviation

2.2. entropy

2.3. uniformity

2.4. flatness of histogram

2.5. region area

2.6. eccentricity

2. Task.

Test image: example2.png

Prepare Matlab GUI for decriptor testing.

1338_figure.png

1. Button Load I from workspace: loads RGB image called I from Matlab workspace and shows it in axes 1.

2. Button Load BW from workspace: loads segmented image BW by using thresholding and shows it in axes 2. Improve the result of thresholding by removing small meaningless components using morphological processing.

3. Once both images are loaded, then find connected components and show them in axes3.

4. User can click on connected components in axes3. Selected connected component will be shown in axes4 and following descriptors of the region will be calculated and shown in Static Text object:

a) mean R value of Connected Component (CC);

b) mean G value of CC

c) mean B value of CC

d) standard deviation of CC

e) eccentricity of CC

f) entropy of CC

g) area of CC.

"Object Recognition"

T1: OPTICAL CHARACTER RECOGNITION

Perform character recognition in the image and write text to the file.

Test images: TMR.jpg, hitchickersGuideToTheGalaxy.jpg

Procedure:

1. Write a function findRows() which can separate line of the text in the image and save all lines as images in a cell array.

2. Prepare sample data. Import image TMR.jpg, convert it to binary image, invert it and smooth the boundaries by using imclose.

2.1. Extract lines and separate each symbol by using bwlabel.

2.2. Extract each symbol as im using regionprops. Calculate signature sy for this symbol using prepareSignature(). Write in cell array templateset: im, sy and name of the symbol (idea char('A'+(1:26)-1)' could be useful).

108_Figure1.png

3. Process text in hitchhickersGuideToTheGalaxy.jpg: convert it to binary image, invert it and smoothe the boudaries by using imclose.

3.1. Extract lines of text.

3.2. For each line

3.2.1. Find all symbols using bwlabel.

3.2.2. Calculate signature for each symbol and compare this signature with all signatures in templateset (you can use Euclidean distance or mean absolute difference). Assign symbol to the character of template set with the most similar signature.

3.2.3. Write each line in .txt file

4. Write a function findWords for finding words in the line of the text (in the image).

5. Add word separation to the code above and write white spaces in the text file as well.

1134_Figure2.png

Request for Solution File

Ask an Expert for Answer!!
Other Engineering: Describe how to calculate following regional descriptors
Reference No:- TGS01405163

Expected delivery within 24 Hours