A High-Precision Fusion Algorithm for Fabric Quality Inspection

Size: px
Start display at page:

Download "A High-Precision Fusion Algorithm for Fabric Quality Inspection"

Transcription

1 nd International Conference on Computer Engineering, Information Science and Internet Technology (CII 2017) ISBN: A High-Precision Fusion Algorithm for Fabric Quality Inspection YUJUN CHEN, LIMING WU, XIN LI and YANAN ZHAO ABSTRACT In order to improve the accuracy of fabric texture defect detection, a combination of algorithm with Grabcut and convolutional neural network is proposed. Firstly, a segmentation algorithm based on grab-cuts is used to locate and segment the defects in fabric images accurately. Secondly, the sample images are expanded to increasing the number of the training samples. And then, the convolutional neural network is optimized to learn the features of the fabric defects more efficiently, which make it suitable for fabric defect recognition and classification. Experimental results shows that compared with other traditional algorithms, our model gets better performance with high accuracy of fabric defect detection. KEYWORDS Fabric defect detection; Grabcut algorithm; convolutional neural network. INTRODUCTION In textile manufacturing industry, the defect detection of the fabric is an indispensable part in the quality control process and the distribution of defects directly affect the quality evaluation of the fabric. The normal fabric has regular and orderly texture structure, but the defects in fabrics destroy the original texture of the fabric and affect the quality of the product. The complex texture structure of fabrics has great background interference to improve the accuracy of fabric defect detection. Therefore, in fabric detection field, the intelligent fabric detectors based on image recognition and classification has been the research hotspot, attracting a large number of experts and scholars [1-4]. In recent years, a lot of new innovative algorithms have been put forward. Malek A S et al. [5] used fast Fourier transform and cross correlation techniques to analyze the fabric image in the spatial domain, and obtain the fabric structure characteristics to detect the defects. Alper Selver M. et al.[6] proposed a texture detection based on texture statistics and gradient search, combined with differential histogram and cooccurrence matrix for fabric texture analysis, so as to speed up the processing speed of detection. In the Model-based inspection methods, Zhou J et al. [7] proposed a fabric defect detection algorithm based on an adaptive dictionary learning, using a linear combination of the dictionary to effectively represent the structure character of the normal fabric images. Then, Qu T et al.[8] improved the algorithm, considered the Yujun Chen, @qq.com, Liming Wu, jkyjs@gdut.edu.cn, Xin Li, @qq.com, Yanan Zhao, @qq.com School of mechanical and electrical engineering, Guangzhou , China; 575

2 problem of different defect size and proposed a double-scale complete dictionary, which improved the self-adaptability of the detector. Since 2012, Alex Krizhevsky s research team won the ILSVRC-2012 competition [9], deep learning caused a great shock in the field of computer vision with its strong learning ability, and sparked an upsurge in research on Artificial Intelligence. At present, it has been widely used in face recognition [10-11], traffic sign recognition [12], target recognition [13-14], etc. Due to the complex characteristic of fabric texture, the application of deep learning in fabric defect detection has aroused extensive attention of experts and scholars. For example, Jing Jun Feng [15] presents a yarn-dyed fabric detection algorithm based on convolution neural network. It designed a deep convolution neural network and used the back-propagation algorithm to adjust the network s weight and dictionary, and finally used the Meanshift algorithm to segment the fabric defects, obtaining the good detection results. However, the deep convolution neural network has too many parameters, so it is easy to cause over-fitting problem in the training process because of the insufficiency of the fabric detection database. Aiming at these difficulties, this paper presents a fabric defect detection method which combines Gradcut algorithm [16] and optimized convolution neural network. ALGORITHM FRAMEWORK Fabric defect detection mainly includes three processes: image segmentation of the ROI, dataset expansion and defect classification: 1) Firstly, the noise should be removed from the picture in the pre-processing stage. Then the Grabcut algorithm is used to segment the target area. 2) Secondly, the sample images are expanded by being rotated, stretched and other ways for increasing the number to set up the samples database; 3) finally, input the samples to the convolution neural network for model training to achieve the classification of fabric defects. The specific realization process is shown in Figure 1. Figure 1. The flow Chart of Detection Algorithm. Figure 2. Grabcut segmentation of target area. 576

3 LOCALIZATION OF THE ROI The image segmentation algorithm based on graph theory has superior performance in texture image segmentation [17]. Aiming at the problem of locating the ROI of the fabric defects, this paper proposes a Grabcut algorithm to locate the target defect. The advantages are as follows: 1) The GMM (Gaussian Mixture Model) is used instead of histogram to estimate the color probability distribution. And iterative method is used to estimate Gauss mixture model parameters; 2) the user interaction mode is simplified by using incomplete labeling method. The energy function of the Grabcut method is defined as: E( k, z) U( k, z) V( z) (1) U( k, z logp ( zn n, kn, ) log ( n, kn) ) (2) ( m, n) C exp z z 2 V ( z) n m m n Where U ( ) is data item, ( ) n 0,1, with 0 for background and 1 for foreground; is the gray histogram of image foreground and background; z is an array of the gray value of the image, z z,..., z n,..., z ) ; V is smooth item; is opacity, ( 1 N k ( k 1,..., k n,..., k N ) is the GMM label of each pixel, p ( ) is the Gauss probability distribution, and ( ) is the mixed weight coefficient. When the energy function achieves the global minimum value argmin E( k, z), it is the segmentation result obtained by the Grabcut algorithm. Compared with the traditional image segmentation algorithm, the ROI of the fabric defect provided by the Grabcut algorithm, as shown in Fig. 2, save the texture feature completely, which lays the foundation for further classification and recognition for convolution neural network. (3) DESIGN OF THE DEEP LEARNING MODEL Convolutional Neural Network Convolutional Neural Network (CNN) is a kind of artificial neural network. Sparse connection and weight sharing makes the training parameters of the convolutional neural network decrease sharply, reducing the complexity of the network [18]. One disadvantage of the traditional classifier is that it is difficult to extract high-level features sufficiently to achieve high-precision identification. Based on the network structure of AlexNet, this paper designs a CNN network structure suitable for fabric defect detection. As shown in Fig.3, compared with the AlexNet network, the network simplifies the number of convolution layers and the number of neurons in the full connection layer, greatly reducing the parameters in the network. 577

4 Figure 3. Structure of the Network. Hole Stain Broken warp broken weft warp hanged knob Figure 4. Samples of fabric defects. The model consists of three convolutions and three pooling layers. The size of the convolution kernel is 9 9, 5 5, 3 3, and the size of the pooling factor is 4 4, 3 3, 2 2, respectively. Data Expansion Training network parameters need a large number of sample data, so it is easy to cause over-fitting when the number of samples is small. And there are not enough quantity of fabric defect samples in reality to choose. Therefore, this paper has carried out the necessary manual data expansion before the acquired sample images input network training. The array representation of the training data is changed and the label remains unchanged, resulting in a certain number of sub-images, by using methods such as rotation, random stretch, and so on. For example, the rotation angle is set to - 10 and 10 degrees, the stretching factor is set to 0.8 and 1.2. EXPERIMENTS AND RESULTS ANALYSIS Experimental Platform and Data Preparation The original image data set is selected from the TILDA database, totaling 1200 pictures.figure 4 illustrates several common features of fabric defects. Selecting 70% samples of the database randomly to build traning set, and 30% as verification set. The image pixels used in the experiment are Comparison of Different Methods of Experiment Four kinds of fabric defect detection methods are selected to compare with the algorithm we proposed. There are Gray Level Co-occurrence Matrix (GLCM), Gaborbased filter, SVM and deep convolution neural network (DCNN). The experimental results are shown in Table

5 TABLE 1. DETECTION ACCURACY OF FABRIC DEFECTS BY DIFFERENT METHODS. Detection Method Positive defect rate for different defects (%) method Hole knob Stain hanging Broken Broken warp warp weft GLCM Gabor SVM DCNN Method of the paper As seen in the results, the deep learning achieves the ideal effect in the six kinds of fabric defect detection by its strong feature learning ability. It has shown obvious advantages compared with the GLCM method, Gabor-based filter method and SVM Methods and other traditional algorithms. In particular, defects such as broken warp and broken weft which is difficult to distinguish from background texture are still successfully recognized with high accuracy in the experiment. Our algorithm makes the average accuracy of defect detection reach more than 98%, which has better performance than DCNN. In the detection time, the average detection time of the algorithm we proposed is 0.38s, which is more efficient than DCNN, and is more than 50% faster than the other three traditional algorithms, as shown in Figure 5. Figure 5. Average inspection time of different kinds of defects by different methods. Figure 6. Influence of iteration times on the accuracy of different networks. 579

6 TABLE 2. COMPARISON OF TRAINING TIME. Network structure Accuracy (%) Convergence time(s) LeNet VGG Our Algorithm The Influence of the Number of Iterations In order to further evaluate the network performance, we also design a set of experiments to test the influence of the number of iterations on the accuracy and convergence rate of the optimized convolutional neural networks. We use LeNet[19], VGG16[20] and the network structures we proposed to compare the fabric defects experiment. The test results are shown in Fig 6. From the curve of ACC in Figure 6, it is not difficult to see that LeNet is better than the proposed algorithm when the number of iterations is small, but when the number of iterations is more than 500, the classification accuracy of the proposed algorithm is higher than that of LeNet and VGG16. When the number of iterations reaches 1000, the three networks converge gradually, and the accuracy rate is 75.6%, 82.5% and 98.2% respectively. For the convergence speed, when the number of iterations reaches about 1000, the convergence time of the algorithm we proposed is similar to that of LeNet, but is more than 30% faster than VGG16, as shown in Table 2. And the also reflects the obvious advantages in ACC. Therefore, this algorithm is superior to traditional convolution neural network model in network training. SUMMARY This study provides a new idea for fabric defect detection with complex texture features. At present, the accuracy of the fabric defect detection is difficult to achieve new breakthrough. So, a new defect detection model based on Grabcut algorithm and optimized convolutional neural network is designed. The experimental result shows that the network has faster recognition speed and higher recognition accuracy. The recognition effect is better than the existing traditional machine learning method, and can detect a variety of different texture feature of fabric defects. In the next research work, we should increase the data set and further optimize the convolution neural network framework, and explore more efficient network training strategy. ACKNOWLEDGEMENTS This research was supported by:guangdong provincial science and technology plan project (2015A and 2016A ); Guangzhou science and technology plan project ( ). REFERENCES [1] Li Wenyu, Cheng Longdi. New progress of fabric defect detection based on computer vision and image processing[j]. Journal of textile research, 2014, 35(3):

7 [2] Mak K L, Peng P, Yiu K F C. Fabric defect detection using morphological filters[j]. Image and Vision Computing, 2009, 27 (10): [3] Jing Jun-Feng, Zhang Huan-huan, Li Peng-fei. Fabric Image Defect Detection Based on Method Library [J]. Journal of Donghua University (Natural Science Edition) 2013, 39(5): [4] Zhu Dandan, Pan Ruru, Gao Weidong. Fabric defect detection using characteristic spectrum of Fourier transform and correlation coefficient. Computer Engineering and Applications [J]. 2014, 50(19): [5] Malek A S, Drean J Y, Bigue L, et al. Optimization of automated online fabric inspection by fast Fourier transform (FFT) and cross-correlation [J]. Textile Research Journal, 2013, 83(3): [6] Alper Selver M, Avşar V, Özdemir H. Textural fabric defect detection using statisti-cal texture transformations and gradient search [J]. The Journal of the Textile Institute, 2014, 105(9): [7] Zhou J, Wang J. Fabric defect detection using adaptive dictionaries [J]. Textile Research Journal, 2013, 83(17): [8] Qu T, Zou L, Zhang Q, et al. Defect detection on the fabric with complex texture via dual-scale over-complete dictionary [J]. The Journal of the Textile Institute, (6): [9] Krizhevsky A, Sutskever I, Hinton G E. ImageNet classiflcation with deep convolutional neural networks. In: Advances in Neural Information Processing Systems 25. Lake Tahoe, Nevada, USA: Curran Associates, Inc., [10] Khalajzadeh H, Mansouri M, Teshnehlab M. Face recognition using convolutional neural network and simple logistic classifier. In: Proceedings of the 17th On-line World Conference on Soft Computing in Industrial Applications. Switzerland: Springer International Publishing, [11] Li H, Lin Z, Shen X, et al. A convolutional neural network cascade for face detection[c]// Computer Vision and Pattern Recognition. IEEE, 2015: [12] Qian R, Zhang B, Yue Y, et al. Robust Chinese traffic sign detection and recognition with deep convolutional neural network [C] // International Conference on Natural Computation. IEEE, 2016: [13] He K M, Zhang X Y, Ren S Q, Sun J. Deep residual learning for image recognition. arxiv: , [14] Bell S, Zitnick C L, Bala K,et al. Inside-outside net: Detecting objects in context with skip pooling and recurrent neural networks. In CVPR 2016 [15] Jing Junfeng, Fan Xiaoting, Li Pengfoi, Hong Liang. Yarn-dyed fabric defect detection based on deep-convolutional neural network [J]. Journal of Textile Research. 2017, 38(2): [16] Chen D, Chen B, Mamic G, et al. Improved Grab Cut segmentation via GMM optimization[c]. Proc of the 2008 Int Conf on Digital Image Computing: Techniques and Applications. Washington DC: IEEE Computer Society, 2008: [17] Liu Song-Tao1, Yin Fu-Liang. The Basic Principle and Its New Advances of Image Segmentation Methods Based on Graph Cuts [J]. Acta Automatica Sinica, 2012, 38(6):

8 [18] Fukushima K. Neocognitron: a self-organizing neural network model for a mechanism of pattern recognition unaffected by shift in position. Biological Cybernetics, 1980, 36(4): [19] Y. LeCun, L. Bottou, Y. Bengio, et al. Gradient-based learning applied to document recognition. Proceedings of the IEEE, 1998, 86(11):2278~2324. [20] Simonyan K, Zisserman A. Very Deep Convolutional Networks for Large-Scale Image Recognition [J]. Computer Science,

Fabric Defect Detection Based on Computer Vision

Fabric Defect Detection Based on Computer Vision Fabric Defect Detection Based on Computer Vision Jing Sun and Zhiyu Zhou College of Information and Electronics, Zhejiang Sci-Tech University, Hangzhou, China {jings531,zhouzhiyu1993}@163.com Abstract.

More information

Channel Locality Block: A Variant of Squeeze-and-Excitation

Channel Locality Block: A Variant of Squeeze-and-Excitation Channel Locality Block: A Variant of Squeeze-and-Excitation 1 st Huayu Li Northern Arizona University Flagstaff, United State Northern Arizona University hl459@nau.edu arxiv:1901.01493v1 [cs.lg] 6 Jan

More information

REGION AVERAGE POOLING FOR CONTEXT-AWARE OBJECT DETECTION

REGION AVERAGE POOLING FOR CONTEXT-AWARE OBJECT DETECTION REGION AVERAGE POOLING FOR CONTEXT-AWARE OBJECT DETECTION Kingsley Kuan 1, Gaurav Manek 1, Jie Lin 1, Yuan Fang 1, Vijay Chandrasekhar 1,2 Institute for Infocomm Research, A*STAR, Singapore 1 Nanyang Technological

More information

Classification of objects from Video Data (Group 30)

Classification of objects from Video Data (Group 30) Classification of objects from Video Data (Group 30) Sheallika Singh 12665 Vibhuti Mahajan 12792 Aahitagni Mukherjee 12001 M Arvind 12385 1 Motivation Video surveillance has been employed for a long time

More information

Convolutional Neural Networks

Convolutional Neural Networks Lecturer: Barnabas Poczos Introduction to Machine Learning (Lecture Notes) Convolutional Neural Networks Disclaimer: These notes have not been subjected to the usual scrutiny reserved for formal publications.

More information

Deep learning for object detection. Slides from Svetlana Lazebnik and many others

Deep learning for object detection. Slides from Svetlana Lazebnik and many others Deep learning for object detection Slides from Svetlana Lazebnik and many others Recent developments in object detection 80% PASCAL VOC mean0average0precision0(map) 70% 60% 50% 40% 30% 20% 10% Before deep

More information

Convolutional Neural Networks. Computer Vision Jia-Bin Huang, Virginia Tech

Convolutional Neural Networks. Computer Vision Jia-Bin Huang, Virginia Tech Convolutional Neural Networks Computer Vision Jia-Bin Huang, Virginia Tech Today s class Overview Convolutional Neural Network (CNN) Training CNN Understanding and Visualizing CNN Image Categorization:

More information

Rotation Invariance Neural Network

Rotation Invariance Neural Network Rotation Invariance Neural Network Shiyuan Li Abstract Rotation invariance and translate invariance have great values in image recognition. In this paper, we bring a new architecture in convolutional neural

More information

A Novel Image Super-resolution Reconstruction Algorithm based on Modified Sparse Representation

A Novel Image Super-resolution Reconstruction Algorithm based on Modified Sparse Representation , pp.162-167 http://dx.doi.org/10.14257/astl.2016.138.33 A Novel Image Super-resolution Reconstruction Algorithm based on Modified Sparse Representation Liqiang Hu, Chaofeng He Shijiazhuang Tiedao University,

More information

Kaggle Data Science Bowl 2017 Technical Report

Kaggle Data Science Bowl 2017 Technical Report Kaggle Data Science Bowl 2017 Technical Report qfpxfd Team May 11, 2017 1 Team Members Table 1: Team members Name E-Mail University Jia Ding dingjia@pku.edu.cn Peking University, Beijing, China Aoxue Li

More information

Classifying a specific image region using convolutional nets with an ROI mask as input

Classifying a specific image region using convolutional nets with an ROI mask as input Classifying a specific image region using convolutional nets with an ROI mask as input 1 Sagi Eppel Abstract Convolutional neural nets (CNN) are the leading computer vision method for classifying images.

More information

Research on QR Code Image Pre-processing Algorithm under Complex Background

Research on QR Code Image Pre-processing Algorithm under Complex Background Scientific Journal of Information Engineering May 207, Volume 7, Issue, PP.-7 Research on QR Code Image Pre-processing Algorithm under Complex Background Lei Liu, Lin-li Zhou, Huifang Bao. Institute of

More information

2 Proposed Methodology

2 Proposed Methodology 3rd International Conference on Multimedia Technology(ICMT 2013) Object Detection in Image with Complex Background Dong Li, Yali Li, Fei He, Shengjin Wang 1 State Key Laboratory of Intelligent Technology

More information

Cost-alleviative Learning for Deep Convolutional Neural Network-based Facial Part Labeling

Cost-alleviative Learning for Deep Convolutional Neural Network-based Facial Part Labeling [DOI: 10.2197/ipsjtcva.7.99] Express Paper Cost-alleviative Learning for Deep Convolutional Neural Network-based Facial Part Labeling Takayoshi Yamashita 1,a) Takaya Nakamura 1 Hiroshi Fukui 1,b) Yuji

More information

Research of Traffic Flow Based on SVM Method. Deng-hong YIN, Jian WANG and Bo LI *

Research of Traffic Flow Based on SVM Method. Deng-hong YIN, Jian WANG and Bo LI * 2017 2nd International onference on Artificial Intelligence: Techniques and Applications (AITA 2017) ISBN: 978-1-60595-491-2 Research of Traffic Flow Based on SVM Method Deng-hong YIN, Jian WANG and Bo

More information

Study of Residual Networks for Image Recognition

Study of Residual Networks for Image Recognition Study of Residual Networks for Image Recognition Mohammad Sadegh Ebrahimi Stanford University sadegh@stanford.edu Hossein Karkeh Abadi Stanford University hosseink@stanford.edu Abstract Deep neural networks

More information

An efficient face recognition algorithm based on multi-kernel regularization learning

An efficient face recognition algorithm based on multi-kernel regularization learning Acta Technica 61, No. 4A/2016, 75 84 c 2017 Institute of Thermomechanics CAS, v.v.i. An efficient face recognition algorithm based on multi-kernel regularization learning Bi Rongrong 1 Abstract. A novel

More information

The Afresh Transform Algorithm Based on Limited Histogram Equalization of Low Frequency DCT Coefficients

The Afresh Transform Algorithm Based on Limited Histogram Equalization of Low Frequency DCT Coefficients Send Orders for Reprints to reprints@benthamscience.ae The Open Cybernetics & Systemics Journal, 2015, 9, 623-630 623 Open Access The Afresh Transform Algorithm Based on Limited Histogram Equalization

More information

Automatic Classification of Woven Fabric Structure Based on Computer Vision Techniques

Automatic Classification of Woven Fabric Structure Based on Computer Vision Techniques Journal of Fiber Bioengineering and Informatics 8:1 (215) 69 79 doi:1.3993/jfbi32157 Automatic Classification of Woven Fabric Structure Based on Computer Vision Techniques Xuejuan Kang a,, Mengmeng Xu

More information

Pupil Localization Algorithm based on Hough Transform and Harris Corner Detection

Pupil Localization Algorithm based on Hough Transform and Harris Corner Detection Pupil Localization Algorithm based on Hough Transform and Harris Corner Detection 1 Chongqing University of Technology Electronic Information and Automation College Chongqing, 400054, China E-mail: zh_lian@cqut.edu.cn

More information

Content-Based Image Recovery

Content-Based Image Recovery Content-Based Image Recovery Hong-Yu Zhou and Jianxin Wu National Key Laboratory for Novel Software Technology Nanjing University, China zhouhy@lamda.nju.edu.cn wujx2001@nju.edu.cn Abstract. We propose

More information

Traffic Signs Recognition using HP and HOG Descriptors Combined to MLP and SVM Classifiers

Traffic Signs Recognition using HP and HOG Descriptors Combined to MLP and SVM Classifiers Traffic Signs Recognition using HP and HOG Descriptors Combined to MLP and SVM Classifiers A. Salhi, B. Minaoui, M. Fakir, H. Chakib, H. Grimech Faculty of science and Technology Sultan Moulay Slimane

More information

An Efficient Learning Scheme for Extreme Learning Machine and Its Application

An Efficient Learning Scheme for Extreme Learning Machine and Its Application An Efficient Learning Scheme for Extreme Learning Machine and Its Application Kheon-Hee Lee, Miso Jang, Keun Park, Dong-Chul Park, Yong-Mu Jeong and Soo-Young Min Abstract An efficient learning scheme

More information

Study on fabric density identification based on binary feature matrix

Study on fabric density identification based on binary feature matrix 153 Study on fabric density identification based on binary feature matrix Xiuchen Wang 1,2 Xiaojiu Li 2 Zhe Liu 1 1 Zhongyuan University of Technology Zhengzhou, China 2Tianjin Polytechnic University Tianjin,

More information

MULTI-VIEW FEATURE FUSION NETWORK FOR VEHICLE RE- IDENTIFICATION

MULTI-VIEW FEATURE FUSION NETWORK FOR VEHICLE RE- IDENTIFICATION MULTI-VIEW FEATURE FUSION NETWORK FOR VEHICLE RE- IDENTIFICATION Haoran Wu, Dong Li, Yucan Zhou, and Qinghua Hu School of Computer Science and Technology, Tianjin University, Tianjin, China ABSTRACT Identifying

More information

Deep Learning in Visual Recognition. Thanks Da Zhang for the slides

Deep Learning in Visual Recognition. Thanks Da Zhang for the slides Deep Learning in Visual Recognition Thanks Da Zhang for the slides Deep Learning is Everywhere 2 Roadmap Introduction Convolutional Neural Network Application Image Classification Object Detection Object

More information

Application of Geometry Rectification to Deformed Characters Recognition Liqun Wang1, a * and Honghui Fan2

Application of Geometry Rectification to Deformed Characters Recognition Liqun Wang1, a * and Honghui Fan2 6th International Conference on Electronic, Mechanical, Information and Management (EMIM 2016) Application of Geometry Rectification to Deformed Characters Liqun Wang1, a * and Honghui Fan2 1 School of

More information

A FRAMEWORK OF EXTRACTING MULTI-SCALE FEATURES USING MULTIPLE CONVOLUTIONAL NEURAL NETWORKS. Kuan-Chuan Peng and Tsuhan Chen

A FRAMEWORK OF EXTRACTING MULTI-SCALE FEATURES USING MULTIPLE CONVOLUTIONAL NEURAL NETWORKS. Kuan-Chuan Peng and Tsuhan Chen A FRAMEWORK OF EXTRACTING MULTI-SCALE FEATURES USING MULTIPLE CONVOLUTIONAL NEURAL NETWORKS Kuan-Chuan Peng and Tsuhan Chen School of Electrical and Computer Engineering, Cornell University, Ithaca, NY

More information

Regionlet Object Detector with Hand-crafted and CNN Feature

Regionlet Object Detector with Hand-crafted and CNN Feature Regionlet Object Detector with Hand-crafted and CNN Feature Xiaoyu Wang Research Xiaoyu Wang Research Ming Yang Horizon Robotics Shenghuo Zhu Alibaba Group Yuanqing Lin Baidu Overview of this section Regionlet

More information

Robust Face Recognition Based on Convolutional Neural Network

Robust Face Recognition Based on Convolutional Neural Network 2017 2nd International Conference on Manufacturing Science and Information Engineering (ICMSIE 2017) ISBN: 978-1-60595-516-2 Robust Face Recognition Based on Convolutional Neural Network Ying Xu, Hui Ma,

More information

Feature-Fused SSD: Fast Detection for Small Objects

Feature-Fused SSD: Fast Detection for Small Objects Feature-Fused SSD: Fast Detection for Small Objects Guimei Cao, Xuemei Xie, Wenzhe Yang, Quan Liao, Guangming Shi, Jinjian Wu School of Electronic Engineering, Xidian University, China xmxie@mail.xidian.edu.cn

More information

Computer Vision Lecture 16

Computer Vision Lecture 16 Computer Vision Lecture 16 Deep Learning for Object Categorization 14.01.2016 Bastian Leibe RWTH Aachen http://www.vision.rwth-aachen.de leibe@vision.rwth-aachen.de Announcements Seminar registration period

More information

High Resolution Remote Sensing Image Classification based on SVM and FCM Qin LI a, Wenxing BAO b, Xing LI c, Bin LI d

High Resolution Remote Sensing Image Classification based on SVM and FCM Qin LI a, Wenxing BAO b, Xing LI c, Bin LI d 2nd International Conference on Electrical, Computer Engineering and Electronics (ICECEE 2015) High Resolution Remote Sensing Image Classification based on SVM and FCM Qin LI a, Wenxing BAO b, Xing LI

More information

Research on Clearance of Aerial Remote Sensing Images Based on Image Fusion

Research on Clearance of Aerial Remote Sensing Images Based on Image Fusion Research on Clearance of Aerial Remote Sensing Images Based on Image Fusion Institute of Oceanographic Instrumentation, Shandong Academy of Sciences Qingdao, 266061, China E-mail:gyygyy1234@163.com Zhigang

More information

Study on the Quantitative Vulnerability Model of Information System based on Mathematical Modeling Techniques. Yunzhi Li

Study on the Quantitative Vulnerability Model of Information System based on Mathematical Modeling Techniques. Yunzhi Li Applied Mechanics and Materials Submitted: 2014-08-05 ISSN: 1662-7482, Vols. 651-653, pp 1953-1957 Accepted: 2014-08-06 doi:10.4028/www.scientific.net/amm.651-653.1953 Online: 2014-09-30 2014 Trans Tech

More information

Proceedings of the International MultiConference of Engineers and Computer Scientists 2018 Vol I IMECS 2018, March 14-16, 2018, Hong Kong

Proceedings of the International MultiConference of Engineers and Computer Scientists 2018 Vol I IMECS 2018, March 14-16, 2018, Hong Kong , March 14-16, 2018, Hong Kong , March 14-16, 2018, Hong Kong , March 14-16, 2018, Hong Kong , March 14-16, 2018, Hong Kong TABLE I CLASSIFICATION ACCURACY OF DIFFERENT PRE-TRAINED MODELS ON THE TEST DATA

More information

I. INTRODUCTION. Figure-1 Basic block of text analysis

I. INTRODUCTION. Figure-1 Basic block of text analysis ISSN: 2349-7637 (Online) (RHIMRJ) Research Paper Available online at: www.rhimrj.com Detection and Localization of Texts from Natural Scene Images: A Hybrid Approach Priyanka Muchhadiya Post Graduate Fellow,

More information

Research on the Wood Cell Contour Extraction Method Based on Image Texture and Gray-scale Information.

Research on the Wood Cell Contour Extraction Method Based on Image Texture and Gray-scale Information. , pp. 65-74 http://dx.doi.org/0.457/ijsip.04.7.6.06 esearch on the Wood Cell Contour Extraction Method Based on Image Texture and Gray-scale Information Zhao Lei, Wang Jianhua and Li Xiaofeng 3 Heilongjiang

More information

Fingerprint Recognition using Texture Features

Fingerprint Recognition using Texture Features Fingerprint Recognition using Texture Features Manidipa Saha, Jyotismita Chaki, Ranjan Parekh,, School of Education Technology, Jadavpur University, Kolkata, India Abstract: This paper proposes an efficient

More information

Leaf Image Recognition Based on Wavelet and Fractal Dimension

Leaf Image Recognition Based on Wavelet and Fractal Dimension Journal of Computational Information Systems 11: 1 (2015) 141 148 Available at http://www.jofcis.com Leaf Image Recognition Based on Wavelet and Fractal Dimension Haiyan ZHANG, Xingke TAO School of Information,

More information

A Real-time Detection for Traffic Surveillance Video Shaking

A Real-time Detection for Traffic Surveillance Video Shaking International Conference on Mechatronics, Control and Electronic Engineering (MCE 201) A Real-time Detection for Traffic Surveillance Video Shaking Yaoyao Niu Zhenkuan Pan e-mail: 11629830@163.com e-mail:

More information

Face Recognition Using Vector Quantization Histogram and Support Vector Machine Classifier Rong-sheng LI, Fei-fei LEE *, Yan YAN and Qiu CHEN

Face Recognition Using Vector Quantization Histogram and Support Vector Machine Classifier Rong-sheng LI, Fei-fei LEE *, Yan YAN and Qiu CHEN 2016 International Conference on Artificial Intelligence: Techniques and Applications (AITA 2016) ISBN: 978-1-60595-389-2 Face Recognition Using Vector Quantization Histogram and Support Vector Machine

More information

Deep Learning with Tensorflow AlexNet

Deep Learning with Tensorflow   AlexNet Machine Learning and Computer Vision Group Deep Learning with Tensorflow http://cvml.ist.ac.at/courses/dlwt_w17/ AlexNet Krizhevsky, Alex, Ilya Sutskever, and Geoffrey E. Hinton, "Imagenet classification

More information

Rolling Bearing Diagnosis Based on CNN-LSTM and Various Condition Dataset

Rolling Bearing Diagnosis Based on CNN-LSTM and Various Condition Dataset Rolling Bearing Diagnosis Based on CNN-LSTM and Various Condition Dataset Osamu Yoshimatsu 1, Yoshihiro Satou 2, and Kenichi Shibasaki 3 1,2,3 Core Technology R&D Center, NSK Ltd., Fujisawa, Kanagawa,

More information

Part Localization by Exploiting Deep Convolutional Networks

Part Localization by Exploiting Deep Convolutional Networks Part Localization by Exploiting Deep Convolutional Networks Marcel Simon, Erik Rodner, and Joachim Denzler Computer Vision Group, Friedrich Schiller University of Jena, Germany www.inf-cv.uni-jena.de Abstract.

More information

Performance Degradation Assessment and Fault Diagnosis of Bearing Based on EMD and PCA-SOM

Performance Degradation Assessment and Fault Diagnosis of Bearing Based on EMD and PCA-SOM Performance Degradation Assessment and Fault Diagnosis of Bearing Based on EMD and PCA-SOM Lu Chen and Yuan Hang PERFORMANCE DEGRADATION ASSESSMENT AND FAULT DIAGNOSIS OF BEARING BASED ON EMD AND PCA-SOM.

More information

International Journal of Electrical, Electronics ISSN No. (Online): and Computer Engineering 3(2): 85-90(2014)

International Journal of Electrical, Electronics ISSN No. (Online): and Computer Engineering 3(2): 85-90(2014) I J E E E C International Journal of Electrical, Electronics ISSN No. (Online): 2277-2626 Computer Engineering 3(2): 85-90(2014) Robust Approach to Recognize Localize Text from Natural Scene Images Khushbu

More information

Face Recognition Technology Based On Image Processing Chen Xin, Yajuan Li, Zhimin Tian

Face Recognition Technology Based On Image Processing Chen Xin, Yajuan Li, Zhimin Tian 4th International Conference on Machinery, Materials and Computing Technology (ICMMCT 2016) Face Recognition Technology Based On Image Processing Chen Xin, Yajuan Li, Zhimin Tian Hebei Engineering and

More information

Deep learning for dense per-pixel prediction. Chunhua Shen The University of Adelaide, Australia

Deep learning for dense per-pixel prediction. Chunhua Shen The University of Adelaide, Australia Deep learning for dense per-pixel prediction Chunhua Shen The University of Adelaide, Australia Image understanding Classification error Convolution Neural Networks 0.3 0.2 0.1 Image Classification [Krizhevsky

More information

Using Machine Learning for Classification of Cancer Cells

Using Machine Learning for Classification of Cancer Cells Using Machine Learning for Classification of Cancer Cells Camille Biscarrat University of California, Berkeley I Introduction Cell screening is a commonly used technique in the development of new drugs.

More information

Video Inter-frame Forgery Identification Based on Optical Flow Consistency

Video Inter-frame Forgery Identification Based on Optical Flow Consistency Sensors & Transducers 24 by IFSA Publishing, S. L. http://www.sensorsportal.com Video Inter-frame Forgery Identification Based on Optical Flow Consistency Qi Wang, Zhaohong Li, Zhenzhen Zhang, Qinglong

More information

Computer Vision Lecture 16

Computer Vision Lecture 16 Announcements Computer Vision Lecture 16 Deep Learning Applications 11.01.2017 Seminar registration period starts on Friday We will offer a lab course in the summer semester Deep Robot Learning Topic:

More information

Research on Design and Application of Computer Database Quality Evaluation Model

Research on Design and Application of Computer Database Quality Evaluation Model Research on Design and Application of Computer Database Quality Evaluation Model Abstract Hong Li, Hui Ge Shihezi Radio and TV University, Shihezi 832000, China Computer data quality evaluation is the

More information

A Further Step to Perfect Accuracy by Training CNN with Larger Data

A Further Step to Perfect Accuracy by Training CNN with Larger Data A Further Step to Perfect Accuracy by Training CNN with Larger Data Seiichi Uchida, Shota Ide, Brian Kenji Iwana, Anna Zhu ISEE-AIT, Kyushu University, Fukuoka, 819-0395, Japan {uchida, ide, brian, anna}@human.ait.kyushu-u.ac.jp

More information

Computer Vision Lecture 16

Computer Vision Lecture 16 Computer Vision Lecture 16 Deep Learning Applications 11.01.2017 Bastian Leibe RWTH Aachen http://www.vision.rwth-aachen.de leibe@vision.rwth-aachen.de Announcements Seminar registration period starts

More information

Spatial Localization and Detection. Lecture 8-1

Spatial Localization and Detection. Lecture 8-1 Lecture 8: Spatial Localization and Detection Lecture 8-1 Administrative - Project Proposals were due on Saturday Homework 2 due Friday 2/5 Homework 1 grades out this week Midterm will be in-class on Wednesday

More information

Extend the shallow part of Single Shot MultiBox Detector via Convolutional Neural Network

Extend the shallow part of Single Shot MultiBox Detector via Convolutional Neural Network Extend the shallow part of Single Shot MultiBox Detector via Convolutional Neural Network Liwen Zheng, Canmiao Fu, Yong Zhao * School of Electronic and Computer Engineering, Shenzhen Graduate School of

More information

Deep Tracking: Biologically Inspired Tracking with Deep Convolutional Networks

Deep Tracking: Biologically Inspired Tracking with Deep Convolutional Networks Deep Tracking: Biologically Inspired Tracking with Deep Convolutional Networks Si Chen The George Washington University sichen@gwmail.gwu.edu Meera Hahn Emory University mhahn7@emory.edu Mentor: Afshin

More information

An Inspection Method of Rice Milling Degree Based on Machine Vision and Gray-Gradient Co-occurrence Matrix

An Inspection Method of Rice Milling Degree Based on Machine Vision and Gray-Gradient Co-occurrence Matrix An Inspection Method of Rice Milling Degree Based on Machine Vision and Gray-Gradient Co-occurrence Matrix Peng Wan 1,2 and Changjiang Long 1,* 1 College of Engineering, Huazhong Agricultural University,

More information

A Novel Weight-Shared Multi-Stage Network Architecture of CNNs for Scale Invariance

A Novel Weight-Shared Multi-Stage Network Architecture of CNNs for Scale Invariance JOURNAL OF L A TEX CLASS FILES, VOL. 14, NO. 8, AUGUST 2015 1 A Novel Weight-Shared Multi-Stage Network Architecture of CNNs for Scale Invariance Ryo Takahashi, Takashi Matsubara, Member, IEEE, and Kuniaki

More information

Research on Evaluation Method of Video Stabilization

Research on Evaluation Method of Video Stabilization International Conference on Advanced Material Science and Environmental Engineering (AMSEE 216) Research on Evaluation Method of Video Stabilization Bin Chen, Jianjun Zhao and i Wang Weapon Science and

More information

PoS(CENet2017)005. The Classification of Hyperspectral Images Based on Band-Grouping and Convolutional Neural Network. Speaker.

PoS(CENet2017)005. The Classification of Hyperspectral Images Based on Band-Grouping and Convolutional Neural Network. Speaker. The Classification of Hyperspectral Images Based on Band-Grouping and Convolutional Neural Network 1 Xi an Hi-Tech Institute Xi an 710025, China E-mail: dr-f@21cnl.c Hongyang Gu Xi an Hi-Tech Institute

More information

Power Load Forecasting Based on ABC-SA Neural Network Model

Power Load Forecasting Based on ABC-SA Neural Network Model Power Load Forecasting Based on ABC-SA Neural Network Model Weihua Pan, Xinhui Wang College of Control and Computer Engineering, North China Electric Power University, Baoding, Hebei 071000, China. 1471647206@qq.com

More information

Dynamic Routing Between Capsules

Dynamic Routing Between Capsules Report Explainable Machine Learning Dynamic Routing Between Capsules Author: Michael Dorkenwald Supervisor: Dr. Ullrich Köthe 28. Juni 2018 Inhaltsverzeichnis 1 Introduction 2 2 Motivation 2 3 CapusleNet

More information

Detection and Identification of Lung Tissue Pattern in Interstitial Lung Diseases using Convolutional Neural Network

Detection and Identification of Lung Tissue Pattern in Interstitial Lung Diseases using Convolutional Neural Network Detection and Identification of Lung Tissue Pattern in Interstitial Lung Diseases using Convolutional Neural Network Namrata Bondfale 1, Asst. Prof. Dhiraj Bhagwat 2 1,2 E&TC, Indira College of Engineering

More information

Object Tracking Algorithm based on Combination of Edge and Color Information

Object Tracking Algorithm based on Combination of Edge and Color Information Object Tracking Algorithm based on Combination of Edge and Color Information 1 Hsiao-Chi Ho ( 賀孝淇 ), 2 Chiou-Shann Fuh ( 傅楸善 ), 3 Feng-Li Lian ( 連豊力 ) 1 Dept. of Electronic Engineering National Taiwan

More information

An Adaptive Threshold LBP Algorithm for Face Recognition

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

More information

Research on the New Image De-Noising Methodology Based on Neural Network and HMM-Hidden Markov Models

Research on the New Image De-Noising Methodology Based on Neural Network and HMM-Hidden Markov Models Research on the New Image De-Noising Methodology Based on Neural Network and HMM-Hidden Markov Models Wenzhun Huang 1, a and Xinxin Xie 1, b 1 School of Information Engineering, Xijing University, Xi an

More information

Real-time convolutional networks for sonar image classification in low-power embedded systems

Real-time convolutional networks for sonar image classification in low-power embedded systems Real-time convolutional networks for sonar image classification in low-power embedded systems Matias Valdenegro-Toro Ocean Systems Laboratory - School of Engineering & Physical Sciences Heriot-Watt University,

More information

Research on Applications of Data Mining in Electronic Commerce. Xiuping YANG 1, a

Research on Applications of Data Mining in Electronic Commerce. Xiuping YANG 1, a International Conference on Education Technology, Management and Humanities Science (ETMHS 2015) Research on Applications of Data Mining in Electronic Commerce Xiuping YANG 1, a 1 Computer Science Department,

More information

HENet: A Highly Efficient Convolutional Neural. Networks Optimized for Accuracy, Speed and Storage

HENet: A Highly Efficient Convolutional Neural. Networks Optimized for Accuracy, Speed and Storage HENet: A Highly Efficient Convolutional Neural Networks Optimized for Accuracy, Speed and Storage Qiuyu Zhu Shanghai University zhuqiuyu@staff.shu.edu.cn Ruixin Zhang Shanghai University chriszhang96@shu.edu.cn

More information

Infrared Image Stitching Based on Immune Memory Clonal Selection Algorithm

Infrared Image Stitching Based on Immune Memory Clonal Selection Algorithm Infrared Image Stitching Based on Immune Memory Clonal Selection Algorithm by Tong Hejun, Fu Dongmei, Dong Lin and Yang Tao School of Automation and Electrical Engineering, University of Science and Technology

More information

Research Article International Journals of Advanced Research in Computer Science and Software Engineering ISSN: X (Volume-7, Issue-7)

Research Article International Journals of Advanced Research in Computer Science and Software Engineering ISSN: X (Volume-7, Issue-7) International Journals of Advanced Research in Computer Science and Software Engineering ISSN: 2277-128X (Volume-7, Issue-7) Research Article July 2017 Technique for Text Region Detection in Image Processing

More information

Traffic Signs Recognition and Classification based on Deep Feature Learning

Traffic Signs Recognition and Classification based on Deep Feature Learning Traffic Signs Recognition and Classification based on Deep Feature Learning Yan Lai, Nanxin Wang, Yusi Yang and Lan Lin School of Electronics and Information Engineering, Tongji University, Shanghai, China

More information

Gaussian Mixture Model Coupled with Independent Component Analysis for Palmprint Verification

Gaussian Mixture Model Coupled with Independent Component Analysis for Palmprint Verification Gaussian Mixture Model Coupled with Independent Component Analysis for Palmprint Verification Raghavendra.R, Bernadette Dorizzi, Ashok Rao, Hemantha Kumar G Abstract In this paper we present a new scheme

More information

Adaptive Zoom Distance Measuring System of Camera Based on the Ranging of Binocular Vision

Adaptive Zoom Distance Measuring System of Camera Based on the Ranging of Binocular Vision Adaptive Zoom Distance Measuring System of Camera Based on the Ranging of Binocular Vision Zhiyan Zhang 1, Wei Qian 1, Lei Pan 1 & Yanjun Li 1 1 University of Shanghai for Science and Technology, China

More information

Face recognition based on improved BP neural network

Face recognition based on improved BP neural network Face recognition based on improved BP neural network Gaili Yue, Lei Lu a, College of Electrical and Control Engineering, Xi an University of Science and Technology, Xi an 710043, China Abstract. In order

More information

Layerwise Interweaving Convolutional LSTM

Layerwise Interweaving Convolutional LSTM Layerwise Interweaving Convolutional LSTM Tiehang Duan and Sargur N. Srihari Department of Computer Science and Engineering The State University of New York at Buffalo Buffalo, NY 14260, United States

More information

FACIAL POINT DETECTION BASED ON A CONVOLUTIONAL NEURAL NETWORK WITH OPTIMAL MINI-BATCH PROCEDURE. Chubu University 1200, Matsumoto-cho, Kasugai, AICHI

FACIAL POINT DETECTION BASED ON A CONVOLUTIONAL NEURAL NETWORK WITH OPTIMAL MINI-BATCH PROCEDURE. Chubu University 1200, Matsumoto-cho, Kasugai, AICHI FACIAL POINT DETECTION BASED ON A CONVOLUTIONAL NEURAL NETWORK WITH OPTIMAL MINI-BATCH PROCEDURE Masatoshi Kimura Takayoshi Yamashita Yu Yamauchi Hironobu Fuyoshi* Chubu University 1200, Matsumoto-cho,

More information

Improving Face Recognition by Exploring Local Features with Visual Attention

Improving Face Recognition by Exploring Local Features with Visual Attention Improving Face Recognition by Exploring Local Features with Visual Attention Yichun Shi and Anil K. Jain Michigan State University Difficulties of Face Recognition Large variations in unconstrained face

More information

Open Access Research on the Prediction Model of Material Cost Based on Data Mining

Open Access Research on the Prediction Model of Material Cost Based on Data Mining Send Orders for Reprints to reprints@benthamscience.ae 1062 The Open Mechanical Engineering Journal, 2015, 9, 1062-1066 Open Access Research on the Prediction Model of Material Cost Based on Data Mining

More information

Learning Visual Semantics: Models, Massive Computation, and Innovative Applications

Learning Visual Semantics: Models, Massive Computation, and Innovative Applications Learning Visual Semantics: Models, Massive Computation, and Innovative Applications Part II: Visual Features and Representations Liangliang Cao, IBM Watson Research Center Evolvement of Visual Features

More information

Elastic Neural Networks for Classification

Elastic Neural Networks for Classification Elastic Neural Networks for Classification Yi Zhou 1, Yue Bai 1, Shuvra S. Bhattacharyya 1, 2 and Heikki Huttunen 1 1 Tampere University of Technology, Finland, 2 University of Maryland, USA arxiv:1810.00589v3

More information

Structured Prediction using Convolutional Neural Networks

Structured Prediction using Convolutional Neural Networks Overview Structured Prediction using Convolutional Neural Networks Bohyung Han bhhan@postech.ac.kr Computer Vision Lab. Convolutional Neural Networks (CNNs) Structured predictions for low level computer

More information

Real-time Object Detection CS 229 Course Project

Real-time Object Detection CS 229 Course Project Real-time Object Detection CS 229 Course Project Zibo Gong 1, Tianchang He 1, and Ziyi Yang 1 1 Department of Electrical Engineering, Stanford University December 17, 2016 Abstract Objection detection

More information

ImageNet Classification with Deep Convolutional Neural Networks

ImageNet Classification with Deep Convolutional Neural Networks ImageNet Classification with Deep Convolutional Neural Networks Alex Krizhevsky Ilya Sutskever Geoffrey Hinton University of Toronto Canada Paper with same name to appear in NIPS 2012 Main idea Architecture

More information

The Population Density of Early Warning System Based On Video Image

The Population Density of Early Warning System Based On Video Image International Journal of Research in Engineering and Science (IJRES) ISSN (Online): 2320-9364, ISSN (Print): 2320-9356 Volume 4 Issue 4 ǁ April. 2016 ǁ PP.32-37 The Population Density of Early Warning

More information

Facial Key Points Detection using Deep Convolutional Neural Network - NaimishNet

Facial Key Points Detection using Deep Convolutional Neural Network - NaimishNet 1 Facial Key Points Detection using Deep Convolutional Neural Network - NaimishNet Naimish Agarwal, IIIT-Allahabad (irm2013013@iiita.ac.in) Artus Krohn-Grimberghe, University of Paderborn (artus@aisbi.de)

More information

Deep Learning for Computer Vision II

Deep Learning for Computer Vision II IIIT Hyderabad Deep Learning for Computer Vision II C. V. Jawahar Paradigm Shift Feature Extraction (SIFT, HoG, ) Part Models / Encoding Classifier Sparrow Feature Learning Classifier Sparrow L 1 L 2 L

More information

Yiqi Yan. May 10, 2017

Yiqi Yan. May 10, 2017 Yiqi Yan May 10, 2017 P a r t I F u n d a m e n t a l B a c k g r o u n d s Convolution Single Filter Multiple Filters 3 Convolution: case study, 2 filters 4 Convolution: receptive field receptive field

More information

Edge Detection Using Convolutional Neural Network

Edge Detection Using Convolutional Neural Network Edge Detection Using Convolutional Neural Network Ruohui Wang (B) Department of Information Engineering, The Chinese University of Hong Kong, Hong Kong, China wr013@ie.cuhk.edu.hk Abstract. In this work,

More information

Fast Watermarking of Traffic Images Secure Transmission in Effective Representation Mode

Fast Watermarking of Traffic Images Secure Transmission in Effective Representation Mode Appl. Math. Inf. Sci. 8, No. 5, 2565-2569 (2014) 2565 Applied Mathematics & Information Sciences An International Journal http://dx.doi.org/10.12785/amis/080555 Fast Watermarking of Traffic Images Secure

More information

Design of Liquid Level Control System Based on Simulink and PLC

Design of Liquid Level Control System Based on Simulink and PLC 2017 3rd International Symposium on Mechatronics and Industrial Informatics (ISMII 2017) ISBN: 978-1-60595-501-8 Design of Liquid Level Control System Based on Simulink and PLC Xiuwei FU 1,a, Ying QI 2,b

More information

A Novel Image Semantic Understanding and Feature Extraction Algorithm. and Wenzhun Huang

A Novel Image Semantic Understanding and Feature Extraction Algorithm. and Wenzhun Huang A Novel Image Semantic Understanding and Feature Extraction Algorithm Xinxin Xie 1, a 1, b* and Wenzhun Huang 1 School of Information Engineering, Xijing University, Xi an 710123, China a 346148500@qq.com,

More information

An Integrated Face Recognition Algorithm Based on Wavelet Subspace

An Integrated Face Recognition Algorithm Based on Wavelet Subspace , pp.20-25 http://dx.doi.org/0.4257/astl.204.48.20 An Integrated Face Recognition Algorithm Based on Wavelet Subspace Wenhui Li, Ning Ma, Zhiyan Wang College of computer science and technology, Jilin University,

More information

Study on Automatic Recognition of Fabric Color and Matching to Standard Color Chip by Computer Vision and Image Analysis Technology

Study on Automatic Recognition of Fabric Color and Matching to Standard Color Chip by Computer Vision and Image Analysis Technology Journal of Fiber Bioengineering and Informatics 9:1 (2016) 29 37 doi:10.3993/jfbim00194 Study on Automatic Recognition of Fabric Color and Matching to Standard Color Chip by Computer Vision and Image Analysis

More information

Deep Learning for Remote Sensing

Deep Learning for Remote Sensing 1 ENPC Data Science Week Deep Learning for Remote Sensing Alexandre Boulch 2 ONERA Research, Innovation, expertise and long-term vision for industry, French government and Europe 3 Materials Optics Aerodynamics

More information

Based on improved STN-CNN facial expression recognition

Based on improved STN-CNN facial expression recognition Journal of Computing and Electronic Information Management ISSN: 2413-1660 Based on improved STN-CNN facial expression recognition Jianfei Ding Automated institute, Chongqing University of Posts and Telecommunications,

More information

Deep Convolutional Neural Networks. Nov. 20th, 2015 Bruce Draper

Deep Convolutional Neural Networks. Nov. 20th, 2015 Bruce Draper Deep Convolutional Neural Networks Nov. 20th, 2015 Bruce Draper Background: Fully-connected single layer neural networks Feed-forward classification Trained through back-propagation Example Computer Vision

More information

Analysis of TFT-LCD Point Defect Detection System Based on Machine Vision

Analysis of TFT-LCD Point Defect Detection System Based on Machine Vision 09 nd International Conference on Computer Science and Advanced Materials (CSAM 09) Analysis of TFT-LCD Point Defect Detection System Based on Machine Vision Zhang Wenqian, Zhang Jinhong Department of

More information