• <tr id="yyy80"></tr>
  • <sup id="yyy80"></sup>
  • <tfoot id="yyy80"><noscript id="yyy80"></noscript></tfoot>
  • 99热精品在线国产_美女午夜性视频免费_国产精品国产高清国产av_av欧美777_自拍偷自拍亚洲精品老妇_亚洲熟女精品中文字幕_www日本黄色视频网_国产精品野战在线观看 ?

    Multiple-Object Tracking Using Histogram Stamp Extraction in CCTV Environments

    2024-01-12 03:47:32YeYeonKangGeonParkHyunYooandKyungyongChung
    Computers Materials&Continua 2023年12期

    Ye-Yeon Kang ,Geon Park ,Hyun Yoo and Kyungyong Chung,?

    1Division of AI Computer Science and Engineering,Kyonggi University,Suwon,16227,Korea

    2Contents Convergence Software Research Institute,Kyonggi University,Suwon,16227,Korea

    ABSTRACT Object tracking,an important technology in the field of image processing and computer vision,is used to continuously track a specific object or person in an image.This technology may be effective in identifying the same person within one image,but it has limitations in handling multiple images owing to the difficulty in identifying whether the object appearing in other images is the same.When tracking the same object using two or more images,there must be a way to determine that objects existing in different images are the same object.Therefore,this paper attempts to determine the same object present in different images using color information among the unique information of the object.Thus,this study proposes a multiple-object-tracking method using histogram stamp extraction in closed-circuit television applications.The proposed method determines the presence or absence of a target object in an image by comparing the similarity between the image containing the target object and other images.To this end,a unique color value of the target object is extracted based on its color distribution in the image using three methods:mean,mode,and interquartile range.The Top-N accuracy method is used to analyze the accuracy of each method,and the results show that the mean method had an accuracy of 93.5% (Top-2).Furthermore,the positive prediction value experimental results show that the accuracy of the mean method was 65.7%.As a result of the analysis,it is possible to detect and track the same object present in different images using the unique color of the object.Through the results,it is possible to track the same object that can minimize manpower without using personal information when detecting objects in different images.In the last response speed experiment,it was shown that when the mean was used,the color extraction of the object was possible in real time with 0.016954 s.Through this,it is possible to detect and track the same object in real time when using the proposed method.

    KEYWORDS Data mining;deep learning;object detection;object tracking;real-time object detection;multiple object;image processing

    1 Introduction

    Closed-circuit television (CCTV) systems analyze collected images and are used for traffic monitoring,crime prevention,suspect tracking,and industrial observations.CCTV plays a crucial role in global crime prevention and its use is rapidly increasing.What was once a fast adoption rate limited to developed countries in the past is now experiencing significant growth in both industrialized and developing nations [1].Recently,the number of CCTV installations has rapidly increased.For example,in Korea,the number of CCTV installations was 1,458,465 in 2022,a 400% increase from that in 2011[2].As most CCTVs are installed in a specific location and record only a specific place,they have blind spots that cannot be recorded;thus,additional CCTVs must be installed to eliminate these blind spots.In most cases,images captured using two or more devices must be compared and analyzed to use these images effectively.The comparison and analysis of captured images are laborintensive tasks when used for real-time monitoring.However,there is a lack of labor force compared to the rapid increase in CCTV installations,which has resulted in management and control difficulties.

    CCTV is installed in public places and is used for security,crime,fire prevention,and safety management in facilities.In addition,CCTV is used not only for criminal investigations and public order maintenance but also for searching for missing persons.In these cases,two or more CCTV systems are used to identify the same object.A model that determines whether the objects are the same is required when the same objects are present in two or more images.Therefore,in recent years,studies have focused on identifying the same object using different images.Face-detection technology is the most widely used method for detecting the same object in multiple images.However,recent developments in big data technology have raised serious concerns related to privacy infringement and personal information protection.Therefore,it is necessary to find unique characteristics without using a person’s personal information,such as their face.Therefore,this study proposes a method for detecting the same object in multiple CCTV environments.The proposed method determines the same object using the color of the object present in the image.When using the color of an object,the color characteristics of the object existing throughout the image are used.To this end,a histogram stamp,which is object-specific color information,is generated using an abbreviation method of repeated colors in a certain number or more frames.The same object is determined by comparing the generated histogram stamp.The contributions of the proposed method are as follows:

    ? The proposed method extracts and tracks multiple objects within a single image and compares their unique color information with objects in other images.In this case,the external background color of the object may be removed by adding an internal margin when detecting the object,which can enable more accurate object detection.

    ? For video analysis using CCTV,it is common to use two or more videos to detect the same object.This often necessitates a significant allocation of human resources.However,this study automates the analysis by reducing labor costs,while enabling real-time object detection.

    ? A histogram stamp,which is a unique color of an object,is extracted using a red,green,and blue(RGB) histogram.The histogram stamp compresses the information about an object present in an image when determining the object.This process reduces the time required to compare the different objects.Furthermore,although it does not use personal information such as face recognition,it achieves a similar performance,which makes it relatively secure.

    ? The generated histogram stamp was compared in real-time with an object present in another image.This enables multilateral and wide-area exploration,unlike simple monitoring,and therefore enables efficient use of CCTV.

    The remainder of this paper is organized as follows:In Section 2,an object-detection model using deep learning and object-tracking algorithms is described.In Section 3,multiple-object tracking using the proposed histogram stamp extraction from multiple CCTV is described.In Section 4,the results and performance evaluation are described.Finally,conclusions are presented in Section 5.

    2 Structure

    2.1 Object Detection Model Using Deep Learning

    Object detection is a crucial computer-vision technology for identifying and locating objects within images [3].There are two main approaches to object detection: one-stage and two-stage detection [4].The two-stage detector first estimates the positions of the objects and subsequently determines their classes [5].Although this approach is complex,it offers high accuracy owing to its multi-stage processing[6].In contrast,the one-stage detector simplifies the process by simultaneously performing positional estimation and classification using a convolutional neural network [7].It processes the entire image simultaneously,resulting in faster detection but lower accuracy.The You Only Look Once(YOLO)model is a pioneering one-stage detector known for its real-time processing capabilities[8].

    In the YOLO model,an image is divided into a grid,and position estimation and classification are performed within the grid cells[9].Bounding boxes are generated in grid cells where object positions are predicted.Each box is associated with a confidence score that indicates the likelihood of containing an object[10].The object’s class is determined using the intersection over union(IoU),which is a metric for measuring detection accuracy [11].A higher IoU value indicates a more accurate bounding box prediction in the proximity of the object [12].YOLO has various hyperparameters such as learning rate,batch size,and network depth.Therefore,performance can be improved by adjusting various parameter settings and hyperparameters.

    Detection methods using deep learning are mainly used for human detection in the computer vision field.Detectors based on convolutional neural networks are mainly used for human detection during complex vision tasks.In particular,high accuracy and fast speed are essential to quickly detect people in a real-time environment.To this end,research is being conducted on learning optimized deep learning models and using hardware accelerators.These methodologies are being studied with various datasets and are mainly used in fields such as security surveillance,smart cities,etc.

    2.2 Object Tracking Algorithm

    Historically,image processing has relied on feature-generation methods to determine object position and shape.Notable methods include the histogram of oriented gradients(HOG)[13],which uses object contour information to calculate gradients.This feature renders it suitable for objects with distinctive contours,but less effective for rotated or substantially altered objects[14].In contrast,scaleinvariant feature transform (SIFT) is a versatile method that can identify objects regardless of the changes in shape,size,and rotation[15].SIFT extracts feature vectors from identifiable feature points in an image and local patches around these points,thereby providing robustness against changes[16].

    Algorithms such as simple online and real-time tracking(SORT)have been used for real-time—multiple-object tracking [17].SORT uses bounding box information,Kalman filtering,and IoU matching to connect detected and predicted results [18].However,IoU-based matching can lead to identity switching when occlusions occur,thereby introducing tracking errors [19].To address this,DeepSORT was introduced,which enhances SORT using deep-learning techniques[20].DeepSORT incorporates a track-checking process and achieves lower identity switching and higher tracking accuracy compared to SORT[21].TrackFormer,which tracks objects using transformer architecture,was recently proposed in the field of object tracking using deep learning[22].When the TrackFormer tracks an object,it splits the input sequence into object units and predicts the position,velocity,and acceleration of each object.Unlike other object-tracking models,this model uses an input sequence with time.Accordingly,the input sequence information is divided and the object information in the previous frame is used to predict the tracking in the next frame.Using the self-attention mechanism of the transformer model offers the advantages of better connectivity and feature information between objects.However,this model is very large and incurs high computational costs because it uses transformer architecture.This increases the learning and inference times and makes it difficult to implement an efficient model.Further,in long-term tracking,previous information has an excessive influence,and therefore,errors accumulate,or tracking becomes difficult.

    3 Multiple-Object Tracking Using Histogram Stamp Extraction in CCTV Environments

    In this study,a case in which images recorded on several CCTV are used is defined as a multiple-CCTV environment.In a multiple-CCTV environment,real-time equal object detection and tracking comprise a four-stage process.Fig.1 shows the proposed multiple-object-tracking method using histogram stamp extraction in CCTV environments.The first stage was the data configuration stage.At this stage,an image dataset is obtained by extracting a human object from an image and storing the extracted human object for each frame.

    Figure 1:Multiple-object tracking using histogram stamp extraction in CCTV environments

    The second stage is the object detection and tracking stage,wherein object detection is performed using YOLO,a deep-learning-based object-detection algorithm,and DeepSORT,which is used for object tracking.A frame window(FW)was used as the input for object detection and tracking.FW refers to a frame generated while tracking an object in an image.FW is used to perform tasks on continuous data,such as video streams or image sequences.Existing images include multiple objects and background information in addition to objects;however,FW is a newly created frame based on the size of the object to be tracked.Thus,if FW is used,information about an object can be collected without any adjustments.

    The third step is the histogram extraction and conversion step,in which the color of the object detected using FW in the previous step is extracted using an RGB histogram [23].A reduction algorithm is used to convert the values of the generated histogram into a single unique color value.In the third step in Fig.1,the color of the object is extracted from all frames generated from one image.Afterward,normalization is performed to minimize the difference in distribution values depending on the size of objects present in the image.Multiple normalized color information generated from one image is reduced to one numerical value using mean,mode,and interquartile range(IQR)methods.This is called a histogram stamp.The final picture of the third step depicts histogram stamps of different images of the same person.If you check the RGB channels separately,they are all skewed to the left,meaning they show a similar distribution.

    The final step detects the same object in different images using histogram stamps.At this time,Euclidean distance was used to compare the similarity of histogram stamps.In a heat map that visualizes similarity,the darker the color,the higher the similarity.

    3.1 Object Detection and Tracking to Generate an Object Histogram Stamp

    Human motion images of an AI Hub were used in this study [24].Each image is a recording of 5-to 10-s motions of approximately 50 types of human actions,such as walking,sitting,playing basketball,fencing,and jumping rope.The image data consisted of images of a single person captured from multiple angles.Image data shot from different angles have the same function as the images recorded from different locations on CCTV.Therefore,different people wearing different clothes were selected,each person’s data was collected with 10 video clips per individual,and a dataset of 1,000 images was constructed.The constructed data were used to validate the object detection and tracking results.

    First,it must be possible to detect and track objects in each image to identify the same object in multiple CCTV environments.The YOLO v5 model was used to detect objects in an image[25]because it uses PyTorch,unlike previous models,and it is convenient and fast.In this study,the objects and classes to be detected are humans;therefore,a confidence threshold,which indicates the probability of an object being present,is used to enable more accurate detection.The confidence threshold used in this study was selected at 0.6.Confidence scores above 0.6 are considered because these values can be used to perform nonmax suppression(NMS),which is a technique for enabling the YOLO model to generate an accurate bounding box [26].In addition,the color of the object is used to determine whether the object is the same;therefore,the accuracy can decrease if a color exists in the background.To resolve this problem,an additional margin was added to the bounding box when YOLO was used for detection.This enables the collection of color-based information on clothes worn on the torso and legs of the object.This additional margin is referred to as the internal margin.Although semantic segmentation enables more accurate color extraction because it requires substantial computation time,real-time response performance cannot be expected.Therefore,this method was not an option.

    YOLO generates a bounding box as the output when an object is present in the input image.The generated bounding box has object-centered coordinates,that is,the x-and y-axis coordinates,and four coordinate values,including the width and height values.The coordinates of the generated bounding box were received as OpenCV NumPy values,converted into tensor values for object tracking using a torch,and delivered to DeepSORT.Then,the object information delivered by YOLO was used along with DeepSORT for object tracking.DeepSORT exhibits a high detection rate and fast-tracking speed when the object being tracked is hidden from sight for a long time;therefore,it can be applied in real time[27].All people are detected when the object is tracked using a single YOLO model,even when many people exist in one image.If DeepSORT is used in such cases,a unique ID is created for each detected object,and the object assigned to such an ID can be tracked.Even when an object appears in the next frame,this approach can assign a new ID and perform detection and tracking tasks.Therefore,it is possible to detect the same object and track continuous movements in a single image.Fig.2 shows the object detection and tracking results obtained from one image.

    Figure 2:Object detection and tracking results obtained from one image

    Fig.2 shows a rectangular bounding box containing an internal margin smaller than the size of each object generated in the area where each object exists.Each object in the same class was assigned a unique number.

    3.2 Object Histogram Stamp Extraction and Pre-Processing

    An RGB histogram is used to identify the features of an object in an image,and an objecthistogram stamp that extracts the unique color features of the object is then generated.The histogram extracts the color of the object in an image through the three RGB channels.The bounding box of the object generated by YOLO was used as the input for histogram extraction.At this point,the bounding box is variably generated,depending on the size of the object in an image.Even if the objects are the same,this induces a difference in the number of pixels,depending on the size identified in the image.When images of different sizes have different color distributions,the colors that are determined to be the same may be recognized differently.Therefore,normalization was performed to reduce the variability in the input data and obtain consistent results.During normalization,the number of dimensions can be reduced to two to decrease the computational complexity resulting from retrieval when using a histogram.However,in this study,all clothing color information was used to determine the status of the same object and enhance the precision and accuracy of object tracking.Therefore,no dimension reduction was used,and all channels were employed to determine the same object status.Normalization divides each pixel using the maximum frequency value of the pixels per RGB color channel.After normalization,the minimum frequency value of all the color channels was above 0,and the maximum value did not exceed 1.In addition,the post-normalization frequency is proportional to the frequency of the color value of a pre-existing pixel[28].The normalized frequencies were combined into one array per frame and saved as an array of size 768.

    An FW is used for this array in an image rather than a frame.An object color feature that integrates the bounding boxes generated per frame is required when using FW.To this end,an object-histogram stamp reflecting the color features of an object in an FW was generated.The histograms can be classified based on two features when using an FW to list histograms extracted per frame.The first feature indicates that the same color value continues to exist,implying that the object is likely to wear clothes of a given color.This is because the object remains fixed while tracking the movement of the object in one image.By contrast,the second feature indicates that it is likely that the background is included in the bounding box when a color value repeatedly exists and disappears.This is because the color of the central object is the same as the object moves in one image,but the background behind the object changes as it moves.One of the collected images was used in the experiment to confirm this.A heat map visualizing the RGB color distribution obtained from processing one image was extracted.Fig.3 shows a heat map that visualizes the object color values obtained from a single image.

    Figure 3:Heat map visualizing the object color values obtained from a single image

    In Fig.3,the horizontal axis represents the color values of the green,blue,and red channels,and the vertical axis represents the number of frames.Each part of the horizontal axis contained 256 color values;therefore,the total size was 768.The heat map shown in Fig.3 is skewed to the left in each channel.If the graph is skewed to the left,this implies that the color values of the extracted objects are in the gray range.This is because the color of the clothes worn by the object in the input image is gray.

    When an FW was used,it was confirmed that information other than the color of the object could also be included.To solve this problem,the color histogram generated in FW was quantified,and only the unique color value of the object was extracted.This is known as the object-histogram stamp.The mean,mode,and IQR methods were used to extract the object-histogram stamps.Using the mean is the most common method for summarizing data distributions.The mean is widely employed in statistical analysis and proves useful when compared with other datasets.Furthermore,it helps in understanding the central tendency of data.Therefore,the mean is used to generate a histogram stamp.Algorithm 1 describes the process of extracting a histogram stamp by using the mean.

    Algorithm 1 uses the mean to generate the histogram stamp.The data used as input was a normalized array of object color information collected from the initial input image.The number of rows of data was stored because the data were entered.The number of rows was equal to the number of frames in the input video.Using the mean is advantageous as it reflects the overall trend of the entire image.However,it is susceptible to outliers when they exist.

    When reflecting the characteristics of objects in an image where the color remains relatively consistent,the mode is more likely to best represent the central tendency.Additionally,color information in objects often consists of only a few distinct values,making it crucial to determine which value occurs most frequently.Therefore,the mode is employed to create a histogram stamp.When using the mode value,that is,the second method,the color value obtained by preprocessing the value of the RGB histogram generated in the FW is used.Each preprocessed color value has a minimum value of 0 and a maximum value of 1 for each RGB color.Algorithm 2 presents the process of extracting a histogram stamp using this mode.

    Algorithm 2 uses the least common denominator to generate the histogram stamp.The data used as input were the same as those in Algorithm 1.The number of rows and columns was counted once the data were entered.The number of rows represents the number of frames in the input video,and the number of columns is 768,which is the sum of the R,G,and B color-channel values.The third line,N,represents the number of subintervals into which the interval from 0 to 1 is divided.For example,if N=2,the range can be divided between 0 to 0.6 and 0.6 to 1.In general,increasing the size of N to create more intervals improves accuracy;however,it has the disadvantage of being time-consuming.Next,we counted and stored the ranges in which the color values in each row fell.Subsequently,the median of the range of the most common colors in each column was selected from arr_max and stored as a representative value for the column.

    In the third method,the IQR is used to generate an object-histogram stamp.IQR is relatively less sensitive to outliers in the data.IQR simultaneously provides information about the central tendency of the data,represented by the median,and the spread of the data,indicated by the range.This provides richer insights into the data distribution.Lastly,IQR is a non-parametric method,making it useful even when data does not follow a normal distribution.Unlike other metrics such as the mean and mode,which are often most effective when assuming a normal distribution,IQR does not rely on this assumption.Therefore,as a final approach,IQR is used to generate histogram stamp.Eq.(1)was used to calculate the IQR.

    In Eq.(1),Nrepresents the total number of datasets.When all data are aligned in ascending order,Q1is the first quartile and is the data within the 25% range of all data.Q3is the third quartile and is the data within the 75% range of the total data.IQR is the value obtained after subtracting the first quartile from the third quartile and is multiplied by a weight of 1.5 to come close to the standard normal distribution.This multiplication is performed to identify the observed values exceeding the range by a factor of 1.5 as outliers.

    Finally,only 50%of the data was used,and the confidence interval used in the standard regularity table was 95%.All data outside the confidence interval range were processed as outliers to increase performance.Algorithm 3 shows the method for extracting a histogram stamp using the IQR.

    Algorithm 3 uses IQR to generate a histogram stamp.The data used for input is the same as Algorithm 1.IQR uses only the middle 50%of the data.Therefore,for each input,check whether it is the middle 50%and store it in re_list_50.Afterwards,normalization is additionally performed based on the median value of the data and stored in hist_np.

    The performance of the three methods used to extract the unique histogram stamp of an object in an image was compared.Fig.4 shows the visualized results of the object-histogram stamp extraction process.As shown in Fig.3,data from a person wearing white clothing were used.Therefore,in Fig.4,the same left-leaning graph is generated per color channel in all cases where the mean,mode,or IQR method is used.However,each method has its characteristics because the spacing and color of the graph are not constant depending on the method.

    Figure 4:Object histogram stamp

    3.3 Identical Object Determination Using Euclidean Distance

    An object-histogram stamp that extracts only the unique color information of an object from an FW is used to compare two different objects in a multiple-CCTV environment.The Euclidean distance formula was used to achieve this[29].The Euclidean distance formula calculates the distance between two points and measures the similarity between them based on their distance.Therefore,the Euclidean distance formula was used to measure the similarity between the two objects generated in multiple CCTV images.The Euclidean distance is given by

    In Eq.(2),drepresents the distance;p and q represent the feature values of the objects generated while passing through an FW in mutually different images;andnrepresents the number of images.The number of input images was the same as that of the comparison target image.

    Two mutually different objects were compared in multiple CCTV images to use this formula to determine the similarities between objects according to the object-histogram stamp extraction methods using the mean,mode,and IQR.The two objects had 25 multiple-environment images each;one person wore white clothes on the top and bottom,and the other person wore a yellow top and black bottoms.The comparison results obtained from these images were visually expressed as a heat map to compare their similarities.

    In Fig.5,the horizontal and vertical axes represent the number of images;50 images(25 images per person) were compared.The diagonal line indicates that the images are the same and that the Euclidean distance is zero and is consistently accurate.Based on the 25 images shown in Fig.5,the similarity is high,and they are displayed in a dark color because the lower-left and upper-right figures show the same objects.Because the upper left and upper right show different objects,their similarity is low,and they are displayed in bright colors.Through this process,it is possible to classify different objects.

    Figure 5:Heat map for comparing the similarity

    4 Results and Performance Evaluation

    In this study,human motion images from the AI Hub and edited images with durations of 5–10 s were used as data.These images depict diverse people wearing different clothes,captured from different angles.In addition,32 frames were used for the histogram stamp extraction because using more frames would result in higher computational costs and longer processing times.In practice,it is possible to identify objects with fewer frames;however,choosing 32 frames allows us to obtain more information.This limitation can be adjusted based on the data storage capacity and computer specifications.Furthermore,an object in the CCTV image was detected,and an object-histogram stamp reflecting the color information of the clothes worn by the object was extracted.The mean,mode,and IQR methods were used to extract the object-histogram stamps.The generated histogram stamp was used to determine the same object status using the Euclidean distance formula.Therefore,the objectjudgment accuracy and response performance of the object-histogram stamp extraction method were compared.In addition,the performances attributed to the additional margin added during object detection were compared.To measure performance,this study utilized a positive predictive value(PPV)and Top-N accuracy.The primary focus of this study was to identify the same individual captured from various angles.Multiple-object-tracking (MOT) metrics primarily emphasize multiple-object tracking,which differs somewhat from our research objectives.Consequently,we prioritized object identification over object tracking in our measurement methodology.Additionally,YOLO v5 was used for object detection,and DeepSORT was used for object tracking.Detection and tracking of objects may show different performance depending on the detector.

    4.1 Accuracy Analysis

    In the first performance evaluation,the accuracy of detecting the same object was compared to that of the object-histogram stamp extraction method.PPV,which refers to the proportion of true predictions that are true and enable the most intuitive judgment,was used for accuracy evaluation.Eq.(3)describes the PPV computation process[30].

    where TP refers to the case where the same object is determined to be the same and FP refers to the case in which the same object is determined to be a different object.The accuracy of identifying the same object based on the histogram stamp extracted using Eq.(3),was measured.In addition,we measured the judgment of equivalent objects and accuracy using the Top-N accuracy,which is the ratio of the Top-N correct answers to the actual correct answers.In general,the performance of the model degrades as N increases and the classes exhibit similar characteristics.Therefore,we selected cases where N was 1 and 2 to measure accuracy.The Top-N accuracy is expressed as the ratio of the number of correct predictions to the number of trials of the premise.A hit is considered correct if it contains the correct answer from N predictions.Table 1 lists the accuracy results obtained using mean,mode,and IQR.

    Table 1:Accuracy results obtained through the mean,mode,and IQR

    Table 1 indicates that the mean method performed best among the three methods.The mean method had an accuracy of 41.4%when using PPV and a high accuracy of 81.5%in terms of Top-2.This was 1.2%more accurate according to PPV and 0.5%more accurate according to Top-2 compared to IQR,which performed the worst.This indicates that using the mean method to generate an object-histogram stamp yields the best results.The overall low accuracy is attributed to the similar backgrounds used in the data images.

    An internal margin was added to YOLO to collect the colors of humans in images without collecting background information,and an experiment was conducted to confirm the accuracy enhancement resulting from the use of an internal margin.The experimental procedures were identical to those used in the previous performance evaluation process.Table 2 lists the accuracy results obtained by using the internal margin.

    Table 2:Accuracy results obtained using the internal margin

    As indicated in Table 2,adding an internal margin improved the performance of all methods.The metric with the largest performance improvement was PPV,which showed a 25.2% improvement in accuracy for IQR.Furthermore,the Top-2 results showed a performance improvement of approximately 12% for all methods.By adding an internal margin through the experimental results,the background other than the object could be effectively removed,which significantly improved the accuracy of determining the same object.By introducing an internal margin,the distinction between objects and backgrounds became clear,making the proposed method more reliable.

    Once the performance enhancement resulting from the addition of an internal margin was confirmed,an additional experiment was conducted to determine the adequate internal margin percentage.For the internal margin,the size of the initially generated bounding box was applied after it was reduced to a certain ratio.This reduction ratio begins with a reduction of 1/3.When the size of a bounding box is reduced by 1/3,the internal margin is 33.3%,and a new bounding box with a size 33.3%smaller than that of the initially generated bounding box is obtained.Further reduction ratios were applied by using the same procedure.The two methods that showed the highest accuracy after adding the margin were used to determine the accuracy resulting from the use of the internal margin reduction ratio.Therefore,the mean and IQR methods were used to measure the accuracy resulting from using the internal margin reduction ratio.Table 3 summarizes the accuracy results obtained using the different internal margin reduction ratios.We measured the accuracy using only the PPV to measure the accuracy of the experiment.

    Table 3:Accuracy results obtained using different internal margin reduction ratio

    As shown in Table 3,both the mean and IQR methods exhibited the highest performance when the internal margin ratio was 25.5%.Based on the performance evaluation results,the highest performance is achieved when the margin ratio of the bounding box is 25.0%.Therefore,we can confirm that allowing an internal margin of 25%results in the highest detection performance.

    In addition,the top 25%and bottom 25%were removed using the IQR method in the previous experiment,and only the middle 50%was applied.If a corrected ratio is used instead of 50%,higher performance may be obtained.Therefore,an experiment was conducted to test the case where only the top 25%was used instead of the pre-existing IQR method and to test the case where only the bottom 25%was used.Table 4 lists the accuracy results obtained by varying the IQR ratio.

    Table 4:Accuracy results obtained by changing the IQR ratio

    As indicated in Table 4,by adjusting the IQR ratio for the pre-existing method that used the top and bottom 25%,the former showed the best performance.Based on these results,we can confirm that using the top 25% achieves better performance in determining the same object status than using the pre-existing IQR method.This enabled tracking of the same object even in multiple-CCTV environments,which was proposed as a subject to be further examined in a previous study.The accuracies of the histogram stamp extraction methods were compared.

    Fig.6 shows a graph displaying the accuracy of each histogram stamp extraction method:mean,mode,IQR,top 25%,and bottom 25%.Among these,the top 25% showed the highest accuracy(66.4%).In contrast,the bottom 25%method exhibited the lowest accuracy(63.0%).

    Figure 6:Accuracy of each histogram stamp extraction method

    4.2 Response Time Analysis

    In the second evaluation,the response performance relevant to the process of determining the same object status was compared for the different histogram stamp extraction methods.One response time was compared during the response performance evaluation.The response speed was the same as the speed of each method’s color-value computation process.The response times for each objecthistogram stamp extraction method were compared.Table 5 lists the response times obtained using the mean,mode,and IQR methods.In addition,Fig.7 shows a graph of the response performance of each histogram stamp extraction method.

    Table 5:Response time obtained from the mean,mode,and IQR methods

    Figure 7:Response time performances of each extraction method

    The results presented in Table 5 indicate that the mean method exhibited the best response performance,and the IQR method exhibited the lowest performance at 15.376 s.The reason for the low performance of the IQR method is its increased computational complexity compared to that of the mean and mode methods.

    Fig.7 shows the response times of the mean,mode,and IQR methods.The IQR method yielded the highest value of 15.376 s.Among the mean,mode,and IQR methods,the mean method is an adequate choice for performing accurate computations,and the IQR method is an adequate choice for achieving a fast response speed.Therefore,it is appropriate to use any one of the three methods based on the situation.Using the mean and mode methods enables the determination of the same object status in real time,which helps resolve problems in which detection takes a significant amount of time.As a result of implementing the internal margin,the information retrieval process has notably accelerated.This,in turn,has reduced processing time,enabling real-time object comparison and analysis during object detection.The introduction of the internal margin has streamlined data processing,leading to the establishment of a highly responsive system.

    5 Conclusion

    This study proposed multiple object tracking using histogram stamp extraction in CCTV environments to determine the same object present in several images.Using YOLO and DeepSORT,a person present in one image was detected and tracked to identify multiple identical individuals.When detecting and tracking an object,an internal margin is added to remove the background information in addition to the object.The addition of internal margins improved the accuracy by up to 15.2%.Furthermore,a histogram stamp,which is the unique color value of an object,was extracted to compare with several objects.Histogram stamps were generated and compared using the mean,mode,and IQR methods.There were three unique color channel values in the histogram stamp for each object,and through this,it was possible to indicate that the color value that appears consistently vertically was a unique object.In addition,it was found that each method had unique characteristics as the interval and color of the graph appeared differently.Afterward,the Euclidean distance formula compared the similarity between two objects.The smaller the result,the closer the value to 0 and the darker the graph appeared,indicating that the two objects were similar.When using the mean method,the Top-N accuracy was 93.5%,and an additional PPV experiment showed that the mean method had an accuracy of 65.7%.This confirms that it is possible to judge the same object in an image using only the color information of the target object.Additionally,an experiment analyzed the response time of different extraction methods.The results showed that the response time of the mean method was 0.01 s,indicating that it is possible to determine the same object in multiple images in real-time.

    In this study,we proposed a method of determining the same object to track the same object in multiple images.This method is differentiated from traditional methods and uses the unique color information of the object to identify the same object.In addition,the proposed method reduced the impact of non-object background information by adding an internal margin to the bounding box area during the object detection process.It optimizes image processing time and improves the efficiency of the proposed method.The proposed abbreviation algorithm is flexible in application to various situations,and the accuracy of determining the same object in different images is also excellent.In addition,the proposed method demonstrated high response performance applicable in real-time in real-world applications.

    However,when generating histogram stamps using RGB histograms,the variation in color owing to brightness and lighting changes is relatively small.This reduction in differences between various objects can lead to confusion when identifying the same object.Therefore,to enhance accuracy,it is advisable to combine additional information.For example,we can combine the motion of the subject along with the color information of the attire [31].Furthermore,altering the shape of the bounding box is possible with an internal margin added.Therefore,we can achieve some improvements by introducing shape variations,such as elliptical forms that conform to human body shapes.Additionally,it is feasible to consider semantic segmentation techniques;however,these are known to have slower detection speeds than bounding boxes [32].Consequently,further research is scheduled to develop a model offering high accuracy and real-time detection.

    Acknowledgement:None.

    Funding Statement:This work was supported by the National Research Foundation of Korea(NRF)grant funded by the Korea government(MSIT)(No.2022R1F1A1068828).

    Author Contributions:The authors confirm contribution to the paper as follows: study conception and design: Ye-Yeon Kang,Geon Park,Hyun Yoo;data collection: Ye-Yeon Kang,Geon Park;analysis and interpretation of results:Ye-Yeon Kang,Geon Park,Hyun Yoo,Kyungyong Chung;draft manuscript preparation:Ye-Yeon Kang,Geon Park.All authors reviewed the results and approved the final version of the manuscript.

    Availability of Data and Materials:All data used in this study are freely available.The source of the data used in this study is explained in the text of the paper.

    Conflicts of Interest:The authors declare that they have no conflicts of interest to report regarding the present study.

    亚洲精品久久成人aⅴ小说| 欧美色视频一区免费| 欧美中文日本在线观看视频| 久久久久久久久中文| 精品福利观看| 一区福利在线观看| 男女之事视频高清在线观看| 99久久精品国产亚洲精品| 夜夜躁狠狠躁天天躁| 女性被躁到高潮视频| 日韩欧美国产一区二区入口| 亚洲精品美女久久久久99蜜臀| 国产精品自产拍在线观看55亚洲| 无人区码免费观看不卡| 国产在线精品亚洲第一网站| 亚洲成人免费电影在线观看| 岛国视频午夜一区免费看| 最近最新中文字幕大全免费视频| 中文字幕色久视频| 欧美 亚洲 国产 日韩一| 老熟妇仑乱视频hdxx| 亚洲精品久久成人aⅴ小说| 少妇裸体淫交视频免费看高清 | 老司机深夜福利视频在线观看| 色哟哟哟哟哟哟| 国产免费av片在线观看野外av| 欧美日韩乱码在线| 久久久国产成人精品二区| 国产1区2区3区精品| 久久香蕉精品热| 国产一区在线观看成人免费| 最近最新中文字幕大全免费视频| 亚洲精品国产一区二区精华液| 在线观看舔阴道视频| 悠悠久久av| 91麻豆精品激情在线观看国产| 亚洲七黄色美女视频| 久99久视频精品免费| 九色国产91popny在线| 激情在线观看视频在线高清| 一a级毛片在线观看| videosex国产| 午夜老司机福利片| 看黄色毛片网站| 免费在线观看影片大全网站| 啦啦啦 在线观看视频| 嫁个100分男人电影在线观看| 亚洲黑人精品在线| 99久久精品国产亚洲精品| 丝袜美足系列| 精品人妻1区二区| 欧美日韩中文字幕国产精品一区二区三区 | 亚洲久久久国产精品| 免费看十八禁软件| 亚洲情色 制服丝袜| 亚洲专区国产一区二区| 婷婷六月久久综合丁香| 最近最新中文字幕大全免费视频| 国内久久婷婷六月综合欲色啪| 亚洲色图av天堂| 免费少妇av软件| 亚洲九九香蕉| 少妇的丰满在线观看| 咕卡用的链子| 国产av在哪里看| 91成年电影在线观看| 操出白浆在线播放| 无限看片的www在线观看| 好男人电影高清在线观看| 久久精品影院6| 大香蕉久久成人网| 日韩大尺度精品在线看网址 | 18禁黄网站禁片午夜丰满| 免费在线观看日本一区| 最好的美女福利视频网| 免费看美女性在线毛片视频| 欧美色欧美亚洲另类二区 | 黄频高清免费视频| 成人亚洲精品av一区二区| 熟妇人妻久久中文字幕3abv| 精品一品国产午夜福利视频| 一边摸一边抽搐一进一小说| 国产在线精品亚洲第一网站| 欧美+亚洲+日韩+国产| 国产一区二区激情短视频| 国产熟女午夜一区二区三区| 看免费av毛片| 亚洲精品一区av在线观看| 亚洲av电影在线进入| 黄色片一级片一级黄色片| 窝窝影院91人妻| 一区二区三区高清视频在线| videosex国产| 亚洲欧美精品综合久久99| 好看av亚洲va欧美ⅴa在| 亚洲精品在线美女| av在线播放免费不卡| 涩涩av久久男人的天堂| 久久精品成人免费网站| 性色av乱码一区二区三区2| a在线观看视频网站| 亚洲免费av在线视频| 人妻丰满熟妇av一区二区三区| 女性被躁到高潮视频| 欧美国产精品va在线观看不卡| 日本五十路高清| 亚洲av电影在线进入| 人成视频在线观看免费观看| 18美女黄网站色大片免费观看| 国产麻豆成人av免费视频| 自拍欧美九色日韩亚洲蝌蚪91| 国产97色在线日韩免费| 免费在线观看日本一区| 亚洲情色 制服丝袜| 欧美激情久久久久久爽电影 | or卡值多少钱| 国产成人影院久久av| 亚洲一区高清亚洲精品| 久久伊人香网站| 咕卡用的链子| 国产午夜福利久久久久久| 国产av一区二区精品久久| 久久久精品欧美日韩精品| 在线观看免费日韩欧美大片| 在线av久久热| 亚洲欧美精品综合久久99| 亚洲第一电影网av| 亚洲自偷自拍图片 自拍| 成人18禁高潮啪啪吃奶动态图| 窝窝影院91人妻| 亚洲国产日韩欧美精品在线观看 | 日韩一卡2卡3卡4卡2021年| 男人操女人黄网站| 亚洲第一欧美日韩一区二区三区| 亚洲avbb在线观看| www.www免费av| 中文字幕色久视频| 窝窝影院91人妻| 亚洲专区国产一区二区| 少妇 在线观看| 韩国精品一区二区三区| 深夜精品福利| 51午夜福利影视在线观看| 黄色视频,在线免费观看| 高清黄色对白视频在线免费看| 日韩一卡2卡3卡4卡2021年| 久久久久久久久中文| 少妇粗大呻吟视频| 88av欧美| 亚洲精品久久国产高清桃花| 久久伊人香网站| 女同久久另类99精品国产91| 久久婷婷人人爽人人干人人爱 | 亚洲国产中文字幕在线视频| 一边摸一边抽搐一进一出视频| 国产99白浆流出| 美女免费视频网站| 丝袜美腿诱惑在线| 在线观看日韩欧美| 波多野结衣巨乳人妻| 午夜福利成人在线免费观看| 极品人妻少妇av视频| 亚洲av电影不卡..在线观看| 成人三级做爰电影| 免费一级毛片在线播放高清视频 | 深夜精品福利| 欧美日韩福利视频一区二区| 在线播放国产精品三级| 一本大道久久a久久精品| 精品一区二区三区视频在线观看免费| 欧美黑人精品巨大| 久久中文字幕一级| 十八禁人妻一区二区| 日韩有码中文字幕| 国产亚洲欧美精品永久| 女人爽到高潮嗷嗷叫在线视频| 妹子高潮喷水视频| 老汉色∧v一级毛片| 在线永久观看黄色视频| 黄片大片在线免费观看| 老司机午夜福利在线观看视频| 国产精品一区二区在线不卡| 午夜免费鲁丝| 中文字幕高清在线视频| 亚洲最大成人中文| 成年版毛片免费区| 日韩中文字幕欧美一区二区| 国产91精品成人一区二区三区| 给我免费播放毛片高清在线观看| 色综合欧美亚洲国产小说| 国产成人精品久久二区二区免费| 亚洲av五月六月丁香网| 亚洲电影在线观看av| 色播在线永久视频| 国产成人免费无遮挡视频| av视频免费观看在线观看| 成人18禁在线播放| 99精品久久久久人妻精品| 青草久久国产| 久久亚洲真实| 久久中文字幕一级| 黄色视频不卡| 国产私拍福利视频在线观看| 午夜福利欧美成人| 精品人妻1区二区| 午夜免费成人在线视频| 精品国产亚洲在线| 在线观看免费视频日本深夜| 999精品在线视频| 男女下面进入的视频免费午夜 | 亚洲专区国产一区二区| 一级a爱片免费观看的视频| 国产精品日韩av在线免费观看 | 少妇 在线观看| 亚洲美女黄片视频| 欧美激情极品国产一区二区三区| 亚洲五月天丁香| 色综合欧美亚洲国产小说| 色播在线永久视频| 亚洲全国av大片| 老汉色av国产亚洲站长工具| 老鸭窝网址在线观看| 久久久久久亚洲精品国产蜜桃av| 两个人看的免费小视频| 美女国产高潮福利片在线看| 乱人伦中国视频| 19禁男女啪啪无遮挡网站| 一本久久中文字幕| 国产精品久久电影中文字幕| 欧美绝顶高潮抽搐喷水| 亚洲精品在线观看二区| 色综合站精品国产| 欧美日韩一级在线毛片| 日韩欧美国产在线观看| 女性被躁到高潮视频| 国产精品影院久久| АⅤ资源中文在线天堂| 在线观看免费日韩欧美大片| 成人18禁在线播放| 免费无遮挡裸体视频| 国产男靠女视频免费网站| 老汉色av国产亚洲站长工具| 嫁个100分男人电影在线观看| 人人澡人人妻人| 老熟妇仑乱视频hdxx| 午夜福利,免费看| 久久久久久久精品吃奶| 精品无人区乱码1区二区| 久久久久久久久免费视频了| 亚洲va日本ⅴa欧美va伊人久久| 欧美日本亚洲视频在线播放| or卡值多少钱| 可以在线观看的亚洲视频| 黄片播放在线免费| 亚洲人成网站在线播放欧美日韩| 久久精品aⅴ一区二区三区四区| 亚洲黑人精品在线| 老司机福利观看| 成人永久免费在线观看视频| 波多野结衣高清无吗| 亚洲熟妇中文字幕五十中出| www.www免费av| 国内久久婷婷六月综合欲色啪| 老熟妇乱子伦视频在线观看| 日韩精品免费视频一区二区三区| 两个人视频免费观看高清| 欧美一级毛片孕妇| 岛国在线观看网站| 国产不卡一卡二| 欧美成人性av电影在线观看| 夜夜夜夜夜久久久久| 成人精品一区二区免费| 亚洲专区中文字幕在线| 久久中文看片网| 中国美女看黄片| 国产人伦9x9x在线观看| 国产视频一区二区在线看| 宅男免费午夜| 亚洲五月天丁香| 在线播放国产精品三级| 亚洲三区欧美一区| 亚洲成人国产一区在线观看| 18美女黄网站色大片免费观看| 桃色一区二区三区在线观看| 久久精品国产综合久久久| 91字幕亚洲| 叶爱在线成人免费视频播放| 欧美日韩一级在线毛片| 久久人妻av系列| 在线十欧美十亚洲十日本专区| 国产男靠女视频免费网站| 精品久久久久久久毛片微露脸| 欧美日韩福利视频一区二区| 亚洲色图综合在线观看| 久久久久久人人人人人| 一二三四社区在线视频社区8| 男人操女人黄网站| 久久青草综合色| 国产精品综合久久久久久久免费 | 搡老妇女老女人老熟妇| 性欧美人与动物交配| 国产成+人综合+亚洲专区| 大型黄色视频在线免费观看| 色综合站精品国产| 97超级碰碰碰精品色视频在线观看| 久久精品亚洲精品国产色婷小说| 国产男靠女视频免费网站| 久久中文字幕人妻熟女| 日本三级黄在线观看| 香蕉国产在线看| 久久久久久亚洲精品国产蜜桃av| 99国产精品一区二区三区| 美女高潮喷水抽搐中文字幕| 国产精品久久久人人做人人爽| 午夜免费激情av| 欧美日本视频| 91麻豆精品激情在线观看国产| 男人的好看免费观看在线视频 | 国产xxxxx性猛交| 青草久久国产| 欧美日韩瑟瑟在线播放| 人人妻人人爽人人添夜夜欢视频| 欧美中文日本在线观看视频| 国产成人欧美| 欧美成人性av电影在线观看| 看黄色毛片网站| 欧美激情 高清一区二区三区| 国产麻豆69| 亚洲国产高清在线一区二区三 | 美女免费视频网站| 国产av又大| 热re99久久国产66热| 日韩大尺度精品在线看网址 | 久久影院123| 欧美不卡视频在线免费观看 | 欧美另类亚洲清纯唯美| 欧美激情久久久久久爽电影 | 校园春色视频在线观看| 国产精品98久久久久久宅男小说| 亚洲男人天堂网一区| 国产熟女午夜一区二区三区| 丁香六月欧美| 女人高潮潮喷娇喘18禁视频| 亚洲一码二码三码区别大吗| 天堂影院成人在线观看| 国产亚洲精品久久久久久毛片| 日韩欧美一区二区三区在线观看| 十八禁人妻一区二区| 日日夜夜操网爽| 国产精品久久久av美女十八| 日本 欧美在线| 免费一级毛片在线播放高清视频 | 一区在线观看完整版| 可以在线观看毛片的网站| 黑人巨大精品欧美一区二区蜜桃| 久久人妻熟女aⅴ| 亚洲精品国产一区二区精华液| 少妇 在线观看| 免费高清视频大片| 极品人妻少妇av视频| 欧美激情久久久久久爽电影 | 国产精品永久免费网站| 中文亚洲av片在线观看爽| 久久香蕉国产精品| 在线av久久热| 一级a爱视频在线免费观看| 精品乱码久久久久久99久播| 久9热在线精品视频| 国产精品国产高清国产av| 丰满的人妻完整版| 99香蕉大伊视频| 一本大道久久a久久精品| 免费高清视频大片| 99久久精品国产亚洲精品| 色老头精品视频在线观看| 久久精品国产清高在天天线| 欧美日韩福利视频一区二区| 咕卡用的链子| 亚洲视频免费观看视频| 国产精品美女特级片免费视频播放器 | 国产麻豆成人av免费视频| 亚洲午夜精品一区,二区,三区| 国产蜜桃级精品一区二区三区| 在线观看日韩欧美| 一级毛片高清免费大全| 精品国产一区二区三区四区第35| 两性夫妻黄色片| 久久精品亚洲精品国产色婷小说| 国产91精品成人一区二区三区| 久久久精品国产亚洲av高清涩受| 又黄又爽又免费观看的视频| 亚洲精品粉嫩美女一区| 午夜福利成人在线免费观看| 999久久久国产精品视频| 69av精品久久久久久| 久久久久久久久免费视频了| 欧美日本亚洲视频在线播放| 日韩高清综合在线| 亚洲av成人一区二区三| 51午夜福利影视在线观看| 成人18禁高潮啪啪吃奶动态图| 日本五十路高清| www.www免费av| 国产成+人综合+亚洲专区| 精品乱码久久久久久99久播| 国产亚洲欧美98| 中文亚洲av片在线观看爽| 欧美日韩乱码在线| 黑人欧美特级aaaaaa片| 成人三级黄色视频| 精品欧美国产一区二区三| 欧美日韩瑟瑟在线播放| 女生性感内裤真人,穿戴方法视频| 亚洲男人的天堂狠狠| 日本免费一区二区三区高清不卡 | 男男h啪啪无遮挡| 丰满的人妻完整版| 99久久综合精品五月天人人| 亚洲精品在线美女| 高清黄色对白视频在线免费看| 怎么达到女性高潮| 午夜福利欧美成人| 国产麻豆69| 动漫黄色视频在线观看| 亚洲国产欧美一区二区综合| 色综合婷婷激情| 精品乱码久久久久久99久播| 性欧美人与动物交配| 女人被躁到高潮嗷嗷叫费观| 最近最新免费中文字幕在线| 亚洲中文日韩欧美视频| 精品人妻在线不人妻| 国产麻豆69| 999久久久精品免费观看国产| 国产成人精品无人区| 91精品国产国语对白视频| 人人妻,人人澡人人爽秒播| 一级,二级,三级黄色视频| 精品国产国语对白av| 美女高潮喷水抽搐中文字幕| 成人三级做爰电影| 91成人精品电影| 19禁男女啪啪无遮挡网站| 亚洲五月天丁香| bbb黄色大片| 成人精品一区二区免费| 神马国产精品三级电影在线观看 | 国产1区2区3区精品| 国产高清激情床上av| 日本撒尿小便嘘嘘汇集6| 亚洲精品一卡2卡三卡4卡5卡| 免费看美女性在线毛片视频| 窝窝影院91人妻| 岛国视频午夜一区免费看| 欧美国产日韩亚洲一区| 无遮挡黄片免费观看| 久99久视频精品免费| 亚洲欧美激情在线| 亚洲av第一区精品v没综合| 免费一级毛片在线播放高清视频 | 多毛熟女@视频| 午夜免费成人在线视频| 久久九九热精品免费| 激情在线观看视频在线高清| 亚洲狠狠婷婷综合久久图片| 欧美大码av| 亚洲国产看品久久| 97超级碰碰碰精品色视频在线观看| 不卡一级毛片| 午夜免费激情av| 九色亚洲精品在线播放| 免费看美女性在线毛片视频| 啦啦啦韩国在线观看视频| 日韩 欧美 亚洲 中文字幕| 十分钟在线观看高清视频www| 又紧又爽又黄一区二区| 国产高清有码在线观看视频 | 欧美在线黄色| 99久久精品国产亚洲精品| 久久久久久人人人人人| 成年人黄色毛片网站| 一边摸一边抽搐一进一出视频| 国产精品日韩av在线免费观看 | 国产精品,欧美在线| 色av中文字幕| 久久人人精品亚洲av| 女警被强在线播放| 老司机靠b影院| 国产色视频综合| 亚洲欧美激情在线| 1024视频免费在线观看| 熟妇人妻久久中文字幕3abv| 久久久久久久午夜电影| 成人欧美大片| 欧美黑人欧美精品刺激| 精品午夜福利视频在线观看一区| 日本五十路高清| 国产麻豆成人av免费视频| 黄色 视频免费看| 给我免费播放毛片高清在线观看| 欧美不卡视频在线免费观看 | 日韩精品中文字幕看吧| 18禁美女被吸乳视频| 少妇熟女aⅴ在线视频| 亚洲av熟女| 日韩精品中文字幕看吧| 亚洲欧美一区二区三区黑人| 99国产精品99久久久久| 90打野战视频偷拍视频| 中文字幕久久专区| 欧美激情 高清一区二区三区| svipshipincom国产片| 久久精品国产亚洲av香蕉五月| 国产激情久久老熟女| 亚洲国产精品sss在线观看| 国产亚洲欧美98| 黑人巨大精品欧美一区二区蜜桃| 欧美日韩一级在线毛片| 色哟哟哟哟哟哟| 成年人黄色毛片网站| 黄网站色视频无遮挡免费观看| 久久久久九九精品影院| 欧美日韩瑟瑟在线播放| 黄频高清免费视频| 免费观看精品视频网站| 长腿黑丝高跟| 夜夜躁狠狠躁天天躁| 亚洲第一青青草原| 午夜成年电影在线免费观看| 99re在线观看精品视频| 精品午夜福利视频在线观看一区| 无遮挡黄片免费观看| 免费不卡黄色视频| 国产精品久久久久久亚洲av鲁大| 午夜免费激情av| 亚洲欧美激情在线| 这个男人来自地球电影免费观看| 黄色成人免费大全| 亚洲国产欧美一区二区综合| 亚洲av五月六月丁香网| 久久久久久久久久久久大奶| 欧美日韩瑟瑟在线播放| 狠狠狠狠99中文字幕| 咕卡用的链子| 欧美日韩亚洲综合一区二区三区_| 咕卡用的链子| 大陆偷拍与自拍| 色播在线永久视频| 国产成人精品在线电影| 看黄色毛片网站| 嫩草影院精品99| 亚洲国产欧美网| 久久久久久大精品| 中文字幕高清在线视频| 免费高清在线观看日韩| 91九色精品人成在线观看| 午夜亚洲福利在线播放| 在线十欧美十亚洲十日本专区| 日韩av在线大香蕉| 久热爱精品视频在线9| 亚洲五月婷婷丁香| 身体一侧抽搐| 99香蕉大伊视频| 国产亚洲精品第一综合不卡| 亚洲欧美精品综合久久99| 亚洲国产看品久久| 成人18禁在线播放| 国产私拍福利视频在线观看| 亚洲在线自拍视频| 久久香蕉国产精品| 久久精品国产综合久久久| 搡老妇女老女人老熟妇| 曰老女人黄片| 午夜免费激情av| 色哟哟哟哟哟哟| 国产成人一区二区三区免费视频网站| 黑人巨大精品欧美一区二区蜜桃| 国产区一区二久久| 美女大奶头视频| 欧美国产日韩亚洲一区| 久久中文看片网| 日本三级黄在线观看| 久久国产乱子伦精品免费另类| 国产国语露脸激情在线看| 在线观看66精品国产| 男女之事视频高清在线观看| 91精品国产国语对白视频| 亚洲,欧美精品.| 丰满人妻熟妇乱又伦精品不卡| 欧美av亚洲av综合av国产av| 一进一出抽搐动态| 激情视频va一区二区三区| 欧美在线一区亚洲| 咕卡用的链子| 99精品欧美一区二区三区四区| 欧美丝袜亚洲另类 | 午夜免费鲁丝| 一a级毛片在线观看| aaaaa片日本免费| 亚洲成人久久性| 午夜福利在线观看吧| 亚洲va日本ⅴa欧美va伊人久久| 亚洲av电影在线进入| 高潮久久久久久久久久久不卡| 一进一出好大好爽视频| 欧美中文综合在线视频| 男女午夜视频在线观看| 精品熟女少妇八av免费久了| 亚洲 国产 在线| 性欧美人与动物交配| 久久精品国产亚洲av香蕉五月| 高潮久久久久久久久久久不卡| 成在线人永久免费视频| 色老头精品视频在线观看| 免费搜索国产男女视频|