亚洲免费av电影一区二区三区,日韩爱爱视频,51精品视频一区二区三区,91视频爱爱,日韩欧美在线播放视频,中文字幕少妇AV,亚洲电影中文字幕,久久久久亚洲av成人网址,久久综合视频网站,国产在线不卡免费播放

        ?

        A Study on Traffic Sign Recognition Based on CNN and HSV Model

        2018-08-28 11:45:20ZhanZiqiLiuBingHuoBinDongfengNissanTechnicalCenterGuangzhou510800
        汽車技術(shù) 2018年8期

        Zhan Ziqi,Liu Bing,Huo Bin(Dongfeng Nissan Technical Center,Guangzhou 510800)

        【Abstract】In this research,a complete process of engineering implementation for Traffic Sign Recognition(TSR)was established based on RGB(Red,Green,Blue)to HSV(Hue,Saturation,Value)model and Convolutional Neural Network(CNN).In order to improve operational speed,identification of dynamic Region Of Interest(ROI)was optimized,method of image changing from RGB to HSV model was optimized,and neural network structure was designed.TSR algorithm was verified with GTSRB database.The result shows that the proposed TSR method improves computation speed and recognition rate effectively.

        Key words:Traffic sign recognition,HSV model,CNN,Autonomous driving

        1 Introduction

        Traffic Sign Recognition(TSR)has been an important perception task for autonomous driving system.Reliability and computing speed are regarded as two most important parameters for recognition tasks[1-2].Both of traditional and Neural Network(NN)methods are widely analyzed for TSR algorithm[3-6].A traditional method usually uses expert model including edge detection,shape recognition,content match,etc.,which means every step of recognition algorithm is formulated.NN method is usually regarded as an end-to-end method,which means explanation of these algorithms will take a lot of time,especially during detection process[7-9].

        Many programs had proposed methods with combination of expert model and neural network.In this paper,a combination of optimized expert model and Convolutional Neural Network(CNN)are used.And a complete process of engineering implementation for the recognition process for Chinese traffic signs are introduced.

        2 Methodology

        In this paper,only traffic signs with red color are considered as recognition targets,because red sign represents forbid which includes rate-limiting,no passing,no turning left,etc.In actual driving mission,this traffic sign will give a direct instruction to the driving condition.

        Essential steps include ROI identification,traffics sign area extraction,traffic sign recognition.All steps in Figure 1 are needed for the whole recognition process.

        Two main parts are included in Figure 1:

        a.Dynamic ROI detection.This part deals with a frame of video recorded by camera,and output of 32 pixel×32 pixel image that only includes traffic sign.

        b.Traffic sign recognition.A CNN with 18 layers is designed for training,which gives a result of recognition.

        Figure 1.Flow of TSR process

        In each second,only one frame image in video will be taken for the detection and recognition process,considering TSR process is a relative slow comparing with obstacle recognition process or other processes related to autonomous driving.

        3 Dynamic ROI Detection

        Converting the image from RGB(Red,Green,Blue)to HSV(Hue,Saturation,Value)model makes it easier to extract red zones from the original image accurately.Then traffic signs are located in these red zones,and the image is turned into binary.In the binary format image,by eroding and dilating method the connected zones are obtained and traffic sign coordinate is set up,with which the ROI zone was extracted.The whole results of dynamic ROI detection process are shown in Figure 2.

        Figure 2.Dynamic ROI detection process

        3.1 Optimized RGB→HSV Color Model Method

        Computer vision algorithms used on image process are usually straightforward extensions to algorithms,each color component is separately used as input of the algorithm.HSV color model has advantage over RGB color model.However,traditional method to transfer an image from RGB to HSV model calculates every single hue,which consumes more time during transition.The proposed transfer method reduces calculate process and therefore takes less computation time.It can be expressed as:

        In which,r,g,brepresents red,green,blue in RGB color model separately.Result is shown in Figure 2b.

        3.2 Target Area Extraction

        3.2.1 Binaryzation

        Image color is redistributed after binary conversion by the degrees of hue in HSV model,which means 0 equals to 0°,and 1 equals to 360°in HSV model.Result is shown in Figure 2c.

        3.2.2 Color extraction

        A threshold is needed for red color extraction in binaryimage,herethethresholdvaluet∈[0.0277,0.0320].Result is shown in Figure 2d.One thing needs to point out is,threshold valuetis a value based on experience and in most tests could get a fine extraction result.A better threshold value needs more tests in real environment.Color withintis set as white and others are as black in Figure 2d.3.2.3 Erosion and dilation

        Nosuch chaptert,a small part of pixel satisfies the threshold,therefore an erosion process was added after the extraction process.During erosion process,a disk area with radius of 10 pixels is used.Result shows in Figure 2e.

        To improve the weight of target area,dilation process is added after erosion so that the traffic sign has a clear red circle on the outside edge,which means all pixels inside the circle will be set as the same value to the extraction area.Result is shown in Figure 2f.

        3.3 ROI Extraction and Resizing

        3.3.1 Extraction

        There are still many eligible areas after target areas extraction as Figure 2f shows.In this section,ranking for these alternative areas is needed.The ranking method is shown in Figure 3.

        Figure 3.The ranking method of ROI area selection

        In Figure 3,if area of an alternative less than 10%or more than 50%,it will be seen as an interferent such as a red coke bottle on the road or a red building nearby the road.A RGB model image is extracted from the ROI area.Result of extraction is shown in Figure 2f.

        3.3.2 Resizing

        Result of ROI extraction is the input of CNN recognizing process.Resizing image to 32 pixel×32 pixel is the last step.Result is shown in Figure 2g.

        4 Traffic Sign Recognition

        CNN uses a variation of multilayer perceptions designed to require minimal preprocessing that has successfully been applied to analyzing visual imagery.CNNs use relatively little pre-processing compared to other image classification algorithms.This means that the network learns the filters that in traditional algorithms were hand-engineered[10].In this paper,a structure of neural network is used for the recognition process,however it is not a research focus during this engineering implementation work.

        4.1 Frame of CNN

        A 13 layers’network was designed for the recognizing process.

        4.1.1 Input layer

        Receiving 32 pixel×32 pixel×3 pixel RBG image as input.

        4.1.2 Middle layers

        Middle layers include 8 layers with repeating convolution layer(C)and max pooling layer(S):

        a.Convolution:32 5×5 convolutions with stride[1,1]and padding[2,2].

        b.Max Pooling:3×3 max pooling with stride[2,2]and padding[0,0].

        c.Convolution:32 5×5 convolutions with stride[1,1]and padding[2,2].

        d.Max Pooling:3×3 max pooling with stride[2,2]and padding[0,0].

        e.Convolution:64 5×5 convolutions with stride[1,1]and padding[2,2].

        f.Max Pooling:3×3 max pooling with stride[2,2]and padding[0,0].

        g.Convolution:64 5×5 convolutions with stride[1,1]and padding[2,2].

        h.Max Pooling:3×3 max pooling with stride[2,2]and padding[0,0].

        4.1.3 Output layers

        Output layers include 4 layer arrays,

        a.Fully Connected:128 fully connected layers.

        b.Fully Connected:4 fully connected layers.

        c.Softmax.

        d.Classification Output.

        The structure of CNN is shown in Figure 4.

        4.2 Training Data

        Two kinds of dataset are used for the training process.One is GTSRB(German Traffic Sign Recognition Benchmark),each traffic sign contains 2 000 samples,in which 80%for training and 20%for testing.These data is used during test stage in lab,to verify the basic performance and reliability of the network.Another dataset is recorded from the real road test,to verify the performance of the whole algorithm considering real driving environment(including Chinese traffic signs,hardware of camera system,weather condition,etc.).

        Figure.4 Structure of network

        4.3 Results of Recognition

        4.3.1 Test with GTSRB dataset

        Test with GTSRB dataset is done under static mode,parameters set in training process and test result are shown in Table 1.Comprehensive recognition rate reaches 99.6%in static mode.

        Table 1.Results in static mode test with GTSRB dataset

        4.3.2 Test with real road dataset

        Test with real road dataset obtains good recognition rate in good weather conditions.But two things remain to be improved:

        a.Under bad light environment,due to limitation of camera hardware,original images under bad light environment such as crossing the portal could be very hard for target detection.

        b.Under background with red color,it will be selected as ROI together with traffic when the red background overlaps with traffic sign.

        5 Conclusions

        This paper shows a complete calculation process of how to detect traffic signs and input them to CNN.In the next step of work,it is worth exploring how to determine the size of the image input into CNN,because it may be helpful to further improve the computation speed.

        Only color based target detection is limited by color itself,camera performance,or light environment.In the future study,methods of combined color,shape and other methods will be analyzed.

        日本精品一区二区在线看| 无码人妻黑人中文字幕| 99热精品成人免费观看| 中国免费一级毛片| 女同恋性吃奶舌吻完整版| 欧美村妇激情内射| 欧美成人看片黄a免费看| avtt一区| 久久99精品综合国产女同| 国产精品99精品久久免费| 午夜福利电影| 久99久精品免费视频热77| 极品少妇人妻一区二区三区 | 日本久久久免费观看视频| 亚洲综合色婷婷七月丁香| japanese无码中文字幕| 色人阁第四色视频合集网| 亚洲写真成人午夜亚洲美女| 亚洲av无码专区亚洲av伊甸园 | 亚洲国产精品无码一线岛国| 18女下面流水不遮图| 日韩精品国产自在欧美| 白色月光免费观看完整版| 国产精品乱码人妻一区二区三区| 欧美v亚洲v日韩v最新在线| 亚洲国产精品综合久久20 | 男人天堂网2017| av香港经典三级级 在线| 国产一区二区欧美丝袜| 精品久久人妻av中文字幕| 一本大道无码人妻精品专区| 亚洲自拍另类制服在线| 亚洲日本在线中文字幕| 亚洲国产一区二区三区| 久激情内射婷内射蜜桃人妖| 国产精品亚洲片夜色在线| 亚洲女同一区二区三区| 久久不见久久见免费影院| 国产尤物AV尤物在线看| 中文字幕你懂的一区二区| 一 级做人爱全视频在线看|