Published in: IEEE 17th International Conference on Intelligent Transportation Systems (ITSC), 2014

Size: px
Start display at page:

Download "Published in: IEEE 17th International Conference on Intelligent Transportation Systems (ITSC), 2014"

Transcription

1 Downloaded from vbn.aau.dk on: April 18, 2019 Aalborg Universitet Traffic sign detection for U.S. roads Remaining challenges and a case for tracking Møgelmose, Andreas; Liu, Dongran; Trivedi, Mohan M. Published in: IEEE 17th International Conference on Intelligent Transportation Systems (ITSC), 2014 DOI (link to publication from Publisher): /ITSC Publication date: 2014 Document Version Accepted author manuscript, peer reviewed version Link to publication from Aalborg University Citation for published version (APA): Møgelmose, A., Liu, D., & Trivedi, M. M. (2014). Traffic sign detection for U.S. roads: Remaining challenges and a case for tracking. In IEEE 17th International Conference on Intelligent Transportation Systems (ITSC), 2014 (pp ). IEEE Press. General rights Copyright and moral rights for the publications made accessible in the public portal are retained by the authors and/or other copyright owners and it is a condition of accessing publications that users recognise and abide by the legal requirements associated with these rights.? Users may download and print one copy of any publication from the public portal for the purpose of private study or research.? You may not further distribute the material or use it for any profit-making activity or commercial gain? You may freely distribute the URL identifying the publication in the public portal? Take down policy If you believe that this document breaches copyright please contact us at vbn@aub.aau.dk providing details, and we will remove access to the work immediately and investigate your claim.

2 Traffic Sign Detection for U.S. Roads: Remaining Challenges and a case for Tracking Andreas Møgelmose 1,2, Dongran Liu 2, and Mohan M. Trivedi 2 Abstract Traffic sign detection is crucial in intelligent vehicles, no matter if one s objective is to develop Advanced Driver Assistance Systems or autonomous cars. Recent advances in traffic sign detection, especially the great effort put into the competition German Traffic Sign Detection Benchmark, have given rise to very reliable detection systems when tested on European signs. The U.S., however, has a rather different approach to traffic sign design. This paper evaluates whether a current state-of-the-art traffic sign detector is useful for American signs. We find that for colorful, distinctively shaped signs, Integral Channel Features work well, but it fails on the large superclass of speed limit signs and similar designs. We also introduce an extension to the largest public dataset of American signs, the LISA Traffic Sign Dataset, and present an evaluation of tracking in the context of sign detection. We show that tracking essentially suppresses all false positives in our test set, and argue that in order to be useful for higher level analysis, any traffic sign detection system should contain tracking. I. INTRODUCTION Advanced Driver Assistance Systems (ADAS) and autonomous cars are currently very popular research topics, with many applications, as car manufacturers continue to put efforts into making cars safer and easier to drive. In both scenarios it is crucial for the onboard systems to have a solid view and understanding of the world around the car. Part of this understanding comes from being able to read traffic signs. Whether the aim of the system is to assist the driver, or remove him completely from the equation, traffic signs provide valuable information about the driving scenario at any given time. Traffic Sign Recognition (TSR) has seen considerable work over the past decade. The task is generally split into two: detection and recognition [1]. Some full-flow systems of course combine the two tasks, but generally as two separate steps in a pipeline. Other systems focus on one or the other. This work is focused on detection, and particularly detection of American traffic signs. A recent competition called the German Traffic Sign Detection Benchmark (GTSDB) [2] had several excellent entries, and it was even suggested by one of the entries, Mathias et. al. [3], that the problem was largely solved. Indeed Mathias et. al., along with other top contenders in the competition, showed very impressive detection results on the GTSDB. However, as the name suggests, in includes only German traffic signs, which are substantially different from those in the United States. 1 Visual Analysis of People Lab, Aalborg University, Denmark am@create.aau.dk 2 Laboratory for Intelligent and Safe Automobiles, UC San Diego, United States [dol060, mtrivedi]@ucsd.edu The purpose of this paper is threefold: 1) Test the method successfully employed in [3] on American signs in order to ascertain whether the traffic sign detection problem is really solved. 2) Add a second layer of intelligence to traffic sign detection in the form of tracking. 3) Introduce a recently captured extension of the LISA Traffic Sign Dataset which adds more high-resolution color imagery to what is already the world s largest and only public dataset of American traffic signs. The remainder of this paper is structured as follows: In section II, related work is briefly discussed. Section III explains the methods used for both detection and tracking. In section IV the results are shown and discussed for several traffic sign classes, and finally the paper is rounded off with conclusions in section V. II. RELATED WORK Traffic sign detection has been heavily researched in the past decade. A comprehensive overview is given in the survey [1]. There are two main approaches: Model-based and learning-based. The earliest approaches [4] [7] were model-based and relied on static knowledge of traffic sign appearance, such as shape or color. This works well under good conditions, reliable lighting, etc. However, the learningbased methods have taken over lately, since they cope better with real-world variations in the input data. They use a wealth of features, such as Haar-wavelets [8], HOG [9], or Integral Channel Features [3]. Traffic sign classification has a history of being improved through competition, and in 2011, the problem was generally considered solved with the publication of the results of the German Traffic Sign Recognition Benchmark (GTSRB, not to be confused with GTSDB) [10]. Recently, the same authors endeavored to repeat the success for detection with the GTSDB [2]. They provided a dataset of 900 images captured in Germany containing 1206 traffic signs in four categories: prohibitory signs, danger signs, mandatory signs, and other signs. A baseline detection performance was computed using standard methods, and the community was asked to contribute their best detection results. 18 teams contributed their results, generally with very good results. The best competitors were Team Litsi [11], Team VISICS [3], and Team wgy@hit501 [12]. Team Litsi used color classification and shape matching to finds regions of interest and detect signs using HOG and color histograms classified with support vector machines. Team VISICS use the Integral Channel Features (ChnFtrs) proposed by Dollár et.

3 al. [13] for pedestrian detection. ChnFtrs use a combination of edge features and LUV color features in a boosted cascade. Team wgy@hit501 uses HOG features, first with LDA to find sign candidates and then HOG with IK-SVM for further refinement. It is interesting to see that the most successful detectors all use detection schemes adapted from pedestrian detection. Note that all of the above work has been done using European traffic signs. Only a few works explicitly take on American signs: In [14] a shape based detector and classifier is used for American speed limit signs. Detection results are not shown on their own, but the final recognition results are around 88% recognition rate, with no mention of the number of false detections. The system is tested on a relatively small dataset. [15] evaluates whether synthetic training data is useful for sign detection, but without great success. Finally, [16], [17] propose an adaptive Bayesian Classifier Cascade, again for speed limit sign detection. It shows promising detection results in the 90%-range, albeit with several false positives per image, much higher than what would be acceptable in a production system. Older contributions include [8], [17], [18]. Little work has been done to extend the pipeline further than raw detection and classification. A few groups work on traffic sign inventory and surveying, including [19], [20]. For any system which aspires to use TSR in a practical system - be it ADAS, inventory systems or autonomous driving - tracking is beneficial, even necessary [1], but building tracking on top of detections has not been thoroughly researched, except very recently, where Boumediene et. al. proposed tracking traffic signs using the Transferable Belief Model (TBM) [21]. This work takes ChnFtrs, the method employed by Team VISICS, and applies it to American traffic signs. On top of the detection we build an association and tracking layer using Kalman filters. III. METHODS The overall structure of the system described in the paper is simple: Detection using ChnFtrs and tracking using Kalman filters. In the following, the implementation and use of each method it described in further detail. Everything explained here has been implemented in Matlab. A. Detection 1) Features: The detection scheme used is Integral Channel Features/ChnFtrs by Dollár et. al. [13] as also used by Mathias et. al. [3] in their winning entry in the GTSDB. This method works by computing features similar to Haarlike features in the integral image of several channels of the input image. Channel refers to different representations of the input image. We use 10 different channels spanning 6 gradient histogram channels, 1 for unoriented gradient magnitude, and 3 for the color channels in the CIE-LUV color space. The oriented gradient channels are computed as: Q θ (x, y) = G(x, y) 1[Θ(x, y) = θ] (1) Fig. 1. The flow of the detection system. where G(x, y) is the gradient magnitude at pixel x, y and Θ(x, y) is the quantized gradient angle. Q θ (x, y) is then run for 6 equally spaced angles, θ. The features we use are the same for all channels, namely first-order Haar-like features. Traditional Haar-like features are expressed as the difference of the sum of two rectangular image regions. First-order Haar-like features are even simpler and expressed as the sum of a rectangular image region in a given channel. The ChnFtrs framework allow for more complex features, but according to [13], the gain from using higher-order features is negligible. The features can be computed fast from an integral image representation of the relevant channels. The features are evaluated using a modified AdaBoost classifier with depth-2 decision trees as weak learners. 2) Training: The system is trained with at set of positive training images, all resized to 15x15 pixels, since that is the smallest size of sign we are interested in detecting. Any less, and the features become unreliable. Similarly, a set of negative samples is also input to the system. For a 15x15 px image patch, we generate 3025 rectangular windows for the first-order features. Since there are 10 channels for each training patch, the total number of computed features is per patch. As opposed to [3], we do not use different aspect ratios in our training, as we observe that to very rarely be a source of missed detections. After extraction, the features are sent to AdaBoost to train the classifier. We use a 3 stage cascade with different number of weak learners per stage. The first stage uses only 10 weak learners to quickly discard a lot of non-traffic sign windows. The second stage has 100 weak learners and the last stage uses up to 2000 weak learners to refine the detection. However, training of the last stage usually stops early at weak learners due to convergence. 3) Detection: We slide a 15x15 px window across the integral image of each channel in the test image. Like in the original ChnFtrs, the window is moved by 4 pixels for each evaluation and to ensure scale invariability, the input image is scaled by a step of 2 1/10 (1.07). An overview of the detection flow is shown in fig. 2

4 TABLE I DETECTION RATE FOR PROHIBITORY SIGNS OF THE GTSDB. DR FPPF Our implementation 93% 0.07 Team VISICS [3] 100% 0 B. Tracking Tracking is built on top of the detection. It has two purposes: It can be used to minimize false detections by suppressing those which are not part of a track, and more importantly, they can keep track of which signs have been seen before. In real-world use of a sign detector, we want to ensure that every sign is seen, but also that no sign is seen more than once. Since each specific sign relates to a specific traffic situation, the system needs to know whether that situation has been handled or not, and not blindly repeat itself when a new instance of the same physical sign is detected. The tracking is handled using the Hungarian algorithm for assignment and Kalman filters for tracking. Every time a detection happens, it is either assigned to an existing track, or a new track is created for it. Any existing track which does not get a sign assigned to them are marked as invisible. If a track is visible for more than 3 frames, a new detection will be announced. Any track which does not last for 3 frames is considered a false detection. Conversely, if a track is invisible for more than 2 frames, or more than 40% of its contained frames are marked invisible, it is deleted. IV. EVALUATIONS OF DETECTION AND TRACKING We have two separate evaluations: Firstly we test the detection scheme on American signs, secondly we show the advantages of employing tracking for traffic sign detection. A. Detection No matter the test set or sign type, throughout this section we report two numbers per test: DR Detection rate, computed as T P/P where T P is the number of correct detections in a frame (true positive) and P is the actual number of signs in the frame (positives). This is equivalent to recall. FPPF False positives per frame, computed as F P/f where F P is the number of false positives across all frames, and f is the number of frames analyzed. While this paper is about detecting American traffic signs, we first test our system on the GTSDB superset of prohibitory signs as a sanity check to verify that our implementation is not faulty. The result can be seen in table 3. While our performance is significantly lower than that of [3] - perfect detection is hard to beat - it is still respectably above 90%. The difference is probably due to varying parameter settings between the two implementations. With this baseline check out of the way, we turn our attention to American signs. Specifically, we test on three superclasses: Stop signs, warning signs (all yellow diamond (a) (b) (c) Fig. 2. Examples of american traffic signs. (a) Stop sign, (b) warning sign, (c) speed limit sign. Image source: [22] TABLE II STATISTICS FOR THE LISA DATASET AND THE NEW EXTENSION. LISA Traffic Sign Dataset Classes Annotations Images LISA Dataset Extension shaped classes), and speed limit signs (all speed limit signs, regardless of speed). See fig. 3 for examples. The detector is trained on the LISA traffic sign dataset [1]. Note that this detection method requires color information and not all images in the LISA dataset are in color, so only the 3156 annotations on color images are used. The detector is tested on a recently captured and annotated extension to the LISA traffic sign dataset, expanding the dataset by more than 1300 annotations. The extension will be integrated with the existing publicly available dataset 1. Statistics can be seen in table 3. Detection results for each class can be seen in table 3 and precision-recall curves for each superclass are shown in fig. 4. Stop signs and warning signs both perform well, basically on par with European signs. This is to be expected, as they are quite similar to European signs with distictive shapes and clear colors. For speed limit signs, the story is different. Detection rates a abysimally low. Clearly, the model is not able to capture what distinguished the speed limit signs from everything else. The shape is not particular distinctive we tried adding a margin to the training images, in the hope that the edges would be detected better then, but to no avail and the signs have no color that make them stand out. The problems are also obvious in fig. 4 and 5, showing false detection and misses for each superclass. False detections of stop signs and warning signs are generally objects which bear some resemblance to the signs. Missed detections 1 Available for download at lisa-traffic-sign-dataset.html TABLE III DETECTION RATE FOR EACH SUPERCLASS. SEE ALSO FIG. 3 FOR FURTHER DETAILS. DR FPPF AUC in fig. 3 Stop signs 93.6% Warning signs 89.2% Speed limit signs 47.7%

5 Fig. 3. Precision-recall curves for each superclass. (a) Stop signs, AUC: 0.975, (b) warning signs, AUC: 0.944, (c) speed limit signs, AUC: TABLE IV TRACKING DETECTION RATES. Stop signs Warning signs # of physical signs Physical signs tracked False tracks 2 1 Individual detections Fig. 4. Examples of false detections for each superclass. First row, stop signs, second row, warning signs, and third row, speed limit signs. Fig. 5. Examples of missed detections for each superclass. First row, stop signs, second row, warning signs, and third row, speed limit signs. are generally signs of very poor quality, either due to size or lighting. That is not as clear cut for speed limit signs. Many of the false detections could be anything, and the missed signs are perfectly fine speed limit signs. This leads us to conclude, that while sign detection might be solved for European signs and other easy signs, there is still plenty of work to be done for hard cases, such as American speed limit signs. And then we have not even touched the multitude of other American signs with the exact same shape and color as the speed limit signs. B. Tracking The main purpose of our tracking implementation is to make sure the systems know which detections belong to the same physical sign, so each sign is only handled once. A fortunate side effect is that any spurious false detections are also removed, since they do not belong to any track. We have tested it on video sequences of driving taken from the LISA Traffic Sign Dataset Extension. The sequences cover a total of 139 physical signs. The system has been implemented so new tracks show up bottom right of the frame as soon as they are established (after 3 consecutive detections). When they move to a continued tracks in the following frame, they are shown bottom right with a green border. Sample output can be seen in fig. 5. Actual statistics for the tracking performance can be seen in table 4. The system scores well. Nearly all physical signs are seen and tracked, and only 3 false tracks appear. In other words, almost all false detections are successfully suppressed. We did not run this test on speed limit signs, as the raw detection rate is simply too low for those. This clearly shows the tremendous effect tracking can have on any traffic sign detection systems. V. CONCLUSION This work evaluated a state-of-the-art traffic sign detector on American traffic signs. We implemented ChnFtrs and trained it on three superclasses of traffic signs: stop, warning, and speed limit. The detector is known to perform extremely well on European traffic signs, so in order to ascertain whether the challenge of detecting traffic signs is truly solved. Our research showed that while the method performs well for colorful, distinctive traffic signs, such as the superclasses stop and warning, it is not able to detect speed limit signs with any acceptable certainty. As part of

6 ACKNOWLEDGMENT The authors would like to thank their colleagues at the LISA lab for valuable discussions throughout the project. (a) (b) Fig. 6. Examples of tracked signs. A sign icon to the bottom left means it has just been established as a track. An icon bottom right with a green border shows a continued track. The two shown images are consecutive frames. the testing, we introduced an extension of the LISA Traffic Sign Dataset which adds high-resolution color images and sequences to the existing dataset. Furthermore, we implemented a Kalman filter based tracking system for traffic signs and showed that in real world use, a good tracking system is essential for any traffic sign detection system - and probably more important than achieving the last 2-3 percentage points towards a perfect detection system. The most important and difficult challenge is undoubtedly to develop a reliable speed limit sign detector. Apart from speed limit signs, the US has a wide range of other signs following the same template, and no system is able to process those at the moment. REFERENCES [1] A. Møgelmose, M. M. Trivedi, and T. B. Moeslund, Vision based Traffic Sign Detection and Analysis for Intelligent Driver Assistance Systems: Perspectives and Survey, IEEE Transactions on Intelligent Transportation Systems, vol. Special Issue on MLFTSR, no. 13.4, dec [2] S. Houben, J. Stallkamp, J. Salmen, M. Schlipsing, and C. Igel, Detection of traffic signs in real-world images: The German Traffic Sign Detection Benchmark, in Neural Networks (IJCNN), The 2013 International Joint Conference on. IEEE, 2013, pp [3] M. Mathias, R. Timofte, R. Benenson, and L. Van Gool, Traffic sign recognition How far are we from the solution? in Neural Networks (IJCNN), The 2013 International Joint Conference on. IEEE, 2013, pp [4] A. Ruta, Y. Li, and X. Liu, Towards real-time traffic sign recognition by class-specific discriminative features, in Proc. of the 18th British Machine Vision Conference, vol. 1, 2007, pp [5] N. Barnes and G. Loy, Real-time regular polygonal sign detection, in Field and Service Robotics. Springer, 2006, pp [6] P. Gil Jiménez, S. Bascón, H. Moreno, S. Arroyo, and F. Ferreras, Traffic sign shape classification and localization based on the normalized FFT of the signature of blobs and 2D homographies, Signal Processing, vol. 88, no. 12, pp , [7] R. Timofte, K. Zimmermann, and L. Van Gool, Multi-view traffic sign detection, recognition, and 3d localisation, in Applications of Computer Vision (WACV), 2009 Workshop on. Ieee, 2009, pp [8] C. Keller, C. Sprunk, C. Bahlmann, J. Giebel, and G. Baratoff, Real-time recognition of U.S. speed signs, in Intelligent Vehicles Symposium, IEEE, june 2008, pp [9] G. Overett and L. Petersson, Large scale sign detection using HOG feature variants, in Intelligent Vehicles Symposium (IV), 2011 IEEE, june 2011, pp [10] J. Stallkamp, M. Schlipsing, J. Salmen, and C. Igel, The German Traffic Sign Recognition Benchmark: A multi-class classification competition, in Neural Networks (IJCNN), The 2011 International Joint Conference on. IEEE, 2011, pp [Online]. Available: [11] M. Liang, M. Yuan, X. Hu, J. Li, and H. Liu, Traffic sign detection by ROI extraction and histogram features-based recognition, in Neural Networks (IJCNN), The 2013 International Joint Conference on, Aug 2013, pp [12] S. Wang and J. Zhang, A New Edge Feature For Head-Shoulder Detection, in ICIP. IEEE, [13] P. Dollár, Z. Tu, P. Perona, and S. Belongie, Integral Channel Features, in BMVC, vol. 2, no. 3, 2009, p. 5. [14] J. Abukhait, I. Zyout, and A. M. Mansour, Speed Sign Recognition using Shape-based Features, International Journal of Computer Applications, vol. 84, no. 15, pp , [15] A. Møgelmose, M. M. Trivedi, and T. B. Moeslund, Learning to detect traffic signs: Comparative evaluation of synthetic and real-world datasets, in Pattern Recognition (ICPR), International Conference on. IEEE, 2012, pp [16] A. Staudenmaier, U. Klauck, U. Kreßel, F. Lindner, and C. Wöhler, Confidence Measurements for Adaptive Bayes Decision Classifier Cascades and Their Application to US Speed Limit Detection, in Pattern Recognition, ser. Lecture Notes in Computer Science, A. Pinz, T. Pock, H. Bischof, and F. Leberl, Eds. Springer Berlin Heidelberg, 2012, vol. 7476, pp [Online]. Available: 48 [17] Resource Optimized Cascaded Perceptron Classifiers using Structure Tensor Features for US Speed Limit Detection, vol. 12, [18] F. Moutarde, A. Bargeton, A. Herbin, and L. Chanussot, Robust onvehicle real-time visual detection of American and European speed limit signs, with a modular Traffic Signs Recognition system, in Intelligent Vehicles Symposium. IEEE, 2007, pp [19] S. Lafuente-Arroyo, S. Salcedo-Sanz, S. Maldonado-Bascón, J. A. Portilla-Figueras, and R. J. López-Sastre, A decision support system for the automatic management of keep-clear signs based on support vector machines and geographic information systems, Expert Syst. Appl., vol. 37, pp , January 2010.

7 [20] L. Hazelhoff, I. Creusen, and P. de With, Robust classification system with reliability prediction for semi-automatic traffic-sign inventory systems, in Applications of Computer Vision (WACV), 2013 IEEE Workshop on. IEEE, 2013, pp [21] M. Boumediene, J.-P. Lauffenberger, J. Daniel, and C. Cudel, Coupled Detection, Association and Tracking for Traffic Sign Recognition, in Intelligent Vehicles Symposium (IV), 2014 IEEE, june 2014, pp [22] State of California, Department of Transportation, California Manual on Uniform Traffic Control Devices for Streets and Highways.

Traffic Sign Detection for U.S. Roads: Remaining Challenges and a case for Tracking

Traffic Sign Detection for U.S. Roads: Remaining Challenges and a case for Tracking Traffic Sign Detection for U.S. Roads: Remaining Challenges and a case for Tracking Andreas Møgelmose 1,2, Dongran Liu 2, and Mohan M. Trivedi 2 Abstract Traffic sign detection is crucial in intelligent

More information

Aalborg Universitet. Detection of U.S. Traffic Signs Møgelmose, Andreas; Liu, Dongran; Trivedi, Mohan M.

Aalborg Universitet. Detection of U.S. Traffic Signs Møgelmose, Andreas; Liu, Dongran; Trivedi, Mohan M. Aalborg Universitet Detection of U.S. Traffic Signs Møgelmose, Andreas; Liu, Dongran; Trivedi, Mohan M. Published in: I E E E Transactions on Intelligent Transportation Systems DOI (link to publication

More information

TRAFFIC SIGN DETECTION AND ANALYSIS: RECENT STUDIES AND EMERGING TRENDS

TRAFFIC SIGN DETECTION AND ANALYSIS: RECENT STUDIES AND EMERGING TRENDS International Journal of Applied Electronics (IJAE) Volume 1, Issue 1, January-June-2015, pp. 01-10, Article ID: IJAE_01_01_001 Available online at: http://www.iaeme.com/issue.asp?jtype=ijae&vtype=1&itype=1

More information

Intelligent Traffic Sign Detector: Adaptive Learning Based on Online Gathering of Training Samples

Intelligent Traffic Sign Detector: Adaptive Learning Based on Online Gathering of Training Samples 2011 IEEE Intelligent Vehicles Symposium (IV) Baden-Baden, Germany, June 5-9, 2011 Intelligent Traffic Sign Detector: Adaptive Learning Based on Online Gathering of Training Samples Daisuke Deguchi, Mitsunori

More information

Face Detection System on Ada boost Algorithm Using Haar Classifiers

Face Detection System on Ada boost Algorithm Using Haar Classifiers Vol.2, Issue.6, Nov-Dec. 2012 pp-3996-4000 ISSN: 2249-6645 Face Detection System on Ada boost Algorithm Using Haar Classifiers M. Gopi Krishna, A. Srinivasulu, Prof (Dr.) T.K.Basak 1, 2 Department of Electronics

More information

Robust Chinese Traffic Sign Detection and Recognition with Deep Convolutional Neural Network

Robust Chinese Traffic Sign Detection and Recognition with Deep Convolutional Neural Network 2015 11th International Conference on Natural Computation (ICNC) Robust Chinese Traffic Sign Detection and Recognition with Deep Convolutional Neural Network Rongqiang Qian, Bailing Zhang, Yong Yue Department

More information

Ongoing Work on Traffic Lights Philipsen, Mark Philip; Jensen, Morten Bornø; Trivedi, Mohan M.; Møgelmose, Andreas; Moeslund, Thomas B.

Ongoing Work on Traffic Lights Philipsen, Mark Philip; Jensen, Morten Bornø; Trivedi, Mohan M.; Møgelmose, Andreas; Moeslund, Thomas B. Aalborg Universitet Ongoing Work on Traffic Lights Philipsen, Mark Philip; Jensen, Morten Bornø; Trivedi, Mohan M.; Møgelmose, Andreas; Moeslund, Thomas B. Published in: 12th IEEE International Conference

More information

Classification of Road Images for Lane Detection

Classification of Road Images for Lane Detection Classification of Road Images for Lane Detection Mingyu Kim minkyu89@stanford.edu Insun Jang insunj@stanford.edu Eunmo Yang eyang89@stanford.edu 1. Introduction In the research on autonomous car, it is

More information

Learning to Detect Traffic Signs: Comparative Evaluation of Synthetic and Real World Data Sets

Learning to Detect Traffic Signs: Comparative Evaluation of Synthetic and Real World Data Sets Learning to Detect Traffic Signs: Comparative Evaluation of Synthetic and Real World Data Sets Prof. Abhinav V. Deshpande, Assistant Professor, Department of Electronics & Telecommunication Engineering,

More information

Decreasing the commutation failure frequency in HVDC transmission systems

Decreasing the commutation failure frequency in HVDC transmission systems Downloaded from orbit.dtu.dk on: Dec 06, 2017 Decreasing the commutation failure frequency in HVDC transmission systems Hansen (retired June, 2000), Arne; Havemann (retired June, 2000), Henrik Published

More information

Published in: Proceedings of the Workshop on What to Study in HCI at CHI 2015 Conference on Human Factors in Computing Systems

Published in: Proceedings of the Workshop on What to Study in HCI at CHI 2015 Conference on Human Factors in Computing Systems Aalborg Universitet What to Study in HCI Kjeldskov, Jesper; Skov, Mikael; Paay, Jeni Published in: Proceedings of the Workshop on What to Study in HCI at CHI 2015 Conference on Human Factors in Computing

More information

Near Infrared Face Image Quality Assessment System of Video Sequences

Near Infrared Face Image Quality Assessment System of Video Sequences 2011 Sixth International Conference on Image and Graphics Near Infrared Face Image Quality Assessment System of Video Sequences Jianfeng Long College of Electrical and Information Engineering Hunan University

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

Wavelet-based Image Splicing Forgery Detection

Wavelet-based Image Splicing Forgery Detection Wavelet-based Image Splicing Forgery Detection 1 Tulsi Thakur M.Tech (CSE) Student, Department of Computer Technology, basiltulsi@gmail.com 2 Dr. Kavita Singh Head & Associate Professor, Department of

More information

Evaluation of Image Segmentation Based on Histograms

Evaluation of Image Segmentation Based on Histograms Evaluation of Image Segmentation Based on Histograms Andrej FOGELTON Slovak University of Technology in Bratislava Faculty of Informatics and Information Technologies Ilkovičova 3, 842 16 Bratislava, Slovakia

More information

A VIDEO CAMERA ROAD SIGN SYSTEM OF THE EARLY WARNING FROM COLLISION WITH THE WILD ANIMALS

A VIDEO CAMERA ROAD SIGN SYSTEM OF THE EARLY WARNING FROM COLLISION WITH THE WILD ANIMALS Vol. 12, Issue 1/2016, 42-46 DOI: 10.1515/cee-2016-0006 A VIDEO CAMERA ROAD SIGN SYSTEM OF THE EARLY WARNING FROM COLLISION WITH THE WILD ANIMALS Slavomir MATUSKA 1*, Robert HUDEC 2, Patrik KAMENCAY 3,

More information

Infrared Night Vision Based Pedestrian Detection System

Infrared Night Vision Based Pedestrian Detection System Infrared Night Vision Based Pedestrian Detection System INTRODUCTION Chia-Yuan Ho, Chiung-Yao Fang, 2007 Department of Computer Science & Information Engineering National Taiwan Normal University Traffic

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

Aalborg Universitet. Robustness of digital artist authentication Jacobsen, Christian Robert Dahl; Nielsen, Morten. Publication date: 2011

Aalborg Universitet. Robustness of digital artist authentication Jacobsen, Christian Robert Dahl; Nielsen, Morten. Publication date: 2011 Aalborg Universitet Robustness of digital artist authentication Jacobsen, Christian Robert Dahl; Nielsen, Morten Publication date: 2011 Document Version Early version, also known as pre-print Link to publication

More information

COMPARATIVE PERFORMANCE ANALYSIS OF HAND GESTURE RECOGNITION TECHNIQUES

COMPARATIVE PERFORMANCE ANALYSIS OF HAND GESTURE RECOGNITION TECHNIQUES International Journal of Advanced Research in Engineering and Technology (IJARET) Volume 9, Issue 3, May - June 2018, pp. 177 185, Article ID: IJARET_09_03_023 Available online at http://www.iaeme.com/ijaret/issues.asp?jtype=ijaret&vtype=9&itype=3

More information

Detection of License Plate using Sliding Window, Histogram of Oriented Gradient, and Support Vector Machines Method

Detection of License Plate using Sliding Window, Histogram of Oriented Gradient, and Support Vector Machines Method Journal of Physics: Conference Series PAPER OPEN ACCESS Detection of License Plate using Sliding Window, Histogram of Oriented Gradient, and Support Vector Machines Method To cite this article: INGA Astawa

More information

Vehicle Detection using Images from Traffic Security Camera

Vehicle Detection using Images from Traffic Security Camera Vehicle Detection using Images from Traffic Security Camera Lamia Iftekhar Final Report of Course Project CS174 May 30, 2012 1 1 The Task This project is an application of supervised learning algorithms.

More information

Background Pixel Classification for Motion Detection in Video Image Sequences

Background Pixel Classification for Motion Detection in Video Image Sequences Background Pixel Classification for Motion Detection in Video Image Sequences P. Gil-Jiménez, S. Maldonado-Bascón, R. Gil-Pita, and H. Gómez-Moreno Dpto. de Teoría de la señal y Comunicaciones. Universidad

More information

Face Detection: A Literature Review

Face Detection: A Literature Review Face Detection: A Literature Review Dr.Vipulsangram.K.Kadam 1, Deepali G. Ganakwar 2 Professor, Department of Electronics Engineering, P.E.S. College of Engineering, Nagsenvana Aurangabad, Maharashtra,

More information

A TWO-PART PREDICTIVE CODER FOR MULTITASK SIGNAL COMPRESSION. Scott Deeann Chen and Pierre Moulin

A TWO-PART PREDICTIVE CODER FOR MULTITASK SIGNAL COMPRESSION. Scott Deeann Chen and Pierre Moulin A TWO-PART PREDICTIVE CODER FOR MULTITASK SIGNAL COMPRESSION Scott Deeann Chen and Pierre Moulin University of Illinois at Urbana-Champaign Department of Electrical and Computer Engineering 5 North Mathews

More information

Real-Time Face Detection and Tracking for High Resolution Smart Camera System

Real-Time Face Detection and Tracking for High Resolution Smart Camera System Digital Image Computing Techniques and Applications Real-Time Face Detection and Tracking for High Resolution Smart Camera System Y. M. Mustafah a,b, T. Shan a, A. W. Azman a,b, A. Bigdeli a, B. C. Lovell

More information

Impact of the size of the hearing aid on the mobile phone near fields Bonev, Ivan Bonev; Franek, Ondrej; Pedersen, Gert F.

Impact of the size of the hearing aid on the mobile phone near fields Bonev, Ivan Bonev; Franek, Ondrej; Pedersen, Gert F. Aalborg Universitet Impact of the size of the hearing aid on the mobile phone near fields Bonev, Ivan Bonev; Franek, Ondrej; Pedersen, Gert F. Published in: Progress In Electromagnetics Research Symposium

More information

License Plate Localisation based on Morphological Operations

License Plate Localisation based on Morphological Operations License Plate Localisation based on Morphological Operations Xiaojun Zhai, Faycal Benssali and Soodamani Ramalingam School of Engineering & Technology University of Hertfordshire, UH Hatfield, UK Abstract

More information

A Practical FPGA-Based LUT-Predistortion Technology For Switch-Mode Power Amplifier Linearization Cerasani, Umberto; Le Moullec, Yannick; Tong, Tian

A Practical FPGA-Based LUT-Predistortion Technology For Switch-Mode Power Amplifier Linearization Cerasani, Umberto; Le Moullec, Yannick; Tong, Tian Aalborg Universitet A Practical FPGA-Based LUT-Predistortion Technology For Switch-Mode Power Amplifier Linearization Cerasani, Umberto; Le Moullec, Yannick; Tong, Tian Published in: NORCHIP, 2009 DOI

More information

Aalborg Universitet. Large-Scale Analysis of Art Proportions Jensen, Karl Kristoffer. Published in: Arts and Technology

Aalborg Universitet. Large-Scale Analysis of Art Proportions Jensen, Karl Kristoffer. Published in: Arts and Technology Aalborg Universitet Large-Scale Analysis of Art Proportions Jensen, Karl Kristoffer Published in: Arts and Technology DOI (link to publication from Publisher): 10.1007/978-3-319-18836-2_16 Creative Commons

More information

An Image Processing Based Pedestrian Detection System for Driver Assistance

An Image Processing Based Pedestrian Detection System for Driver Assistance I J C T A, 9(15), 2016, pp. 7369-7375 International Science Press An Image Processing Based Pedestrian Detection System for Driver Assistance Sandeep A. K.*, Nithin S.** and K. I. Ramachandran*** ABSTRACT

More information

Content Based Image Retrieval Using Color Histogram

Content Based Image Retrieval Using Color Histogram Content Based Image Retrieval Using Color Histogram Nitin Jain Assistant Professor, Lokmanya Tilak College of Engineering, Navi Mumbai, India. Dr. S. S. Salankar Professor, G.H. Raisoni College of Engineering,

More information

Image Processing Based Vehicle Detection And Tracking System

Image Processing Based Vehicle Detection And Tracking System Image Processing Based Vehicle Detection And Tracking System Poonam A. Kandalkar 1, Gajanan P. Dhok 2 ME, Scholar, Electronics and Telecommunication Engineering, Sipna College of Engineering and Technology,

More information

Vehicle Detection Using Imaging Technologies and its Applications under Varying Environments: A Review

Vehicle Detection Using Imaging Technologies and its Applications under Varying Environments: A Review Proceedings of the 2 nd World Congress on Civil, Structural, and Environmental Engineering (CSEE 17) Barcelona, Spain April 2 4, 2017 Paper No. ICTE 110 ISSN: 2371-5294 DOI: 10.11159/icte17.110 Vehicle

More information

A Novel Fuzzy Neural Network Based Distance Relaying Scheme

A Novel Fuzzy Neural Network Based Distance Relaying Scheme 902 IEEE TRANSACTIONS ON POWER DELIVERY, VOL. 15, NO. 3, JULY 2000 A Novel Fuzzy Neural Network Based Distance Relaying Scheme P. K. Dash, A. K. Pradhan, and G. Panda Abstract This paper presents a new

More information

FLASH LiDAR KEY BENEFITS

FLASH LiDAR KEY BENEFITS In 2013, 1.2 million people died in vehicle accidents. That is one death every 25 seconds. Some of these lives could have been saved with vehicles that have a better understanding of the world around them

More information

Internal active power reserve management in Large scale PV Power Plants

Internal active power reserve management in Large scale PV Power Plants Downloaded from vbn.aau.dk on: marts 11, 2019 Aalborg Universitet Internal active power reserve management in Large scale PV Power Plants Craciun, Bogdan-Ionut; Spataru, Sergiu; Kerekes, Tamas; Sera, Dezso;

More information

Reliable Classification of Partially Occluded Coins

Reliable Classification of Partially Occluded Coins Reliable Classification of Partially Occluded Coins e-mail: L.J.P. van der Maaten P.J. Boon MICC, Universiteit Maastricht P.O. Box 616, 6200 MD Maastricht, The Netherlands telephone: (+31)43-3883901 fax:

More information

SUSPENSION CRITERIA FOR IMAGE MONITORS AND VIEWING BOXES.

SUSPENSION CRITERIA FOR IMAGE MONITORS AND VIEWING BOXES. SUSPENSION CRITERIA FOR IMAGE MONITORS AND VIEWING BOXES. Tingberg, Anders Published in: Radiation Protection Dosimetry DOI: 10.1093/rpd/ncs302 Published: 2013-01-01 Link to publication Citation for published

More information

Automatic Vehicles Detection from High Resolution Satellite Imagery Using Morphological Neural Networks

Automatic Vehicles Detection from High Resolution Satellite Imagery Using Morphological Neural Networks Automatic Vehicles Detection from High Resolution Satellite Imagery Using Morphological Neural Networks HONG ZHENG Research Center for Intelligent Image Processing and Analysis School of Electronic Information

More information

Voltage dip detection with half cycle window RMS values and aggregation of short events Qin, Y.; Ye, G.; Cuk, V.; Cobben, J.F.G.

Voltage dip detection with half cycle window RMS values and aggregation of short events Qin, Y.; Ye, G.; Cuk, V.; Cobben, J.F.G. Voltage dip detection with half cycle window RMS values and aggregation of short events Qin, Y.; Ye, G.; Cuk, V.; Cobben, J.F.G. Published in: Renewable Energy & Power Quality Journal DOI:.484/repqj.5

More information

EVALUATION OF A TRAFFIC SIGN DETECTOR BY SYNTHETIC IMAGE DATA FOR ADVANCED DRIVER ASSISTANCE SYSTEMS

EVALUATION OF A TRAFFIC SIGN DETECTOR BY SYNTHETIC IMAGE DATA FOR ADVANCED DRIVER ASSISTANCE SYSTEMS The International Archives of the Photogrammetry, Remote Sensing and Spatial Information Sciences, Volume XLII-2, 2018 ISPRS TC II Mid-term Symposium Towards Photogrammetry 2020, 4 June 2018, Riva del

More information

Educating Maritime Engineers for a Globalised Industry

Educating Maritime Engineers for a Globalised Industry Downloaded from orbit.dtu.dk on: Dec 20, 2017 Educating Maritime Engineers for a Globalised Industry Nielsen, Ulrik Dam Publication date: 2013 Document Version Publisher's PDF, also known as Version of

More information

Low frequency sound reproduction in irregular rooms using CABS (Control Acoustic Bass System) Celestinos, Adrian; Nielsen, Sofus Birkedal

Low frequency sound reproduction in irregular rooms using CABS (Control Acoustic Bass System) Celestinos, Adrian; Nielsen, Sofus Birkedal Aalborg Universitet Low frequency sound reproduction in irregular rooms using CABS (Control Acoustic Bass System) Celestinos, Adrian; Nielsen, Sofus Birkedal Published in: Acustica United with Acta Acustica

More information

A Waveguide Transverse Broad Wall Slot Radiating Between Baffles

A Waveguide Transverse Broad Wall Slot Radiating Between Baffles Downloaded from orbit.dtu.dk on: Aug 25, 2018 A Waveguide Transverse Broad Wall Slot Radiating Between Baffles Dich, Mikael; Rengarajan, S.R. Published in: Proc. of IEEE Antenna and Propagation Society

More information

Blur Estimation for Barcode Recognition in Out-of-Focus Images

Blur Estimation for Barcode Recognition in Out-of-Focus Images Blur Estimation for Barcode Recognition in Out-of-Focus Images Duy Khuong Nguyen, The Duy Bui, and Thanh Ha Le Human Machine Interaction Laboratory University Engineering and Technology Vietnam National

More information

Feedback Compression Schemes for Downlink Carrier Aggregation in LTE-Advanced. Nguyen, Hung Tuan; Kovac, Istvan; Wang, Yuanye; Pedersen, Klaus

Feedback Compression Schemes for Downlink Carrier Aggregation in LTE-Advanced. Nguyen, Hung Tuan; Kovac, Istvan; Wang, Yuanye; Pedersen, Klaus Downloaded from vbn.aau.dk on: marts, 19 Aalborg Universitet Feedback Compression Schemes for Downlink Carrier Aggregation in LTE-Advanced Nguyen, Hung Tuan; Kovac, Istvan; Wang, Yuanye; Pedersen, Klaus

More information

Face Detection using 3-D Time-of-Flight and Colour Cameras

Face Detection using 3-D Time-of-Flight and Colour Cameras Face Detection using 3-D Time-of-Flight and Colour Cameras Jan Fischer, Daniel Seitz, Alexander Verl Fraunhofer IPA, Nobelstr. 12, 70597 Stuttgart, Germany Abstract This paper presents a novel method to

More information

Published in: Proceedings of 2016 IEEE 8th International Power Electronics and Motion Control Conference, IPEMC-ECCE Asia 2016

Published in: Proceedings of 2016 IEEE 8th International Power Electronics and Motion Control Conference, IPEMC-ECCE Asia 2016 Aalborg Universitet Control architecture for paralleled current-source-inverter (CSI) based uninterruptible power systems (UPS) Wei, Baoze; Quintero, Juan Carlos Vasquez; Guerrero, Josep M.; Guo, Xiaoqiang

More information

Low-Profile Fabry-Pérot Cavity Antenna with Metamaterial SRR Cells for Fifth Generation Systems

Low-Profile Fabry-Pérot Cavity Antenna with Metamaterial SRR Cells for Fifth Generation Systems Aalborg Universitet Low-Profile Fabry-Pérot Cavity Antenna with Metamaterial SRR Cells for Fifth Generation Systems Ojaroudiparchin, Naser; Shen, Ming; Pedersen, Gert F. Published in: Microwave, Radar

More information

Aalborg Universitet. Published in: Vehicular Technology Conference (VTC Spring), 2014 IEEE 79th

Aalborg Universitet. Published in: Vehicular Technology Conference (VTC Spring), 2014 IEEE 79th Aalborg Universitet Abstract Radio Resource Management Framework for System Level Simulations in LTE-A Systems Fotiadis, Panagiotis; Viering, Ingo; Zanier, Paolo; Pedersen, Klaus I. Published in: Vehicular

More information

SIMULATION-BASED MODEL CONTROL USING STATIC HAND GESTURES IN MATLAB

SIMULATION-BASED MODEL CONTROL USING STATIC HAND GESTURES IN MATLAB SIMULATION-BASED MODEL CONTROL USING STATIC HAND GESTURES IN MATLAB S. Kajan, J. Goga Institute of Robotics and Cybernetics, Faculty of Electrical Engineering and Information Technology, Slovak University

More information

2018 IEEE Signal Processing Cup: Forensic Camera Model Identification Challenge

2018 IEEE Signal Processing Cup: Forensic Camera Model Identification Challenge 2018 IEEE Signal Processing Cup: Forensic Camera Model Identification Challenge This competition is sponsored by the IEEE Signal Processing Society Introduction The IEEE Signal Processing Society s 2018

More information

DESIGN AND IMPLEMENTATION OF AN ALGORITHM FOR MODULATION IDENTIFICATION OF ANALOG AND DIGITAL SIGNALS

DESIGN AND IMPLEMENTATION OF AN ALGORITHM FOR MODULATION IDENTIFICATION OF ANALOG AND DIGITAL SIGNALS DESIGN AND IMPLEMENTATION OF AN ALGORITHM FOR MODULATION IDENTIFICATION OF ANALOG AND DIGITAL SIGNALS John Yong Jia Chen (Department of Electrical Engineering, San José State University, San José, California,

More information

Libyan Licenses Plate Recognition Using Template Matching Method

Libyan Licenses Plate Recognition Using Template Matching Method Journal of Computer and Communications, 2016, 4, 62-71 Published Online May 2016 in SciRes. http://www.scirp.org/journal/jcc http://dx.doi.org/10.4236/jcc.2016.47009 Libyan Licenses Plate Recognition Using

More information

Research on Hand Gesture Recognition Using Convolutional Neural Network

Research on Hand Gesture Recognition Using Convolutional Neural Network Research on Hand Gesture Recognition Using Convolutional Neural Network Tian Zhaoyang a, Cheng Lee Lung b a Department of Electronic Engineering, City University of Hong Kong, Hong Kong, China E-mail address:

More information

Wadehra Kartik, Kathpalia Mukul, Bahl Vasudha, International Journal of Advance Research, Ideas and Innovations in Technology

Wadehra Kartik, Kathpalia Mukul, Bahl Vasudha, International Journal of Advance Research, Ideas and Innovations in Technology ISSN: 2454-132X Impact factor: 4.295 (Volume 4, Issue 1) Available online at www.ijariit.com Hand Detection and Gesture Recognition in Real-Time Using Haar-Classification and Convolutional Neural Networks

More information

Image Forgery Detection Using Svm Classifier

Image Forgery Detection Using Svm Classifier Image Forgery Detection Using Svm Classifier Anita Sahani 1, K.Srilatha 2 M.E. Student [Embedded System], Dept. Of E.C.E., Sathyabama University, Chennai, India 1 Assistant Professor, Dept. Of E.C.E, Sathyabama

More information

University of Dundee. Design in Action Knowledge Exchange Process Model Woods, Melanie; Marra, M.; Coulson, S. DOI: 10.

University of Dundee. Design in Action Knowledge Exchange Process Model Woods, Melanie; Marra, M.; Coulson, S. DOI: 10. University of Dundee Design in Action Knowledge Exchange Process Model Woods, Melanie; Marra, M.; Coulson, S. DOI: 10.20933/10000100 Publication date: 2015 Document Version Publisher's PDF, also known

More information

A software video stabilization system for automotive oriented applications

A software video stabilization system for automotive oriented applications A software video stabilization system for automotive oriented applications A. Broggi, P. Grisleri Dipartimento di Ingegneria dellinformazione Universita degli studi di Parma 43100 Parma, Italy Email: {broggi,

More information

Directional Sensing for Online PD Monitoring of MV Cables Wagenaars, P.; van der Wielen, P.C.J.M.; Wouters, P.A.A.F.; Steennis, E.F.

Directional Sensing for Online PD Monitoring of MV Cables Wagenaars, P.; van der Wielen, P.C.J.M.; Wouters, P.A.A.F.; Steennis, E.F. Directional Sensing for Online PD Monitoring of MV Cables Wagenaars, P.; van der Wielen, P.C.J.M.; Wouters, P.A.A.F.; Steennis, E.F. Published in: Nordic Insulation Symposium, Nord-IS 05 Published: 01/01/2005

More information

Wavelet-Based Multiresolution Matching for Content-Based Image Retrieval

Wavelet-Based Multiresolution Matching for Content-Based Image Retrieval Wavelet-Based Multiresolution Matching for Content-Based Image Retrieval Te-Wei Chiang 1 Tienwei Tsai 2 Yo-Ping Huang 2 1 Department of Information Networing Technology, Chihlee Institute of Technology,

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

Gamescape Principles Basic Approaches for Studying Visual Grammar and Game Literacy Nobaew, Banphot; Ryberg, Thomas

Gamescape Principles Basic Approaches for Studying Visual Grammar and Game Literacy Nobaew, Banphot; Ryberg, Thomas Downloaded from vbn.aau.dk on: april 05, 2019 Aalborg Universitet Gamescape Principles Basic Approaches for Studying Visual Grammar and Game Literacy Nobaew, Banphot; Ryberg, Thomas Published in: Proceedings

More information

Aalborg Universitet. Emulating Wired Backhaul with Wireless Network Coding Thomsen, Henning; Carvalho, Elisabeth De; Popovski, Petar

Aalborg Universitet. Emulating Wired Backhaul with Wireless Network Coding Thomsen, Henning; Carvalho, Elisabeth De; Popovski, Petar Aalborg Universitet Emulating Wired Backhaul with Wireless Network Coding Thomsen, Henning; Carvalho, Elisabeth De; Popovski, Petar Published in: General Assembly and Scientific Symposium (URSI GASS),

More information

Aalborg Universitet. MEMS Tunable Antennas to Address LTE 600 MHz-bands Barrio, Samantha Caporal Del; Morris, Art; Pedersen, Gert F.

Aalborg Universitet. MEMS Tunable Antennas to Address LTE 600 MHz-bands Barrio, Samantha Caporal Del; Morris, Art; Pedersen, Gert F. Aalborg Universitet MEMS Tunable Antennas to Address LTE 6 MHz-bands Barrio, Samantha Caporal Del; Morris, Art; Pedersen, Gert F. Published in: 9th European Conference on Antennas and Propagation (EuCAP),

More information

On the creation of standards for interaction between real robots and virtual worlds

On the creation of standards for interaction between real robots and virtual worlds On the creation of standards for interaction between real robots and virtual worlds Citation for published version (APA): Juarez Cordova, A. G., Bartneck, C., & Feijs, L. M. G. (2009). On the creation

More information

Performance Analysis of Color Components in Histogram-Based Image Retrieval

Performance Analysis of Color Components in Histogram-Based Image Retrieval Te-Wei Chiang Department of Accounting Information Systems Chihlee Institute of Technology ctw@mail.chihlee.edu.tw Performance Analysis of s in Histogram-Based Image Retrieval Tienwei Tsai Department of

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

ADAS Development using Advanced Real-Time All-in-the-Loop Simulators. Roberto De Vecchi VI-grade Enrico Busto - AddFor

ADAS Development using Advanced Real-Time All-in-the-Loop Simulators. Roberto De Vecchi VI-grade Enrico Busto - AddFor ADAS Development using Advanced Real-Time All-in-the-Loop Simulators Roberto De Vecchi VI-grade Enrico Busto - AddFor The Scenario The introduction of ADAS and AV has created completely new challenges

More information

Evaluation of the Danish Safety by Design in Construction Framework (SDCF)

Evaluation of the Danish Safety by Design in Construction Framework (SDCF) Downloaded from orbit.dtu.dk on: Dec 15, 2017 Evaluation of the Danish Safety by Design in Construction Framework (SDCF) Schultz, Casper Siebken; Jørgensen, Kirsten Publication date: 2015 Link back to

More information

INDIAN VEHICLE LICENSE PLATE EXTRACTION AND SEGMENTATION

INDIAN VEHICLE LICENSE PLATE EXTRACTION AND SEGMENTATION International Journal of Computer Science and Communication Vol. 2, No. 2, July-December 2011, pp. 593-599 INDIAN VEHICLE LICENSE PLATE EXTRACTION AND SEGMENTATION Chetan Sharma 1 and Amandeep Kaur 2 1

More information

Real-Time Tracking via On-line Boosting Helmut Grabner, Michael Grabner, Horst Bischof

Real-Time Tracking via On-line Boosting Helmut Grabner, Michael Grabner, Horst Bischof Real-Time Tracking via On-line Boosting, Michael Grabner, Horst Bischof Graz University of Technology Institute for Computer Graphics and Vision Tracking Shrek M Grabner, H Grabner and H Bischof Real-time

More information

Non resonant slots for wide band 1D scanning arrays

Non resonant slots for wide band 1D scanning arrays Non resonant slots for wide band 1D scanning arrays Bruni, S.; Neto, A.; Maci, S.; Gerini, G. Published in: Proceedings of 2005 IEEE Antennas and Propagation Society International Symposium, 3-8 July 2005,

More information

Open Access to music research in Sweden the pros and cons of publishing in university digital archives

Open Access to music research in Sweden the pros and cons of publishing in university digital archives Open Access to music research in Sweden the pros and cons of publishing in university digital archives Berry, Peter Published in: [Host publication title missing] 2008 Link to publication Citation for

More information

Implementation of Face Detection System Based on ZYNQ FPGA Jing Feng1, a, Busheng Zheng1, b* and Hao Xiao1, c

Implementation of Face Detection System Based on ZYNQ FPGA Jing Feng1, a, Busheng Zheng1, b* and Hao Xiao1, c 6th International Conference on Mechatronics, Computer and Education Informationization (MCEI 2016) Implementation of Face Detection System Based on ZYNQ FPGA Jing Feng1, a, Busheng Zheng1, b* and Hao

More information

An image-based method for objectively assessing injection moulded plastic quality

An image-based method for objectively assessing injection moulded plastic quality Downloaded from orbit.dtu.dk on: Oct 23, 2018 An image-based method for objectively assessing injection moulded plastic quality Hannemose, Morten; Nielsen, Jannik Boll; Zsíros, László; Aanæs, Henrik Published

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

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

Digital Image Processing 3/e

Digital Image Processing 3/e Laboratory Projects for Digital Image Processing 3/e by Gonzalez and Woods 2008 Prentice Hall Upper Saddle River, NJ 07458 USA www.imageprocessingplace.com The following sample laboratory projects are

More information

Operational modal analysis applied to a horizontal washing machine: A comparative approach Sichani, Mahdi Teimouri; Mahjoob, Mohammad J.

Operational modal analysis applied to a horizontal washing machine: A comparative approach Sichani, Mahdi Teimouri; Mahjoob, Mohammad J. Aalborg Universitet Operational modal analysis applied to a horizontal washing machine: A comparative approach Sichani, Mahdi Teimouri; Mahjoob, Mohammad J. Publication date: 27 Document Version Publisher's

More information

CS221 Project Final Report Gomoku Game Agent

CS221 Project Final Report Gomoku Game Agent CS221 Project Final Report Gomoku Game Agent Qiao Tan qtan@stanford.edu Xiaoti Hu xiaotihu@stanford.edu 1 Introduction Gomoku, also know as five-in-a-row, is a strategy board game which is traditionally

More information

Automatic Ground Truth Generation of Camera Captured Documents Using Document Image Retrieval

Automatic Ground Truth Generation of Camera Captured Documents Using Document Image Retrieval Automatic Ground Truth Generation of Camera Captured Documents Using Document Image Retrieval Sheraz Ahmed, Koichi Kise, Masakazu Iwamura, Marcus Liwicki, and Andreas Dengel German Research Center for

More information

Effects of the Unscented Kalman Filter Process for High Performance Face Detector

Effects of the Unscented Kalman Filter Process for High Performance Face Detector Effects of the Unscented Kalman Filter Process for High Performance Face Detector Bikash Lamsal and Naofumi Matsumoto Abstract This paper concerns with a high performance algorithm for human face detection

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

The Research of the Lane Detection Algorithm Base on Vision Sensor

The Research of the Lane Detection Algorithm Base on Vision Sensor Research Journal of Applied Sciences, Engineering and Technology 6(4): 642-646, 2013 ISSN: 2040-7459; e-issn: 2040-7467 Maxwell Scientific Organization, 2013 Submitted: September 03, 2012 Accepted: October

More information

Face Detector using Network-based Services for a Remote Robot Application

Face Detector using Network-based Services for a Remote Robot Application Face Detector using Network-based Services for a Remote Robot Application Yong-Ho Seo Department of Intelligent Robot Engineering, Mokwon University Mokwon Gil 21, Seo-gu, Daejeon, Republic of Korea yhseo@mokwon.ac.kr

More information

Controlling Humanoid Robot Using Head Movements

Controlling Humanoid Robot Using Head Movements Volume-5, Issue-2, April-2015 International Journal of Engineering and Management Research Page Number: 648-652 Controlling Humanoid Robot Using Head Movements S. Mounica 1, A. Naga bhavani 2, Namani.Niharika

More information

A Training Based Approach for Vehicle Plate Recognition (VPR)

A Training Based Approach for Vehicle Plate Recognition (VPR) A Training Based Approach for Vehicle Plate Recognition (VPR) Laveena Agarwal 1, Vinish Kumar 2, Dwaipayan Dey 3 1 Department of Computer Science & Engineering, Sanskar College of Engineering &Technology,

More information

S.P.Q.R. Legged Team Report from RoboCup 2003

S.P.Q.R. Legged Team Report from RoboCup 2003 S.P.Q.R. Legged Team Report from RoboCup 2003 L. Iocchi and D. Nardi Dipartimento di Informatica e Sistemistica Universitá di Roma La Sapienza Via Salaria 113-00198 Roma, Italy {iocchi,nardi}@dis.uniroma1.it,

More information

MARCO PEDERSOLI. Assistant Professor at ETS Montreal profs.etsmtl.ca/mpedersoli

MARCO PEDERSOLI. Assistant Professor at ETS Montreal profs.etsmtl.ca/mpedersoli MARCO PEDERSOLI Assistant Professor at ETS Montreal profs.etsmtl.ca/mpedersoli RESEARCH INTERESTS Visual Recognition, Efficient Deep Learning, Learning with Reduced Supervision, Data Exploration ACADEMIC

More information

Evaluation of Biometric Systems. Christophe Rosenberger

Evaluation of Biometric Systems. Christophe Rosenberger Evaluation of Biometric Systems Christophe Rosenberger Outline GREYC research lab Evaluation: a love story Evaluation of biometric systems Quality of biometric templates Conclusions & perspectives 2 GREYC

More information

OBJECTIVE OF THE BOOK ORGANIZATION OF THE BOOK

OBJECTIVE OF THE BOOK ORGANIZATION OF THE BOOK xv Preface Advancement in technology leads to wide spread use of mounting cameras to capture video imagery. Such surveillance cameras are predominant in commercial institutions through recording the cameras

More information

Bandit Detection using Color Detection Method

Bandit Detection using Color Detection Method Available online at www.sciencedirect.com Procedia Engineering 29 (2012) 1259 1263 2012 International Workshop on Information and Electronic Engineering Bandit Detection using Color Detection Method Junoh,

More information

The current distribution on the feeding probe in an air filled rectangular microstrip antenna

The current distribution on the feeding probe in an air filled rectangular microstrip antenna Downloaded from orbit.dtu.dk on: Mar 28, 2019 The current distribution on the feeding probe in an air filled rectangular microstrip antenna Brown, K Published in: Antennas and Propagation Society International

More information

Recognition Of Vehicle Number Plate Using MATLAB

Recognition Of Vehicle Number Plate Using MATLAB Recognition Of Vehicle Number Plate Using MATLAB Mr. Ami Kumar Parida 1, SH Mayuri 2,Pallabi Nayk 3,Nidhi Bharti 4 1Asst. Professor, Gandhi Institute Of Engineering and Technology, Gunupur 234Under Graduate,

More information

CS4670 / 5670: Computer Vision Noah Snavely

CS4670 / 5670: Computer Vision Noah Snavely CS4670 / 5670: Computer Vision Noah Snavely Lecture 29: Face Detection Revisited Announcements Project 4 due next Friday by 11:59pm 1 Remember eigenfaces? They don t work very well for detection Issues:

More information

A Switchable 3D-Coverage Phased Array Antenna Package for 5G Mobile Terminals Parchin, Naser Ojaroudi; Shen, Ming; Zhang, Shuai; Pedersen, Gert F.

A Switchable 3D-Coverage Phased Array Antenna Package for 5G Mobile Terminals Parchin, Naser Ojaroudi; Shen, Ming; Zhang, Shuai; Pedersen, Gert F. Aalborg Universitet A Switchable 3D-Coverage Phased Array Antenna Package for 5G Mobile Terminals Parchin, Naser Ojaroudi; Shen, Ming; Zhang, Shuai; Pedersen, Gert F. Published in: I E E E Antennas and

More information

Number Plate Detection with a Multi-Convolutional Neural Network Approach with Optical Character Recognition for Mobile Devices

Number Plate Detection with a Multi-Convolutional Neural Network Approach with Optical Character Recognition for Mobile Devices J Inf Process Syst, Vol.12, No.1, pp.100~108, March 2016 http://dx.doi.org/10.3745/jips.04.0022 ISSN 1976-913X (Print) ISSN 2092-805X (Electronic) Number Plate Detection with a Multi-Convolutional Neural

More information

신경망기반자동번역기술. Konkuk University Computational Intelligence Lab. 김강일

신경망기반자동번역기술. Konkuk University Computational Intelligence Lab.  김강일 신경망기반자동번역기술 Konkuk University Computational Intelligence Lab. http://ci.konkuk.ac.kr kikim01@kunkuk.ac.kr 김강일 Index Issues in AI and Deep Learning Overview of Machine Translation Advanced Techniques in

More information