Content-Based Image Retrieval Some Basics

Size: px
Start display at page:

Download "Content-Based Image Retrieval Some Basics"

Transcription

1 Content-Based Image Retrieval Some Basics Gerald Schaefer Department of Computer Science Loughborough University Loughborough, U.K. Abstract. Image collections are growing at a rapid rate, motivating the need for efficient and effective tools to query these databases. Contentbased image retrieval (CBIR) techniques extract features directly from image data and use these, coupled with a similarity measure, to search through image collections. In this paper, we introduce some of the basic image features that are used for CBIR. 1 Introduction While image libraries are growing at a rapid rate (personal image collections may contain thousands, commercial image repositories millions of images [1]), most images remain un-annotated [2], preventing the application of a typical text-based search. Content-based image retrieval (CBIR) [3, 4] does not require any extra data, as it extracts image features directly from the image data and uses these, coupled with a similarity measure, to query image collections. Image features typically describe the colour, texture, and shape content of the images, and in this paper we review several well-known descriptors that are employed in CBIR. Our emphasis is on rather simple image features which nevertheless have been shown to be effective for CBIR. In Section 2, we discuss some basic colour image features, while Section 3 focusses on incorporating spatial information into colour-based retrieval. Section 4 reviews texture image features, whereas in Section 5, we present some shape-based retrieval techniques. Section 6 concludes the paper. 2 Colour features Colour features are the most widely used feature type for CBIR and are at the heart of various image retrieval search engines such as QBIC [5] and Virage [6]. 2.1 Colour moments The simplest colour descriptor for CBIR are colour moments [7]. The n-th central (normalised) moment of a colour distribution is defined as M n (I) = n 1 N (M1 (I) c(x,y)) n, (1)

2 with M 1 (I) = 1 N c(x,y), (2) where N is the number of pixels of image I and c(x,y) describes the colour of the pixel at location (x,y). The distance between two images is defined as the sum of absolute distances between their moments (L 1 norm) 2.2 Colour histograms d MNT (I 1,I 2 ) = n M i (I 1 ) M i (I 2 ). (3) i=1 Swain and Ballard [8] introduced the use of colour histograms, which record the frequencies of colours in the image, to describe images in order to perform image retrieval. Indeed, it was Swain and Ballard s work that laid the foundations for the field of CBIR as we know it today. As distance measure they introduced (the complement of) histogram intersection defined as d HIS (I 1,I 2 ) = 1 N min(h 1 (k),h 2 (k)), (4) k=1 where H 1 and H 2 are the colour histograms of images I 1 and I 2, and N is the number of bins used for representing the histogram. It can be shown [8] that histogram intersection is equivalent to the L 1 norm and hence a metric. An alternative to the L 1 norm is to use the Euclidean distance (L 2 norm) between two histograms. This approach was taken in the QBIC system [9] and also addresses the problem of possible false negatives due to slight colour shifts by taking into account the similarity between separate histogram bins. This can be expressed in a quadratic form distance measure as d QBIC (I 1,I 2 ) = (H 1 H 2 )A(H 1 H 2 ) T, (5) where H 1 and H 2 are again the two (vectorised) colour histograms, and A is an N N matrix containing inter-bin colour differences. 2.3 Colour signatures Rather than using colour histograms, a more compact descriptor for encoding the colour distribution of images is a colour signature. Colour signatures are a set {(c 1,ω 1 ),(c 2,ω 2 ),...,(c m,ω m )} where c i define colour co-ordinates and ω i their associated weights (i.e. their relative frequencies in the image). A common way of deriving colour signatures for images is through a clustering process. Once colour signatures for images are determined, these signatures can be compared by a metric known as the earth mover s distance [10] which is a flow-based measure defined as m n i=1 j=1 d EMD (I 1,I 2 ) = f ijd ij m n i=1 j=1 f, (6) ij

3 which is based on the linear programming problem subject to i=1 j=1 Work(S 1,S 2,F) = m i=1 j=1 n f ij d ij (7) f ij 0 1 i m,1 j n (8) n f ij ω pi 1 i m j=1 m f ij ω qj i=1 1 j n m n m n f ij d ij = min( ω pi, ω qj ), where S 1 and S 2 are the colour signatures of images I 1 and I 2, F = [f ij ] is the work flow to be minimised in order to transform one colour signature to the other one, and d ij denote the colour differences between colour clusters. i=1 j=1 3 Spatial colour features Simple colour features such as colour histograms are fast to compute, and are invariant to rotation and translation as well as robust to scaling and occlusions. On the other hand, they do not carry any information about the spatial distribution of the colours. Consequently, several methods try to address this weakness. 3.1 Colour coherence vectors Colour coherence vectors [11] were introduced as such a method of introducing spatial information into the retrieval process. Colour coherence vectors consist of two histograms: one histogram of coherent and one of non-coherent pixels. Pixels are considered to be coherent if they are part of a continuous uniformly coloured area and the size of this area exceeds some threshold τ where τ is usually defined as 1% of the overall area of an image. The L 1 norm is used as the distance metric between two colour coherence vectors d CCV (I 1,I 2 ) = N [ H1(k) c H2(k) c + H1(k) s H2(k) ] s, (9) k=1 where H c i and H s i and are the histograms of coherent and non-coherent (scattered) pixels respectively.

4 3.2 Colour correlograms Another approach to incorporate information on the spatial correlation between the colours present in an image are colour correlograms [12], defined as with γ (k) c i,c j (I) = PR p1 I ci,p 2 I[p 2 I cj, p 1 p 2 = k], (10) p 1 p 2 = max x 1 x 2, y 1 y 2, (11) where c i and c j denote two colours and (x k,y k ) denote pixel locations. In other words, given any colour c i in the image, γ gives the probability that a pixel at distance k away is of colour c j. As full colour correlograms are expensive both in terms of computation and storage requirements, usually a simpler form called auto-correlogram (ACR) defined as α c (k) (I) = γ c,c (k) (I) (12) is often being used, i.e. only the spatial correlation of each colour to itself is recorded. Two CCRs are compared using d CCR (I 1,I 2 ) = 3.3 Spatial-chromatic histograms i,j [m],k [d] γ(k) c i,c j (I 1 ) γ c (k) i,c j (I 2 ) i,j [m],k [d] (1 + γ(k) c i,c j (I 1 ) + γ c (k) i,c j (I 2 )). (13) Spatial-chromatic histograms (SCHs) [13] are another alternative for representing both colour and spatial information. They consist of a colour histogram h(k) = A k n m, (14) where A k is a set having the same colour k, and n and m are the dimensions of the image; and location information on each colour characterised through its baricentre b(k) = 1 1 x, 1 1 y, (15) n A k m A k (x,y) A k (x,y) A k and the standard deviation of distances of a given colour from its baricentre 1 σ(k) = d(p,b(k)) A k 2. (16) p A k The SCH is then given as and similarity between two SCHs calculated as N k=1 min(h I 1 (k),h I2 (k)) H SCH (k) = [h(k),b(k),σ(k)], (17) d SCH (I 1,I 2 ) = 2 (18) ) ( 2 d(bi1 (k),d(b I2 (k)) 2 + min(σi 1 (k),σi 2 (k)) max(σ I1 (k),σ I2 (k))

5 4 Texture features Texture features do not exist at a single pixel but are rather a description of a neighbourhood of pixels. Texture features often complement colour features to improve retrieval accuracy in CBIR, and are also attractive since texture is typically difficult to describe in terms of words. 4.1 Local binary patterns (LBP) Local binary patterns (LBP) are a simple yet effective texture analysis technique [14]. It assigns, on a pixel basis, descriptors that describe the neighbourhood of that pixel and then forms a histogram of those descriptors. In detail, let g ( 1, 1) g ( 1,0) g ( 1,1) B = g (0, 1) g (0,0) g (0,1) (19) g (1, 1) g (1,0) g (1,1) describe the 3 3 grayscale block of a pixel at location (0,0) and its 8-neighbourhood. The first step is to subtract the value of the central pixel and consider only the resulting values at the neighbouring locations g ( 1, 1) g (0,0) g ( 1,0) g (0,0) g ( 1,1) g (0,0) LBP 1 = g (0, 1) g (0,0) g (0,1) g (0,0) (20) g (1, 1) g (0,0) g (1,0) g (0,0) g (1,1) g (0,0) Next an operator s(x) = { 1 for x 0 0 for x < 0 (21) is assigned at each location resulting in LBP 2 = s(g ( 1, 1) g (0,0) ) s(g ( 1,0) g (0,0) ) s(g ( 1,1) g (0,0) ) s(g (0, 1) g (0,0) ) s(g (0,1) g (0,0) ) (22) s(g (1, 1) g (0,0) ) s(g (1,0) g (0,0) ) s(g (1,1) g (0,0) ) Each pixel of the 8-neighbourhood is encoded as either 0 or 1 and an LBP histogram with 256 bins can be built as an image descriptor. 4.2 Co-occurrence matrix Co-occurrence matrices of an image I are defined by [15] n m { 1 if I(x,y) = i and I(x + p,y + q) = j C(i,j) = 0 otherwise x=1 y=1 (23) where i and j correspond to image (grey-level) values, and p and q are offset values. Typically several (p, q) pairs are employed and from the corresponding co-occurrence matrices several statistical features such as the entropy C(i,j)log C(i,j) calculated to form a feature vector. ij

6 5 Shape features Since true shape features would require segmentation, often global shape feature or feature distributions are employed in CBIR. Shape features are often combined with colour and/or texture features. 5.1 Edge histograms A simple yet effective shape feature can be derived by describing edge direction information [16]. Following an edge detection step using the Canny edge detector [17], a histogram of edge directions (typically in 5 degree steps) is generated, and then smoothed. Since it is a histogram feature, it can be compared using e.g. histogram intersection as in Eq. (4). 5.2 Image moments Image moments of an Image I are defined by m pq = M 1 y=0 N 1 Rather than m pq often central moments with µ pq = M 1 y=0 x=0 x p y q I(x,y) (24) N 1 (x x) p (y ȳ) q I(x,y) (25) x=0 x = m 10 m 00 ȳ = m 01 m 00 are used, i.e. moments where the centre of gravity has been moved to the origin (i.e. µ 10 = µ 01 = 0). Central moments have the advantage of being invariant to translation. Normalised central moments defined by η pq = µ pq µ γ 00 (26) with γ = p + q p + q = 2,3,... are also invariant to changes in scale. It is well known that a small number of moments can characterise an image fairly well. In order to achieve invariance to rotation, rather than using the moments themselves algebraic combinations thereof known as moment invariants

7 are used that are independent of these transformations. One such set of moment invariants are Hu s original moment invariants given by [18] M 1 = µ 20 + µ 02 (27) M 2 = (µ 20 µ 02 ) 2 + 4µ 2 11 M 3 = (µ 30 3µ 12 ) 2 + 3(µ 21 + µ 03 ) 2 M 4 = (µ 30 + µ 12 ) 2 + (µ 21 + µ 03 ) 2 M 5 = (µ 30 3µ 12 )(µ 30 + µ 12 )[(µ 30 + µ 12 ) 2 3(µ 21 + µ 03 ) 2 ] + (3µ 21 µ 03 )(µ 21 + µ 03 )[3(µ 30 + µ 12 ) 2 (µ 21 + µ 03 ) 2 ] M 6 = (µ 20 µ 02 )[(µ 30 + µ 12 ) 2 (µ 21 + µ 03 ) 2 ] + 4µ 11 (µ 30 + µ 12 )(µ 21 + µ 03 ) M 7 = (3µ 21 µ 03 )(µ 30 + µ 12 )[(µ 30 + µ 12 ) 2 3(µ 21 + µ 03 ) 2 ] + (µ 30 3µ 12 )(µ 21 + µ 03 )[3(µ 30 + µ 12 ) 2 (µ 21 + µ 03 ) 2 ] which can be employed as a shape descriptor for CBIR. 6 Conclusions In this paper, we have reviewed several basic image features employed for contentbased image retrieval. In particular, we have looked at colour, spatial colour, texture and shape features in this context. Further details and other image features are discussed in survey papers such as [3, 4], while more advanced CBIR topics are discussed in [19]. References 1. Osman, T., Thakker, D., Schaefer, G., Lakin, P.: An integrative semantic framework for image annotation and retrieval. In: IEEE/WIC/ACM International Conference on Web Intelligence. (2007) Rodden, K.: Evaluating Similarity-Based Visualisations as Interfaces for Image Browsing. PhD thesis, University of Cambridge Computer Laboratory (2001) 3. Smeulders, A., Worring, M., Santini, S., Gupta, A., Jain, R.: Content-based image retrieval at the end of the early years. IEEE Trans. Pattern Analysis and Machine Intelligence 22 (2000) Datta, R., Joshi, D., Li, J., Wang, J.Z.: Image retrieval: Ideas, influences, and trends of the new age. ACM Computing Surveys 40 (2008) Niblack, W., Barber, R., Equitz, W., Flickner, M., Glasman, D., Petkovic, D., Yanker, P.: The QBIC project: Querying images by content using color, texture and shape. In: Conf. on Storage and Retrieval for Image and Video Databases. Volume 1908 of Proceedings of SPIE. (1993) Bach, J., Fuller, C., Gupta, A., Hampapur, A., Horowitz, B., Humphrey, R., Jain, R.: The Virage image search engine: An open framework for image management. In: Storage and Retrieval for Image and Video Databases. Volume 2670 of Proceedings of SPIE. (1996) Stricker, M., Orengo, M.: Similarity of color images. In: Conf. on Storage and Retrieval for Image and Video Databases III. Volume 2420 of Proceedings of SPIE. (1995)

8 8. Swain, M., Ballard, D.: Color indexing. Int. Journal of Computer Vision 7 (1991) Faloutsos, C., Equitz, W., Flickner, M., Niblack, W., Petkovic, D., Barber, R.: Efficient and effective querying by image content. journal of Intelligent Information Retrieval 3 (1994) Rubner, Y., Tomasi, C., Guibas, L.: The earth mover s distance as a metric for image retrieval. Int. Journal of Computer Vision 40 (2000) Pass, G., Zabih, R.: Histogram refinement for content-based image retrieval. In: 3rd IEEE Workshop on Applications of Computer Vision. (1996) Huang, J., Kumar, S., Mitra, M., Zhu, W.J., Zabih, R.: Image indexing using color correlograms. In: IEEE Int. Conference Computer Vision and Pattern Recognition. (1997) Cinque, L., Levialdi, S., Pellicano, A.: Color-based image retrieval using spatialchromatic histograms. In: IEEE Int. Conf. Multimedia Computing and Systems. (1999) Ojala, T., Pietikäinen, M., Harwood, D.: A comparative study for texture measures with classification based on feature distributions. Pattern Recognition 29 (1996) Haralick, R.: Statistical and structural approaches to texture. Proceedings of the IEEE 67 (1979) Jain, A., Vailaya, A.: Image retrieval using color and shape. Pattern Recognition 29 (1996) Canny, J.: A computational approach to edge detection. PAMI 8 (1986) Hu, M.: Visual pattern recognition by moment invariants. IRE Transactions on Information Theory 8 (1962) Schaefer, G.: Content-based image retrieval - advanced topics. In: Int. Conference on Man-Machine Interactions. (2011) (in this volume).

HOW USEFUL ARE COLOUR INVARIANTS FOR IMAGE RETRIEVAL?

HOW USEFUL ARE COLOUR INVARIANTS FOR IMAGE RETRIEVAL? HOW USEFUL ARE COLOUR INVARIANTS FOR IMAGE RETRIEVAL? Gerald Schaefer School of Computing and Technology Nottingham Trent University Nottingham, U.K. Gerald.Schaefer@ntu.ac.uk Abstract Keywords: The images

More information

A Novel Image Retrieval Method Using Segmentation and Color Moments

A Novel Image Retrieval Method Using Segmentation and Color Moments A Novel Image Retrieval Method Using Segmentation and Color Moments T.V. Saikrishna 1, Dr.A.Yesubabu 2, Dr.A.Anandarao 3, T.Sudha Rani 4 1 Assoc. Professor, Computer Science Department, QIS College of

More information

CONTENT BASED IMAGE RETRIEVAL SYSTEM USING IMAGE CLASSIFICATION

CONTENT BASED IMAGE RETRIEVAL SYSTEM USING IMAGE CLASSIFICATION International Journal of Research and Reviews in Applied Sciences And Engineering (IJRRASE) Vol 8. No.1 2016 Pp.58-62 gopalax Journals, Singapore available at : www.ijcns.com ISSN: 2231-0061 CONTENT BASED

More information

A Study on Feature Extraction Techniques in Image Processing

A Study on Feature Extraction Techniques in Image Processing International Journal of Computer Sciences and Engineering Open Access Review Paper Volume-4, Special Issue-7, Dec 2016 ISSN: 2347-2693 A Study on Feature Extraction Techniques in Image Processing Shrabani

More information

Lecture 6: Multimedia Information Retrieval Dr. Jian Zhang

Lecture 6: Multimedia Information Retrieval Dr. Jian Zhang Lecture 6: Multimedia Information Retrieval Dr. Jian Zhang NICTA & CSE UNSW COMP9314 Advanced Database S1 2007 jzhang@cse.unsw.edu.au Reference Papers and Resources Papers: Colour spaces-perceptual, historical

More information

Research Article Image Retrieval using Clustering Techniques. K.S.Rangasamy College of Technology,,India. K.S.Rangasamy College of Technology, India.

Research Article Image Retrieval using Clustering Techniques. K.S.Rangasamy College of Technology,,India. K.S.Rangasamy College of Technology, India. Journal of Recent Research in Engineering and Technology 3(1), 2016, pp21-28 Article ID J11603 ISSN (Online): 2349 2252, ISSN (Print):2349 2260 Bonfay Publications, 2016 Research Article Image Retrieval

More information

An Introduction to Content Based Image Retrieval

An Introduction to Content Based Image Retrieval CHAPTER -1 An Introduction to Content Based Image Retrieval 1.1 Introduction With the advancement in internet and multimedia technologies, a huge amount of multimedia data in the form of audio, video and

More information

Content Based Image Retrieval Using Color Quantizes, EDBTC and LBP Features

Content Based Image Retrieval Using Color Quantizes, EDBTC and LBP Features Content Based Image Retrieval Using Color Quantizes, EDBTC and LBP Features 1 Kum Sharanamma, 2 Krishnapriya Sharma 1,2 SIR MVIT Abstract- To describe the image features the Local binary pattern (LBP)

More information

Holistic Correlation of Color Models, Color Features and Distance Metrics on Content-Based Image Retrieval

Holistic Correlation of Color Models, Color Features and Distance Metrics on Content-Based Image Retrieval Holistic Correlation of Color Models, Color Features and Distance Metrics on Content-Based Image Retrieval Swapnil Saurav 1, Prajakta Belsare 2, Siddhartha Sarkar 3 1Researcher, Abhidheya Labs and Knowledge

More information

Shape Retrieval with Flat Contour Segments

Shape Retrieval with Flat Contour Segments Shape Retrieval with Flat Contour Segments Dalong Li 1, Steven Simske Intelligent Enterprise Technologies Laboratory HP Laboratories Palo Alto HPL-2002-250 September 9 th, 2002* image database, image retrieval,

More information

Robust Shape Retrieval Using Maximum Likelihood Theory

Robust Shape Retrieval Using Maximum Likelihood Theory Robust Shape Retrieval Using Maximum Likelihood Theory Naif Alajlan 1, Paul Fieguth 2, and Mohamed Kamel 1 1 PAMI Lab, E & CE Dept., UW, Waterloo, ON, N2L 3G1, Canada. naif, mkamel@pami.uwaterloo.ca 2

More information

IMAGE RETRIEVAL: A STATE OF THE ART APPROACH FOR CBIR

IMAGE RETRIEVAL: A STATE OF THE ART APPROACH FOR CBIR IMAGE RETRIEVAL: A STATE OF THE ART APPROACH FOR CBIR AMANDEEP KHOKHER Department of ECE, RIMT-MAEC Mandi Gobindgarh, Punjab, India amandeep.khokher@gmail.com DR. RAJNEESH TALWAR Department of ECE, RIMT-IET

More information

Querying by Color Regions using the VisualSEEk Content-Based Visual Query System

Querying by Color Regions using the VisualSEEk Content-Based Visual Query System Querying by Color Regions using the VisualSEEk Content-Based Visual Query System John R. Smith and Shih-Fu Chang Center for Image Technology for New Media and Department of Electrical Engineering Columbia

More information

Object detection using non-redundant local Binary Patterns

Object detection using non-redundant local Binary Patterns University of Wollongong Research Online Faculty of Informatics - Papers (Archive) Faculty of Engineering and Information Sciences 2010 Object detection using non-redundant local Binary Patterns Duc Thanh

More information

Diffusion Distance for Histogram Comparison

Diffusion Distance for Histogram Comparison Diffusion Distance for Histogram Comparison Haibin Ling Center for Automation Research, Computer Science Department, University of Maryland College Park, MD, 20770, USA hbling@umiacs.umd.edu Kazunori Okada

More information

Bipartite Graph Partitioning and Content-based Image Clustering

Bipartite Graph Partitioning and Content-based Image Clustering Bipartite Graph Partitioning and Content-based Image Clustering Guoping Qiu School of Computer Science The University of Nottingham qiu @ cs.nott.ac.uk Abstract This paper presents a method to model the

More information

Integrated Querying of Images by Color, Shape, and Texture Content of Salient Objects

Integrated Querying of Images by Color, Shape, and Texture Content of Salient Objects Integrated Querying of Images by Color, Shape, and Texture Content of Salient Objects Ediz Şaykol, Uğur Güdükbay, and Özgür Ulusoy Department of Computer Engineering, Bilkent University 06800 Bilkent,

More information

COMPARISON OF SOME CONTENT-BASED IMAGE RETRIEVAL SYSTEMS WITH ROCK TEXTURE IMAGES

COMPARISON OF SOME CONTENT-BASED IMAGE RETRIEVAL SYSTEMS WITH ROCK TEXTURE IMAGES COMPARISON OF SOME CONTENT-BASED IMAGE RETRIEVAL SYSTEMS WITH ROCK TEXTURE IMAGES Leena Lepistö 1, Iivari Kunttu 1, Jorma Autio 2, and Ari Visa 1 1 Tampere University of Technology, Institute of Signal

More information

Face and Nose Detection in Digital Images using Local Binary Patterns

Face and Nose Detection in Digital Images using Local Binary Patterns Face and Nose Detection in Digital Images using Local Binary Patterns Stanko Kružić Post-graduate student University of Split, Faculty of Electrical Engineering, Mechanical Engineering and Naval Architecture

More information

A Comparative Analysis of Retrieval Techniques in Content Based Image Retrieval

A Comparative Analysis of Retrieval Techniques in Content Based Image Retrieval A Comparative Analysis of Retrieval Techniques in Content Based Image Retrieval Mohini. P. Sardey 1, G. K. Kharate 2 1 AISSMS Institute Of Information Technology, Savitribai Phule Pune University, Pune

More information

A Computer Vision System for Graphical Pattern Recognition and Semantic Object Detection

A Computer Vision System for Graphical Pattern Recognition and Semantic Object Detection A Computer Vision System for Graphical Pattern Recognition and Semantic Object Detection Tudor Barbu Institute of Computer Science, Iaşi, Romania Abstract We have focused on a set of problems related to

More information

Texture-Based Image Retrieval Without Segmentation

Texture-Based Image Retrieval Without Segmentation Texture-Based Image Retrieval Without Segmentation Yossi Rubner and Carlo Tomasi Computer Science Department Stanford University Stanford, CA 905 [rubner,tomasi]@@cs.stanford.edu Abstract Image segmentation

More information

Edge Histogram Descriptor, Geometric Moment and Sobel Edge Detector Combined Features Based Object Recognition and Retrieval System

Edge Histogram Descriptor, Geometric Moment and Sobel Edge Detector Combined Features Based Object Recognition and Retrieval System Edge Histogram Descriptor, Geometric Moment and Sobel Edge Detector Combined Features Based Object Recognition and Retrieval System Neetesh Prajapati M. Tech Scholar VNS college,bhopal Amit Kumar Nandanwar

More information

A Miniature-Based Image Retrieval System

A Miniature-Based Image Retrieval System A Miniature-Based Image Retrieval System Md. Saiful Islam 1 and Md. Haider Ali 2 Institute of Information Technology 1, Dept. of Computer Science and Engineering 2, University of Dhaka 1, 2, Dhaka-1000,

More information

[2006] IEEE. Reprinted, with permission, from [Wenjing Jia, Huaifeng Zhang, Xiangjian He, and Qiang Wu, A Comparison on Histogram Based Image

[2006] IEEE. Reprinted, with permission, from [Wenjing Jia, Huaifeng Zhang, Xiangjian He, and Qiang Wu, A Comparison on Histogram Based Image [6] IEEE. Reprinted, with permission, from [Wenjing Jia, Huaifeng Zhang, Xiangjian He, and Qiang Wu, A Comparison on Histogram Based Image Matching Methods, Video and Signal Based Surveillance, 6. AVSS

More information

Obtaining Feature Correspondences

Obtaining Feature Correspondences Obtaining Feature Correspondences Neill Campbell May 9, 2008 A state-of-the-art system for finding objects in images has recently been developed by David Lowe. The algorithm is termed the Scale-Invariant

More information

A New Feature Local Binary Patterns (FLBP) Method

A New Feature Local Binary Patterns (FLBP) Method A New Feature Local Binary Patterns (FLBP) Method Jiayu Gu and Chengjun Liu The Department of Computer Science, New Jersey Institute of Technology, Newark, NJ 07102, USA Abstract - This paper presents

More information

IMPROVING THE PERFORMANCE OF CONTENT-BASED IMAGE RETRIEVAL SYSTEMS WITH COLOR IMAGE PROCESSING TOOLS

IMPROVING THE PERFORMANCE OF CONTENT-BASED IMAGE RETRIEVAL SYSTEMS WITH COLOR IMAGE PROCESSING TOOLS IMPROVING THE PERFORMANCE OF CONTENT-BASED IMAGE RETRIEVAL SYSTEMS WITH COLOR IMAGE PROCESSING TOOLS Fabio Costa Advanced Technology & Strategy (CGISS) Motorola 8000 West Sunrise Blvd. Plantation, FL 33322

More information

Topology-Preserved Diffusion Distance for Histogram Comparison

Topology-Preserved Diffusion Distance for Histogram Comparison Topology-Preserved Diffusion Distance for Histogram Comparison Wang Yan, Qiqi Wang, Qingshan Liu, Hanqing Lu, and Songde Ma National Laboratory of Pattern Recognition Institute of Automation, Chinese Academy

More information

Rough Feature Selection for CBIR. Outline

Rough Feature Selection for CBIR. Outline Rough Feature Selection for CBIR Instructor:Dr. Wojciech Ziarko presenter :Aifen Ye 19th Nov., 2008 Outline Motivation Rough Feature Selection Image Retrieval Image Retrieval with Rough Feature Selection

More information

MULTI ORIENTATION PERFORMANCE OF FEATURE EXTRACTION FOR HUMAN HEAD RECOGNITION

MULTI ORIENTATION PERFORMANCE OF FEATURE EXTRACTION FOR HUMAN HEAD RECOGNITION MULTI ORIENTATION PERFORMANCE OF FEATURE EXTRACTION FOR HUMAN HEAD RECOGNITION Panca Mudjirahardjo, Rahmadwati, Nanang Sulistiyanto and R. Arief Setyawan Department of Electrical Engineering, Faculty of

More information

Robotics Programming Laboratory

Robotics Programming Laboratory Chair of Software Engineering Robotics Programming Laboratory Bertrand Meyer Jiwon Shin Lecture 8: Robot Perception Perception http://pascallin.ecs.soton.ac.uk/challenges/voc/databases.html#caltech car

More information

THE MPEG-7 COLOUR STRUCTURE DESCRIPTOR: IMAGE DESCRIPTION USING COLOUR AND LOCAL SPATIAL INFORMATION. Dean S. Messing Peter van Beek James H.

THE MPEG-7 COLOUR STRUCTURE DESCRIPTOR: IMAGE DESCRIPTION USING COLOUR AND LOCAL SPATIAL INFORMATION. Dean S. Messing Peter van Beek James H. The MPEG- Colour Structure Descriptor: Image description using colour and local spatial information D. Messing, P. van Beek, J.H. Errico IEEE International Conference on Image Processing (ICIP ), Thessaloniki,

More information

CHAPTER 2 TEXTURE CLASSIFICATION METHODS GRAY LEVEL CO-OCCURRENCE MATRIX AND TEXTURE UNIT

CHAPTER 2 TEXTURE CLASSIFICATION METHODS GRAY LEVEL CO-OCCURRENCE MATRIX AND TEXTURE UNIT CHAPTER 2 TEXTURE CLASSIFICATION METHODS GRAY LEVEL CO-OCCURRENCE MATRIX AND TEXTURE UNIT 2.1 BRIEF OUTLINE The classification of digital imagery is to extract useful thematic information which is one

More information

COLOR IMAGE RETRIEVAL SYSTEM: A COMPARISON OF APPROACHES

COLOR IMAGE RETRIEVAL SYSTEM: A COMPARISON OF APPROACHES COLOR IMAGE RETRIEVAL SYSTEM: A COMPARISON OF APPROACHES AURA CONCI EVEREST MATHIAS. M. M. DE CASTRO CAA- Computação Aplicada e Automação UFF Universidade Federal Fluminense Rua Passo de Pátria, 56, CEP

More information

Multimodal Information Spaces for Content-based Image Retrieval

Multimodal Information Spaces for Content-based Image Retrieval Research Proposal Multimodal Information Spaces for Content-based Image Retrieval Abstract Currently, image retrieval by content is a research problem of great interest in academia and the industry, due

More information

Content Based Image Retrieval

Content Based Image Retrieval Content Based Image Retrieval R. Venkatesh Babu Outline What is CBIR Approaches Features for content based image retrieval Global Local Hybrid Similarity measure Trtaditional Image Retrieval Traditional

More information

Image retrieval based on bag of images

Image retrieval based on bag of images University of Wollongong Research Online Faculty of Informatics - Papers (Archive) Faculty of Engineering and Information Sciences 2009 Image retrieval based on bag of images Jun Zhang University of Wollongong

More information

Image Retrieval based on combined features of image sub-blocks

Image Retrieval based on combined features of image sub-blocks Image Retrieval based on combined features of image sub-blocks Ch.Kavitha #1, Dr. B.Prabhakara Rao *2, Dr. A.Govardhan ~3 # Associate Professor, IT department, Gudlavalleru Engineering College Gudlavalleru,

More information

Sketch Based Image Retrieval Approach Using Gray Level Co-Occurrence Matrix

Sketch Based Image Retrieval Approach Using Gray Level Co-Occurrence Matrix Sketch Based Image Retrieval Approach Using Gray Level Co-Occurrence Matrix K... Nagarjuna Reddy P. Prasanna Kumari JNT University, JNT University, LIET, Himayatsagar, Hyderabad-8, LIET, Himayatsagar,

More information

Image Indexing Using Color Correlograms

Image Indexing Using Color Correlograms Image Indexing Using Color Correlograms Jing Huang S Ravi Kumar Mandar Mitra WeiJing Zhu Ramin Zabih Cornell University Ithaca, NY 8 Abstract We define a new image feature called the color correlogram

More information

Texture Feature Extraction Using Improved Completed Robust Local Binary Pattern for Batik Image Retrieval

Texture Feature Extraction Using Improved Completed Robust Local Binary Pattern for Batik Image Retrieval Texture Feature Extraction Using Improved Completed Robust Local Binary Pattern for Batik Image Retrieval 1 Arrie Kurniawardhani, 2 Nanik Suciati, 3 Isye Arieshanti 1, Institut Teknologi Sepuluh Nopember,

More information

A Study on the Effect of Codebook and CodeVector Size on Image Retrieval Using Vector Quantization

A Study on the Effect of Codebook and CodeVector Size on Image Retrieval Using Vector Quantization Computer Science and Engineering. 0; (): -7 DOI: 0. 593/j.computer.000.0 A Study on the Effect of Codebook and CodeVector Size on Image Retrieval Using Vector Quantization B. Janet *, A. V. Reddy Dept.

More information

Query-Sensitive Similarity Measure for Content-Based Image Retrieval

Query-Sensitive Similarity Measure for Content-Based Image Retrieval Query-Sensitive Similarity Measure for Content-Based Image Retrieval Zhi-Hua Zhou Hong-Bin Dai National Laboratory for Novel Software Technology Nanjing University, Nanjing 2193, China {zhouzh, daihb}@lamda.nju.edu.cn

More information

Optimal Keys for Image Database Indexing

Optimal Keys for Image Database Indexing Optimal Keys for Image Database Indexing Michael S. Lew D.P. (Nies) Huijsmans Department of Computer Science Leiden University, Postbus 9512 2300 RA Leiden, The Netherlands { mlew huij sman} @ wi.leidenuniv.nl

More information

UNSUPERVISED IMAGE SEGMENTATION BASED ON THE MULTI-RESOLUTION INTEGRATION OF ADAPTIVE LOCAL TEXTURE DESCRIPTORS

UNSUPERVISED IMAGE SEGMENTATION BASED ON THE MULTI-RESOLUTION INTEGRATION OF ADAPTIVE LOCAL TEXTURE DESCRIPTORS UNSUPERVISED IMAGE SEGMENTATION BASED ON THE MULTI-RESOLUTION INTEGRATION OF ADAPTIVE LOCAL TEXTURE DESCRIPTORS Dana E. Ilea, Paul F. Whelan and Ovidiu Ghita Centre for Image Processing & Analysis (CIPA),

More information

The Institute of Telecommunications and Computer Sciences, UTP University of Science and Technology, Bydgoszcz , Poland

The Institute of Telecommunications and Computer Sciences, UTP University of Science and Technology, Bydgoszcz , Poland Computer Technology and Application 6 (2015) 64-69 doi: 10.17265/1934-7332/2015.02.002 D DAVID PUBLISHIN An Image Analysis of Breast Thermograms Ryszard S. Choras The Institute of Telecommunications and

More information

Short Run length Descriptor for Image Retrieval

Short Run length Descriptor for Image Retrieval CHAPTER -6 Short Run length Descriptor for Image Retrieval 6.1 Introduction In the recent years, growth of multimedia information from various sources has increased many folds. This has created the demand

More information

A Feature Level Fusion in Similarity Matching to Content-Based Image Retrieval

A Feature Level Fusion in Similarity Matching to Content-Based Image Retrieval A Feature Level Fusion in Similarity Matching to Content-Based Image Retrieval Md. Mahmudur Rahman, Bipin C. Desai Computer Science Department Concordia University Montreal, QC, CANADA mah rahm@cs.concordia.ca

More information

Color Content Based Image Classification

Color Content Based Image Classification Color Content Based Image Classification Szabolcs Sergyán Budapest Tech sergyan.szabolcs@nik.bmf.hu Abstract: In content based image retrieval systems the most efficient and simple searches are the color

More information

Boosting Image Database Retrieval

Boosting Image Database Retrieval MASSACHUSETTS INSTITUTE OF TECHNOLOGY ARTIFICIAL INTELLIGENCE LABORATORY A.I. Memo No. 1669 Spetember, 1999 Boosting Image Database Retrieval Kinh H. Tieu and Paul Viola 1 Artificial Intelligence Laboratory

More information

AUTOMATIC IMAGE ANNOTATION AND RETRIEVAL USING THE JOINT COMPOSITE DESCRIPTOR.

AUTOMATIC IMAGE ANNOTATION AND RETRIEVAL USING THE JOINT COMPOSITE DESCRIPTOR. AUTOMATIC IMAGE ANNOTATION AND RETRIEVAL USING THE JOINT COMPOSITE DESCRIPTOR. Konstantinos Zagoris, Savvas A. Chatzichristofis, Nikos Papamarkos and Yiannis S. Boutalis Department of Electrical & Computer

More information

RobustmageRetrievalusingDominantColourwithBinarizedPatternFeatureExtractionandFastCorrelation

RobustmageRetrievalusingDominantColourwithBinarizedPatternFeatureExtractionandFastCorrelation Global Journal of Computer Science and Technology: F Graphics & Vision Volume 14 Issue 3 Version 1.0 Year 2014 Type: Double Blind Peer Reviewed International Research Journal Publisher: Global Journals

More information

Latest development in image feature representation and extraction

Latest development in image feature representation and extraction International Journal of Advanced Research and Development ISSN: 2455-4030, Impact Factor: RJIF 5.24 www.advancedjournal.com Volume 2; Issue 1; January 2017; Page No. 05-09 Latest development in image

More information

Image Retrieval Using Colour Co-occurrence Histograms

Image Retrieval Using Colour Co-occurrence Histograms Image Retrieval Using Colour Co-occurrence Histograms Linjiang Yu and Georgy Gimel farb CITR, Department of Computer Science, Tamaki Campus, The University of Auckland, New Zealand lyu011@ec.auckland.ac.nz,

More information

Texture. Texture is a description of the spatial arrangement of color or intensities in an image or a selected region of an image.

Texture. Texture is a description of the spatial arrangement of color or intensities in an image or a selected region of an image. Texture Texture is a description of the spatial arrangement of color or intensities in an image or a selected region of an image. Structural approach: a set of texels in some regular or repeated pattern

More information

Image Mining: frameworks and techniques

Image Mining: frameworks and techniques Image Mining: frameworks and techniques Madhumathi.k 1, Dr.Antony Selvadoss Thanamani 2 M.Phil, Department of computer science, NGM College, Pollachi, Coimbatore, India 1 HOD Department of Computer Science,

More information

Indexing Tamper Resistant Features for Image Copy Detection

Indexing Tamper Resistant Features for Image Copy Detection Indexing Tamper Resistant Features for Image Copy Detection Peter Mork y, Beitao Li z, Edward Chang z, Junghoo Cho y,chenli y, and James Wang yλ Abstract In this paper we present the image copy detection

More information

An Image Data Model. William I. Grosky and Peter L. Stanchev

An Image Data Model. William I. Grosky and Peter L. Stanchev An Image Data Model William I. Grosky and Peter L. Stanchev Department of Computer Science, Wayne State University Detroit, MI 48202 {grosky, stanchev}@cs.wayne.edu Abstract. In this paper, we analyze

More information

Efficient Content Based Image Retrieval System with Metadata Processing

Efficient Content Based Image Retrieval System with Metadata Processing IJIRST International Journal for Innovative Research in Science & Technology Volume 1 Issue 10 March 2015 ISSN (online): 2349-6010 Efficient Content Based Image Retrieval System with Metadata Processing

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

Semantic Evaluation and Efficiency Comparison of the Edge Pixel Neighboring Histogram in Image retrieval

Semantic Evaluation and Efficiency Comparison of the Edge Pixel Neighboring Histogram in Image retrieval Semantic Evaluation and Efficiency Comparison of the Edge Pixel Neighboring Histogram in Image retrieval Abdolah Chalechale and Alfred Mertins School of Electrical, Computer and Telecommunications Engineering

More information

International Journal of Advance Research in Computer Science and Management Studies

International Journal of Advance Research in Computer Science and Management Studies Volume 3, Issue 3, March 2015 ISSN: 2321 7782 (Online) International Journal of Advance Research in Computer Science and Management Studies Research Article / Survey Paper / Case Study Available online

More information

Fast and Robust Earth Mover s Distances

Fast and Robust Earth Mover s Distances Fast and Robust Earth Mover s Distances Ofir Pele and Michael Werman School of Computer Science and Engineering The Hebrew University of Jerusalem {ofirpele,werman}@cs.huji.ac.il Abstract We present a

More information

Structured Light II. Thanks to Ronen Gvili, Szymon Rusinkiewicz and Maks Ovsjanikov

Structured Light II. Thanks to Ronen Gvili, Szymon Rusinkiewicz and Maks Ovsjanikov Structured Light II Johannes Köhler Johannes.koehler@dfki.de Thanks to Ronen Gvili, Szymon Rusinkiewicz and Maks Ovsjanikov Introduction Previous lecture: Structured Light I Active Scanning Camera/emitter

More information

DISTANCE MATRIX APPROACH TO CONTENT IMAGE RETRIEVAL. Dmitry Kinoshenko, Vladimir Mashtalir, Elena Yegorova

DISTANCE MATRIX APPROACH TO CONTENT IMAGE RETRIEVAL. Dmitry Kinoshenko, Vladimir Mashtalir, Elena Yegorova International Book Series "Information Science and Computing" 29 DISTANCE MATRIX APPROACH TO CONTENT IMAGE RETRIEVAL Dmitry Kinoshenko, Vladimir Mashtalir, Elena Yegorova Abstract: As the volume of image

More information

Elliptical Head Tracker using Intensity Gradients and Texture Histograms

Elliptical Head Tracker using Intensity Gradients and Texture Histograms Elliptical Head Tracker using Intensity Gradients and Texture Histograms Sriram Rangarajan, Dept. of Electrical and Computer Engineering, Clemson University, Clemson, SC 29634 srangar@clemson.edu December

More information

Mobile Human Detection Systems based on Sliding Windows Approach-A Review

Mobile Human Detection Systems based on Sliding Windows Approach-A Review Mobile Human Detection Systems based on Sliding Windows Approach-A Review Seminar: Mobile Human detection systems Njieutcheu Tassi cedrique Rovile Department of Computer Engineering University of Heidelberg

More information

User-Powered Content-Free Approach to Image Retrieval

User-Powered Content-Free Approach to Image Retrieval User-Powered Content-Free Approach to Image Retrieval Takeo Kanade and Shingo Uchihashi October 004 CMU-CS-04-169 School of Computer Science Carnegie Mellon University Pittsburgh, PA 1513 Keywords: Image

More information

Motion Estimation and Optical Flow Tracking

Motion Estimation and Optical Flow Tracking Image Matching Image Retrieval Object Recognition Motion Estimation and Optical Flow Tracking Example: Mosiacing (Panorama) M. Brown and D. G. Lowe. Recognising Panoramas. ICCV 2003 Example 3D Reconstruction

More information

EE 584 MACHINE VISION

EE 584 MACHINE VISION EE 584 MACHINE VISION Binary Images Analysis Geometrical & Topological Properties Connectedness Binary Algorithms Morphology Binary Images Binary (two-valued; black/white) images gives better efficiency

More information

Weighted Multi-scale Local Binary Pattern Histograms for Face Recognition

Weighted Multi-scale Local Binary Pattern Histograms for Face Recognition Weighted Multi-scale Local Binary Pattern Histograms for Face Recognition Olegs Nikisins Institute of Electronics and Computer Science 14 Dzerbenes Str., Riga, LV1006, Latvia Email: Olegs.Nikisins@edi.lv

More information

Patch-based Object Recognition. Basic Idea

Patch-based Object Recognition. Basic Idea Patch-based Object Recognition 1! Basic Idea Determine interest points in image Determine local image properties around interest points Use local image properties for object classification Example: Interest

More information

Consistent Line Clusters for Building Recognition in CBIR

Consistent Line Clusters for Building Recognition in CBIR Consistent Line Clusters for Building Recognition in CBIR Yi Li and Linda G. Shapiro Department of Computer Science and Engineering University of Washington Seattle, WA 98195-250 shapiro,yi @cs.washington.edu

More information

Binary Histogram in Image Classification for Retrieval Purposes

Binary Histogram in Image Classification for Retrieval Purposes Binary Histogram in Image Classification for Retrieval Purposes Iivari Kunttu 1, Leena Lepistö 1, Juhani Rauhamaa 2, and Ari Visa 1 1 Tampere University of Technology Institute of Signal Processing P.

More information

A Fast Distance Between Histograms

A Fast Distance Between Histograms Fast Distance Between Histograms Francesc Serratosa 1 and lberto Sanfeliu 2 1 Universitat Rovira I Virgili, Dept. d Enginyeria Informàtica i Matemàtiques, Spain francesc.serratosa@.urv.net 2 Universitat

More information

APPLYING TEXTURE AND COLOR FEATURES TO NATURAL IMAGE RETRIEVAL

APPLYING TEXTURE AND COLOR FEATURES TO NATURAL IMAGE RETRIEVAL APPLYING TEXTURE AND COLOR FEATURES TO NATURAL IMAGE RETRIEVAL Mari Partio, Esin Guldogan, Olcay Guldogan, and Moncef Gabbouj Institute of Signal Processing, Tampere University of Technology, P.O.BOX 553,

More information

Content-based Image Retrieval using Image Partitioning with Color Histogram and Wavelet-based Color Histogram of the Image

Content-based Image Retrieval using Image Partitioning with Color Histogram and Wavelet-based Color Histogram of the Image Content-based Image Retrieval using Image Partitioning with Color Histogram and Wavelet-based Color Histogram of the Image Moheb R. Girgis Department of Computer Science Faculty of Science Minia University,

More information

User-Powered Content-Free Approach to Image Retrieval

User-Powered Content-Free Approach to Image Retrieval User-Powered Content-Free Approach to Image Retrieval Takeo Kanade and Shingo Uchihashi Robotics Institute and ECE Department Carnegie Mellon University 5000 Forbes Avenue, Pittsburgh, PA USA {tk,shingo}@cs.cmu.edu

More information

A Content Based Image Retrieval System Based on Color Features

A Content Based Image Retrieval System Based on Color Features A Content Based Image Retrieval System Based on Features Irena Valova, University of Rousse Angel Kanchev, Department of Computer Systems and Technologies, Rousse, Bulgaria, Irena@ecs.ru.acad.bg Boris

More information

Content based Image Retrieval Using Multichannel Feature Extraction Techniques

Content based Image Retrieval Using Multichannel Feature Extraction Techniques ISSN 2395-1621 Content based Image Retrieval Using Multichannel Feature Extraction Techniques #1 Pooja P. Patil1, #2 Prof. B.H. Thombare 1 patilpoojapandit@gmail.com #1 M.E. Student, Computer Engineering

More information

An Adaptive Threshold LBP Algorithm for Face Recognition

An Adaptive Threshold LBP Algorithm for Face Recognition An Adaptive Threshold LBP Algorithm for Face Recognition Xiaoping Jiang 1, Chuyu Guo 1,*, Hua Zhang 1, and Chenghua Li 1 1 College of Electronics and Information Engineering, Hubei Key Laboratory of Intelligent

More information

Content-Based Retrieval of Cultural Relic Images in Digital Museum *

Content-Based Retrieval of Cultural Relic Images in Digital Museum * Content-Based Retrieval of Cultural Relic Images in Digital Museum * Tongwei Ren 1,2 and Gangshan Wu 1,2 1 State Key Laboratory for Novel Software Technology, Nanjing University, Nanjing, 210093 2 Department

More information

3D Computer Vision. Structured Light II. Prof. Didier Stricker. Kaiserlautern University.

3D Computer Vision. Structured Light II. Prof. Didier Stricker. Kaiserlautern University. 3D Computer Vision Structured Light II Prof. Didier Stricker Kaiserlautern University http://ags.cs.uni-kl.de/ DFKI Deutsches Forschungszentrum für Künstliche Intelligenz http://av.dfki.de 1 Introduction

More information

Augmented Reality VU. Computer Vision 3D Registration (2) Prof. Vincent Lepetit

Augmented Reality VU. Computer Vision 3D Registration (2) Prof. Vincent Lepetit Augmented Reality VU Computer Vision 3D Registration (2) Prof. Vincent Lepetit Feature Point-Based 3D Tracking Feature Points for 3D Tracking Much less ambiguous than edges; Point-to-point reprojection

More information

Learning Semantic Concepts from Visual Data Using Neural Networks

Learning Semantic Concepts from Visual Data Using Neural Networks Learning Semantic Concepts from Visual Data Using Neural Networks Xiaohang Ma and Dianhui Wang Department of Computer Science and Computer Engineering, La Trobe University, Melbourne, VIC 3083, Australia

More information

Practical Image and Video Processing Using MATLAB

Practical Image and Video Processing Using MATLAB Practical Image and Video Processing Using MATLAB Chapter 18 Feature extraction and representation What will we learn? What is feature extraction and why is it a critical step in most computer vision and

More information

MORPHOLOGICAL BOUNDARY BASED SHAPE REPRESENTATION SCHEMES ON MOMENT INVARIANTS FOR CLASSIFICATION OF TEXTURES

MORPHOLOGICAL BOUNDARY BASED SHAPE REPRESENTATION SCHEMES ON MOMENT INVARIANTS FOR CLASSIFICATION OF TEXTURES International Journal of Computer Science and Communication Vol. 3, No. 1, January-June 2012, pp. 125-130 MORPHOLOGICAL BOUNDARY BASED SHAPE REPRESENTATION SCHEMES ON MOMENT INVARIANTS FOR CLASSIFICATION

More information

IMAGE PROCESSING AND IMAGE REGISTRATION ON SPIRAL ARCHITECTURE WITH salib

IMAGE PROCESSING AND IMAGE REGISTRATION ON SPIRAL ARCHITECTURE WITH salib IMAGE PROCESSING AND IMAGE REGISTRATION ON SPIRAL ARCHITECTURE WITH salib Stefan Bobe 1 and Gerald Schaefer 2,* 1 University of Applied Sciences, Bielefeld, Germany. 2 School of Computing and Informatics,

More information

Topic 6 Representation and Description

Topic 6 Representation and Description Topic 6 Representation and Description Background Segmentation divides the image into regions Each region should be represented and described in a form suitable for further processing/decision-making Representation

More information

A Novel Content Based Image Retrieval System using K-means/KNN with Feature Extraction

A Novel Content Based Image Retrieval System using K-means/KNN with Feature Extraction DOI: 10.2298/CSIS120122047C A Novel Content Based Image Retrieval System using K-means/KNN with Feature Extraction Ray-I Chang 1, Shu-Yu Lin 1,2, Jan-Ming Ho 2, Chi-Wen Fann 2, and Yu-Chun Wang 2 1 Dept.

More information

Color and Shape Index for Region-Based Image Retrieval

Color and Shape Index for Region-Based Image Retrieval Color and Shape Index for Region-Based Image Retrieval B.G. Prasad 1, S.K. Gupta 2, and K.K. Biswas 2 1 Department of Computer Science and Engineering, P.E.S.College of Engineering, Mandya, 571402, INDIA.

More information

Learning Representative Objects from Images Using Quadratic Optimization

Learning Representative Objects from Images Using Quadratic Optimization Learning Representative Objects from Images Using Quadratic Optimization Xiaonan Lu Department of Computer Science and Engineering The Pennsylvania State University Email: xlu@cse.psu.edu Jia Li Department

More information

arxiv: v3 [cs.cv] 3 Oct 2012

arxiv: v3 [cs.cv] 3 Oct 2012 Combined Descriptors in Spatial Pyramid Domain for Image Classification Junlin Hu and Ping Guo arxiv:1210.0386v3 [cs.cv] 3 Oct 2012 Image Processing and Pattern Recognition Laboratory Beijing Normal University,

More information

5. Feature Extraction from Images

5. Feature Extraction from Images 5. Feature Extraction from Images Aim of this Chapter: Learn the Basic Feature Extraction Methods for Images Main features: Color Texture Edges Wie funktioniert ein Mustererkennungssystem Test Data x i

More information

Structured Light II. Thanks to Ronen Gvili, Szymon Rusinkiewicz and Maks Ovsjanikov

Structured Light II. Thanks to Ronen Gvili, Szymon Rusinkiewicz and Maks Ovsjanikov Structured Light II Johannes Köhler Johannes.koehler@dfki.de Thanks to Ronen Gvili, Szymon Rusinkiewicz and Maks Ovsjanikov Introduction Previous lecture: Structured Light I Active Scanning Camera/emitter

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

Image Processing, Analysis and Machine Vision

Image Processing, Analysis and Machine Vision Image Processing, Analysis and Machine Vision Milan Sonka PhD University of Iowa Iowa City, USA Vaclav Hlavac PhD Czech Technical University Prague, Czech Republic and Roger Boyle DPhil, MBCS, CEng University

More information

Object-Based Image Labeling through Learning-by-Example and Multi-Level Segmentation. Rochester, NY 14627, USA

Object-Based Image Labeling through Learning-by-Example and Multi-Level Segmentation. Rochester, NY 14627, USA Object-Based Image Labeling through Learning-by-Example and Multi-Level Segmentation Y. Xu (), P. Duygulu (2), E. Saber (), (3), A. M. Tekalp (), (4), and F. T. Yarman-Vural (2) (). Department of Electrical

More information

Content Based Image Retrieval (CBIR) Using Binary Clustering Approach

Content Based Image Retrieval (CBIR) Using Binary Clustering Approach Volume: 05 Issue: 07 July 208 www.irjet.net p-issn: 2395-0072 Content Based Image Retrieval (CBIR) Using Binary Clustering Approach Neha Shrivastav, Asst. prof. vimal shukla 2 M.tech Scholar knp collage

More information