WO2020169043A1 - 一种密集人群计数的方法、装置、设备以及存储介质 - Google Patents
一种密集人群计数的方法、装置、设备以及存储介质 Download PDFInfo
- Publication number
- WO2020169043A1 WO2020169043A1 PCT/CN2020/075795 CN2020075795W WO2020169043A1 WO 2020169043 A1 WO2020169043 A1 WO 2020169043A1 CN 2020075795 W CN2020075795 W CN 2020075795W WO 2020169043 A1 WO2020169043 A1 WO 2020169043A1
- Authority
- WO
- WIPO (PCT)
- Prior art keywords
- column
- neural network
- image
- convolutional
- convolutional neural
- Prior art date
- Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
- Ceased
Links
Images
Classifications
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06N—COMPUTING ARRANGEMENTS BASED ON SPECIFIC COMPUTATIONAL MODELS
- G06N3/00—Computing arrangements based on biological models
- G06N3/02—Neural networks
- G06N3/08—Learning methods
- G06N3/09—Supervised learning
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06N—COMPUTING ARRANGEMENTS BASED ON SPECIFIC COMPUTATIONAL MODELS
- G06N3/00—Computing arrangements based on biological models
- G06N3/02—Neural networks
- G06N3/04—Architecture, e.g. interconnection topology
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06N—COMPUTING ARRANGEMENTS BASED ON SPECIFIC COMPUTATIONAL MODELS
- G06N3/00—Computing arrangements based on biological models
- G06N3/02—Neural networks
- G06N3/04—Architecture, e.g. interconnection topology
- G06N3/0464—Convolutional networks [CNN, ConvNet]
-
- Y—GENERAL TAGGING OF NEW TECHNOLOGICAL DEVELOPMENTS; GENERAL TAGGING OF CROSS-SECTIONAL TECHNOLOGIES SPANNING OVER SEVERAL SECTIONS OF THE IPC; TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
- Y02—TECHNOLOGIES OR APPLICATIONS FOR MITIGATION OR ADAPTATION AGAINST CLIMATE CHANGE
- Y02T—CLIMATE CHANGE MITIGATION TECHNOLOGIES RELATED TO TRANSPORTATION
- Y02T10/00—Road transport of goods or passengers
- Y02T10/10—Internal combustion engine [ICE] based vehicles
- Y02T10/40—Engine management systems
Definitions
- the present invention relates to the field of computer vision technology, in particular to a method, device, equipment and computer-readable storage medium for counting dense crowds.
- the mainstream estimation method adopts the idea of density map, which is to design a neural network, the input of the network is the original image, and the output is the density map of the crowd.
- the first step of this kind of method for image processing of dense crowds is to pass a Gaussian filter to obtain the density map corresponding to the image according to the ground-truth of the image.
- Zhang et al. proposed a multi-column convolutional neural network in "Single-Image Crowd Counting via Multi-Column Convolutional Neural Network".
- the network is composed of three parallel convolutional neural networks.
- the present invention provides a dense crowd counting method, including: inputting the image to be tested into a pre-trained target multi-scale and multi-column convolutional neural network model; wherein the target multi-scale and multi-column
- the convolutional neural network model includes multiple columns of parallel convolutional neural networks, and each column of convolutional neural networks includes multiple convolutional layers with different sizes and numbers of convolution kernels; the images to be tested are input to each In the column convolutional neural network, each convolutional layer in each column of the convolutional neural network is used to process the image to be tested, and the feature map output by the preselected convolutional layer in each column of the convolutional neural network is processed Fusion, so as to separately obtain the estimated density map output by each column of the convolutional neural network; after fusing the estimated density map output by each column of the convolutional neural network, the target estimated density map of the image to be tested is obtained; According to the target estimated density map of the image to be tested, the number of people in
- obtaining a density map of each image in the crowd image data set to construct a target training set includes:
- the training a multi-scale and multi-column convolutional neural network model using the target training set includes:
- each column of the convolutional neural network in the multi-scale and multi-column convolutional neural network model is parallel to each other, and the convolutional neural network of each column has the same network structure except for the size and number of convolution kernels;
- each column of the convolutional neural network of the multi-scale and multi-column convolutional neural network model includes:
- the size of the convolution kernels of the first convolutional layer and other convolutional layers are different, and the second convolutional layer, the third convolutional layer, the fourth convolutional layer, and the fifth convolutional layer
- the size of the convolution kernel is the same as that of the sixth convolutional layer, and the convolutional layers of the third convolutional layer, the fourth convolutional layer, the fifth convolutional layer and the sixth convolutional layer
- the number of product cores is the same;
- the pooling layer selection area between the first convolutional layer, the second convolutional layer, the third convolutional layer, and the fourth convolutional layer is 2*2, and the maximum step size is 2 Pooling
- the pooling layer between the fourth convolutional layer and the fifth convolutional layer selects a 3*3 area with a maximum pooling step of 1 in order to maintain the output feature map of the fourth convolutional layer and The size of the feature map after the output feature pooling of the fourth convolutional layer remains unchanged;
- the activation function of each convolutional layer adopts the ReLU function
- the output module includes:
- the present invention also provides a device for counting dense crowds, including:
- the present invention also provides a computer-readable storage medium having a computer program stored on the computer-readable storage medium, and when the computer program is executed by a processor, the steps of the above-mentioned dense crowd counting method are realized.
- the dense crowd counting method provided by the present invention uses a pre-trained target multi-scale multi-column convolutional neural network model to predict the test image.
- the target multi-scale multi-column convolutional neural network model includes multiple parallel convolutional neural networks. After inputting the image to be tested into the target multi-scale and multi-column convolutional neural network model, inputting the image to be tested into the convolutional neural network of each column respectively.
- Each column of the convolutional neural network includes multiple convolutional layers with different sizes and numbers of convolution kernels, and different convolutional layers in each column of the convolutional neural network are used to calculate the image to be tested,
- the feature maps output by the convolutional layer preselected in each column of the convolutional neural network are merged to extract features of different scales of the image to be tested; the previous convolutional neural network in the prior art is solved
- Some features extracted by the multi-layer may be discarded in the subsequent process, resulting in insufficient features, which affects the accuracy of the test image prediction results.
- the method provided by the present invention introduces the idea of multi-scale, which can combine the features extracted from the previous convolutional layer with the features extracted from the subsequent convolutional layer, that is, to combine features with different levels of detail to extract the features. It compensates for some of the features that may be discarded after pooling in the feature map obtained by the convolution layer in front of the traditional neural network, and improves the performance of the dense crowd counting neural network and the accuracy of the dense crowd image prediction result.
- Figure 2 is a structure diagram of a multi-scale and multi-column convolutional neural network provided by the present invention
- FIG. 3 is a flowchart of a second specific embodiment of the method for counting dense crowds provided by the present invention.
- Fig. 4 is a structural block diagram of a device for counting dense crowds according to an embodiment of the present invention.
- FIG. 1 is a flowchart of a first specific embodiment of a method for counting dense crowds provided by the present invention. the specific operation steps are as follows:
- a Gaussian filter is first used to analyze the pre-created crowd image data set After filtering, the acquired image data set population density maps M i X i of each image, to construct the training set target
- X-i is the i-th groups of image data sets of images
- size is m * n
- Y i is the i-images corresponding to the head coordinate point view of size m * n
- N is the image groups The total number of images in the dataset.
- the multi-scale multi-column convolutional neural network may include a multi-column convolutional neural network.
- a three-column convolutional neural network is taken as an example.
- Each column of the convolutional neural network includes a first convolution layer, a second convolution layer, a third convolution layer, a fourth convolution layer, a fifth convolution layer, a deconvolution layer, a sixth convolution layer, and The seventh convolutional layer.
- the size of the convolution kernels of the first convolutional layer and other convolutional layers are different, and the second convolutional layer, the third convolutional layer, the fourth convolutional layer, and the fifth convolutional layer
- the size of the convolution kernel is the same as that of the sixth convolutional layer, and the convolutional layers of the third convolutional layer, the fourth convolutional layer, the fifth convolutional layer and the sixth convolutional layer
- the number of product cores is the same.
- the activation function of each convolutional layer adopts the ReLU function.
- the pooling layer selection area between the first convolutional layer, the second convolutional layer, the third convolutional layer, and the fourth convolutional layer is 2*2, and the maximum step size is 2 Pooling; the pooling layer between the fourth convolutional layer and the fifth convolutional layer selects a 3*3 area, and the maximum pooling with a step length of 1, so as to maintain the output of the fourth convolutional layer
- the size of the feature map and the feature map after the output feature pooling of the fourth convolutional layer remains unchanged.
- the feature map output by the fourth convolution layer and the feature map output by the fifth convolution layer are connected in series in the number of channels and then input to the deconvolution layer.
- the feature map output by the deconvolution layer and the The feature map output by the third convolutional layer is connected in series on the number of channels and then input to the sixth convolutional layer.
- the eighth convolutional layer outputs the estimated density map of the image to be tested as the convolutional neural network for each column The output of the model.
- the convolutional neural network After concatenating the estimated density map of the current crowd image output by each column of the convolutional neural network on the number of channels, it passes through a total convolutional layer with a convolution kernel size of 1*1, and the total convolution The feature map output by the layer is mapped to the target estimated density map of the current crowd image, so that the target estimated density map of the current crowd image is used as the network output of the multi-scale and multi-column convolutional neural network model.
- Step S102 Input the image to be tested into each column of the convolutional neural network, use each convolutional layer in each column of the convolutional neural network to process the image to be tested, and The feature maps output by the preselected convolutional layers in the column convolutional neural network are fused, so as to obtain the estimated density maps output by each column of the convolutional neural network respectively;
- the convolution layer in each column of the convolution application network processes the data to be tested.
- the deconvolution layer is used to up-sample the previous feature maps, and then the feature maps obtained by the third convolution layer are connected in series with the number of channels.
- Step S103 After fusing the estimated density maps output by each column of the convolutional neural network, the target estimated density map of the image to be tested is obtained;
- Step S104 According to the target estimated density map of the image to be tested, the number of people in the image to be tested is calculated.
- Step 301 After filtering the crowd images in the second part of the Shanghai tech data set by using a Gaussian filter, obtain a degree map of the crowd images in the second part to construct a target training set;
- the Shanghai tech data set contains 1,198 annotated images and 330165 head center annotations; the Shanghai tech data set is divided into two parts, of which, the first part includes 482 images randomly crawled from the Internet, of which 300 For training, 182 images were used for testing; the second part included 716 images taken on the streets of Shanghai, 400 of which were used for training and 316 were used for testing.
- Step 303 Input the image T to be tested into the target multi-scale and multi-column convolutional neural network model, where the target multi-scale and multi-column convolutional neural network model includes multiple columns of parallel convolutional neural networks, each column
- the convolutional neural network includes multiple convolutional layers with different sizes and numbers of convolution kernels;
- Step S305 Calculate the estimated density map The sum of all pixel values in the image to get the number of people in the image to be tested
- the multi-scale and multi-column convolutional neural network model provided in this embodiment and the multi-column convolutional neural network model are compared on the same data set for crowd counting. It can be obtained from Table 1 that the average complete error (MAE) and mean square error (MSE) of the counting result of the network model proposed in this embodiment are both smaller than the counting result of the network model in the prior art, and better performance is obtained.
- MAE average complete error
- MSE mean square error
- FIG. 4 is a block diagram of a device for counting dense crowds according to an embodiment of the present invention.
- Specific devices may include:
- the processing module 200 is configured to input the image to be tested into each column of the convolutional neural network, use each convolutional layer in each column of the convolutional neural network to process the image to be tested, and Fusing the feature maps output by the preselected convolutional layers in each column of the convolutional neural network, so as to obtain the estimated density maps output by the convolutional neural network of each column respectively;
- the output module 300 is configured to fuse the estimated density map output by each column of the convolutional neural network to obtain the target estimated density map of the image to be tested;
- the calculation module 400 is configured to calculate the number of people in the image to be tested according to the target estimated density map of the image to be tested.
- the device for counting dense crowds of this embodiment is used to implement the aforementioned method for counting dense crowds. Therefore, the specific implementation of the device for counting dense crowds can be seen in the foregoing embodiment of the method for counting dense crowds, for example, the input module 100 , The processing module 200, the output module 300, and the calculation module 400 are respectively used to implement steps S101, S102, S103, and S104 in the above-mentioned dense crowd counting method. Therefore, for the specific implementation, please refer to the description of the respective parts of the embodiment. I will not repeat them here.
- Specific embodiments of the present invention also provide a device for counting crowds of people, including: a memory for storing a computer program; a processor for implementing the steps of the method for counting a crowd of people when executing the computer program.
- a specific embodiment of the present invention also provides a computer-readable storage medium having a computer program stored on the computer-readable storage medium, and when the computer program is executed by a processor, the steps of the above-mentioned dense crowd counting method are realized.
- the steps of the method or algorithm described in the embodiments disclosed in this document can be directly implemented by hardware, a software module executed by a processor, or a combination of the two.
- the software module can be placed in random access memory (RAM), internal memory, read-only memory (ROM), electrically programmable ROM, electrically erasable programmable ROM, registers, hard disks, removable disks, CD-ROMs, or all areas in the technical field. Any other known storage medium.
Landscapes
- Engineering & Computer Science (AREA)
- Theoretical Computer Science (AREA)
- Physics & Mathematics (AREA)
- Data Mining & Analysis (AREA)
- General Health & Medical Sciences (AREA)
- Biomedical Technology (AREA)
- Biophysics (AREA)
- Computational Linguistics (AREA)
- Life Sciences & Earth Sciences (AREA)
- Evolutionary Computation (AREA)
- Artificial Intelligence (AREA)
- Molecular Biology (AREA)
- Computing Systems (AREA)
- General Engineering & Computer Science (AREA)
- General Physics & Mathematics (AREA)
- Mathematical Physics (AREA)
- Software Systems (AREA)
- Health & Medical Sciences (AREA)
- Image Analysis (AREA)
Abstract
一种密集人群计数的方法、装置、设备及计算机可读存储介质,包括:将待测试图像输入包括多列平行的卷积神经网络的目标多尺度多列卷积神经网络模型中;每列卷积神经网络中包括多个卷积核大小和个数不同的卷积层。利用所述每列卷积神经网络中各个卷积层对待测试图像进行处理,并将所述每列卷积神经网络中预选卷积层输出的特征图进行融合,以便得到所述每列卷积神经网络输出的估计密度图;将所述每列卷积神经网络输出的估计密度图进行融合后,得到待测试图像的目标估计密度图;依据所述目标估计密度图,计算得到待测试图像中的人数。所提供的方法、装置、设备及计算机可读存储介质,提高了密集人群图像预测结果的准确性。
Description
本申请要求于2019年2月21日提交中国专利局、申请号为201910129612.3、发明名称为“一种密集人群计数的方法、装置、设备以及存储介质”的中国专利申请的优先权,其全部内容通过引用结合在本申请中。
本发明涉及计算机视觉技术领域,特别是涉及一种密集人群计数的方法、装置、设备以及计算机可读存储介质。
为了人群控制和公众安全,准确地估计来自图像或视频的人群已经成为计算机视觉技术越来越重要的应用。计算机视觉中的人群计数任务是自动计算图像或视频中的人数。为了在诸如公众集会和体育赛事等许多场景中帮助控制人群和公共安全,需要准确的人群计数。
传统的密集人群计数方法包括两种:基于检测的方法和基于回归的方法。基于检测的方法将人群视为一组检测到的个体实体。但是,行人经常被密集的人群遮挡,这在静止图像中估计人群时尤其具有挑战性。基于回归的方法对从人群图像中提取的各种特征的标量值(如人数)或密度图进行回归。它们基本上有两个步骤:首先,从人群图像中提取有效特征;第二,利用各种回归函数来估计人群数量。但是,通过回归进行的人群计数容易受到视角和尺度的急剧变化的影响,而这种变化通常存在于人群图像中。
与此同时,深度学习已经被成功地应用在密集人群图像的估计中。主流的估计方法采用密度图的思想,即设计一个神经网络,网络的输入为原始图像,而输出为人群的密度图。这类方法对密集人群图像处理的第一步,就是要通过一个高斯滤波器,根据图像的真实值ground-truth得到图像对应的密度图。Zhang等人在“Single-Image Crowd Counting via Multi-Column Convolutional Neural Network”中提出了一个多列卷积神经网络。该网络由 三列平行的卷积神经网络组成,每一列使用感受野大小不同的卷积核,分别对应尺度大小不一样的人头;每一列除了卷积核大小和数量,其他构成都相同;采用大小为的最大池化和ReLU激活函数;最后将三列的特征图在通道数上串联起来,用一个的卷积核将其映射到估计的密度图输出。然而多列卷积神经网络结构偏简单,层数较少,前面的卷积层提取到的一些特征在后续过程中可能被丢弃且提取到的特征不够而影响到最终的结果。
综上所述可以看出,如何提高密集人群图像预测结果的准确性是目前有待解决的问题。
发明内容
本发明的目的是提供一种密集人群计数的方法、装置、设备以及计算机可读存储介质,以解决现有技术中提供的密集人群计数的神经网络性能较差的问题。
为解决上述技术问题,本发明提供一种密集人群计数的方法,包括:将待测试图像输入至预先完成训练的目标多尺度多列卷积神经网络模型中;其中,所述目标多尺度多列卷积神经网络模型包括多列平行的卷积神经网络,每列卷积神经网络中包括多个卷积核大小和个数不同的卷积层;将所述待测试图像分别输入至所述每列卷积神经网络中,利用所述每列卷积神经网络中各个卷积层对所述待测试图像进行处理,并将所述每列卷积神经网络中预选卷积层输出的特征图进行融合,以便于分别得到所述每列卷积神经网络输出的估计密度图;将所述每列卷积神经网络输出的估计密度图进行融合后,得到所述待测试图像的目标估计密度图;依据所述待测试图像的目标估计密度图,计算得到所述待测试图像中的人数。
优选地,所述将待测试图像输入至预先完成训练的目标多尺度多列卷积神经网络模型中前包括:
利用高斯滤波器对预先创建的人群图像数据集进行滤波处理后,获取所述人群图像数据集中每幅图像的密度图,从而构建目标训练集;
采用所述目标训练集对多尺度多列卷积神经网络模型进行训练,得到完成训练后的目标多尺度多列卷积神经网络模型。
优选地,所述利用高斯滤波器对预先创建的人群图像数据集进行滤波处理后,获取所述人群图像数据集中每幅图像的密度图,从而构建目标训练集包括:
优选地,所述采用所述目标训练集对多尺度多列卷积神经网络模型进行训练包括:
将所述目标训练集中的当前人群图像分别输入至所述多尺度多列卷积神经网络模型的每列卷积神经网络中;
其中,所述多尺度多列卷积神经网络模型中的每列卷积神经网络相互平行,所述每列卷积神经网络除卷积核大小和个数外,其他网络结构相同;
将所述每列卷积神经网络输出的所述当前人群图像的估计密度图在通道数上串联后,经过一个卷积核大小为1*1的总卷积层,并将所述总卷积层输出的特征图映射为所述当前人群图像的目标估计密度图,以便于将所述当前人群图像的目标估计密度图作为所述多尺度多列卷积神经网络模型的网络输出。
优选地,所述多尺度多列卷积神经网络模型的每列卷积神经网络包括:
第一卷积层、第二卷积层、第三卷积层、第四卷积层、第五卷积层、反卷积层、第六卷积层和第七卷积层;
其中,所述第一卷积层和其他卷积层的卷积核大小不同,所述第二卷积层、所述第三卷积层、所述第四卷积层、所述第五卷积层和所述第六卷积层的卷积核大小相同,所述第三卷积层、所述第四卷积层、所述第五卷积层和所述第六卷积层的卷积核的个数相同;
所述第一卷积层、所述第二卷积层、所述第三卷积层和所述第四个卷 积层之间的池化层选用区域2*2,步长为2的最大池化;
所述第四卷积层和所述第五卷积层之间的池化层选用3*3区域,步长为1的最大池化,以便于保持所述第四卷积层输出特征图和对所述第四卷积层输出特征池化后的特征图大小不变;
所述各个卷积层的激活函数采用ReLU函数;
所述第四卷积层输出的特征图和所述第五卷积层输出的特征图在通道数上串联后输入所述反卷积层,所述反卷积层输出的特征图和所述第三卷积层输出的特征图在通道数上串联后输入所述第六卷积层,所述第八卷积层输出所述待测试图像的估计密度图作为所述每列卷积神经网络模型的输出结果。
优选地,所述依据所述待测试图像的目标估计密度图,计算得到所述待测试图像中的人数包括:
本发明还提供了一种密集人群计数的装置,包括:
输入模块,用于将待测试图像输入至预先完成训练的目标多尺度多列卷积神经网络模型中;其中,所述目标多尺度多列卷积神经网络模型包括多列平行的卷积神经网络,每列卷积神经网络中包括多个卷积核大小和个数不同的卷积层;
处理模块,用于将所述待测试图像分别输入至所述每列卷积神经网络中,利用所述每列卷积神经网络中各个卷积层对所述待测试图像进行处理,并将所述每列卷积神经网络中预选卷积层输出的特征图进行融合,以便于分别得到所述每列卷积神经网络输出的估计密度图;
输出模块,用于将所述每列卷积神经网络输出的估计密度图进行融合后,得到所述待测试图像的目标估计密度图;
计算模块,用于依据所述待测试图像的目标估计密度图,计算得到所述待测试图像中的人数。
优选地,所述输出模块前包括:
训练模块,用于利用高斯滤波器对预先创建的人群图像数据集进行滤波处理后,获取所述人群图像数据集中每幅图像的密度图,从而构建目标训练集;
采用所述目标训练集对多尺度多列卷积神经网络模型进行训练,得到完成训练后的目标多尺度多列卷积神经网络模型。
本发明还提供了一种密集人群计数的设备,包括:
存储器,用于存储计算机程序;处理器,用于执行所述计算机程序时实现上述一种密集人群计数的方法的步骤。
本发明还提供了一种计算机可读存储介质,所述计算机可读存储介质上存储有计算机程序,所述计算机程序被处理器执行时实现上述一种密集人群计数的方法的步骤。
本发明所提供的密集人群计数的方法,利用预先完成训练的目标多尺度多列卷积神经网络模型对待测试图像进行预测。所述目标多尺度多列卷积神经网络模型包括多列平行的卷积神经网络。将所述待测试图像输入所述目标多尺度多列卷积神经网络模型后,将所述待测试图像分别输入所述每列卷积神经网络中。所述每列卷积神经网络中包括多个卷积核大小和个数不同的卷积层,分别利用所述每列卷积神经网络中的不同卷积层对所述待测试图像进行计算,并将所述每列卷积神经网络中预选的卷积层输出的特征图进行融合,提取到所述待测试图像的不同尺度的特征;解决了现有技术中的卷积神经网络中前面卷积层提取到的一些特征在后续过程中可能被丢弃导致提取到的特征不够从而影响了对待测试图像预测结果的准确性的问题。本发明所提供的方法,引入了多尺度的思想,可以将前面卷积层提取到的特征和后面卷积层提取到的特征结合起来,即将详细程度不同的特征结合起来进而提取特征,这就弥补了传统神经网络前面的卷积层得到的特征图经过池化可能被丢弃的一些特征,提高了密集人群计数的神经网络的性能以及密集人群图像预测结果的准确性。
为了更清楚的说明本发明实施例或现有技术的技术方案,下面将对实 施例或现有技术描述中所需要使用的附图作简单的介绍,显而易见地,下面描述中的附图仅仅是本发明的一些实施例,对于本领域普通技术人员来讲,在不付出创造性劳动的前提下,还可以根据这些附图获得其他的附图。
图1为本发明所提供的密集人群计数的方法的第一种具体实施例的流程图;
图2为本发明所提供的多尺度多列卷积神经网络结构图;
图3为本发明所提供的密集人群计数的方法的第二种具体实施例的流程图;
图4为本发明实施例提供的一种密集人群计数的装置的结构框图。
本发明的核心是提供一种密集人群计数的方法、装置、设备以及计算机可读存储介质,提高了密集人群计数的神经网络的性能以及密集人群图像预测结果的准确性。
为了使本技术领域的人员更好地理解本发明方案,下面结合附图和具体实施方式对本发明作进一步的详细说明。显然,所描述的实施例仅仅是本发明一部分实施例,而不是全部的实施例。基于本发明中的实施例,本领域普通技术人员在没有做出创造性劳动前提下所获得的所有其他实施例,都属于本发明保护的范围。
请参考图1,图1为本发明所提供的密集人群计数的方法的第一种具体实施例的流程图;具体操作步骤如下:
步骤S101:将待测试图像输入至预先完成训练的目标多尺度多列卷积神经网络模型中,其中,所述目标多尺度多列卷积神经网络模型包括多列平行的卷积神经网络,每列卷积神经网络中包括多个卷积核大小和个数不同的卷积层;
将待测试图像输入至预先完成训练的目标多尺度多列卷积神经网络模型中前需要对多尺度多列卷积神经网络(SaMCNN)进行训练。
对所述多尺度多列卷积神经网络进行训练时,首先利用高斯滤波 器对预先创建的人群图像数据集
进行滤波处理后,获取所述人群图像数据集中每幅图像X
i的密度图M
i,从而构建目标训练集
其中,X
i为所述人群图像数据集第i张图像,大小为m*n;Y
i为所述第i张图像对应的人头坐标点图,大小为m*n,N为所述人群图像数据集中图像总数。采用所述目标训练集
对多尺度多列卷积神经网络模型进行训练,得到完成训练后的目标多尺度多列卷积神经网络模型。
如图2所示,所述多尺度多列卷积神经网络中可以包括多列卷积神经网络,在本实施例中以三列平行的卷积神经网络为例。所述每列卷积神经网络包括第一卷积层、第二卷积层、第三卷积层、第四卷积层、第五卷积层、反卷积层、第六卷积层和第七卷积层。其中,所述第一卷积层和其他卷积层的卷积核大小不同,所述第二卷积层、所述第三卷积层、所述第四卷积层、所述第五卷积层和所述第六卷积层的卷积核大小相同,所述第三卷积层、所述第四卷积层、所述第五卷积层和所述第六卷积层的卷积核的个数相同。所述各个卷积层的激活函数采用ReLU函数。
所述第一卷积层、所述第二卷积层、所述第三卷积层和所述第四个卷积层之间的池化层选用区域2*2,步长为2的最大池化;所述第四卷积层和所述第五卷积层之间的池化层选用3*3区域,步长为1的最大池化,以便于保持所述第四卷积层输出特征图和对所述第四卷积层输出特征池化后的特征图大小不变。
所述第四卷积层输出的特征图和所述第五卷积层输出的特征图在通道数上串联后输入所述反卷积层,所述反卷积层输出的特征图和所述第三卷积层输出的特征图在通道数上串联后输入所述第六卷积层,所述第八卷积层输出所述待测试图像的估计密度图作为所述每列卷积神经网络模型的输出结果。
将所述每列卷积神经网络输出的所述当前人群图像的估计密度图在通道数上串联后,经过一个卷积核大小为1*1的总卷积层,并将所述总卷积层输出的特征图映射为所述当前人群图像的目标估计密度图,以便于将所述 当前人群图像的目标估计密度图作为所述多尺度多列卷积神经网络模型的网络输出。
步骤S102:将所述待测试图像分别输入至所述每列卷积神经网络中,利用所述每列卷积神经网络中各个卷积层对所述待测试图像进行处理,并将所述每列卷积神经网络中预选卷积层输出的特征图进行融合,以便于分别得到所述每列卷积神经网络输出的估计密度图;
将所述待测试图像输入所述目标多尺度多列卷积神经网络模型中,并分别将所述待测试图像分别输入所述目标多尺度多列卷积神经网络模型的每列卷积神经网络中。所述每列卷积申请网络中的卷积层对所述待测试数据进行处理。利用所述每列卷积网络神经网络中的各个卷积层和池化层进行处理,将所述每列卷积申请网络的第四卷积层和第五卷积层之间选用3*3区域,步长为1的最大池化,来保持池化前后的特征图大小不变,便于将两次卷积之后的特征图在通道数上串联起来。在所述第五卷积层之后,使用反卷积层对之前的特征图进行上采样,进而和第三个卷积层得到的特征图在通道数上串联起来。
步骤S103:将所述每列卷积神经网络输出的估计密度图进行融合后,得到所述待测试图像的目标估计密度图;
步骤S104:依据所述待测试图像的目标估计密度图,计算得到所述待测试图像中的人数。
本实施例所提供的方法,利用多尺度多列卷积神经网络对待测试图像进行测试。所述多尺度多列卷积神经网络相对于多列卷积神经网络,增加了每列卷积神经网络的层数,并且引入了多尺度的思想,将前面卷积层提取到的特征图和后面卷积层提取到的特征图相结合;从而提高了密集人群计数的神经网络的性能以及密集人群图像预测结果的准确性。
基于上述实施例,在本实施例中,可以选择Shanghai tech数据集的第二部分作为人群图像数据集,利用所述人群图像数据集中第二部分图像的密级图对所述多尺度多列卷积神经网络模型进行训练。请参考图3,图3为本发明所提供的密集人群计数的方法的第二种具体实施例的流程图;具 体操作步骤如下:
步骤301:利用高斯滤波器对Shanghai tech数据集的第二部分的人群图像进行滤波处理后,获取所述第二部分的人群图像的度图,构建目标训练集;
在本实施例中可以选择Shanghai tech数据集的第二部分作为人群图像数据集
X
i为所述人群图像数据集第i张图像,大小为768*1024;Y
i为所述第i张图像对应的人头坐标点图,大小为768*1024,N为所述人群图像数据集中图像总数。
所述Shanghai tech数据集包含1198张标注的图像和330165个人头中心标注;所述Shanghai tech数据集被划分为两个部分,其中,第一部分包括482张随机从网上爬取的图像,其中300张用于训练,182张用于测试;第二部分包括716张在上海街头拍取的图像,其中400张用于训练,316张用于测试。
步骤302:采用所述目标训练集对多尺度多列卷积神经网络模型进行训练,得到完成训练后的目标多尺度多列卷积神经网络模型;
步骤303:将待测试图像T输入至所述目标多尺度多列卷积神经网络模型中,其中,所述目标多尺度多列卷积神经网络模型包括多列平行的卷积神经网络,每列卷积神经网络中包括多个卷积核大小和个数不同的卷积层;
将本实施例所提供的多尺度多列卷积神经网络模型与多列卷积神经网络模型在相同的数据集上做人群计数比较。从表1可以得到,本实施例提出的网络模型的计数结果的平均完全误差(MAE)和均方误差(MSE)都比现有技术中网络模型的计数结果小,获得了更好的性能。
表-1人群计数结果的对比
请参考图4,图4为本发明实施例提供的一种密集人群计数的装置的结构框图。具体装置可以包括:
输入模块100,用于将待测试图像输入至预先完成训练的目标多尺度多列卷积神经网络模型中;其中,所述目标多尺度多列卷积神经网络模型包括多列平行的卷积神经网络,每列卷积神经网络中包括多个卷积核大小和个数不同的卷积层;
处理模块200,用于将所述待测试图像分别输入至所述每列卷积神经网络中,利用所述每列卷积神经网络中各个卷积层对所述待测试图像进行处理,并将所述每列卷积神经网络中预选卷积层输出的特征图进行融合,以便于分别得到所述每列卷积神经网络输出的估计密度图;
输出模块300,用于将所述每列卷积神经网络输出的估计密度图进行融合后,得到所述待测试图像的目标估计密度图;
计算模块400,用于依据所述待测试图像的目标估计密度图,计算得到所述待测试图像中的人数。
本实施例的密集人群计数的装置用于实现前述的密集人群计数的方法,因此密集人群计数的装置中的具体实施方式可见前文中的密集人群计数的方法的实施例部分,例如,输入模块100,处理模块200,输出模块300,计算模块400,分别用于实现上述密集人群计数的方法中步骤S101,S102,S103和S104,所以,其具体实施方式可以参照相应的各个部分实施例的描述,在此不再赘述。
本发明具体实施例还提供了一种密集人群计数的设备,包括:存储器,用于存储计算机程序;处理器,用于执行所述计算机程序时实现上述一种密集人群计数的方法的步骤。
本发明具体实施例还提供了一种计算机可读存储介质,所述计算机可读存储介质上存储有计算机程序,所述计算机程序被处理器执行时实现上 述一种密集人群计数的方法的步骤。
本说明书中各个实施例采用递进的方式描述,每个实施例重点说明的都是与其它实施例的不同之处,各个实施例之间相同或相似部分互相参见即可。对于实施例公开的装置而言,由于其与实施例公开的方法相对应,所以描述的比较简单,相关之处参见方法部分说明即可。
专业人员还可以进一步意识到,结合本文中所公开的实施例描述的各示例的单元及算法步骤,能够以电子硬件、计算机软件或者二者的结合来实现,为了清楚地说明硬件和软件的可互换性,在上述说明中已经按照功能一般性地描述了各示例的组成及步骤。这些功能究竟以硬件还是软件方式来执行,取决于技术方案的特定应用和设计约束条件。专业技术人员可以对每个特定的应用来使用不同方法来实现所描述的功能,但是这种实现不应认为超出本发明的范围。
结合本文中所公开的实施例描述的方法或算法的步骤可以直接用硬件、处理器执行的软件模块,或者二者的结合来实施。软件模块可以置于随机存储器(RAM)、内存、只读存储器(ROM)、电可编程ROM、电可擦除可编程ROM、寄存器、硬盘、可移动磁盘、CD-ROM、或技术领域内所公知的任意其它形式的存储介质中。
以上对本发明所提供的密集人群计数的方法、装置、设备以及计算机可读存储介质进行了详细介绍。本文中应用了具体个例对本发明的原理及实施方式进行了阐述,以上实施例的说明只是用于帮助理解本发明的方法及其核心思想。应当指出,对于本技术领域的普通技术人员来说,在不脱离本发明原理的前提下,还可以对本发明进行若干改进和修饰,这些改进和修饰也落入本发明权利要求的保护范围内。
Claims (10)
- 一种密集人群计数的方法,其特征在于,包括:将待测试图像输入至预先完成训练的目标多尺度多列卷积神经网络模型中;其中,所述目标多尺度多列卷积神经网络模型包括多列平行的卷积神经网络,每列卷积神经网络中包括多个卷积核大小和个数不同的卷积层;将所述待测试图像分别输入至所述每列卷积神经网络中,利用所述每列卷积神经网络中各个卷积层对所述待测试图像进行处理,并将所述每列卷积神经网络中预选卷积层输出的特征图进行融合,以便于分别得到所述每列卷积神经网络输出的估计密度图;将所述每列卷积神经网络输出的估计密度图进行融合后,得到所述待测试图像的目标估计密度图;依据所述待测试图像的目标估计密度图,计算得到所述待测试图像中的人数。
- 如权利要求1所述的方法,其特征在于,所述将待测试图像输入至预先完成训练的目标多尺度多列卷积神经网络模型中前包括:利用高斯滤波器对预先创建的人群图像数据集进行滤波处理后,获取所述人群图像数据集中每幅图像的密度图,从而构建目标训练集;采用所述目标训练集对多尺度多列卷积神经网络模型进行训练,得到完成训练后的目标多尺度多列卷积神经网络模型。
- 如权利要求2所述的方法,其特征在于,所述采用所述目标训练集对多尺度多列卷积神经网络模型进行训练包括:将所述目标训练集中的当前人群图像分别输入至所述多尺度多列卷积神经网络模型的每列卷积神经网络中;其中,所述多尺度多列卷积神经网络模型中的每列卷积神经网络相互平行,所述每列卷积神经网络除卷积核大小和个数外,其他网络结构相同;将所述每列卷积神经网络输出的所述当前人群图像的估计密度图在通道数上串联后,经过一个卷积核大小为1*1的总卷积层,并将所述总卷积层输出的特征图映射为所述当前人群图像的目标估计密度图,以便于将所述当前人群图像的目标估计密度图作为所述多尺度多列卷积神经网络模型的网络输出。
- 如权利要求4所述的方法,其特征在于,所述多尺度多列卷积神经网络模型的每列卷积神经网络包括:第一卷积层、第二卷积层、第三卷积层、第四卷积层、第五卷积层、反卷积层、第六卷积层和第七卷积层;其中,所述第一卷积层和其他卷积层的卷积核大小不同,所述第二卷积层、所述第三卷积层、所述第四卷积层、所述第五卷积层和所述第六卷积层的卷积核大小相同,所述第三卷积层、所述第四卷积层、所述第五卷积层和所述第六卷积层的卷积核的个数相同;所述第一卷积层、所述第二卷积层、所述第三卷积层和所述第四个卷积层之间的池化层选用区域2*2,步长为2的最大池化;所述第四卷积层和所述第五卷积层之间的池化层选用3*3区域,步长为1的最大池化,以便于保持所述第四卷积层输出特征图和对所述第四卷积层输出特征池化后的特征图大小不变;所述各个卷积层的激活函数采用ReLU函数;所述第四卷积层输出的特征图和所述第五卷积层输出的特征图在通道数上串联后输入所述反卷积层,所述反卷积层输出的特征图和所述第三卷积层输出的特征图在通道数上串联后输入所述第六卷积层,所述第八卷积层输出所述待测试图像的估计密度图作为所述每列卷积神经网络模型的输 出结果。
- 一种密集人群计数的装置,其特征在于,包括:输入模块,用于将待测试图像输入至预先完成训练的目标多尺度多列卷积神经网络模型中;其中,所述目标多尺度多列卷积神经网络模型包括多列平行的卷积神经网络,每列卷积神经网络中包括多个卷积核大小和个数不同的卷积层;处理模块,用于将所述待测试图像分别输入至所述每列卷积神经网络中,利用所述每列卷积神经网络中各个卷积层对所述待测试图像进行处理,并将所述每列卷积神经网络中预选卷积层输出的特征图进行融合,以便于分别得到所述每列卷积神经网络输出的估计密度图;输出模块,用于将所述每列卷积神经网络输出的估计密度图进行融合后,得到所述待测试图像的目标估计密度图;计算模块,用于依据所述待测试图像的目标估计密度图,计算得到所述待测试图像中的人数。
- 如权利要求7所述的装置,其特征在于,所述输出模块前包括:训练模块,用于利用高斯滤波器对预先创建的人群图像数据集进行滤波处理后,获取所述人群图像数据集中每幅图像的密度图,从而构建目标训练集;采用所述目标训练集对多尺度多列卷积神经网络模型进行训练,得到完成训练后的目标多尺度多列卷积神经网络模型。
- 一种密集人群计数的设备,其特征在于,包括:存储器,用于存储计算机程序;处理器,用于执行所述计算机程序时实现如权利要求1至7任一项所述一种密集人群计数的方法的步骤。
- 一种计算机可读存储介质,其特征在于,所述计算机可读存储介质上存储有计算机程序,所述计算机程序被处理器执行时实现如权利要求1至7任一项所述一种密集人群计数的方法的步骤。
Applications Claiming Priority (2)
| Application Number | Priority Date | Filing Date | Title |
|---|---|---|---|
| CN201910129612.3A CN109858461B (zh) | 2019-02-21 | 2019-02-21 | 一种密集人群计数的方法、装置、设备以及存储介质 |
| CN201910129612.3 | 2019-02-21 |
Publications (1)
| Publication Number | Publication Date |
|---|---|
| WO2020169043A1 true WO2020169043A1 (zh) | 2020-08-27 |
Family
ID=66898471
Family Applications (1)
| Application Number | Title | Priority Date | Filing Date |
|---|---|---|---|
| PCT/CN2020/075795 Ceased WO2020169043A1 (zh) | 2019-02-21 | 2020-02-19 | 一种密集人群计数的方法、装置、设备以及存储介质 |
Country Status (2)
| Country | Link |
|---|---|
| CN (1) | CN109858461B (zh) |
| WO (1) | WO2020169043A1 (zh) |
Cited By (54)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| CN112101190A (zh) * | 2020-09-11 | 2020-12-18 | 西安电子科技大学 | 一种遥感图像分类方法、存储介质及计算设备 |
| CN112132023A (zh) * | 2020-09-22 | 2020-12-25 | 上海应用技术大学 | 基于多尺度上下文增强网络的人群计数方法 |
| CN112396000A (zh) * | 2020-11-19 | 2021-02-23 | 中山大学 | 一种多模态密集预测的深度信息传输模型的构建方法 |
| CN112699741A (zh) * | 2020-12-10 | 2021-04-23 | 广州广电运通金融电子股份有限公司 | 一种公交车内部拥挤度计算方法、系统及设备 |
| CN112733714A (zh) * | 2021-01-11 | 2021-04-30 | 北京大学 | 一种基于vgg网络的自动人群计数图像识别方法 |
| CN112818849A (zh) * | 2021-01-31 | 2021-05-18 | 南京工业大学 | 基于对抗学习的上下文注意力卷积神经网络的人群密度检测算法 |
| CN112861795A (zh) * | 2021-03-12 | 2021-05-28 | 云知声智能科技股份有限公司 | 基于多尺度特征融合的遥感图像显著目标检测方法及装置 |
| CN112966600A (zh) * | 2021-03-04 | 2021-06-15 | 上海应用技术大学 | 用于拥挤人群计数的自适应多尺度上下文聚合方法 |
| CN113139489A (zh) * | 2021-04-30 | 2021-07-20 | 广州大学 | 基于背景提取和多尺度融合网络的人群计数方法及系统 |
| CN113205078A (zh) * | 2021-05-31 | 2021-08-03 | 上海应用技术大学 | 基于多分支递进强化注意力人群计数方法 |
| CN113283356A (zh) * | 2021-05-31 | 2021-08-20 | 上海应用技术大学 | 多级注意力尺度感知人群计数方法 |
| CN113468995A (zh) * | 2021-06-22 | 2021-10-01 | 之江实验室 | 一种基于密度等级感知的人群计数方法 |
| CN113516029A (zh) * | 2021-04-28 | 2021-10-19 | 上海科技大学 | 基于部分标注的图像人群计数方法、装置、介质及终端 |
| CN113687326A (zh) * | 2021-07-13 | 2021-11-23 | 广州杰赛科技股份有限公司 | 一种车载雷达回波降噪方法、装置、设备及介质 |
| CN113807274A (zh) * | 2021-09-23 | 2021-12-17 | 山东建筑大学 | 一种基于图像反透视变换的人群计数方法及系统 |
| CN113902703A (zh) * | 2021-10-08 | 2022-01-07 | 中国科学院半导体研究所 | 对象统计模型的训练方法、对象统计方法及装置 |
| CN114022458A (zh) * | 2021-11-09 | 2022-02-08 | 恒生电子股份有限公司 | 骨架检测方法、装置、电子设备和计算机可读存储介质 |
| CN114092883A (zh) * | 2021-11-24 | 2022-02-25 | 深圳市联洲国际技术有限公司 | 人群信息的获取方法及其装置、计算机可读存储介质 |
| CN114120233A (zh) * | 2021-11-29 | 2022-03-01 | 上海应用技术大学 | 用于人群计数的轻量金字塔空洞卷积聚合网络的训练方法 |
| CN114120248A (zh) * | 2021-11-19 | 2022-03-01 | 北京工业大学 | 一种基于内容感知模块的人群密度估计方法及系统 |
| CN114255203A (zh) * | 2020-09-22 | 2022-03-29 | 中国农业大学 | 一种鱼苗数量估计方法及系统 |
| CN114429596A (zh) * | 2020-10-29 | 2022-05-03 | 航天信息股份有限公司 | 一种流量统计方法、装置、电子设备及存储介质 |
| CN114445705A (zh) * | 2022-01-21 | 2022-05-06 | 重庆邮电大学 | 一种基于密集区域感知的高效航拍图像的目标检测方法 |
| CN114445763A (zh) * | 2021-12-22 | 2022-05-06 | 天翼云科技有限公司 | 一种人群数量确定方法、装置、设备和介质 |
| CN114463694A (zh) * | 2022-01-06 | 2022-05-10 | 中山大学 | 一种基于伪标签的半监督人群计数方法及装置 |
| CN114494194A (zh) * | 2022-01-26 | 2022-05-13 | 武汉大学 | 复杂场景下的人群计数方法、装置、设备及可读存储介质 |
| CN114581852A (zh) * | 2022-03-10 | 2022-06-03 | 深圳市联洲国际技术有限公司 | 一种尺度自适应的人群计数方法、装置、设备及存储介质 |
| CN114639070A (zh) * | 2022-03-15 | 2022-06-17 | 福州大学 | 融合注意力机制的人群运动流量分析方法 |
| CN114863367A (zh) * | 2022-06-08 | 2022-08-05 | 深圳市赛为智能股份有限公司 | 基于关键点检测的人群密度统计方法、装置、设备及介质 |
| CN114897768A (zh) * | 2022-03-24 | 2022-08-12 | 重庆邮电大学 | 一种基于语义细化的空间金字塔人群计数方法 |
| CN114913482A (zh) * | 2022-06-08 | 2022-08-16 | 深圳市赛为智能股份有限公司 | 基于自监督的人群密度统计方法、装置、设备及介质 |
| CN114913544A (zh) * | 2022-04-28 | 2022-08-16 | 华南农业大学 | 基于语义分割的虾苗计数方法、系统、云服务器及介质 |
| CN114973112A (zh) * | 2021-02-19 | 2022-08-30 | 四川大学 | 一种基于对抗学习网络的尺度自适应密集人群计数方法 |
| CN114973115A (zh) * | 2021-02-24 | 2022-08-30 | 腾讯科技(深圳)有限公司 | 图像识别对象的数量估计方法、装置及存储介质 |
| CN114998826A (zh) * | 2022-05-12 | 2022-09-02 | 西北工业大学 | 密集场景下的人群检测方法 |
| CN115019211A (zh) * | 2022-06-28 | 2022-09-06 | 北京理工大学 | 面向无人机航拍图像的分割引导注意力群体计数方法 |
| CN115082853A (zh) * | 2022-06-14 | 2022-09-20 | 长三角信息智能创新研究院 | 多尺度感知的泛用型定位计数方法 |
| CN115205777A (zh) * | 2022-06-17 | 2022-10-18 | 平安银行股份有限公司 | 基于密度级别的人群计数方法 |
| CN115424209A (zh) * | 2022-09-15 | 2022-12-02 | 华东交通大学 | 一种基于空间金字塔注意力网络的人群计数方法 |
| CN115457472A (zh) * | 2022-09-19 | 2022-12-09 | 中国电子科技集团公司第五十四研究所 | 一种基于密集区域自适应分析的人群统计与定位方法 |
| CN115482500A (zh) * | 2021-05-27 | 2022-12-16 | 中移雄安信息通信科技有限公司 | 基于置信概率的人群统计方法及装置 |
| CN115631454A (zh) * | 2022-09-07 | 2023-01-20 | 安徽建筑大学 | 一种基于多尺度注意力机制的视频图像人群计数方法 |
| CN115761621A (zh) * | 2022-11-05 | 2023-03-07 | 福州大学 | 基于强化学习与残差分类网络进行人群计数的方法 |
| CN115830537A (zh) * | 2022-11-29 | 2023-03-21 | 武汉工程大学 | 一种人群计数方法 |
| CN116321274A (zh) * | 2023-03-25 | 2023-06-23 | 博信通信股份有限公司 | 网络接入测评方法、装置、5g微基站和可读存储介质 |
| CN116311083A (zh) * | 2023-05-19 | 2023-06-23 | 华东交通大学 | 一种人群计数模型训练方法及系统 |
| CN116343123A (zh) * | 2023-03-29 | 2023-06-27 | 北京工商大学 | 基于无人机的多尺度特征融合人群计数方法 |
| CN116363092A (zh) * | 2023-03-27 | 2023-06-30 | 中国船舶集团有限公司第七〇九研究所 | 一种基于神经网络的人群计数方法及装置 |
| CN116469042A (zh) * | 2022-01-07 | 2023-07-21 | 四川大学 | 一种结合层聚合机制的人群计数方法 |
| CN116665117A (zh) * | 2023-03-10 | 2023-08-29 | 北京大学深圳研究生院 | 视频人群计数方法、装置、终端设备及存储介质 |
| CN116704266A (zh) * | 2023-07-28 | 2023-09-05 | 国网浙江省电力有限公司信息通信分公司 | 一种电力设备故障检测方法、装置、设备及存储介质 |
| CN117405570A (zh) * | 2023-12-13 | 2024-01-16 | 长沙思辰仪器科技有限公司 | 一种油液颗粒度计数器自动检测方法与系统 |
| CN117670892A (zh) * | 2023-12-07 | 2024-03-08 | 百鸟数据科技(北京)有限责任公司 | 一种水鸟密度估计方法、装置、计算机设备和存储介质 |
| CN118644821A (zh) * | 2024-08-16 | 2024-09-13 | 南京信息工程大学 | 基于注意力特征融合与多列特征增强的人群计数方法 |
Families Citing this family (19)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| CN109858461B (zh) * | 2019-02-21 | 2023-06-16 | 苏州大学 | 一种密集人群计数的方法、装置、设备以及存储介质 |
| CN110674704A (zh) * | 2019-09-05 | 2020-01-10 | 同济大学 | 一种基于多尺度扩张卷积网络的人群密度估计方法及装置 |
| CN110889360A (zh) * | 2019-11-20 | 2020-03-17 | 山东师范大学 | 一种基于切换卷积网络的人群计数方法及系统 |
| CN110956122B (zh) * | 2019-11-27 | 2022-08-02 | 深圳市商汤科技有限公司 | 图像处理方法及装置、处理器、电子设备、存储介质 |
| CN111062274B (zh) * | 2019-12-02 | 2023-11-28 | 汇纳科技股份有限公司 | 上下文感知嵌入的人群计数方法、系统、介质及电子设备 |
| CN111126177B (zh) * | 2019-12-05 | 2023-05-09 | 杭州飞步科技有限公司 | 人数统计的方法及装置 |
| CN111178235A (zh) * | 2019-12-27 | 2020-05-19 | 卓尔智联(武汉)研究院有限公司 | 一种目标数量确定方法、装置、设备及存储介质 |
| CN113496150B (zh) * | 2020-03-20 | 2023-03-21 | 长沙智能驾驶研究院有限公司 | 密集目标检测方法、装置、存储介质及计算机设备 |
| CN111523470B (zh) * | 2020-04-23 | 2022-11-18 | 苏州浪潮智能科技有限公司 | 一种行人重识别方法、装置、设备及介质 |
| CN111626134B (zh) * | 2020-04-28 | 2023-04-21 | 上海交通大学 | 一种基于隐密度分布的密集人群计数方法、系统及终端 |
| CN111783934B (zh) * | 2020-05-15 | 2024-06-21 | 北京迈格威科技有限公司 | 卷积神经网络构建方法、装置、设备及介质 |
| CN111640101B (zh) * | 2020-05-29 | 2022-04-29 | 苏州大学 | 基于Ghost卷积特征融合神经网络实时车流量检测系统及方法 |
| CN111652152A (zh) * | 2020-06-04 | 2020-09-11 | 上海眼控科技股份有限公司 | 人群密度检测方法、装置、计算机设备和存储介质 |
| CN111723742A (zh) * | 2020-06-19 | 2020-09-29 | 苏州大学 | 一种人群密度分析方法、系统、装置及计算机可读存储介质 |
| CN113919476B (zh) * | 2020-07-08 | 2025-06-10 | 阿里巴巴集团控股有限公司 | 一种图像处理方法、装置、电子设备以及存储介质 |
| CN111950443B (zh) * | 2020-08-10 | 2023-12-29 | 北京师范大学珠海分校 | 一种多尺度卷积神经网络的密集人群计数方法 |
| US12482249B2 (en) | 2020-09-07 | 2025-11-25 | Intel Corporation | Poly-scale kernel-wise convolution for high-performance visual recognition applications |
| CN112712518B (zh) * | 2021-01-13 | 2024-01-09 | 中国农业大学 | 鱼类计数方法、装置、电子设备及存储介质 |
| CN114580731B (zh) * | 2022-02-28 | 2025-07-22 | 西安交通大学 | 人群计数预测方法、系统、计算机设备及存储介质 |
Citations (5)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| WO2018052586A1 (en) * | 2016-09-14 | 2018-03-22 | Konica Minolta Laboratory U.S.A., Inc. | Method and system for multi-scale cell image segmentation using multiple parallel convolutional neural networks |
| CN109101930A (zh) * | 2018-08-18 | 2018-12-28 | 华中科技大学 | 一种人群计数方法及系统 |
| CN109214337A (zh) * | 2018-09-05 | 2019-01-15 | 苏州大学 | 一种人群统计方法、装置、设备及计算机可读存储介质 |
| CN109271960A (zh) * | 2018-10-08 | 2019-01-25 | 燕山大学 | 一种基于卷积神经网络的人数统计方法 |
| CN109858461A (zh) * | 2019-02-21 | 2019-06-07 | 苏州大学 | 一种密集人群计数的方法、装置、设备以及存储介质 |
-
2019
- 2019-02-21 CN CN201910129612.3A patent/CN109858461B/zh active Active
-
2020
- 2020-02-19 WO PCT/CN2020/075795 patent/WO2020169043A1/zh not_active Ceased
Patent Citations (5)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| WO2018052586A1 (en) * | 2016-09-14 | 2018-03-22 | Konica Minolta Laboratory U.S.A., Inc. | Method and system for multi-scale cell image segmentation using multiple parallel convolutional neural networks |
| CN109101930A (zh) * | 2018-08-18 | 2018-12-28 | 华中科技大学 | 一种人群计数方法及系统 |
| CN109214337A (zh) * | 2018-09-05 | 2019-01-15 | 苏州大学 | 一种人群统计方法、装置、设备及计算机可读存储介质 |
| CN109271960A (zh) * | 2018-10-08 | 2019-01-25 | 燕山大学 | 一种基于卷积神经网络的人数统计方法 |
| CN109858461A (zh) * | 2019-02-21 | 2019-06-07 | 苏州大学 | 一种密集人群计数的方法、装置、设备以及存储介质 |
Non-Patent Citations (1)
| Title |
|---|
| SIQI TANG, WEI TAO , LIANGLIANG ZHAGN , ZHISONG PAN: "A Deep Crowd Counting Algorithm Based on Multi-Column Feature Map Fusion", JOURNAL OF ZHENGZHOU UNIVERSITY (NATURAL SCIENCE EDITION), vol. 50, no. 2, 30 June 2018 (2018-06-30), pages 69 - 74, XP055729523, DOI: 10.13705/j.issn.1671-6841.2017204 * |
Cited By (75)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| CN112101190A (zh) * | 2020-09-11 | 2020-12-18 | 西安电子科技大学 | 一种遥感图像分类方法、存储介质及计算设备 |
| CN112101190B (zh) * | 2020-09-11 | 2023-11-03 | 西安电子科技大学 | 一种遥感图像分类方法、存储介质及计算设备 |
| CN112132023A (zh) * | 2020-09-22 | 2020-12-25 | 上海应用技术大学 | 基于多尺度上下文增强网络的人群计数方法 |
| CN114255203A (zh) * | 2020-09-22 | 2022-03-29 | 中国农业大学 | 一种鱼苗数量估计方法及系统 |
| CN114255203B (zh) * | 2020-09-22 | 2024-04-09 | 中国农业大学 | 一种鱼苗数量估计方法及系统 |
| CN112132023B (zh) * | 2020-09-22 | 2024-05-17 | 上海应用技术大学 | 基于多尺度上下文增强网络的人群计数方法 |
| CN114429596A (zh) * | 2020-10-29 | 2022-05-03 | 航天信息股份有限公司 | 一种流量统计方法、装置、电子设备及存储介质 |
| CN112396000A (zh) * | 2020-11-19 | 2021-02-23 | 中山大学 | 一种多模态密集预测的深度信息传输模型的构建方法 |
| CN112396000B (zh) * | 2020-11-19 | 2023-09-05 | 中山大学 | 一种多模态密集预测的深度信息传输模型的构建方法 |
| CN112699741A (zh) * | 2020-12-10 | 2021-04-23 | 广州广电运通金融电子股份有限公司 | 一种公交车内部拥挤度计算方法、系统及设备 |
| CN112733714A (zh) * | 2021-01-11 | 2021-04-30 | 北京大学 | 一种基于vgg网络的自动人群计数图像识别方法 |
| CN112733714B (zh) * | 2021-01-11 | 2024-03-01 | 北京大学 | 一种基于vgg网络的自动人群计数图像识别方法 |
| CN112818849A (zh) * | 2021-01-31 | 2021-05-18 | 南京工业大学 | 基于对抗学习的上下文注意力卷积神经网络的人群密度检测算法 |
| CN112818849B (zh) * | 2021-01-31 | 2024-03-08 | 南京工业大学 | 基于对抗学习的上下文注意力卷积神经网络的人群密度检测算法 |
| CN114973112A (zh) * | 2021-02-19 | 2022-08-30 | 四川大学 | 一种基于对抗学习网络的尺度自适应密集人群计数方法 |
| CN114973112B (zh) * | 2021-02-19 | 2024-04-05 | 四川大学 | 一种基于对抗学习网络的尺度自适应密集人群计数方法 |
| CN114973115A (zh) * | 2021-02-24 | 2022-08-30 | 腾讯科技(深圳)有限公司 | 图像识别对象的数量估计方法、装置及存储介质 |
| CN112966600A (zh) * | 2021-03-04 | 2021-06-15 | 上海应用技术大学 | 用于拥挤人群计数的自适应多尺度上下文聚合方法 |
| CN112966600B (zh) * | 2021-03-04 | 2024-04-16 | 上海应用技术大学 | 用于拥挤人群计数的自适应多尺度上下文聚合方法 |
| CN112861795A (zh) * | 2021-03-12 | 2021-05-28 | 云知声智能科技股份有限公司 | 基于多尺度特征融合的遥感图像显著目标检测方法及装置 |
| CN113516029B (zh) * | 2021-04-28 | 2023-11-07 | 上海科技大学 | 基于部分标注的图像人群计数方法、装置、介质及终端 |
| CN113516029A (zh) * | 2021-04-28 | 2021-10-19 | 上海科技大学 | 基于部分标注的图像人群计数方法、装置、介质及终端 |
| CN113139489B (zh) * | 2021-04-30 | 2023-09-05 | 广州大学 | 基于背景提取和多尺度融合网络的人群计数方法及系统 |
| CN113139489A (zh) * | 2021-04-30 | 2021-07-20 | 广州大学 | 基于背景提取和多尺度融合网络的人群计数方法及系统 |
| CN115482500A (zh) * | 2021-05-27 | 2022-12-16 | 中移雄安信息通信科技有限公司 | 基于置信概率的人群统计方法及装置 |
| CN113283356B (zh) * | 2021-05-31 | 2024-04-05 | 上海应用技术大学 | 多级注意力尺度感知人群计数方法 |
| CN113283356A (zh) * | 2021-05-31 | 2021-08-20 | 上海应用技术大学 | 多级注意力尺度感知人群计数方法 |
| CN113205078B (zh) * | 2021-05-31 | 2024-04-16 | 上海应用技术大学 | 基于多分支递进强化注意力人群计数方法 |
| CN113205078A (zh) * | 2021-05-31 | 2021-08-03 | 上海应用技术大学 | 基于多分支递进强化注意力人群计数方法 |
| CN113468995A (zh) * | 2021-06-22 | 2021-10-01 | 之江实验室 | 一种基于密度等级感知的人群计数方法 |
| CN113687326A (zh) * | 2021-07-13 | 2021-11-23 | 广州杰赛科技股份有限公司 | 一种车载雷达回波降噪方法、装置、设备及介质 |
| CN113687326B (zh) * | 2021-07-13 | 2024-01-05 | 广州杰赛科技股份有限公司 | 一种车载雷达回波降噪方法、装置、设备及介质 |
| CN113807274A (zh) * | 2021-09-23 | 2021-12-17 | 山东建筑大学 | 一种基于图像反透视变换的人群计数方法及系统 |
| CN113807274B (zh) * | 2021-09-23 | 2023-07-04 | 山东建筑大学 | 一种基于图像反透视变换的人群计数方法及系统 |
| CN113902703A (zh) * | 2021-10-08 | 2022-01-07 | 中国科学院半导体研究所 | 对象统计模型的训练方法、对象统计方法及装置 |
| CN114022458A (zh) * | 2021-11-09 | 2022-02-08 | 恒生电子股份有限公司 | 骨架检测方法、装置、电子设备和计算机可读存储介质 |
| CN114120248A (zh) * | 2021-11-19 | 2022-03-01 | 北京工业大学 | 一种基于内容感知模块的人群密度估计方法及系统 |
| CN114092883A (zh) * | 2021-11-24 | 2022-02-25 | 深圳市联洲国际技术有限公司 | 人群信息的获取方法及其装置、计算机可读存储介质 |
| CN114120233A (zh) * | 2021-11-29 | 2022-03-01 | 上海应用技术大学 | 用于人群计数的轻量金字塔空洞卷积聚合网络的训练方法 |
| CN114120233B (zh) * | 2021-11-29 | 2024-04-16 | 上海应用技术大学 | 用于人群计数的轻量金字塔空洞卷积聚合网络的训练方法 |
| CN114445763A (zh) * | 2021-12-22 | 2022-05-06 | 天翼云科技有限公司 | 一种人群数量确定方法、装置、设备和介质 |
| CN114463694B (zh) * | 2022-01-06 | 2024-04-05 | 中山大学 | 一种基于伪标签的半监督人群计数方法及装置 |
| CN114463694A (zh) * | 2022-01-06 | 2022-05-10 | 中山大学 | 一种基于伪标签的半监督人群计数方法及装置 |
| CN116469042A (zh) * | 2022-01-07 | 2023-07-21 | 四川大学 | 一种结合层聚合机制的人群计数方法 |
| CN114445705A (zh) * | 2022-01-21 | 2022-05-06 | 重庆邮电大学 | 一种基于密集区域感知的高效航拍图像的目标检测方法 |
| CN114494194A (zh) * | 2022-01-26 | 2022-05-13 | 武汉大学 | 复杂场景下的人群计数方法、装置、设备及可读存储介质 |
| CN114581852A (zh) * | 2022-03-10 | 2022-06-03 | 深圳市联洲国际技术有限公司 | 一种尺度自适应的人群计数方法、装置、设备及存储介质 |
| CN114639070A (zh) * | 2022-03-15 | 2022-06-17 | 福州大学 | 融合注意力机制的人群运动流量分析方法 |
| CN114639070B (zh) * | 2022-03-15 | 2024-06-04 | 福州大学 | 融合注意力机制的人群运动流量分析方法 |
| CN114897768A (zh) * | 2022-03-24 | 2022-08-12 | 重庆邮电大学 | 一种基于语义细化的空间金字塔人群计数方法 |
| CN114913544A (zh) * | 2022-04-28 | 2022-08-16 | 华南农业大学 | 基于语义分割的虾苗计数方法、系统、云服务器及介质 |
| CN114998826A (zh) * | 2022-05-12 | 2022-09-02 | 西北工业大学 | 密集场景下的人群检测方法 |
| CN114863367A (zh) * | 2022-06-08 | 2022-08-05 | 深圳市赛为智能股份有限公司 | 基于关键点检测的人群密度统计方法、装置、设备及介质 |
| CN114913482A (zh) * | 2022-06-08 | 2022-08-16 | 深圳市赛为智能股份有限公司 | 基于自监督的人群密度统计方法、装置、设备及介质 |
| CN115082853A (zh) * | 2022-06-14 | 2022-09-20 | 长三角信息智能创新研究院 | 多尺度感知的泛用型定位计数方法 |
| CN115205777A (zh) * | 2022-06-17 | 2022-10-18 | 平安银行股份有限公司 | 基于密度级别的人群计数方法 |
| CN115019211A (zh) * | 2022-06-28 | 2022-09-06 | 北京理工大学 | 面向无人机航拍图像的分割引导注意力群体计数方法 |
| CN115631454A (zh) * | 2022-09-07 | 2023-01-20 | 安徽建筑大学 | 一种基于多尺度注意力机制的视频图像人群计数方法 |
| CN115424209A (zh) * | 2022-09-15 | 2022-12-02 | 华东交通大学 | 一种基于空间金字塔注意力网络的人群计数方法 |
| CN115457472A (zh) * | 2022-09-19 | 2022-12-09 | 中国电子科技集团公司第五十四研究所 | 一种基于密集区域自适应分析的人群统计与定位方法 |
| CN115761621A (zh) * | 2022-11-05 | 2023-03-07 | 福州大学 | 基于强化学习与残差分类网络进行人群计数的方法 |
| CN115830537A (zh) * | 2022-11-29 | 2023-03-21 | 武汉工程大学 | 一种人群计数方法 |
| CN116665117A (zh) * | 2023-03-10 | 2023-08-29 | 北京大学深圳研究生院 | 视频人群计数方法、装置、终端设备及存储介质 |
| CN116321274A (zh) * | 2023-03-25 | 2023-06-23 | 博信通信股份有限公司 | 网络接入测评方法、装置、5g微基站和可读存储介质 |
| CN116363092A (zh) * | 2023-03-27 | 2023-06-30 | 中国船舶集团有限公司第七〇九研究所 | 一种基于神经网络的人群计数方法及装置 |
| CN116343123A (zh) * | 2023-03-29 | 2023-06-27 | 北京工商大学 | 基于无人机的多尺度特征融合人群计数方法 |
| CN116311083A (zh) * | 2023-05-19 | 2023-06-23 | 华东交通大学 | 一种人群计数模型训练方法及系统 |
| CN116311083B (zh) * | 2023-05-19 | 2023-09-05 | 华东交通大学 | 一种人群计数模型训练方法及系统 |
| CN116704266B (zh) * | 2023-07-28 | 2023-10-31 | 国网浙江省电力有限公司信息通信分公司 | 一种电力设备故障检测方法、装置、设备及存储介质 |
| CN116704266A (zh) * | 2023-07-28 | 2023-09-05 | 国网浙江省电力有限公司信息通信分公司 | 一种电力设备故障检测方法、装置、设备及存储介质 |
| CN117670892A (zh) * | 2023-12-07 | 2024-03-08 | 百鸟数据科技(北京)有限责任公司 | 一种水鸟密度估计方法、装置、计算机设备和存储介质 |
| CN117405570B (zh) * | 2023-12-13 | 2024-03-08 | 长沙思辰仪器科技有限公司 | 一种油液颗粒度计数器自动检测方法与系统 |
| CN117405570A (zh) * | 2023-12-13 | 2024-01-16 | 长沙思辰仪器科技有限公司 | 一种油液颗粒度计数器自动检测方法与系统 |
| CN118644821A (zh) * | 2024-08-16 | 2024-09-13 | 南京信息工程大学 | 基于注意力特征融合与多列特征增强的人群计数方法 |
| CN118644821B (zh) * | 2024-08-16 | 2024-11-08 | 南京信息工程大学 | 基于注意力特征融合与多列特征增强的人群计数方法 |
Also Published As
| Publication number | Publication date |
|---|---|
| CN109858461A (zh) | 2019-06-07 |
| CN109858461B (zh) | 2023-06-16 |
Similar Documents
| Publication | Publication Date | Title |
|---|---|---|
| WO2020169043A1 (zh) | 一种密集人群计数的方法、装置、设备以及存储介质 | |
| CN112801117B (zh) | 多路感受野引导的特征金字塔小目标检测网络及检测方法 | |
| CN109214337B (zh) | 一种人群统计方法、装置、设备及计算机可读存储介质 | |
| CN108197532B (zh) | 人脸识别的方法、装置及计算机装置 | |
| CN108428227B (zh) | 基于全卷积神经网络的无参考图像质量评价方法 | |
| CN110084155B (zh) | 一种密集人数计数的方法、装置、设备以及存储介质 | |
| CN109919252B (zh) | 利用少数标注图像生成分类器的方法 | |
| CN109522855B (zh) | 结合ResNet和SENet的低分辨率行人检测方法、系统及存储介质 | |
| CN106462724B (zh) | 基于规范化图像校验面部图像的方法和系统 | |
| CN113239825B (zh) | 一种复杂场景下高精度烟草甲虫检测方法 | |
| CN110879982B (zh) | 一种人群计数系统及方法 | |
| Saha et al. | Full-reference image quality assessment by combining global and local distortion measures | |
| CN111967464A (zh) | 一种基于深度学习的弱监督目标定位方法 | |
| CN112989932A (zh) | 基于改进原型网络的少样本森林火灾烟雾识别方法及装置 | |
| CN107743225B (zh) | 一种利用多层深度表征进行无参考图像质量预测的方法 | |
| CN108665509A (zh) | 一种超分辨率重构方法、装置、设备及可读存储介质 | |
| CN110009628A (zh) | 一种针对连续二维图像中多形态目标的自动检测方法 | |
| CN113378608A (zh) | 人群计数方法、装置、设备及存储介质 | |
| CN106898011B (zh) | 一种基于边缘检测来确定卷积神经网络卷积核数量的方法 | |
| CN114783021A (zh) | 一种口罩佩戴智能检测方法、装置、设备及介质 | |
| CN111079930A (zh) | 数据集质量参数的确定方法、装置及电子设备 | |
| TWI803243B (zh) | 圖像擴增方法、電腦設備及儲存介質 | |
| Shi et al. | Segmentation quality evaluation based on multi-scale convolutional neural networks | |
| CN116310361A (zh) | 一种基于改进YOLOv4-tiny的多尺度目标检测方法 | |
| CN109377516B (zh) | 一种使用动态视觉数据的光流计算方法 |
Legal Events
| Date | Code | Title | Description |
|---|---|---|---|
| 121 | Ep: the epo has been informed by wipo that ep was designated in this application |
Ref document number: 20759601 Country of ref document: EP Kind code of ref document: A1 |
|
| NENP | Non-entry into the national phase |
Ref country code: DE |
|
| 122 | Ep: pct application non-entry in european phase |
Ref document number: 20759601 Country of ref document: EP Kind code of ref document: A1 |
