Travel Photo Album Summarization based on Aesthetic quality, Interestingness, and Memorableness

Size: px
Start display at page:

Download "Travel Photo Album Summarization based on Aesthetic quality, Interestingness, and Memorableness"

Transcription

1 Travel Photo Album Summarization based on Aesthetic quality, Interestingness, and Memorableness Jun-Hyuk Kim and Jong-Seok Lee School of Integrated Technology and Yonsei Institute of Convergence Technology Yonsei University, Korea {junhyuk.kim, Abstract Photo album summarization refers to the process of choosing a representative subset of photos in a photo album. In this paper, we propose a novel system capable of automatic photo album summarization based on three fundamental criteria, namely, aesthetic quality, interestingness, and memorableness. Based on these criteria, steps for filtering and scoring photos are designed. Through an experiment with photo albums of different sizes, it is demonstrated that the proposed system works well consistently. I. INTRODUCTION The proliferation of mobile devices allows many people to take photos easily in their daily lives. Accordingly, the volume of personal photo collections has increased much more than before. The collected photos can be used for a variety of purposes including sharing with others and recalling past memories. Specifically, activities of choosing representative photos from a photo collection, called photo album summarization, for sharing them online and printing them in the form of book occur frequently [1]. However, it is very difficult and time-consuming to manually search through an unorganized photo album. In order to resolve such difficulty, we present a novel system that automatically summarizes photo albums based on three fundamental criteria, namely, aesthetic quality, interestingness, and memorableness. First, aesthetic quality of the photos in the summary must be high, as many photos taken by amateur users are of low aesthetic quality. Second, each photo in the summary must be interesting. Third, the photos in the summary must be memorable, i.e., contain valuable memories. The three criteria are implemented as filtering steps excluding unsuitable photos and scoring steps assigning importance of the photos. We aim at maximizing synergy of the criteria to optimize the system for travel photo collections. The studies [], [3] share some similar aspects with our work. In [], key photos in temporally grouped partitions are selected based on two rules. The first one considers the content of the photos by selecting photos that have large and centerpositioned frontal faces, and the second considers temporal importance of photos by selecting photos that are taken within small time intervals. However, aesthetic aspects of photos were not considered. Some notions used in [3] (e.g., diversity) share similarity with those in our work, but the method in [3] relies on social and geographical data, which are not available in many cases. II. PROPOSED METHOD The proposed photo album summarization method is based on the following three criteria: Aesthetic quality: When people summarize a photo album, they naturally select photos that are aesthetically pleasing. Photos taken by amateur users often contain aesthetic defects, which would not be candidates for summary. Aesthetic image quality assessment have been researched quite extensively [4]. Interestingness: In the album summary, it is not desirable to have multiple photos of similar content. Thus, the interestingness criterion enforces that the summary contains unique photos, and moreover, among multiple photos of similar content, the one having the best aesthetic quality is selected. It should be noted that this criterion is different from interestingness introduced in [5] that measures how much interesting content is included in an image. In our case, interestingness is not about the content of a particular photo but determined by similarity of temporally neighboring photos. In addition, we do not attempt to measure interestingness scores as in [5] but filter out duplicate photos to make each of the photos in the summary interesting. Memorableness: There are memorable photos that have special meaning for someone. It should be noted that this criterion is different from the memorablility noted in [6]. Whereas memorablility measures how easy a photo is to remember, which is not relevant in the context of photo album summarization, memorableness in our work is the criterion for measuring how much the user wants to remember. A. Overall procedure The overall procedure of the proposed system is summarized in Fig. 1. First, the system reads the photo album and deletes

2 Fig. 1: Flow chart of the proposed system. The criterion considered in each step is indicated by the box color. photos that are judged as blurred. Then, aesthetic quality scores of the remaining photos are calculated. Among similar photos neighboring temporally, the one having the highest aesthetic quality is selected and the rest is filtered out, which is based on the interestingness criterion. The memorableness scores are calculated for the remaining photos and used together with the aesthetic quality scores to obtain the final scores. Finally, the photos ranked top compose the final summary. B. Aesthetic quality Previous studies on aesthetic image quality evaluation often use a supervised learning approach to learn the mapping between visual features and aesthetic quality scores. Such an approach requires a large set of training images, which is often burdensome. Thus, we instead design an algorithm that does not require learning. 1) Aesthetic Saliency: Aesthetic saliency means how salient the main part of a photo is and how much the main part satisfies the compositional attribute, rule of thirds. The aesthetic saliency score is obtained by the weighted sum of the saliency score and the rule of thirds (ROT) score, which are explained below. The main part of a photo can be people or salient object(s). Thus, we consider the following three cases (Fig. ): Case 1: The photo contains one or more people. Case : The photo contains salient object(s). Case 3: There is no main person/object in the photo. (a) Case 1 (b) Case (c) Case 3 Fig. : Three cases considered for calculating aesthetic saliency scores. We use the Viola-Jones algorithm to detect faces in a photo. The number of faces, their locations, and sizes are obtained. The color, size, and location of each detected face are examined to remove detection errors. If no face is detected, we use the conditional random field (CRF)-based method [7] to detect salient objects in the photo. The outputs of the method Fig. 3: Scoring according to the rule of thirds. In the right panel, the red line shows our scoring scheme; linear scoring is also shown as the blue line for comparison. are the location of the salient part and the score representing how salient the part is. The saliency score is calculated differently for each case. In Case 1, if there are a certain number of persons, the maximum saliency score is given. If the photo contains salient objects and the output score of the salient object detection algorithm is higher than a threshold, we regard the photo as Case and use the output score as the saliency score. Finally, if the output score is less than the threshold, we regard the photo as Case 3 and the saliency score becomes zero. The rule of thirds is a compositional guideline proposing that an image is imagined as divided into nine equal parts by two equally spaced horizontal lines and two equally spaced vertical lines, and important compositional elements should be placed at their intersections. Thus, for Case 1 and Case, the ROT score ranging between 0 and 100 for an image having a size of M by N pixels is defined as follows (Fig. 3): x (1) ROT score = q 1 (M/3) + (N/3) where x is the distance between the center of the main object and the nearest intersection. In comparison to linear scoring (shown as the blue line in Fig. 3), it allows modest score decrease around the intersection but decreases the score rapidly as the location of the main object becomes more distant. For Case 3, the ROT score is set to zero. In Case 1, if there are more than a certain number of persons (four in our experiment) or they are not close to each other, the ROT score is also set to zero. ) Brightness: The brightness distribution of a photo plays an important role in determining the aesthetic quality. If it is too dark or too bright, it does not look aesthetically attractive.

3 more than 50% of the pixels in the upper one-third region of a photo have hue values within this range, we regard the photo as containing blue sky. If a photo has blue sky, we increase its aesthetic quality score in a way that the amount of increase is larger for a photo having a lower quality score. C. Interestingness (a) (b) Fig. 4: (a) Area used for calculating brightness scores and sharpness scores. (b) Two examples of the brightness histogram. We postulate that it is better if the brightness histogram of a photo is more similar to a uniform distribution function. Thus, we measure the distance between the brightness histogram and a uniform histogram by using the Kullback-Leibler (KL) divergence and use it as the brightness score after linear scaling to make the score ranging 0 to 100. Here, only the central part of a photo is used as shown in Fig. 4(a) because the boundary area is less important than the central part in judging aesthetic quality in the viewpoint of brightness. Two examples are shown in Fig. 4(b). The upper image has a well-distributed brightness histogram that is relatively similar to the uniform function, so the KL divergence is relatively low. On the other hand, the lower image has a highly skewed histogram, so the KL divergence is relatively high. 3) Sharpness: Blurred images are frequently found in a photo album created by an amatuer with a light handheld devices such as smartphones, which are not aesthetically preferable. We use the algorithm presented in [8], which compares the variances of the pixel values of the original image and those of a blurred version of the image. 4) Blue Sky: In the case of outdoor photos, presence of blue sky tends to enhance their aesthetic quality. We detect blue sky in a photo in the HSV color space by considering that hue values from 19 to 64 correspond to blue sky. If The interestingness criterion prevents containing similar images in the summary result in order to keep every image in the summary interesting. Two types of similarity are employed, i.e., temporal similarity and content similarity. The photos are listed in the chronological order, and two neighboring photos are compared. If the time difference between them is less than five minutes, their content similarity is further examined. We use the speeded up robust features (SURF) algorithm to measure the content similarity between two images. Interest points are extracted using SURF in each image and similar points across the images are matched. Then, the distance between each matched pair of features is calculated. If the sum of the distances is smaller than a threshold, the two images are considered as similar in content. Once it is determined that particular two images are similar, the one having a lower aesthetic quality score is removed. Then, the remaining image is compared with the next image, which is repeated for the entire photo album. D. Memorableness The degree of memorableness of a photo is determined in two ways. First, a photo taken with other people like friends, family, or people met during the travel is often memorable, as it allows one to recall the time spent with them. First, a photo taken with other people like friends, family, or people met during the travel is often memorable. Therefore, the memorableness score is set to be proportional to the number of people in the photo if more than a certain number of people are contained. Second, when a large number of photos have been taken within a short time period, it means that the particular moment or location is memorable. Thus, the memorableness score of a photo is set to be proportional to the number of photos lost against the photo during interestingness-based filtering. Other factors influencing memorableness can be also incorporated. For instance, the presence of a famous landmark in a photo can be detected, or the GPS coordinates can be used to check whether the photo was taken at a famous location. We do not take these into consideration because the photos in our database do not contain such landmarks and GPS information. III. EXPERIMENT A. Dataset Photos taken during two different travels were considered: Travel1: 1 university students visited Switzerland for a week. Travel: 19 university students visited Finland for 3 weeks.

4 Fig. 5: Comparison of the performance of different summarization methods. We created Album1: Album: Album3: three different non-overlapping photo 100 temporally consecutive photos in 00 temporally consecutive photos in 300 temporally consecutive photos in albums: Travel1. Travel. Travel1. (a) Summary results using the Uniform 1 system B. Ground truth In order to evaluate the performance of the proposed system, manual album summarization was performed by employing 0 participants (16 males and 4 females) aging between 19 and 5. They were instructed to manually select 5% or 10% of the photos in each album. The instruction given to the participants is: There are three photo albums obtained from the travels of about 0 college students. The photos in the albums are arranged in the chronological order. Suppose that you work at a company providing a service to summarize photo albums and create printed books with the selected photos. Select a subset of photos that are the most representative in order to satisfy the customer. (b) Summary results using the Uniform system (c) Summary results using the Uniform 3 system (d) Summary results using the proposed system Fig. 6: Selected photos in the case of Album1 (5%). C. Evaluation We created three baseline systems (Uniform 1, Uniform, and Uniform 3) that select photos uniformly with different starting points. The task of the systems was to summarize each album with 5% or 10% of the photos. The performance of a summary was measured as the average number of votes that a photo chosen in the summary received by human. In our system, we manually adjusted the contributions of different scores for combining them. The weights for the saliency score and the ROT score were set to 0.8 and 0., respectively, to obtain the aesthetic saliency score. The aesthetic saliency score and the brightness scores were equally weighted to obtain the aesthetic quality score. The final score was obtained by combining the aesthetic quality score and the memorableness score with weights of 0.8 and 0., respectively. Fig. 5 summarizes the evaluation results for the three albums (Album1, Album, and Album3) and two summary sizes (5% and 10%). It can be seen that the proposed system shows the best performance for Album1 (5%), Album (5%), Album (10%), Album3 (5%) and Album3 (10%), and similar performance with the baseline systems for Album1 (10%). It is also important to note that the proposed system performs well consistently across different albums and different target summary sizes, while the best baseline system (i.e., Uniform ) exhibits severe fluctuation in performance. Fig. 6 compares the results of the Uniform 1, Uniform, Uniform 3, and the proposed system for Album1 (5%). The proposed system tends to select photos that have prominent main objects or people, and thus the summary is more meaningful. Specifically, the second photos in Fig. 6(b) and Fig. 6(c) seem relatively less important and the fourth photo in Fig. 6(b) has poor composition. Compared to the others, the photos in Fig. 6(d) have relatively better composition. IV. C ONCLUSIONS In this paper, we presented a photo album summarization system based on the three criteria: aesthetic quality, interestingness, and memorableness. The experimental results showed that the proposed system yields consistently good summarization performance across different albums and different target summary sizes when compared with manual summarization. ACKNOWLEDGMENT This research was supported by the MSIP(Ministry of Science, ICT and Future Planning), Korea, under the ICT Consilience Creative Program (IITP-R ) supervised by the IITP(Institute for Information & communications Technology Promotion)

5 REFERENCES [1] S. Boll, P. Sandhaus, A. Scherp, and S. Thieme, Metaxa- contextand content-driven metadata enhancement for personal photo books, in Advances in Multimedia Modeling. Springer, 006, pp [] J. Li, J. H. Lim, and Q. Tian, Automatic summarization for personal digital photos, in Proc. PCM, vol. 3, 003, pp [3] P. Sinha, Summarization of archived and shared personal photo collections, in Proc. WWW, 011, pp [4] D. Joshi, R. Datta, E. Fedorovskaya, Q.-T. Luong, J. Z. Wang, J. Li, and J. Luo, Aesthetics and emotions in images, IEEE Signal Processing Magazine, vol. 8, no. 5, pp , 011. [5] H. Grabner, F. Nater, M. Druey, and L. Van Gool, Visual interestingness in image sequences, in Proc. ACM MM, 013, pp [6] P. Isola, J. Xiao, A. Torralba, and A. Oliva, What makes an image memorable? in Proc. CVPR, 011, pp [7] S. Dhar, V. Ordonez, and T. L. Berg, High level describable attributes for predicting aesthetics and interestingness, in Proc. CVPR, 011, pp [8] F. Crete, T. Dolmiere, P. Ladret, and M. Nicolas, The blur effect: perception and estimation with a new no-reference perceptual blur metric, in Proc. of SPIE Electronic Imaging, 007, pp

The Interestingness of Images

The Interestingness of Images The Interestingness of Images Michael Gygli, Helmut Grabner, Hayko Riemenschneider, Fabian Nater, Luc Van Gool (ICCV), 2013 Cemil ZALLUHOĞLU Outline 1.Introduction 2.Related Works 3.Algorithm 4.Experiments

More information

Photo Rating of Facial Pictures based on Image Segmentation

Photo Rating of Facial Pictures based on Image Segmentation Photo Rating of Facial Pictures based on Image Segmentation Arnaud Lienhard, Marion Reinhard, Alice Caplier, Patricia Ladret To cite this version: Arnaud Lienhard, Marion Reinhard, Alice Caplier, Patricia

More information

Detection of Out-Of-Focus Digital Photographs

Detection of Out-Of-Focus Digital Photographs Detection of Out-Of-Focus Digital Photographs Suk Hwan Lim, Jonathan en, Peng Wu Imaging Systems Laboratory HP Laboratories Palo Alto HPL-2005-14 January 20, 2005* digital photographs, outof-focus, sharpness,

More information

Photo Quality Assessment based on a Focusing Map to Consider Shallow Depth of Field

Photo Quality Assessment based on a Focusing Map to Consider Shallow Depth of Field Photo Quality Assessment based on a Focusing Map to Consider Shallow Depth of Field Dong-Sung Ryu, Sun-Young Park, Hwan-Gue Cho Dept. of Computer Science and Engineering, Pusan National University, Geumjeong-gu

More information

Automatic Aesthetic Photo-Rating System

Automatic Aesthetic Photo-Rating System Automatic Aesthetic Photo-Rating System Chen-Tai Kao chentai@stanford.edu Hsin-Fang Wu hfwu@stanford.edu Yen-Ting Liu eggegg@stanford.edu ABSTRACT Growing prevalence of smartphone makes photography easier

More information

Segmentation using Saturation Thresholding and its Application in Content-Based Retrieval of Images

Segmentation using Saturation Thresholding and its Application in Content-Based Retrieval of Images Segmentation using Saturation Thresholding and its Application in Content-Based Retrieval of Images A. Vadivel 1, M. Mohan 1, Shamik Sural 2 and A.K.Majumdar 1 1 Department of Computer Science and Engineering,

More information

DIGITAL IMAGE PROCESSING Quiz exercises preparation for the midterm exam

DIGITAL IMAGE PROCESSING Quiz exercises preparation for the midterm exam DIGITAL IMAGE PROCESSING Quiz exercises preparation for the midterm exam In the following set of questions, there are, possibly, multiple correct answers (1, 2, 3 or 4). Mark the answers you consider correct.

More information

International Journal of Advance Engineering and Research Development

International Journal of Advance Engineering and Research Development Scientific Journal of Impact Factor (SJIF): 4.72 International Journal of Advance Engineering and Research Development Volume 4, Issue 6, June -2017 e-issn (O): 2348-4470 p-issn (P): 2348-6406 Aesthetic

More information

No-Reference Image Quality Assessment using Blur and Noise

No-Reference Image Quality Assessment using Blur and Noise o-reference Image Quality Assessment using and oise Min Goo Choi, Jung Hoon Jung, and Jae Wook Jeon International Science Inde Electrical and Computer Engineering waset.org/publication/2066 Abstract Assessment

More information

ASSESSING PHOTO QUALITY WITH GEO-CONTEXT AND CROWDSOURCED PHOTOS

ASSESSING PHOTO QUALITY WITH GEO-CONTEXT AND CROWDSOURCED PHOTOS ASSESSING PHOTO QUALITY WITH GEO-CONTEXT AND CROWDSOURCED PHOTOS Wenyuan Yin, Tao Mei, Chang Wen Chen State University of New York at Buffalo, NY, USA Microsoft Research Asia, Beijing, P. R. China ABSTRACT

More information

Recent Advances in Image Deblurring. Seungyong Lee (Collaboration w/ Sunghyun Cho)

Recent Advances in Image Deblurring. Seungyong Lee (Collaboration w/ Sunghyun Cho) Recent Advances in Image Deblurring Seungyong Lee (Collaboration w/ Sunghyun Cho) Disclaimer Many images and figures in this course note have been copied from the papers and presentation materials of previous

More information

NEW HIERARCHICAL NOISE REDUCTION 1

NEW HIERARCHICAL NOISE REDUCTION 1 NEW HIERARCHICAL NOISE REDUCTION 1 Hou-Yo Shen ( 沈顥祐 ), 1 Chou-Shann Fuh ( 傅楸善 ) 1 Graduate Institute of Computer Science and Information Engineering, National Taiwan University E-mail: kalababygi@gmail.com

More information

Video Synthesis System for Monitoring Closed Sections 1

Video Synthesis System for Monitoring Closed Sections 1 Video Synthesis System for Monitoring Closed Sections 1 Taehyeong Kim *, 2 Bum-Jin Park 1 Senior Researcher, Korea Institute of Construction Technology, Korea 2 Senior Researcher, Korea Institute of Construction

More information

TAC Reconfiguration for Paging Optimization in LTE-Based Mobile Communication Systems

TAC Reconfiguration for Paging Optimization in LTE-Based Mobile Communication Systems TAC Reconfiguration for Paging Optimization in LTE-Based Mobile Communication Systems Hyung-Woo Kang 1, Seok-Joo Koh 1,*, Sang-Kyu Lim 2, and Tae-Gyu Kang 2 1 School of Computer Science and Engineering,

More information

Blur Detection for Historical Document Images

Blur Detection for Historical Document Images Blur Detection for Historical Document Images Ben Baker FamilySearch bakerb@familysearch.org ABSTRACT FamilySearch captures millions of digital images annually using digital cameras at sites throughout

More information

Reference Free Image Quality Evaluation

Reference Free Image Quality Evaluation Reference Free Image Quality Evaluation for Photos and Digital Film Restoration Majed CHAMBAH Université de Reims Champagne-Ardenne, France 1 Overview Introduction Defects affecting films and Digital film

More information

3D display is imperfect, the contents stereoscopic video are not compatible, and viewing of the limitations of the environment make people feel

3D display is imperfect, the contents stereoscopic video are not compatible, and viewing of the limitations of the environment make people feel 3rd International Conference on Multimedia Technology ICMT 2013) Evaluation of visual comfort for stereoscopic video based on region segmentation Shigang Wang Xiaoyu Wang Yuanzhi Lv Abstract In order to

More information

EFFICIENT COLOR IMAGE INDEXING AND RETRIEVAL USING A VECTOR-BASED SCHEME

EFFICIENT COLOR IMAGE INDEXING AND RETRIEVAL USING A VECTOR-BASED SCHEME EFFICIENT COLOR IMAGE INDEXING AND RETRIEVAL USING A VECTOR-BASED SCHEME D. Androutsos & A.N. Venetsanopoulos K.N. Plataniotis Dept. of Elect. & Comp. Engineering School of Computer Science University

More information

An Advanced Contrast Enhancement Using Partially Overlapped Sub-Block Histogram Equalization

An Advanced Contrast Enhancement Using Partially Overlapped Sub-Block Histogram Equalization IEEE TRANSACTIONS ON CIRCUITS AND SYSTEMS FOR VIDEO TECHNOLOGY, VOL. 11, NO. 4, APRIL 2001 475 An Advanced Contrast Enhancement Using Partially Overlapped Sub-Block Histogram Equalization Joung-Youn Kim,

More information

Practical Content-Adaptive Subsampling for Image and Video Compression

Practical Content-Adaptive Subsampling for Image and Video Compression Practical Content-Adaptive Subsampling for Image and Video Compression Alexander Wong Department of Electrical and Computer Eng. University of Waterloo Waterloo, Ontario, Canada, N2L 3G1 a28wong@engmail.uwaterloo.ca

More information

Colour Based People Search in Surveillance

Colour Based People Search in Surveillance Colour Based People Search in Surveillance Ian Dashorst 5730007 Bachelor thesis Credits: 9 EC Bachelor Opleiding Kunstmatige Intelligentie University of Amsterdam Faculty of Science Science Park 904 1098

More information

IEEE Signal Processing Letters: SPL Distance-Reciprocal Distortion Measure for Binary Document Images

IEEE Signal Processing Letters: SPL Distance-Reciprocal Distortion Measure for Binary Document Images IEEE SIGNAL PROCESSING LETTERS, VOL. X, NO. Y, Z 2003 1 IEEE Signal Processing Letters: SPL-00466-2002 1) Paper Title Distance-Reciprocal Distortion Measure for Binary Document Images 2) Authors Haiping

More information

Chapter 17. Shape-Based Operations

Chapter 17. Shape-Based Operations Chapter 17 Shape-Based Operations An shape-based operation identifies or acts on groups of pixels that belong to the same object or image component. We have already seen how components may be identified

More information

Liangliang Cao *, Jiebo Luo +, Thomas S. Huang *

Liangliang Cao *, Jiebo Luo +, Thomas S. Huang * Annotating ti Photo Collections by Label Propagation Liangliang Cao *, Jiebo Luo +, Thomas S. Huang * + Kodak Research Laboratories *University of Illinois at Urbana-Champaign (UIUC) ACM Multimedia 2008

More information

Classification of Digital Photos Taken by Photographers or Home Users

Classification of Digital Photos Taken by Photographers or Home Users Classification of Digital Photos Taken by Photographers or Home Users Hanghang Tong 1, Mingjing Li 2, Hong-Jiang Zhang 2, Jingrui He 1, and Changshui Zhang 3 1 Automation Department, Tsinghua University,

More information

Edge Histogram Descriptor for Finger Vein Recognition

Edge Histogram Descriptor for Finger Vein Recognition Edge Histogram Descriptor for Finger Vein Recognition Yu Lu 1, Sook Yoon 2, Daegyu Hwang 1, and Dong Sun Park 2 1 Division of Electronic and Information Engineering, Chonbuk National University, Jeonju,

More information

Contrast Enhancement in Digital Images Using an Adaptive Unsharp Masking Method

Contrast Enhancement in Digital Images Using an Adaptive Unsharp Masking Method Contrast Enhancement in Digital Images Using an Adaptive Unsharp Masking Method Z. Mortezaie, H. Hassanpour, S. Asadi Amiri Abstract Captured images may suffer from Gaussian blur due to poor lens focus

More information

SCIENCE & TECHNOLOGY

SCIENCE & TECHNOLOGY Pertanika J. Sci. & Technol. 25 (S): 163-172 (2017) SCIENCE & TECHNOLOGY Journal homepage: http://www.pertanika.upm.edu.my/ Performance Comparison of Min-Max Normalisation on Frontal Face Detection Using

More information

Digital Image Processing. Lecture # 6 Corner Detection & Color Processing

Digital Image Processing. Lecture # 6 Corner Detection & Color Processing Digital Image Processing Lecture # 6 Corner Detection & Color Processing 1 Corners Corners (interest points) Unlike edges, corners (patches of pixels surrounding the corner) do not necessarily correspond

More information

DESIGN & DEVELOPMENT OF COLOR MATCHING ALGORITHM FOR IMAGE RETRIEVAL USING HISTOGRAM AND SEGMENTATION TECHNIQUES

DESIGN & DEVELOPMENT OF COLOR MATCHING ALGORITHM FOR IMAGE RETRIEVAL USING HISTOGRAM AND SEGMENTATION TECHNIQUES International Journal of Information Technology and Knowledge Management July-December 2011, Volume 4, No. 2, pp. 585-589 DESIGN & DEVELOPMENT OF COLOR MATCHING ALGORITHM FOR IMAGE RETRIEVAL USING HISTOGRAM

More information

Shape Representation Robust to the Sketching Order Using Distance Map and Direction Histogram

Shape Representation Robust to the Sketching Order Using Distance Map and Direction Histogram Shape Representation Robust to the Sketching Order Using Distance Map and Direction Histogram Kiwon Yun, Junyeong Yang, and Hyeran Byun Dept. of Computer Science, Yonsei University, Seoul, Korea, 120-749

More information

Introduction to Video Forgery Detection: Part I

Introduction to Video Forgery Detection: Part I Introduction to Video Forgery Detection: Part I Detecting Forgery From Static-Scene Video Based on Inconsistency in Noise Level Functions IEEE TRANSACTIONS ON INFORMATION FORENSICS AND SECURITY, VOL. 5,

More information

Improved SIFT Matching for Image Pairs with a Scale Difference

Improved SIFT Matching for Image Pairs with a Scale Difference Improved SIFT Matching for Image Pairs with a Scale Difference Y. Bastanlar, A. Temizel and Y. Yardımcı Informatics Institute, Middle East Technical University, Ankara, 06531, Turkey Published in IET Electronics,

More information

White Intensity = 1. Black Intensity = 0

White Intensity = 1. Black Intensity = 0 A Region-based Color Image Segmentation Scheme N. Ikonomakis a, K. N. Plataniotis b and A. N. Venetsanopoulos a a Dept. of Electrical and Computer Engineering, University of Toronto, Toronto, Canada b

More information

Image Quality Evaluation for Smart- Phone Displays at Lighting Levels of Indoor and Outdoor Conditions

Image Quality Evaluation for Smart- Phone Displays at Lighting Levels of Indoor and Outdoor Conditions Image Quality Evaluation for Smart- Phone Displays at Lighting Levels of Indoor and Outdoor Conditions Optical Engineering vol. 51, No. 8, 2012 Rui Gong, Haisong Xu, Binyu Wang, and Ming Ronnier Luo Presented

More information

Iris based Human Identification using Median and Gaussian Filter

Iris based Human Identification using Median and Gaussian Filter Iris based Human Identification using Median and Gaussian Filter Geetanjali Sharma 1 and Neerav Mehan 2 International Journal of Latest Trends in Engineering and Technology Vol.(7)Issue(3), pp. 456-461

More information

Quality Measure of Multicamera Image for Geometric Distortion

Quality Measure of Multicamera Image for Geometric Distortion Quality Measure of Multicamera for Geometric Distortion Mahesh G. Chinchole 1, Prof. Sanjeev.N.Jain 2 M.E. II nd Year student 1, Professor 2, Department of Electronics Engineering, SSVPSBSD College of

More information

Photo and Video Quality Evaluation: Focusing on the Subject

Photo and Video Quality Evaluation: Focusing on the Subject Photo and Video Quality Evaluation: Focusing on the Subject Yiwen Luo and Xiaoou Tang Department of Information Engineering The Chinese University of Hong Kong, Hong Kong {ywluo6,xtang}@ie.cuhk.edu.hk

More information

Automatic Selection of Brackets for HDR Image Creation

Automatic Selection of Brackets for HDR Image Creation Automatic Selection of Brackets for HDR Image Creation Michel VIDAL-NAQUET, Wei MING Abstract High Dynamic Range imaging (HDR) is now readily available on mobile devices such as smart phones and compact

More information

Detection of Compound Structures in Very High Spatial Resolution Images

Detection of Compound Structures in Very High Spatial Resolution Images Detection of Compound Structures in Very High Spatial Resolution Images Selim Aksoy Department of Computer Engineering Bilkent University Bilkent, 06800, Ankara, Turkey saksoy@cs.bilkent.edu.tr Joint work

More information

A New Scheme for No Reference Image Quality Assessment

A New Scheme for No Reference Image Quality Assessment Author manuscript, published in "3rd International Conference on Image Processing Theory, Tools and Applications, Istanbul : Turkey (2012)" A New Scheme for No Reference Image Quality Assessment Aladine

More information

Method Of Defogging Image Based On the Sky Area Separation Yanhai Wu1,a, Kang1 Chen, Jing1 Zhang, Lihua Pang1

Method Of Defogging Image Based On the Sky Area Separation Yanhai Wu1,a, Kang1 Chen, Jing1 Zhang, Lihua Pang1 2nd Workshop on Advanced Research and Technology in Industry Applications (WARTIA 216) Method Of Defogging Image Based On the Sky Area Separation Yanhai Wu1,a, Kang1 Chen, Jing1 Zhang, Lihua Pang1 1 College

More information

Image Resizing based on Summarization by Seam Carving using saliency detection to extract image semantics

Image Resizing based on Summarization by Seam Carving using saliency detection to extract image semantics Image Resizing based on Summarization by Seam Carving using saliency detection to extract image semantics 1 Priyanka Dighe, Prof. Shanthi Guru 2 1 Department of Computer Engg. DYPCOE, Akurdi, Pune 2 Department

More information

A Saturation-based Image Fusion Method for Static Scenes

A Saturation-based Image Fusion Method for Static Scenes 2015 6th International Conference of Information and Communication Technology for Embedded Systems (IC-ICTES) A Saturation-based Image Fusion Method for Static Scenes Geley Peljor and Toshiaki Kondo Sirindhorn

More information

Outline. Drawing the Graph. 1 Homework Review. 2 Introduction. 3 Histograms. 4 Histograms on the TI Assignment

Outline. Drawing the Graph. 1 Homework Review. 2 Introduction. 3 Histograms. 4 Histograms on the TI Assignment Lecture 14 Section 4.4.4 on Hampden-Sydney College Fri, Sep 18, 2009 Outline 1 on 2 3 4 on 5 6 Even-numbered on Exercise 4.25, p. 249. The following is a list of homework scores for two students: Student

More information

Image Manipulation Detection using Convolutional Neural Network

Image Manipulation Detection using Convolutional Neural Network Image Manipulation Detection using Convolutional Neural Network Dong-Hyun Kim 1 and Hae-Yeoun Lee 2,* 1 Graduate Student, 2 PhD, Professor 1,2 Department of Computer Software Engineering, Kumoh National

More information

Drum Transcription Based on Independent Subspace Analysis

Drum Transcription Based on Independent Subspace Analysis Report for EE 391 Special Studies and Reports for Electrical Engineering Drum Transcription Based on Independent Subspace Analysis Yinyi Guo Center for Computer Research in Music and Acoustics, Stanford,

More information

Unit 8: Color Image Processing

Unit 8: Color Image Processing Unit 8: Color Image Processing Colour Fundamentals In 666 Sir Isaac Newton discovered that when a beam of sunlight passes through a glass prism, the emerging beam is split into a spectrum of colours The

More information

A new quad-tree segmented image compression scheme using histogram analysis and pattern matching

A new quad-tree segmented image compression scheme using histogram analysis and pattern matching University of Wollongong Research Online University of Wollongong in Dubai - Papers University of Wollongong in Dubai A new quad-tree segmented image compression scheme using histogram analysis and pattern

More information

Organizing Data 10/11/2011. Focus Points. Frequency Distributions, Histograms, and Related Topics. Section 2.1

Organizing Data 10/11/2011. Focus Points. Frequency Distributions, Histograms, and Related Topics. Section 2.1 Organizing Data 2 Copyright Cengage Learning. All rights reserved. Section 2.1 Frequency Distributions, Histograms, and Related Topics Copyright Cengage Learning. All rights reserved. Focus Points Organize

More information

Evolutionary Image Enhancement for Impulsive Noise Reduction

Evolutionary Image Enhancement for Impulsive Noise Reduction Evolutionary Image Enhancement for Impulsive Noise Reduction Ung-Keun Cho, Jin-Hyuk Hong, and Sung-Bae Cho Dept. of Computer Science, Yonsei University Biometrics Engineering Research Center 134 Sinchon-dong,

More information

Contrast Enhancement Using Bi-Histogram Equalization With Brightness Preservation

Contrast Enhancement Using Bi-Histogram Equalization With Brightness Preservation Contrast Enhancement Using Bi-Histogram Equalization With Brightness Preservation 1 Gowthami Rajagopal, 2 K.Santhi 1 PG Student, Department of Electronics and Communication K S Rangasamy College Of Technology,

More information

A DEVELOPED UNSHARP MASKING METHOD FOR IMAGES CONTRAST ENHANCEMENT

A DEVELOPED UNSHARP MASKING METHOD FOR IMAGES CONTRAST ENHANCEMENT 2011 8th International Multi-Conference on Systems, Signals & Devices A DEVELOPED UNSHARP MASKING METHOD FOR IMAGES CONTRAST ENHANCEMENT Ahmed Zaafouri, Mounir Sayadi and Farhat Fnaiech SICISI Unit, ESSTT,

More information

The Statistics of Visual Representation Daniel J. Jobson *, Zia-ur Rahman, Glenn A. Woodell * * NASA Langley Research Center, Hampton, Virginia 23681

The Statistics of Visual Representation Daniel J. Jobson *, Zia-ur Rahman, Glenn A. Woodell * * NASA Langley Research Center, Hampton, Virginia 23681 The Statistics of Visual Representation Daniel J. Jobson *, Zia-ur Rahman, Glenn A. Woodell * * NASA Langley Research Center, Hampton, Virginia 23681 College of William & Mary, Williamsburg, Virginia 23187

More information

Design and Implementation of Distress Prevention System using a Beacon

Design and Implementation of Distress Prevention System using a Beacon Design and Implementation of Distress Prevention System using a Beacon Imsu Lee 1, Kyeonhoon Kwak 1, Jeonghyun Lee 1, Sangwoong Kim 1, Daehan Son 1, Eunju Park 1 and Hankyu Lim 1.a 1 Department of Multimedia

More information

Comparison of Two Pixel based Segmentation Algorithms of Color Images by Histogram

Comparison of Two Pixel based Segmentation Algorithms of Color Images by Histogram 5 Comparison of Two Pixel based Segmentation Algorithms of Color Images by Histogram Dr. Goutam Chatterjee, Professor, Dept of ECE, KPR Institute of Technology, Ghatkesar, Hyderabad, India ABSTRACT The

More information

Color Image Segmentation Using K-Means Clustering and Otsu s Adaptive Thresholding

Color Image Segmentation Using K-Means Clustering and Otsu s Adaptive Thresholding Color Image Segmentation Using K-Means Clustering and Otsu s Adaptive Thresholding Vijay Jumb, Mandar Sohani, Avinash Shrivas Abstract In this paper, an approach for color image segmentation is presented.

More information

VEHICLE LICENSE PLATE DETECTION ALGORITHM BASED ON STATISTICAL CHARACTERISTICS IN HSI COLOR MODEL

VEHICLE LICENSE PLATE DETECTION ALGORITHM BASED ON STATISTICAL CHARACTERISTICS IN HSI COLOR MODEL VEHICLE LICENSE PLATE DETECTION ALGORITHM BASED ON STATISTICAL CHARACTERISTICS IN HSI COLOR MODEL Instructor : Dr. K. R. Rao Presented by: Prasanna Venkatesh Palani (1000660520) prasannaven.palani@mavs.uta.edu

More information

An Algorithm for Fingerprint Image Postprocessing

An Algorithm for Fingerprint Image Postprocessing An Algorithm for Fingerprint Image Postprocessing Marius Tico, Pauli Kuosmanen Tampere University of Technology Digital Media Institute EO.BOX 553, FIN-33101, Tampere, FINLAND tico@cs.tut.fi Abstract Most

More information

Size Does Matter: How Image Size Affects Aesthetic Perception?

Size Does Matter: How Image Size Affects Aesthetic Perception? Size Does Matter: How Image Size Affects Aesthetic Perception? Wei-Ta Chu, Yu-Kuang Chen, and Kuan-Ta Chen Department of Computer Science and Information Engineering, National Chung Cheng University Institute

More information

Real Time Word to Picture Translation for Chinese Restaurant Menus

Real Time Word to Picture Translation for Chinese Restaurant Menus Real Time Word to Picture Translation for Chinese Restaurant Menus Michelle Jin, Ling Xiao Wang, Boyang Zhang Email: mzjin12, lx2wang, boyangz @stanford.edu EE268 Project Report, Spring 2014 Abstract--We

More information

Comparing Computer-predicted Fixations to Human Gaze

Comparing Computer-predicted Fixations to Human Gaze Comparing Computer-predicted Fixations to Human Gaze Yanxiang Wu School of Computing Clemson University yanxiaw@clemson.edu Andrew T Duchowski School of Computing Clemson University andrewd@cs.clemson.edu

More information

Optimizing color reproduction of natural images

Optimizing color reproduction of natural images Optimizing color reproduction of natural images S.N. Yendrikhovskij, F.J.J. Blommaert, H. de Ridder IPO, Center for Research on User-System Interaction Eindhoven, The Netherlands Abstract The paper elaborates

More information

Visual Quality Assessment for Projected Content

Visual Quality Assessment for Projected Content Visual Quality Assessment for Projected Content Hoang Le, Carl Marshall 2, Thong Doan, Long Mai, Feng Liu Portland State University 2 Intel Corporation Portland, OR USA Hillsboro, OR USA {hoanl, thong,

More information

Fig Color spectrum seen by passing white light through a prism.

Fig Color spectrum seen by passing white light through a prism. 1. Explain about color fundamentals. Color of an object is determined by the nature of the light reflected from it. When a beam of sunlight passes through a glass prism, the emerging beam of light is not

More information

Upgrading Checkers Compositions

Upgrading Checkers Compositions Upgrading s Compositions Yaakov HaCohen-Kerner, Daniel David Levy, Amnon Segall Department of Computer Sciences, Jerusalem College of Technology (Machon Lev) 21 Havaad Haleumi St., P.O.B. 16031, 91160

More information

multiframe visual-inertial blur estimation and removal for unmodified smartphones

multiframe visual-inertial blur estimation and removal for unmodified smartphones multiframe visual-inertial blur estimation and removal for unmodified smartphones, Severin Münger, Carlo Beltrame, Luc Humair WSCG 2015, Plzen, Czech Republic images taken by non-professional photographers

More information

Experiments with An Improved Iris Segmentation Algorithm

Experiments with An Improved Iris Segmentation Algorithm Experiments with An Improved Iris Segmentation Algorithm Xiaomei Liu, Kevin W. Bowyer, Patrick J. Flynn Department of Computer Science and Engineering University of Notre Dame Notre Dame, IN 46556, U.S.A.

More information

PAPER Grayscale Image Segmentation Using Color Space

PAPER Grayscale Image Segmentation Using Color Space IEICE TRANS. INF. & SYST., VOL.E89 D, NO.3 MARCH 2006 1231 PAPER Grayscale Image Segmentation Using Color Space Takahiko HORIUCHI a), Member SUMMARY A novel approach for segmentation of grayscale images,

More information

2 Human Visual Characteristics

2 Human Visual Characteristics 3rd International Conference on Multimedia Technology(ICMT 2013) Study on new gray transformation of infrared image based on visual property Shaosheng DAI 1, Xingfu LI 2, Zhihui DU 3, Bin ZhANG 4 and Xinlin

More information

Wi-Fi Fingerprinting through Active Learning using Smartphones

Wi-Fi Fingerprinting through Active Learning using Smartphones Wi-Fi Fingerprinting through Active Learning using Smartphones Le T. Nguyen Carnegie Mellon University Moffet Field, CA, USA le.nguyen@sv.cmu.edu Joy Zhang Carnegie Mellon University Moffet Field, CA,

More information

Advanced Maximal Similarity Based Region Merging By User Interactions

Advanced Maximal Similarity Based Region Merging By User Interactions Advanced Maximal Similarity Based Region Merging By User Interactions Nehaverma, Deepak Sharma ABSTRACT Image segmentation is a popular method for dividing the image into various segments so as to change

More information

Image analysis. CS/CME/BIOPHYS/BMI 279 Fall 2015 Ron Dror

Image analysis. CS/CME/BIOPHYS/BMI 279 Fall 2015 Ron Dror Image analysis CS/CME/BIOPHYS/BMI 279 Fall 2015 Ron Dror A two- dimensional image can be described as a function of two variables f(x,y). For a grayscale image, the value of f(x,y) specifies the brightness

More information

Digital Image Processing (DIP)

Digital Image Processing (DIP) University of Kurdistan Digital Image Processing (DIP) Lecture 6: Color Image Processing Instructor: Kaveh Mollazade, Ph.D. Department of Biosystems Engineering, Faculty of Agriculture, University of Kurdistan,

More information

Speed and Accuracy Improvements in Visual Pattern Recognition Tasks by Employing Human Assistance

Speed and Accuracy Improvements in Visual Pattern Recognition Tasks by Employing Human Assistance Speed and Accuracy Improvements in Visual Pattern Recognition Tasks by Employing Human Assistance Amir I. Schur and Charles C. Tappert Abstract This study investigates methods of enhancing human-computer

More information

Elemental Image Generation Method with the Correction of Mismatch Error by Sub-pixel Sampling between Lens and Pixel in Integral Imaging

Elemental Image Generation Method with the Correction of Mismatch Error by Sub-pixel Sampling between Lens and Pixel in Integral Imaging Journal of the Optical Society of Korea Vol. 16, No. 1, March 2012, pp. 29-35 DOI: http://dx.doi.org/10.3807/josk.2012.16.1.029 Elemental Image Generation Method with the Correction of Mismatch Error by

More information

Anti-shaking Algorithm for the Mobile Phone Camera in Dim Light Conditions

Anti-shaking Algorithm for the Mobile Phone Camera in Dim Light Conditions Anti-shaking Algorithm for the Mobile Phone Camera in Dim Light Conditions Jong-Ho Lee, In-Yong Shin, Hyun-Goo Lee 2, Tae-Yoon Kim 2, and Yo-Sung Ho Gwangju Institute of Science and Technology (GIST) 26

More information

Automatic Assessment of Artistic Quality of Photos

Automatic Assessment of Artistic Quality of Photos 1 Automatic Assessment of Artistic Quality of Photos Ashish V erma 1, Kranthi Koukuntla 2, Rohit V arma 3 and Snehasis Mukherjee 4 Indian Institute of Information Technology Sri City ashish.v13@iiits.in

More information

Colour Profiling Using Multiple Colour Spaces

Colour Profiling Using Multiple Colour Spaces Colour Profiling Using Multiple Colour Spaces Nicola Duffy and Gerard Lacey Computer Vision and Robotics Group, Trinity College, Dublin.Ireland duffynn@cs.tcd.ie Abstract This paper presents an original

More information

GE 113 REMOTE SENSING. Topic 7. Image Enhancement

GE 113 REMOTE SENSING. Topic 7. Image Enhancement GE 113 REMOTE SENSING Topic 7. Image Enhancement Lecturer: Engr. Jojene R. Santillan jrsantillan@carsu.edu.ph Division of Geodetic Engineering College of Engineering and Information Technology Caraga State

More information

Object Perception. 23 August PSY Object & Scene 1

Object Perception. 23 August PSY Object & Scene 1 Object Perception Perceiving an object involves many cognitive processes, including recognition (memory), attention, learning, expertise. The first step is feature extraction, the second is feature grouping

More information

Development of an Automatic Camera Control System for Videoing a Normal Classroom to Realize a Distant Lecture

Development of an Automatic Camera Control System for Videoing a Normal Classroom to Realize a Distant Lecture Development of an Automatic Camera Control System for Videoing a Normal Classroom to Realize a Distant Lecture Akira Suganuma Depertment of Intelligent Systems, Kyushu University, 6 1, Kasuga-koen, Kasuga,

More information

IoT-Aided Indoor Positioning based on Fingerprinting

IoT-Aided Indoor Positioning based on Fingerprinting IoT-Aided Indoor Positioning based on Fingerprinting Rashmi Sharan Sinha, Jingjun Chen Graduate Students, Division of Electronics and Electrical Engineering, Dongguk University-Seoul, Republic of Korea.

More information

Spatial Color Indexing using ACC Algorithm

Spatial Color Indexing using ACC Algorithm Spatial Color Indexing using ACC Algorithm Anucha Tungkasthan aimdala@hotmail.com Sarayut Intarasema Darkman502@hotmail.com Wichian Premchaiswadi wichian@siam.edu Abstract This paper presents a fast and

More information

Aesthetic Visual Style Assessment on Dunhuang Murals

Aesthetic Visual Style Assessment on Dunhuang Murals J. Shanghai Jiaotong Univ. (Sci.), 204, 9(): 28-34 DOI: 0.007/s2204-04-473-y Aesthetic Visual Style Assessment on Dunhuang Murals YANG Bing ( ), XU Duan-qing ( ), TANG Da-wei ( ) YANG Xin 2 ( ), ZHAO Lei

More information

CSE 564: Scientific Visualization

CSE 564: Scientific Visualization CSE 564: Scientific Visualization Lecture 5: Image Processing Klaus Mueller Stony Brook University Computer Science Department Klaus Mueller, Stony Brook 2003 Image Processing Definitions Purpose: - enhance

More information

2007 Census of Agriculture Non-Response Methodology

2007 Census of Agriculture Non-Response Methodology 2007 Census of Agriculture Non-Response Methodology Will Cecere National Agricultural Statistics Service Research and Development Division, U.S. Department of Agriculture, 3251 Old Lee Highway, Fairfax,

More information

Distinguishing Identical Twins by Face Recognition

Distinguishing Identical Twins by Face Recognition Distinguishing Identical Twins by Face Recognition P. Jonathon Phillips, Patrick J. Flynn, Kevin W. Bowyer, Richard W. Vorder Bruegge, Patrick J. Grother, George W. Quinn, and Matthew Pruitt Abstract The

More information

AN IMPROVED NO-REFERENCE SHARPNESS METRIC BASED ON THE PROBABILITY OF BLUR DETECTION. Niranjan D. Narvekar and Lina J. Karam

AN IMPROVED NO-REFERENCE SHARPNESS METRIC BASED ON THE PROBABILITY OF BLUR DETECTION. Niranjan D. Narvekar and Lina J. Karam AN IMPROVED NO-REFERENCE SHARPNESS METRIC BASED ON THE PROBABILITY OF BLUR DETECTION Niranjan D. Narvekar and Lina J. Karam School of Electrical, Computer, and Energy Engineering Arizona State University,

More information

Effective and Efficient Fingerprint Image Postprocessing

Effective and Efficient Fingerprint Image Postprocessing Effective and Efficient Fingerprint Image Postprocessing Haiping Lu, Xudong Jiang and Wei-Yun Yau Laboratories for Information Technology 21 Heng Mui Keng Terrace, Singapore 119613 Email: hplu@lit.org.sg

More information

Automatic Image Cropping and Selection using Saliency: an Application to Historical Manuscripts

Automatic Image Cropping and Selection using Saliency: an Application to Historical Manuscripts Automatic Image Cropping and Selection using Saliency: an Application to Historical Manuscripts Marcella Cornia, Stefano Pini, Lorenzo Baraldi, and Rita Cucchiara University of Modena and Reggio Emilia

More information

Locating the Query Block in a Source Document Image

Locating the Query Block in a Source Document Image Locating the Query Block in a Source Document Image Naveena M and G Hemanth Kumar Department of Studies in Computer Science, University of Mysore, Manasagangotri-570006, Mysore, INDIA. Abstract: - In automatic

More information

IMAGE EQUALIZATION BASED ON SINGULAR VALUE DECOMPOSITION

IMAGE EQUALIZATION BASED ON SINGULAR VALUE DECOMPOSITION IAGE EQUALIZATION BASED ON SINGULAR VALUE DECOPOSITION * Hasan Demirel, Gholamreza Anbarjafari and ohammad N. Sabet Jahromi Department of Electrical and Electronic Engineering, Eastern editerranean University,

More information

AUTOMATIC DETECTION OF HEDGES AND ORCHARDS USING VERY HIGH SPATIAL RESOLUTION IMAGERY

AUTOMATIC DETECTION OF HEDGES AND ORCHARDS USING VERY HIGH SPATIAL RESOLUTION IMAGERY AUTOMATIC DETECTION OF HEDGES AND ORCHARDS USING VERY HIGH SPATIAL RESOLUTION IMAGERY Selim Aksoy Department of Computer Engineering, Bilkent University, Bilkent, 06800, Ankara, Turkey saksoy@cs.bilkent.edu.tr

More information

ABSTRACT. Keywords: Color image differences, image appearance, image quality, vision modeling 1. INTRODUCTION

ABSTRACT. Keywords: Color image differences, image appearance, image quality, vision modeling 1. INTRODUCTION Measuring Images: Differences, Quality, and Appearance Garrett M. Johnson * and Mark D. Fairchild Munsell Color Science Laboratory, Chester F. Carlson Center for Imaging Science, Rochester Institute of

More information

FEATURE. Adaptive Temporal Aperture Control for Improving Motion Image Quality of OLED Display

FEATURE. Adaptive Temporal Aperture Control for Improving Motion Image Quality of OLED Display Adaptive Temporal Aperture Control for Improving Motion Image Quality of OLED Display Takenobu Usui, Yoshimichi Takano *1 and Toshihiro Yamamoto *2 * 1 Retired May 217, * 2 NHK Engineering System, Inc

More information

Semantic Localization of Indoor Places. Lukas Kuster

Semantic Localization of Indoor Places. Lukas Kuster Semantic Localization of Indoor Places Lukas Kuster Motivation GPS for localization [7] 2 Motivation Indoor navigation [8] 3 Motivation Crowd sensing [9] 4 Motivation Targeted Advertisement [10] 5 Motivation

More information

Multiresolution Color Image Segmentation Applied to Background Extraction in Outdoor Images

Multiresolution Color Image Segmentation Applied to Background Extraction in Outdoor Images Multiresolution Color Image Segmentation Applied to Background Extraction in Outdoor Images Sébastien LEFEVRE 1,2, Loïc MERCIER 1, Vincent TIBERGHIEN 1, Nicole VINCENT 1 1 Laboratoire d Informatique, Université

More information

Linear Gaussian Method to Detect Blurry Digital Images using SIFT

Linear Gaussian Method to Detect Blurry Digital Images using SIFT IJCAES ISSN: 2231-4946 Volume III, Special Issue, November 2013 International Journal of Computer Applications in Engineering Sciences Special Issue on Emerging Research Areas in Computing(ERAC) www.caesjournals.org

More information

A Method of Measuring Distances between Cars. Using Vehicle Black Box Images

A Method of Measuring Distances between Cars. Using Vehicle Black Box Images Contemporary Engineering Sciences, Vol. 7, 2014, no. 23, 1295-1302 HIKARI Ltd, www.m-hikari.com http://dx.doi.org/10.12988/ces.2014.49160 A Method of Measuring Distances between Cars Using Vehicle Black

More information