Image Analysis

Image Analysis

IMAGE ANALYSIS Image analysis methods extract information from an image by using automatic or semiautomatic techniques termed: scene analysis, image description, image understanding, pattern recognition, computer/machine vision etc.). Image analysis differs from other types of image processing methods, such as enhancement or restoration in that the final result of image analysis procedures is a numerical output rather than a picture. © P. Strumillo IMAGE ANALYSIS Classification Image understanding Search the database for this Door open? fingerprint Image analysis steps Preprocessing Segmentation Feature extraction database Classification and query interpretation The best enemy spy! Examples of Computer Vision Applications optical ch aracter recog nition (O CR ) •m a il s o rtin g , la b e l re a d in g , p ro d u c t b illin g , b a n -c h e c k p ro c e s s in g , te x t re a d in g , M ed ical imag e analy sis •T u m o r d e te c tio n , s iz e /s h a p e m e a s u re m e n t o f o rg a n s , c h ro m o s o m e a n a ly s is , b lo o d c e ll c o u n t ,… Industrial robotics •R e c o g n itio n a n d in te rp re ta tio n o f o b je c ts in a s c e n e , m o tio n c o n tro l th ro u g h v is u a l fe e d b a c k Cartography, Geology •M a p m a k in g fro m p h o to g ra p h s , p lo ttin g w e a th e r m a p s , o il e x p lo ra tio n forensics (b iometry ) and military applications •fin g e rp rin t a n d fa c e re c o g n itio n , ta rg e t d e te c tio n a n d id e n tific a tio n , g u id a n c e o f h e lic o p te rs a n d a irc ra ft in la n d in g , re m o te g u id in g o f m is s ile s 9 Imag e analy sis tech niq ues 2 1 3 Feature description Segmentation Classification Spatial features Thresholding Clustering Transform features Boundary based segm. Statistical classif. Edges and boundaries Region based segm. Decision trees Shape features Template matching Neural networks Moments Texture segmentation Similarity measures Texture Segmentation Image segmentation is a key step in image analysis. Segmentation subdivides an image into its components. It distinguishes objects of interest from background, e.g. Optical Character Recognition (OCR) systems first segment character shapes from an image before they start to recognise them. The segmentation operation only subdivides an image; it does not attempt to recognise the segmented image parts. Aerial photos Microscope image of cells Thresholding Amplitude thresholding (i.e. in the brightness domain) is the basis approach to image segmentation. A threshold T is selected a that would separate the two modes, i.e. any image point for which f(x,y)>T is considered as an object; otherwise, the point is called a background point. The thresholded image (binary image) is defined by: À1 for f (x, y) ≥ T o b je c t p o in ts g(x, y) = 0 for f (x, y) <T b a c k g ro u n d p o in ts Thresholding Suppose an image f(x,y) contains bright objects surrounded by dark background and its gray-level histogram is shown in the figure. th e th resh old is id entified on th e ? b asis of imag e h istog ram T = 1 2 8 1000 800 À 256 for f ( x,y ) ≥ T 600 g( x,y ) = 400 0 for f ( x,y ) < T 200 0 0 50 100 150 200 250 T = 5 0 T h resh old ing DEMO MATLAB DEMO MATLAB %MATLAB x=imread('cameraman.tif'); figure(1), imshow(x); bw=im2bw(x,0.5); figure(2), imshow(bw) Thresholding When T is set on the basis of the entire image f(x,y) the threshold is called global. If T depends on spatial coordinates (x,y) the threshold is termed dynamic. If T depends on both f(x,y) and some local image property p(x,y) - e.g., the average gray level in a neighbourhood centred on (x,y), the threshold is called local and T is set according to a test function: T = T[p(x,y),f (x, y)] Thresholding In the case of multilevel thresholding the threshold becomes a vector T= [T1, T2, …TN] and an image is partitioned into N+1 sub-regions, e.g. for two-level thresholding: R 1 : if f(x,y) ≤ T1 , R 2 : if T1< f(x,y) ≤ T2, R 3 : if f(x,y) > T2. Image thresholding can be extended into more than one dimensions. This may apply to multi-band thresholding of colour images in any colour coordinates, e.g. RGB or HIS. DEMO MATLAB %MATLAB x=imread('cameraman.tif'); figure(1), imshow(x); bw=im2bw(x,0.5); figure(2), imshow(bw) Multilevel thresholding -example 250 200 150 100 50 x=imread('blood1.tif'); figure(1), imshow(x); figure(2),imshow(x), colormap(jet(16)) Thresholding - revisited 1 0.9 P1 0.8 0.7 0.6 0.5 P2 0.4 0.3 T ? 0.2 0.1 0 0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1 m1 m2 Optimum Threshold Suppose an image contains two intensity values m1, m2 combined with additive Gaussian noise N(0,σ) that appear in an image with apriori probabilities P1 and P2 correspondingly P1 + P2=1. The task is to define a threshold level T that would minimise the overall segmentation error Optimum Threshold For σ1, σ2 solution to this optimisation problem is the following: m + m σ 2 P ’ T = 1 2 + ln∆ 2 2 m1 − m2 P1 If P1=P2 , the optimal threshold is the average of the image intensities. Textures from the Brodatz album 2500 2000 1500 1000 500 0 0 50 100 150 200 250 Region-oriented segmentation The main idea in region-based segmentation techniques is to identify different regions in an image that have similar features (gray level, colour, texture, etc.). There are two main region-based image segmentation techniques: region growing (merging) region splitting . General formulation Let R represent the entire image. Segmentation may be viewed as a process that partitions R into N disjoint regions, R1, R1, …, RN, such that: N a) Ri = R i=1 b) Ri is a connected region, i = 1, 2, …N, c) Ri ∩ Rj = ∅ for all i and j, i≠j, d) P(Ri) = TRUE for i = 1, 2, …N, e) P(Ri ∪ Rj) = FALSE for i≠j where P(Ri) is a logical predicate over the points in set Ri and ∅ is the empty set. General formulation Condition a) indicates that the segmentation must be complete (all points assigned a region). Condition c) indicates that the regions must be disjoint. Condition d) states that all pixels in a segmented region must satisfy the assumed predicate. Condition e) indicates that distinct regions must be different according to predicate P. An example predicate: z(x,y) − mi ≤ 2σi where: z(x,y) is a gray level in (x,y) coordinate, mi, σi are the mean and standard variation of the analysed region. Region growing In region growing the image is divided into atomic regions (e.g., pixels, templates). These “seed” points grow by appending to each point other points that have similar properties. The key problem lies in selecting proper criterion (predicate) for merging. A frequently used merging rule is: Merge two regions if they are „similar” (in terms of a predefined features) Similarity measures Popular similarity measures are: • dot product (projection of one vector onto direction of the other): T xi x j = xi x j cos(xi ,x j ) • and Euclidean distance: 2 d(xi,x j )= (xi( k ) − x j( k )) k Image segmentation example © Univ. of Washington Region splitting Initially, the image is subdivided into a set of arbitrary disjoint regions, then splits of the regions take place in attempt to satisfy region uniformity criteria (a-e). An example split algorithm works as follows: Subdivide the entire image successively into smaller and smaller quadrant regions until P(Ri) = TRUE for any region; that is if P is FALSE for any quadrant, subdivide the quadrant into sub-quadrants, and so on. This splitting technique is called the quad-tree decomposition. The quad tree R R1 R2 R1 R2 R3 R4 R41 R42 R3 R41 R42 R43 R44 R43 R44 DEMO MATLAB (quad tree) Region splitting and merging However, if only splitting is used the final result likely would contain adjacent regions with identical properties. This can be improved by allowing merging as well as splitting. The following procedure can be implemented: •Split any region Ri if P(Ri) = FALSE, •Merge any adjacent regions for which P(Ri ∪ Rj) = TRUE, •Stop when no further merging or splitting is possible. Template matching An important problem in image analysis is the detection of a presence of an object in a scene.

View Full Text

Details

  • File Type
    pdf
  • Upload Time
    -
  • Content Languages
    English
  • Upload User
    Anonymous/Not logged-in
  • File Pages
    37 Page
  • File Size
    -

Download

Channel Download Status
Express Download Enable

Copyright

We respect the copyrights and intellectual property rights of all users. All uploaded documents are either original works of the uploader or authorized works of the rightful owners.

  • Not to be reproduced or distributed without explicit permission.
  • Not used for commercial purposes outside of approved use cases.
  • Not used to infringe on the rights of the original creators.
  • If you believe any content infringes your copyright, please contact us immediately.

Support

For help with questions, suggestions, or problems, please contact us