Next Article in Journal
Application of Convolutional Neural Network-Based Feature Extraction and Data Fusion for Geographical Origin Identification of Radix Astragali by Visible/Short-Wave Near-Infrared and Near Infrared Hyperspectral Imaging
Previous Article in Journal
Agricultural Greenhouses Detection in High-Resolution Satellite Images Based on Convolutional Neural Networks: Comparison of Faster R-CNN, YOLO v3 and SSD
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Pointer Defect Detection Based on Transfer Learning and Improved Cascade-RCNN

School of Electrical Information and Engineering, Anhui University of Technology, Ma’anshan 243032, China
*
Author to whom correspondence should be addressed.
Sensors 2020, 20(17), 4939; https://doi.org/10.3390/s20174939
Submission received: 2 August 2020 / Revised: 27 August 2020 / Accepted: 28 August 2020 / Published: 1 September 2020
(This article belongs to the Section Sensing and Imaging)

Abstract

:
To meet the practical needs of detecting various defects on the pointer surface and solve the difficulty of detecting some defects on the pointer surface, this paper proposes a transfer learning and improved Cascade-RCNN deep neural network (TICNET) algorithm for detecting pointer defects. Firstly, the convolutional layers of ResNet-50 are reconstructed by deformable convolution, which enhances the learning of pointer surface defects by feature extraction network. Furthermore, the problems of missing detection caused by internal differences and weak features are effectively solved. Secondly, the idea of online hard example mining (OHEM) is used to improve the Cascade-RCNN detection network, which achieve accurate classification of defects. Finally, based on the fact that common pointer defect dataset and pointer defect dataset established in this paper have the same low-level visual characteristics. The network is pre-trained on the common defect dataset, and weights are transferred to the defect dataset established in this paper, which reduces the training difficulty caused by too few data. The experimental results show that the proposed method achieves a 0.933 detection rate and a 0.873 mean average precision when the threshold of intersection over union is 0.5, and it realizes high precision detection of pointer surface defects.

1. Introduction

With the popularization of automated production [1,2,3,4,5], detection technology based on machine vision [6,7,8,9,10,11,12,13] has greatly promoted the development of the automobile manufacturing industry. Compared with traditional manual inspection, it has the advantages of high efficiency and high accuracy. There are many defects that will inevitably occur in the production process of automotive dashboard pointers. Some examples are surface pollution, hair-like defects, hot stamping paper folds, hot stamping paper damage and needle light leakage. These defects will directly affect the stability of the automotive instrument system. Therefore, it is of great significance to study the detection methods of pointer surface defects.
The traditional defect detection method of auto parts based on machine learning is mainly to extract the defect features by manual means, and then send the extracted features to support vector machine (SVM), AdaBoost and other classifiers for classification and recognition. Liu et al. [14] proposed an improved OTSU algorithm to extract the appearance defect features of the image and realized the detection of sleeve defects in the automotive steering gear. Li [15] studied the pit defects on the surface of turbine shell parts and obtained the region of interest by using an accurate boundary extraction algorithm based on ellipse fitting. The morphological features are extracted by image segmentation technology and then sent to the support vector machine for classification. Zhang et al. [16] improved the Canney operator through an adaptive filtering method and combined it with the watershed algorithm to obtain different enhanced image features. Then, the support vector machine classifier was trained according to the image features of the surface defects on the automotive injection molded threaded parts. Meng et al. [17] used HALCON algorithm for the processing of the automotive hose image. Moreover, they proposed a method to reduce misjudgment and identify the surface defects of the hose. Tandiya et al. [18] developed a semi-specular surface defect detection system, and designed specific filters to eliminate spurious defects due to edges and acute curvature changes. This system was able to detect various defects on the car bumper and had good robustness. However, the methods based on machine vision described above have poor ability to mine data and low detection accuracy.
In recent years, the favorable conditions have been created for the accurate and rapid detection with the development and application of deep learning. Du et al. [19] modified the Faster-RCNN algorithm by using feature pyramid network (FPN), used different data enhancement methods to make up for the lack of the images in the dataset and improved the defect detection accuracy of X-ray image on automotive castings. Zhao et al. [20] segmented the collected car wheel images and enhanced the image contrast and defect characteristics through image processing technology. Then, the convolutional neural network (CNN) was used to extract the characteristics of the defects, which realized accurate detection of wheel hub surface defects. Zhang et al. [21] constructed the thickness cloud map and Gaussian curvature cloud map of automotive cover parts and built a model based on Faster-RCNN to realize the detection of wrinkle and crack defects on automotive cover parts. Wu et al. [22] created a blade defect dataset and proposed an end-to-end framework based on residue learning. The data equalization operation was integrated into the process of detection and extensive experimental validation was conducted. The results demonstrate that the framework can achieve a better defect detection result. Qu et al. [23] proposed the PartsNet to realize the detection of automotive engine precision parts. PartsNet consists of a pixel-wise segmentation network and a feature refining network. The basic features of parts defects were learned by segmentation network, and then several typical methods of refinements were transformed into convolutional manners. The detection results show that the model established has good adaptability and portability. To sum up, the auto parts detection methods based on deep learning can extract rich features of images, which perform better than the traditional methods.
Based on the five types of defects proposed by automotive dashboard pointer manufacturers, this paper constructs a pointer surface defect dataset (including hot stamping paper folds, hot stamping paper damage, needle leakage, stains and hair-like defects), as shown in Figure 1. By comparing the characteristics of various types of defects, the difficulties of the inspection task are analyzed: (1) Differences exist in some defects which are of the same type, and the same types of defects have different appearances. For example, some hair-like defects are shaped in curved line and some in clusters (Figure 2a) and some stain-type defects are small and some are large (Figure 2b). (2) Some defects have weak features, such as stains (Figure 2c), hair-like (Figure 2d) and hot stamping paper folds (Figure 2e). The visual effect is very weak and cannot be quickly distinguished by the naked eye. (3) Similarities exist in defects of different types. For example, defects in hair-like matter are similar to those in hot stamping paper folds (Figure 2f) and defects in hot stamping paper folds are similar to those in hot stamping paper damage (Figure 2g). (4) The sample size of this dataset is too small, and there are only 372 processed images. Aiming at the above difficulties, this paper proposes a transfer learning and improved Cascade-RCNN deep neural network (TICNET) algorithm for detecting pointer defects, which can detect five types of defects on the pointer accurately.

2. Theories and Methods

2.1. Overview of Cascade-RCNN

The application of deep neural network to image processing has achieved satisfying results. Furthermore, convolutional neural network (CNN) has strong capability of feature extraction, and it plays an important role in the field of object detection [24]. The output of a convolutional layer can be described as:
z ( u , v ) = i = j = x i , j p u i , v j
where z ( u , v ) is the output, x i , j represents the input images and p represents the convolution kernels with different sizes. The object detection tasks based on CNN are usually divided into two types: one-stage and two-stage tasks. One stage [25,26] represents that the category probability and position coordinates of the object are returned directly. On the other hand, the process of object detection can also be completed with a convolutional neural network in two stages [27]. It means that the region proposal network is trained firstly and then the object detection network will be trained.
Cascade-RCNN [28,29] expands the classical two-stage structure to a multi-stage structure. High quality positive sample training is performed at each stage by setting different IoU (Intersection over Union) thresholds. Hence, the accuracy of bounding box detected and adjusted will be improved. The structure of Cascade-RCNN is shown in Figure 3, where x is the input; conv is the convolutional layer of the basic network; B0 is the proposal frame generated by the region proposal network; pool is the pooling layer; H1, H2 and H3 are the detection network; C1, C2 and C3 are classifiers; and B1, B2 and B3 are bounding box regressors.

2.2. Basic Network ResNet-50 Reconstructed by Deformable Convolution

Some defects on the surface of the dashboard pointers are different within the class, and features of some defects are weak. Therefore, it is difficult for the convolutional neural network to completely “remember” the diversity of the pointer surface defects through the dataset. Because conventional convolutional neural network is limited to a fixed geometric structure during modeling and the sampling position of the convolution unit on the input image remains unchanged each time, not only is the feature loss serious, but also the fitting ability of loss function becomes weak, and the overall performance of the network degrades. To solve the above problems, this paper introduces deformable convolution [30,31,32] to reconstruct the convolutional layers of the basic network ResNet-50 [33,34,35]. The conventional convolution structure is defined as follows:
y ( p 0 ) = p n R w ( p n ) x ( p 0 + p n )
where p n is the offset of each point relative to each point on the receptive field after sampling, usually an integer; R is the sampling grid; and w ( p n ) is the sampling weight. The deformable convolution is to add an offset Δ p n to each point, which is obtained by another convolution and is usually a non-integer value. The deformable convolution structure is defined as follows:
y ( p 0 ) = p n R w ( p n ) x ( p 0 + p n + Δ p n )
The value x ( p 0 + p n + Δ p n ) in the above formula is not an integer and does not correspond to the actual point on the feature map. This requires the derivation of discontinuous position variables, so bilinear interpolation is used:
x ( p ) = q G ( q , p ) x ( q ) = q g ( q x , p x ) g ( q y , p y ) x ( q )
where x ( q ) represents the values of points at all integer positions on the feature map and x ( p ) = x ( p 0 + p n + Δ p n ) represents the values of points at non-integer positions after adding the offset.
Deformable convolution expands the grid of conventional convolution into an offset matrix, which contains the offset { Δ p n | n = 1 ,   ,   N } , where N = | R | . Taking hair-like defects as an example, the deformable convolution calculation process is shown in Figure 4, where the size of the offset domain is consistent with the size of the input image. The offset domain is learned by a convolutional layer with the same size as the input image to obtain a two-dimensional offset matrix. If the number of two-dimensional offset matrixes is N, the channel dimension will be 2N. Because of the offset matrix, not only the sampling positions of the convolution are diversified, but also the sampling points pointed to by the offset domain have a stronger tendency to the target, and there is more output characteristic information. The basic network of Cascade-RCNN is ResNet-50, which has four stages. According to the difference within class and weaker characteristics of the defects on the surface of the pointer, convolutional layers of Stages 2–4 (as shown in Figure 5) are reconstructed to improve the ability to extract features.

2.3. OHEM Integrated into the Detection Network

For training samples, they can be divided into simple samples and difficult samples. Simple samples are those that are easy to correctly classify, and difficult samples are those that are misclassified. Simple samples have little significance on model training, while difficult samples can better guide the direction of model optimization due to their higher loss value and greater influence on classification and detection results. Some types of defects belong to difficult samples because they have similar characteristics, and making full use of them can improve the robustness of network and the ability to recognize targets.
Based on the idea of online hard example mining [36,37], this paper improves Cascade-RCNN’s detection network. As shown in Figure 6, taking Stage 2 as an example (the same as Stages 1 and 3), the original detection network H2, C2 and B2 is duplicated as H2′, C2′ and B2′ branches. The H2, C2 and B2 branches are denoted as L1, while H2′, C2′ and B2′ branches are denoted as L2. L1 and L2 share the network’s parameters. L1 is an only readable forward detection network, while L2 is a readable and writable standard detection network. First, the candidate regions generated by the region proposal network generate corresponding feature maps through the pooling layer. The feature maps input to L1 for forward transfer, and the loss values are calculated. Then, the OHEM module sorts the loss values of all candidate areas to screen out some difficult samples with large loss values. Finally, these difficult samples are input into L2 through the pooling layer for forward calculation and back propagation.

2.4. Transfer Learning

The essence of transfer learning [38,39,40] is transferring the features learned from the source domain [41,42,43] to the target dataset. Compared with traditional machine learning methods that require retraining every time, transfer learning can improve the efficiency of training and the adaptability of the model [44]. The lower-level convolutional layers in the convolutional neural network can learn the detailed semantic features such as edges and colors. Furthermore, such more complex features such as different shapes and other combinatorial characteristics can be extracted by the higher-level convolutional layers.
The common pointer surface defect dataset comes from pointer images collected by a company. It consists of 1000 images, covering stains, bright spots, filaments and edge gaps (as shown in Figure 7). Figure 8 presents that the common pointer defect dataset and the pointer defect dataset constructed in this paper have the same low-level visual characteristics. Consequently, it will transfer the same features learned previously to the current task when the lower-level convolutional layers are frozen.
This paper adopts the method of transfer learning to solve the problem that the current dataset is only 372 images, and the process is shown as Figure 9. Firstly, it uses a transfer learning to initialize the network parameters trained on the ImageNet large-scale dataset. Secondly, it tunes the network parameters through the images in the common pointer defect dataset with relatively sufficient data, and a network is trained to recognize the surface defects of common pointer. Finally, the lower-level convolutional layers are frozen, and the secondary transfer learning is performed. Moreover, the higher-level convolutional layers are retrained to learn the complex features. To sum up, the similarity between the source domain and the target domain has been greatly improved. The same low-level visual characteristics are effectively utilized and the complex features are relearned, which alleviates the problem of too few samples.

3. TICNET: Proposed Pointer Defect Detection Algorithm

3.1. Network Structure

The network structure of TICNET is shown in Figure 10. It uses deformable convolution to reconstruct the basic network which can improve the ability to extract feature, and improves the three branches of Cascade-RCNN. The original H1-C1-B1, H2-C2-B2 and H3-C3-B3 branches are copied into H1′-C1′-B1′ branch, H2′-C2′-B2′ branch and H3′-C3′-B3′ branch. OHEM modules are connected in parallel beside the original three branches, which can improve the ability to distinguish similar samples. Combined with the transfer learning theory, the network parameters trained on the common defect dataset are used for initialization. Stages 1–2 of ResNet-50 are frozen and prevented from updating parameters. The parameters at other levels of the network are fine-tuned to make the model converge quickly and overcome the drawback of too few data.

3.2. Loss Function

TICNET is formed by cascading multiple sub-networks; each sub-network has a separate detector. The results of detectors are used as the input of the next stage, and the final stage combines the results to output. The cascading relationship of the entire network is shown in Formula (5):
f ( x , b ) = f T o f T 1 o o f ( x , b )
where T represents the number of cascades, which is 3. Regressor f t at each level correspond to training samples b t at each level. b t is derived from the results of the initial distribution b 1 after all previous branch outputs, instead of directly using initial distribution of the region proposal network to train f t . The sample distribution ratio b t obtained after each level of regression is a bit more accurate than b t 1 , and the IoU threshold will be increased a bit after each level of regression. This can solve the problem of imbalance between positive and negative samples at each stage.
The loss function of TICNET consists of the bounding box regression loss function and the classification loss function. The regression loss function of the bounding box is defined as follows:
T l o c [ F ] = 1 N j i = 1 N i j = 1 N j L l o c j ( F T ( x i , b i ) , g i )
The coordinates and enclosing area of the bounding box can be expressed with b = ( b x , b y , b w , b h ) . b x and b y are the coordinates of the center point. b w and b h are the width and height of the bounding box. The real bounding box can be expressed with g = ( g x , g y , g w , g h ) , where g x and g y are the coordinates of the center point of the real bounding box and g w and g h are the width and height of the real bounding box. The bounding box makes the IoU between the bounding box and the real bounding box as large as possible through the regression function. j represents the jth detector of the cascade layer, N j is the number of detectors at this level and N i is the number of predicted samples. F T ( x i , b i ) is the bounding box input by the detector and T is the level of the detection network. The definition of the L l o c function is as follows:
L l o c ( t , o ) = i { x , y , w , h } s m o o t h L 1 ( o i t i )
where o = ( o x + o y + o w + o h ) is the frame result output by the regression box, t is the vector of real coordinates and s m o o t h L 1 ( x ) is defined as follows:
s m o o t h L 1 ( x ) = { 0.5 x 2 , i f   | x | < 1 | x | 0.5 , o t h e r w i s e
The classification loss function is defined as follows:
R c l s [ h ] = i = 1 n L c l s ( h ( x i ) , y i )
where Lcls is the classical cross entropy loss function. The bounding box calculates the label value of the category by weighted average:
b T = 1 N i i = 1 N i F T 1 i ( x T 1 , b T 1 )
Therefore, the loss function of the T level is:
L ( x T , g ) = R c l s ( h T ( x T ) , y T ) + β [ y T 1 ] T l o c ( F T ( x T , b T ) , g )
where h T is the classification result output by the Tth class classifier; F T is the mean value of the regression result output by the Tth regressor; β is the weight coefficient, which serves to balance the normalized weight of the classification loss and the frame regression loss; and y T is the label of x T under a given threshold and defined as follows:
y = { g y , IoU ( x , g ) u 0 ,   o t h e r w i s e

4. Results and Discussion

4.1. Preparatory Work

The 372 images used in the experiment were all cropped from the pictures taken by Basler industrial camera, with a pixel size of approximately 2800 × 300 pixel. We made a dataset of pointer surface defects referring to the format of standard dataset VOC2007 (hot stamping paper folds are marked as fold, hot stamping paper damage are marked as rupture, needle leakage are marked as light leaking, hair-like defects are marked as hair and stains are marked as taint). We randomly selected 300 images to form the training set, and the remaining 72 images formed the testing set. During training, the images were randomly flipped with a probability of 0.5 for data enhancement. The experimental platform is shown in Table 1 and the overall detection framework is shown in Figure 11.

4.2. Detection Results

The TICNET network model was used to detect five types of defects on the pointer surface, and we counted the average precision (AP) and average confidence (AVGConf) when the threshold of intersection over union (IoU) was 0.5 for each category. The definition of Precision and AP are as follows:
Precision = T P T P + F P
AP = 1 11 r { 0 , 0.1 , 0.2 , , 1 } ρ i n t e r p ( r )
where TP represents the positive samples detected correctly and FP represents the negative samples detected incorrectly. ρ i n t e r p ( r ) can be expressed as:
ρ i n t e r p ( r ) = m a x r ˜ : r ˜ r ρ ( r ˜ )
where ρ ( r ˜ ) is the precision at recall r ˜ , and Recall is defined as:
Recall = T P T P + F N
where FN represents the positive samples detected incorrectly. Therefore, AP was obtained by interpolating the precision at the eleven equally spaced levels [0, 0.1, 0.2, …, 1] and taking the maximum precision whose recall value is greater than r. The detective confidence (Conf) is defined as:
C o n f = P i ( c l a s s j | O b j e c t )
It represents the probability that the defect belongs to category j, when there are objects in the current detection box i. For each category of defects, we defined the average confidence (AVGConf) as:
A V G C o n f j = 1 n i = 1 n C o n f i
where n is the sum of detected boxes that contain category j.
The evaluation results on the testing set are shown in Table 2, and randomly selected detection results are shown in Figure 12. Table 2 shows that the defects detection has high average precision. Although the detective precision of hot stamping paper damage is lowest, the value of AP0.5 is still up to 0.852 on the testing set. Figure 12 and Table 2 show that each category has a AVGConf of ≥0.9 and all detected boxes have high precision. The manufacturer has a demand that both detective precision and confidence are above 85%, thus we conclude that the detection performance of TICNET is satisfactory.

4.3. Ablation Study

4.3.1. Ablation Study for TICNET

To quantitatively prove the effectiveness of methods such as deformable convolution, online hard example mining and transfer learning, the method of controlling variables was used to conduct comparative experiments on the following four schemes. The experiments of the four schemes were all trained for 30 rounds under the same hardware configuration. The schemes were as follows:
  • Scheme 1: The proposed algorithm does not use deformable convolution to improve the basic network and still uses conventional convolution to build ResNet-50.
  • Scheme 2: The proposed algorithm does not use online hard example mining, and the detection network still uses Stages 1–3 of Cascade-RCNN.
  • Scheme 3: Secondary transfer learning is abandoned. The pre-trained weights of ImageNet are used to train the TICNET, instead of using the model that can recognize common pointer surface defects as the pre-trained model.
  • Scheme 4: The complete model of TICNET is used.
In this research, the mean average precision (mAP), accuracy (ACC) and detection rate (DR) were also used as the evaluation indices. The mean average precision (mAP) is defined as:
mAP = 1 n j j = 1 n j AP j
where nj is the total number of categories and here is 5 and AP j is the average precision of each category. In addition, mAP0.5 and mAP0.7, respectively, represent the mAP when the thresholds of IoU are 0.5 and 0.7.
The accuracy (ACC) is defined as:
ACC = T P + T N T P + F P + T N + F N
where TN represents the negative samples detected correctly. The detection rate (DR) is defined as:
DR = 1 n k k = 1 n k IoU k
where n k is the sum of detected boxes, IoU k is the intersection over union of the box k and the definition of IoU can be expressed as:
IoU = a r e a ( B P B g t ) a r e a ( B P B g t )
where B P is a predicted bounding box and B g t is the ground truth bounding box.
Table 3 presents the experimental data of Schemes 1–4. It is shown that the mAP0.5 and mAP0.7 have, respectively, declined 9.9% and 9.0% under the circumstance that Scheme 1 is used, which are remarkable decreases compared with Schemes 2 and 3. As a reason, the deformable convolution can extract richer features. It can be found that the detection rate increases 10.2% on condition that the OHEM is used by comparing Schemes 2 and 4. The reason is that the indistinguishable samples in the training process are fully utilized, thereby improving the recognition ability of the network. The metrics of mAP0.5 and mAP0.7 have, respectively, declined 5.4% and 6.6% when the pre-trained weights of ImageNet are used to train the TICNET (Schemes 3 and 4), and thus we conclude that the secondary transfer learning has a positive impact on the network and can also improve the overall performance of the network.
To verify the effects of deformable convolution, online hard example mining and transfer learning, the models of Schemes 1–4 were used to verify the seven situations in Figure 2, respectively, and the results are shown in Figure 13.
Through the comparison and analysis with the complete TICNET model (Scheme 4), it can be seen that the clustered hair and defects with weak features are not detected when the deformable convolution is not used to reconstruct ResNet-50 (Scheme 1). Moreover, large stains are mistakenly detected as needle light leakage and some of the detected defects have low confidence. As a reason, the network’s ability to extract deep features is weak when deformable convolution is not used.
It is found that the hair-like defect is mistakenly detected as hot stamping paper folds, and hot stamping paper damage is falsely detected as hot stamping paper folds when OHEM is not used to improve the inspection network (Scheme 2). The reason is that these samples with high loss values are not effectively used, which reduces the discriminative ability of the network. It can also be found that the stains with weak features are not detected when transfer learning is not used. Moreover, the hair-like defect with weak feature has lower frame accuracy, and the confidence of some detected defects are lower. As an explanation, the random initialization of network parameters makes it difficult to achieve optimal results under the same number of training rounds.

4.3.2. Ablation Study for Transfer Learning

The changes of variables in transfer learning will affect the results, and we attempted to find an optimal set of variables to better fit this detection task. Hence, a comparative experiment was carried out, and the results are shown in Table 4.
In this experiment, the independent variables included transfer learning strategy, backbone and frozen stages. On the other hand, the dependent variables included parameters ACC and inference time/group. Among them, the transfer learning strategy consists of different combinations and the frozen stages represents the frozen stages of ResNet during tuning. Besides, backbone is the basic network and we chose ResNet-34, ResNet-50 and ResNet-101 for comparison. We define the parameters of the common convolutional layers as:
Params c o n v = K h × K w × C i n × C o u t + C o u t
where K h × K w is the kernel size, C i n is the number of input channels and C o u t is the number of output channels. The parameters of the fully connected layers can be defined as:
Params f c = N i n × N o u t + N o u t
where N i n represents that the input has N i n nodes and N o u t represents that the output has N o u t nodes. Therefore, the number of parameters (Params) is the sum of the all convolutional and fully connected layers’ parameters. The last column of Table 4 shows the inference time and each group contained 10 images.
In Table 4, it can be seen that the number of parameters is only related to frozen stages and backbone, but not to the transfer learning strategy. It is clear that the increase of ResNet depth dramatically resulted in the increase of parameters and inference time. Moreover, ACC was also improved significantly if we replaced ResNet-34 with ResNet-50. On the other hand, although the increase of ResNet depth may achieve an improvement of ACC, ResNet-101 was not able to improve the ACC with a lower cost of inference time. Hence, it can be concluded that ResNet-50 is a better choice than ResNet-34 or ResNet-101.
The number of frozen stages affects the parameters and inference time as well. In other words, the more stages are not frozen, the more parameters and inference time are added. However, the accuracy will be lost if too many or too few stages are frozen. By comparing Methods 4 and 7–9, it is found that the accuracy obtained by Methods 7–9 is not as high as that obtained by Method 4.
The comparative results show that ACC was influenced by the transfer learning strategy as well. Methods 1–4 indicate that ACC is the worst when we train the TICNET from scratch. Furthermore, when the pre-trained weights of Pascal VOC were used in the first transfer stage, rather than the pre-trained weights of ImageNet, it was found that ACC declined from 0.906 to 0.884. Thus, it can be inferred that the transfer learning can improve the performance of TICNET, and the pre-trained weights of ImageNet is more suitable for our task.

4.4. Comparison of Different Detection Algorithms

To prove the superiority of the proposed algorithm, several classic detection algorithms were compared with TICNET in the same experimental environment. We still used mAP0.5, mAP0.7, ACC and DR as the evaluation indicators. Comparison algorithms include SSD [46], Retinanet [47], RFCN [48], Faster-RCNN [49], Cascade-RCNN, SSD *, RFCN * and Cascade-RCNN *. Among them, SSD *, RFCN * and Cascade-RCNN * represent that we trained the model from scratch. The comparative results are shown in Table 5.
Table 5 demonstrates that the detection results of SSD are the worst, and the mAP0.5 and mAP0.7 are both below 0.7. Moreover, although the detection results of Retinanet are improved compared with those of SSD, the effect is still not satisfactory. This is due to the fact that both SSD and Retinanet belong to the one-stage detection networks. In other words, the original image is scaled by one-stage detection networks, which made it difficult to detect small targets because of the receptive field. Notably, the detection indicators of RFCN and Faster-RCNN are all over 0.8, which is a big step forward from SSD and Retinanet. The reason is that both RFCN and Faster-RCNN are two-stage detection networks, and the region proposal network plays an important role in detecting small targets. There are many anchors eventually learned in the one-stage network, but most anchors are adverse to the learning process. Anchors in this part greatly affect the whole network and lower the overall accuracy. In addition, the selective search strategy of region proposal network can filter out the redundant anchors. Although fewer anchors are eventually learned from the two-stage network, there will not be too many anchors unfavorable to online learning. They may affect the overall accuracy rate, but it is certainly not as severe as that of one-stage, so the accuracy rate is higher than that of one-stage. Nevertheless, the overall performance of RFCN and Faster-RCNN is still not as good as TICNET.
It is found that the detection indicators of Cascade-RCNN are all lower than those of the two-stage detection networks and TICNET. As an explanation, the defects of the detection task in this paper are complex and some defects have similar characteristics. The feature extraction ability of the basic network is weak, and the samples that have been mistakenly detected are not properly utilized. Therefore, it is concluded that the Cascade-RCNN without any improvements is not suitable for our task. On the other hand, whether the weight is transferred or not also affects the detection indicators. The comparison results show that the migration of weights will effectively improve the performance.
Table 6 illustrates the comparison statistics of algorithms on the different defects. SSD and Faster-RCNN are chosen as the comparison algorithms for TICNET, and the average confidence (AVGConf) is used as evaluation indicator.
The aforementioned table indicates that the average confidence of each type rises by at least 12.5% and 2.7%, respectively, when compared with SSD and Faster-RCNN. Consequently, it is inferred that the method proposed in this article is more sensitive to the defects on the pointer surface, and the network is more robust due to the improved methods proposed in this article. To summarize, the TICNET has the best performance in our detection task, which is superior to other classical detection algorithms. This is of great significance to ensure the quality of pointers in the production.

5. Conclusions

Visual inspection of industrial precision parts is a research hotspot in the computer vision field today, and inspection methods based on machine vision have been applied in industry. Based on the study of pointer surface defects, this paper proposes a transfer learning and improved Cascade-RCNN deep neural network for the problems of intra-class differences, weak features, similarities in different classes and small sample size. The proposed algorithm uses deformable convolution to enhance the feature extraction ability of the feature extraction network. Drawing on the idea of online hard example mining, the detection branches containing the OHEM module are merged into the original detection branches, which effectively improves the network’s ability to distinguish complex samples. The transfer learning theory is used in this detection task to solve the problem of lack of samples and imbalance of data. Comparative experiment results show that the proposed algorithm can accurately detect various defects on the pointer surface. The mAP0.5 is 0.873, ACC is 0.906 and DR is 0.933, which are better than the current classical detection algorithms. The TICNET network model has achieved good inspection results in the task of detecting defects on pointer surface, and it is expected to be widely used in the field of industrial vision inspection in the future.

Author Contributions

Proposed the idea, W.Z. and D.L.; project research and design, W.Z. and H.H.; writing—original draft preparation, H.H. and F.C.; experiment and data analysis, H.H. and W.C.; writing—review and editing, H.H., D.L., F.C. and W.C.; making figures, F.C. and, W.C.; document retrieval, F.C. and W.C.; project process management and supervision, W.Z. and D.L.; and funding acquisition, W.Z. All authors have read and agreed to the published version of the manuscript.

Funding

This research was funded by the National Natural Science Foundation of China (grant number 61472282) and was partially supported from the Major Scientific Research Project of Anhui Provincial Education Department (grant number KJ2019ZD05).

Acknowledgments

Experimental equipment was provided by Dart Intelligent Technology Co., Ltd., Ma’anshan.

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Li, C.; Zhang, X.; Huang, Y.; Tang, C.; Fatikow, S. A novel algorithm for defect extraction and classification of mobile phone screen based on machine vision. Comput. Ind. Eng. 2020, 146, 106530. [Google Scholar] [CrossRef]
  2. Zhang, X.; Wei, L.; Yuan, W.; Ding, Z. Research on micro-crack detection method of plate heat exchanger based on machine vision. J. Electr. Eng. 2020, 37, 856–860. [Google Scholar]
  3. Yang, M. Automatic verification method of car tire temperature and pressure meter reading based on machine vision. Autom. Instrum. 2020, 6, 44–47. [Google Scholar]
  4. Deshpande, A.M.; Telikicherla, A.K.; Jakkali, V.; Wickelhaus, D.A.; Kumar, M.; Anand, S. Computer vision toolkit for non-invasive monitoring of factory floor artifacts. Procedia Manuf. 2020, 48, 1020–1028. [Google Scholar] [CrossRef]
  5. Pierleoni, P.; Belli, A.; Palma, L.; Sabbatini, L. A versatile machine vision algorithm for real-time counting manually assembled pieces. J. Imaging 2020, 6, 48. [Google Scholar] [CrossRef]
  6. Lins, R.G.; De Araujo, P.R.M.; Corazzim, M. In-process machine vision monitoring of tool wear for cyber-physical production systems. Robot. Comput. Manuf. 2020, 61, 101859. [Google Scholar] [CrossRef]
  7. Le, N.T.; Wang, J.W.; Wang, C.C.; Nguyen, T.N. Automatic defect inspection for coated eyeglass based on symmetrized energy analysis of color channels. Symmetry 2019, 11, 1518. [Google Scholar] [CrossRef] [Green Version]
  8. Zeiler, A.; Steinboeck, A.; Vincze, M.; Jochum, M.; Kugi, A. Vision-based inspection and segmentation of trimmed steel edges. IFAC-PapersOnLine 2019, 52, 165–170. [Google Scholar] [CrossRef]
  9. Anonymous. Machine vision system detects stretched chain links on moving conveyor drives. Vision Syst. Des. 2019, 24, 450–453. [Google Scholar]
  10. Li, X.; Qiao, T.; Pang, Y.; Zhang, H.; Yan, G. A new machine vision real-time detection system for liquid impurities based on dynamic morphological characteristic analysis and machine learning. Measurement 2018, 124, 130–137. [Google Scholar] [CrossRef]
  11. Zareiforoush, H.; Minaei, S.; Alizadeh, M.R.; Banakar, A. A hybrid intelligent approach based on computer vision and fuzzy logic for quality measurement of milled rice. Measurement 2015, 66, 26–34. [Google Scholar] [CrossRef]
  12. Xiong, C.; Ji, J. Detection method for welding defects of ship plate joints based on machine vision. Ship Sci. Technol. 2020, 42, 220–222. [Google Scholar]
  13. Malik, A.A.; Andersen, M.V.; Bilberg, A. Advances in machine vision for flexible feeding of assembly parts. Procedia Manuf. 2019, 38, 1228–1235. [Google Scholar] [CrossRef]
  14. Liu, R.; Wang, Z.; Liu, X.; Lu, W. Defect detection of automotive precision parts based on machine vision. Software 2020, 41, 192–196. [Google Scholar]
  15. Li, K. Surface Defect Detection of Automotive Turbine Shell Parts Based on Machine Vision. Master’s Thesis, Nanjing University of Aeronautics and Astronautics, Nanjing, China, 2019. [Google Scholar]
  16. Zhang, J.; Liang, D.; Liang, D.; Wang, Z. A method for defect detection of automotive injection thread parts based on machine vision. Mach. Manuf. 2019, 57, 76–79. [Google Scholar]
  17. Meng, F.; Ren, J.; Wang, Q.; Zhang, T. Rubber hose surface defect detection system based on machine vision. IOP Conf. Series Earth Environ. Sci. 2018, 108, 22057. [Google Scholar] [CrossRef]
  18. Tandiya, A.; Akthar, S.; Moussa, M.; Tarray, C. Automotive Semi-specular Surface Defect Detection System. In Proceedings of the 15th Conference on Computer and Robot Vision (CRV), Toronto, ON, Canada, 9–11 May 2018. [Google Scholar]
  19. Du, W.; Shen, H.; Fu, J.; Zhang, G.; He, Q. Approaches for improvement of the X-ray image defect detection of automobile casting aluminum parts based on deep learning. NDT E Int. 2019, 107, 102144. [Google Scholar] [CrossRef]
  20. Zhao, H.; Zhao, Y.; Qi, X.; Li, F. Research on detection algorithm of automotive hub surface defects based on deep learning. Int. J. Mach. Tools Manuf. 2019, 11, 112–115. [Google Scholar]
  21. Zhang, X.; Liu, G.; Tong, Z.; Hu, P.; Shen, G.; Wang, C.; Zhu, X. Defect prediction of automobile stamping parts based on deep learning. In Proceedings of the 14th China CAE Engineering Analysis Technology Annual Conference, Yinchuan, China, 9–11 August 2018. [Google Scholar]
  22. Wu, Y.; Guo, D.; Liu, H.; Huang, Y. An end-to-end learning method for industrial defect detection. Assem. Autom. 2019, 40, 31–39. [Google Scholar] [CrossRef]
  23. Qu, Z.; Shen, J.; Li, R.; Liu, J.; Guan, Q. PartsNet: A unified deep network for automotive engine precision parts defect detection 2018. arXiv 2018, arXiv:1810.12061. [Google Scholar]
  24. Li, Y.; Chen, Y.; Wang, N.; Zhang, Z.X. Scale-Aware Trident Networks for Object Detection. In Proceedings of the 2019 IEEE/CVF International Conference on Computer Vision (ICCV), Seoul, Korea, 29 October–1 November 2019. [Google Scholar]
  25. Tian, Z.; Shen, C.; Chen, H.; He, T. FCOS: Fully Convolutional One-Stage Object Detection. In Proceedings of the 2019 IEEE/CVF International Conference on Computer Vision (ICCV), Seoul, Korea, 29 October–1 November 2019. [Google Scholar]
  26. Morera, Á.; Sánchez, Á.; Moreno, A.B.; Sappa, Á.; Vélez, J. SSD vs. YOLO for detection of outdoor urban advertising panels under multiple variabilities. Sensors 2020, 20, 4587. [Google Scholar] [CrossRef] [PubMed]
  27. Du, L.; Zhang, R.; Wang, X. Overview of two-stage object detection algorithms. J. Phys. Conf. Ser. 2020, 1544, 12033. [Google Scholar] [CrossRef]
  28. Cai, Z.; Vasconcelos, N. Cascade R-CNN: Delving into High Quality Object Detection. In Proceedings of the 2018 IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), Salt Lake City, UT, USA, 18–22 June 2018. [Google Scholar]
  29. Qin, H.; Yan, J.; Li, X.; Hu, X. Joint Training of Cascaded CNN for Face Detection. In Proceedings of the 2016 IEEE Conference on Computer Vision and Pattern Recognition (CVPR), Las Vegas, NV, USA, 27–30 June 2016. [Google Scholar]
  30. Xu, Z.; Xu, X.; Wang, L.; Yang, R.; Pu, F. Deformable ConvNet with aspect ratio constrained NMS for object detection in remote sensing imagery. Remote Sens. 2017, 9, 1312. [Google Scholar] [CrossRef] [Green Version]
  31. Zhu, X.; Hu, H.; Lin, S.; Dai, J. Deformable ConvNets v2: More deformable, better results. arXiv 2018, arXiv:1811.11168. [Google Scholar]
  32. Dai, J.; Qi, H.; Xiong, Y.; Li, Y.; Zhang, G.; Hu, H.; Wei, Y. Deformable Convolutional Networks. arXiv 2017, arXiv:1703.06211. [Google Scholar]
  33. Szegedy, C.; Ioffe, S.; Vanhoucke, V. Inception-v4, Inception-ResNet and the impact of residual connections on learning. arXiv 2016, arXiv:1602.07261. [Google Scholar]
  34. Jung, H.; Choi, M.-K.; Jung, J.; Lee, J.H.; Kwon, S.; Jung, W.Y. ResNet-Based Vehicle Classification and Localization in Traffic Surveillance Systems. In Proceedings of the Computer Vision & Pattern Recognition Workshops, Honolulu, HI, USA, 21–26 July 2017. [Google Scholar]
  35. Wen, L.; Li, X.; Gao, L. A transfer convolutional neural network for fault diagnosis based on ResNet-50. Neural Comput. Appl. 2019, 32, 6111–6124. [Google Scholar] [CrossRef]
  36. Chu, J.; Guo, Z.; Leng, L. Object detection based on multi-layer convolution feature fusion and online hard example mining. IEEE Access 2018, 6, 19959–19967. [Google Scholar] [CrossRef]
  37. Shrivastava, A.; Gupta, A.; Girshick, R. Training Region-Based Object Detectors with Online Hard Example Mining. In Proceedings of the 2016 IEEE Conference on Computer Vision and Pattern Recognition (CVPR), Las Vegas, NV, USA, 27–30 June 2016. [Google Scholar]
  38. Qiu, Z.; Zhao, S.; Feng, X.; He, Y. Transfer learning method for plastic pollution evaluation in soil using NIR sensor. Sci. Total Environ. 2020, 740, 140118. [Google Scholar] [CrossRef]
  39. Yosinski, J.; Clune, J.; Bengio, Y.; Lipson, H. How transferable are features in deep neural networks? arXiv 2014, arXiv:1411.1792. [Google Scholar]
  40. Oquab, M.; Bottou, L.; Laptev, I.; Sivic, J. Learning and Transferring Mid-Level Image Representations using Convolutional Neural Networks. In Proceedings of the 2014 IEEE Conference on Computer Vision and Pattern Recognition, Columbus, OH, USA, 23–28 June 2014. [Google Scholar]
  41. Glorot, X.; Bordes, A.; Bengio, Y. Domain Adaptation for Large-Scale Sentiment Classification: A Deep Learning Approach. In Proceedings of the 28th International Conference on Machine Learning, Washington, DC, USA, 28 June–2 July 2011. [Google Scholar]
  42. Chen, M.; Xu, Z.; Weinberger, K.; Sha, F. Marginalized denoising autoencoders for domain adaptation. arXiv 2012, arXiv:1206.4683. [Google Scholar]
  43. Ganin, Y.; Ustinova, E.; Ajakan, H.; Germain, P.; LaRochelle, H.; LaViolette, F.; Marchand, M.; Lempitsky, V. Domain-adversarial training of neural networks. arXiv 2015, arXiv:1505.07818. [Google Scholar]
  44. Minaee, S.; Boykov, Y.; Porikli, F.; Plaza, A.; Kehtarnavaz, N.; Terzopoulos, D. Image segmentation using deep learning: A survey. arXiv 2020, arXiv:2001.05566. [Google Scholar]
  45. Paszke, A.; Gross, S.; Massa, F.; Lerer, A.; Bradbury, J.; Chanan, G.; Killeen, T.; Lin, Z.; Gimelshein, N.; Antiga, L.; et al. PyTorch: An imperative style, high-performance deep learning library. arXiv 2019, arXiv:1912.01703. [Google Scholar]
  46. Liu, W.; Anguelov, D.; Erhan, D.; Szegedy, C.; Reed, S.; Fu, C.; Berg, A. SSD: Single shot multibox detector. arXiv 2015, arXiv:1512.02325. [Google Scholar]
  47. Lin, T.Y.; Goyal, P.; Girshick, R.; He, K.; Dollar, P. Focal loss for dense object detection. arXiv 2017, arXiv:1708.02002. [Google Scholar]
  48. Dai, J.; Li, Y.; He, K.; Sun, J. R-FCN: Object detection via region-based fully convolutional networks. arXiv 2016, arXiv:1605.06409. [Google Scholar]
  49. Ren, S.; He, K.; Girshick, R.; Sun, J. Faster R-CNN: Towards real-time object detection with region proposal networks. arXiv 2015, arXiv:1506.01497. [Google Scholar] [CrossRef] [Green Version]
Figure 1. Examples of pointer surface defects: (a) hot stamping paper folds; (b) hot stamping paper damage; (c) needle leakage; (d) stains; and (e) hair-like defects.
Figure 1. Examples of pointer surface defects: (a) hot stamping paper folds; (b) hot stamping paper damage; (c) needle leakage; (d) stains; and (e) hair-like defects.
Sensors 20 04939 g001
Figure 2. (a) Hair-like defects have different appearances; (b) stains have different appearances; (c) weak feature of stains; (d) weak feature of hair-like defects; (e) weak feature of hot stamping paper folds; (f) similarity exists in defects of hair-like defects and hot stamping paper folds; and (g) similarity exists in defects of hot stamping paper folds and hot stamping paper damage.
Figure 2. (a) Hair-like defects have different appearances; (b) stains have different appearances; (c) weak feature of stains; (d) weak feature of hair-like defects; (e) weak feature of hot stamping paper folds; (f) similarity exists in defects of hair-like defects and hot stamping paper folds; and (g) similarity exists in defects of hot stamping paper folds and hot stamping paper damage.
Sensors 20 04939 g002
Figure 3. This is the structure of Cascade-RCNN.
Figure 3. This is the structure of Cascade-RCNN.
Sensors 20 04939 g003
Figure 4. This is an example of deformable convolution calculation process.
Figure 4. This is an example of deformable convolution calculation process.
Sensors 20 04939 g004
Figure 5. The reconstruction of the ResNet-50.
Figure 5. The reconstruction of the ResNet-50.
Sensors 20 04939 g005
Figure 6. Cascade-RCNN’s detection network is improved by online hard example mining.
Figure 6. Cascade-RCNN’s detection network is improved by online hard example mining.
Sensors 20 04939 g006
Figure 7. There are four kinds of defects in the common pointer surface defect dataset: (a) stain; (b) bright spot; (c) filament; and (d) edge gap.
Figure 7. There are four kinds of defects in the common pointer surface defect dataset: (a) stain; (b) bright spot; (c) filament; and (d) edge gap.
Sensors 20 04939 g007
Figure 8. The common pointer defect dataset and the pointer defect dataset constructed in this paper have the same low-level visual characteristics.
Figure 8. The common pointer defect dataset and the pointer defect dataset constructed in this paper have the same low-level visual characteristics.
Sensors 20 04939 g008
Figure 9. This is the process of transfer learning.
Figure 9. This is the process of transfer learning.
Sensors 20 04939 g009
Figure 10. The network structure of TICNET.
Figure 10. The network structure of TICNET.
Sensors 20 04939 g010
Figure 11. This is the overall detection framework. The role of the industrial computer is to receive the real-time image of the camera and detect defects, while the role of the PLC is to send detection signals.
Figure 11. This is the overall detection framework. The role of the industrial computer is to receive the real-time image of the camera and detect defects, while the role of the PLC is to send detection signals.
Sensors 20 04939 g011
Figure 12. The results of defect detection: (a) hot stamping paper folds; (b) hot stamping paper damage; (c) needle leakage; (d) stains; and (e) hair-like defects.
Figure 12. The results of defect detection: (a) hot stamping paper folds; (b) hot stamping paper damage; (c) needle leakage; (d) stains; and (e) hair-like defects.
Sensors 20 04939 g012
Figure 13. The detection results of four schemes for different situations: (a) hair-like defects have different appearances; (b) stains have different appearances; (c) weak feature of stains; (d) weak feature of hair-like defects; (e) weak feature of hot stamping paper folds; (f) similarity exists in defects of hair-like defects and hot stamping paper folds; and (g) similarity exists in defects of hot stamping paper folds and hot stamping paper damage.
Figure 13. The detection results of four schemes for different situations: (a) hair-like defects have different appearances; (b) stains have different appearances; (c) weak feature of stains; (d) weak feature of hair-like defects; (e) weak feature of hot stamping paper folds; (f) similarity exists in defects of hair-like defects and hot stamping paper folds; and (g) similarity exists in defects of hot stamping paper folds and hot stamping paper damage.
Sensors 20 04939 g013aSensors 20 04939 g013b
Table 1. Hardware and software parameters of the experimental platform.
Table 1. Hardware and software parameters of the experimental platform.
NameParameter
CameraBasler acA5472-5gm, and the resolution is 5472 × 3648
CPUIntel Core i7-6800 @ 3.4 GHz
Memory32 GB
GPUDual-channels NVIDIA GTX1080Ti
Operating systemLinux Ubuntu 16.04
Deep Learning FrameworkPyTorch 1.3.1 [45]
LanguagePython 3.7.5
Table 2. The evaluation results on the testing set.
Table 2. The evaluation results on the testing set.
Name of the DefectsAP0.5 1AVGConf 2
Hot Stamping Paper Folds0.8640.969
Hot Stamping Paper Damage0.8520.957
Needle Leakage0.8770.974
Stains0.9110.971
Hair-Like Defects0.8610.989
1 AP0.5 is the average precision when the threshold of intersection over union is 0.5. 2 AVGConf is the average confidence.
Table 3. Comparative results for the proposed algorithm.
Table 3. Comparative results for the proposed algorithm.
SchemesmAP0.5 1mAP0.7 2ACC 3DR 4
Scheme 1 50.7740.7920.8250.843
Scheme 2 60.8250.8040.8710.831
Scheme 3 70.8190.7960.8640.907
Scheme 4 80.8730.8620.9060.933
1 mAP0.5 is the mean average precision when the threshold of intersection over union is 0.5. 2 mAP0.7 is the mean average precision when the threshold of intersection over union is 0.7. 3 ACC is the accuracy. 4 DR is the detection rate. 5 The deformable convolution is abandoned. 6 The OHEM is abandoned. 7 The secondary transfer learning is abandoned. 8 The complete model of TICNET is used.
Table 4. Comparative results for different methods.
Table 4. Comparative results for different methods.
Method NumberTransfer Learning StrategyBackboneFrozen StagesParams(M) 1ACC 2Inference
Time/Group (s)
1- 3ResNet-50Stages 1–267.720.7191.569
2Weights of Pascal VOC 4ResNet-50Stages 1–267.720.8651.576
3Weights of Pascal VOC + Weights of CPD 5ResNet-50Stages 1–267.720.8841.580
4Weights of ImageNet + Weights of CPD (Ours)ResNet-50Stages 1–267.720.9061.574
5Weights of ImageNet + Weights of CPDResNet-34Stages 1–233.010.8171.133
6Weights of ImageNet + Weights of CPDResNet-101Stages 1–286.710.9082.010
7Weights of ImageNet + Weights of CPDResNet-50Stage 168.940.8991.589
8Weights of ImageNet + Weights of CPDResNet-50Stages 1–360.620.8621.492
9Weights of ImageNet + Weights of CPDResNet-50- 69.170.8701.588
1 Params(M) is the number of model parameters. 2 ACC is the accuracy and it defined as formula (20). 3 It represents training the TICNET from scratch. 4 We used the pre-trained weights of Pascal VOC dataset to train the TICNET. 5 We used the pre-trained weights of Pascal VOC dataset for the transfer learning firstly and trained a model that can recognize common pointer surface defects, and then used the model for secondary transfer learning. CPD is the abbreviation for common pointer surface defects dataset.
Table 5. Comparative results for different detection algorithms.
Table 5. Comparative results for different detection algorithms.
AlgorithmmAP0.5mAP0.7ACCDR
SSD 0.6900.6790.7880.715
Retinanet0.7330.7320.8740.900
RFCN0.8240.8130.8750.903
Faster-RCNN0.8250.8040.8710.864
Cascade-RCNN0.7610.7540.8260.839
SSD *0.6150.5660.6470.643
RFCN *0.7380.7310.8010.828
Cascade-RCNN *0.7210.7090.8130.802
TICNET (Ours)0.8730.8620.9060.933
Table 6. The comparison statistics of algorithms on the different defects.
Table 6. The comparison statistics of algorithms on the different defects.
DefectsHot Stamping Paper FoldsHot Stamping Paper DamageNeedle LeakageStainsHair-Like Defects
AVGConf
Algorithm
SSD0.8120.8310.8490.7920.776
Faster-RCNN0.9250.9200.9420.9440.957
TICNET (Ours)0.9690.9570.9740.9710.989

Share and Cite

MDPI and ACS Style

Zhao, W.; Huang, H.; Li, D.; Chen, F.; Cheng, W. Pointer Defect Detection Based on Transfer Learning and Improved Cascade-RCNN. Sensors 2020, 20, 4939. https://doi.org/10.3390/s20174939

AMA Style

Zhao W, Huang H, Li D, Chen F, Cheng W. Pointer Defect Detection Based on Transfer Learning and Improved Cascade-RCNN. Sensors. 2020; 20(17):4939. https://doi.org/10.3390/s20174939

Chicago/Turabian Style

Zhao, Weidong, Hancheng Huang, Dan Li, Feng Chen, and Wei Cheng. 2020. "Pointer Defect Detection Based on Transfer Learning and Improved Cascade-RCNN" Sensors 20, no. 17: 4939. https://doi.org/10.3390/s20174939

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop