Pith. sign in

REVIEW 1 major objections 5 minor 61 references

Bayesian Loss for Crowd Count Estimation with Point Supervision

T0 review · 1 major / 5 minor · reviewed 2026-08-14 · deepseek-v4-flash

Pith's one-line read Bayesian loss replaces imperfect density targets with count-expectation supervision, improving crowd counting across all tested benchmarks.

desk verdict A clean, well-tested loss for crowd counting that holds up on inspection; the main weakness is single-run reporting, not the method. read the letter →

arxiv 1908.03684 v1 pith:4QCJBDJN submitted 2019-08-10 cs.CV

classification cs.CV
keywords crowdcountingpointsupervisionBayesianlossdensitymapestimationsoftassignmentbackgroundmodellingdensescenesdeeplearning
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

This paper proposes replacing the standard crowd-counting training target—a density map made by smoothing point annotations with a Gaussian kernel—with a Bayesian loss that supervises the expected count at each annotated point. For every pixel, the loss allocates the predicted density among nearby head annotations according to a posterior probability computed from Gaussian likelihoods, and requires each head to account for one unit of count. A background label, built from a dummy point placed a margin away from each head, absorbs density in non-head regions. The paper reports that this single loss, on a standard VGG-19 backbone with no extra detectors or multi-scale modules, improves accuracy over the pixel-wise baseline on UCF-QNRF, ShanghaiTech A/B, and UCF CC 50, and sets a new state of the art on the largest, hardest dataset.

What carries the argument

The load-bearing object is the density contribution probability model, a soft partition of each pixel's estimated density among the annotated heads and a background label, built from Bayes' theorem with equal priors and an isotropic Gaussian likelihood of width $\sigma$. Its expected-count identity $E[c_n] = \sum_m p(y_n|x_m) D_{\mathrm{est}}(x_m)$ converts point annotations into per-head count constraints, and the dummy background point $z_0^m = z_n^m + d (x_m - z_n^m)/\|x_m - z_n^m\|_2$ creates a background likelihood $\mathcal{N}(x_m; z_0^m, \sigma^2 I)$ so that pixels far from heads are assigned to the background and penalized for producing density. The machinery lets the loss supervise aggregate count expectations rather than pixel values, which is what makes the training target robust to the imperfections of Gaussian-kernel density maps.

What would settle it

Take a crowd image and train one model with every person annotated and a second model with a random half of the annotations removed, holding the network and all other settings fixed: since the Bayesian loss forces the total expected count to equal the number of annotated points, the half-annotated model should underestimate the true count by a factor of roughly two; if it instead recovers the full count, the loss is not enforcing the count supervision the paper claims.

Watch

Extended reading notes

Core claim

On the paper's own terms, the central discovery is that point annotations are better treated as weak labels for a count-expectation constraint than as sources of a pseudo ground-truth density map. Defining the posterior label probability $p(y_n|x_m) = \mathcal{N}(x_m; z_n, \sigma^2 I) / (\sum_{n'=1}^N \mathcal{N}(x_m; z_{n'}, \sigma^2 I) + p(x_m|y_0))$, the expected count associated with annotated head $n$ is $E[c_n] = \sum_m p(y_n|x_m) D_{\mathrm{est}}(x_m)$, and the loss $\mathcal{L}_{\mathrm{Bayes+}} = \sum_n F(1 - E[c_n]) + F(0 - E[c_0])$ drives each head's expected count to one and the background's expected count to zero. At inference the posterior probabilities sum to one over all labels, so the total estimate is just the sum of the density map. This formulation removes the need to specify a 'correct' Gaussian-blurred density map, and the paper shows the resulting model is less sensitive to the Gaussian width and more tolerant of annotation noise.

Load-bearing premise

The loss assumes that all predicted density is explainable by spatial proximity to annotated heads (or to a dummy background point), so unannotated people, head sizes that do not match the single fixed Gaussian spread, and background density near heads can silently bias the counts.

Editorial extensions

If this is right

  • A standard VGG-19 trained with Bayesian loss outperforms specialized multi-scale and detector-assisted counting models on UCF-QNRF, ShanghaiTech A/B, and UCF CC 50.
  • On UCF-QNRF, MAE drops to 88.7 from the previous best 132, a 43.3-point reduction, without external detectors or multi-scale architectures.
  • The loss is insensitive to the Gaussian width $\sigma$: Bayesian MAE stays below 98 for $\sigma$ from 0.1 to 32, whereas the baseline varies from 118.4 to 136.2.
  • Training with Bayesian loss transfers across datasets better than the pixel-wise baseline when trained on UCF-QNRF and tested on the other three benchmarks.
  • The loss improves both VGG-19 and AlexNet backbones by similar margins, suggesting the benefit comes from the supervision scheme rather than a particular network.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • Because the loss only needs point locations and a Gaussian likelihood, the same expected-count supervision could transfer to other point-supervised counting problems, such as nuclei or vehicle counting; a direct test would swap the dataset while keeping the network fixed.
  • The reported robustness to annotation noise implies point labels need not mark exact head centers, which could make the method viable with cheaper, noisier crowd-sourced annotations.
  • The fixed Gaussian likelihood is the main hand-set component; learning $\sigma$ per head or conditioning it on scale and occlusion is a natural extension the paper mentions but does not explore, and could close part of the remaining MAE gap.
  • If annotation coverage is incomplete—some people in the scene are simply not labeled—the loss's count constraint would push the total estimate toward the number of labels rather than the true count, so applying the method to partially annotated data would require an explicit missing-label term.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

1 major / 5 minor

Summary. The paper proposes a Bayesian loss for crowd counting with point supervision. Instead of regressing a fixed Gaussian-smoothed density map pixelwise, the loss computes, for each annotated head, an expected count by summing the predicted density weighted by the posterior probability that each pixel belongs to that head (Eqs. 5 and 10). A background label is introduced via a dummy background point (Eq. 13) to suppress density away from heads, yielding the enhanced loss L_Bayes+ (Eq. 12). Experiments on UCF-QNRF, ShanghaiTech A/B, and UCF CC50 show consistent MAE/MSE improvements over a VGG-19 baseline and favorable comparison with prior state-of-the-art methods, with the largest gain on UCF-QNRF. Ablations analyze the effect of σ, d, annotation noise, cross-dataset transfer, resolution limits, and backbone choice.

Significance. The contribution is conceptually clean and practically useful. The key theoretical observation, though not stated explicitly, is that because the posteriors sum to one, the per-image absolute count error is upper-bounded by L_Bayes+ (the sum of |1-E[c_n]| and |E[c0]|), so minimizing the loss is a sound surrogate for the evaluation metric. The paper also provides code, uses a standard backbone without extra detectors or multi-scale modules, and includes extensive ablations including robustness to annotation noise and cross-dataset generalization. If the reported gains hold under repeated runs, the method is a meaningful improvement over pixel-wise density-map regression, especially on the highly challenging UCF-QNRF dataset.

major comments (1)
  1. [Sec. 4.4, Table 1] All reported numbers are from a single training run per configuration, with no standard deviation, confidence interval, or significance test. Because the paper's central claim is that the Bayesian loss yields 'substantial improvements' over BASELINE, and some improvements are modest (e.g., ShanghaiTechB MAE 8.5 to 7.7, UCF CC50 251.6 to 229.3), the reader cannot assess whether these differences exceed run-to-run variation. Please report means and standard deviations over at least 3-5 independent runs for the main tables (Tables 1-4) and for the ablation curves (Figs. 4-6), or provide a paired statistical test (e.g., bootstrap over test images) for the headline comparisons. This is a reporting gap rather than a flaw in the derivation, but it is load-bearing for the empirical claims.
minor comments (5)
  1. [Sec. 3.2, after Eq. (7)] The authors should explicitly state the inequality |C - N| ≤ sum_n |1 - E[c_n]| + |E[c0]|, which follows from Eqs. (7), (10)-(12). This upper-bound property is a strong theoretical justification for the loss and deserves to be highlighted rather than left implicit.
  2. [Sec. 3.3, Eq. (13)] The dummy background point definition involves division by ||x_m - z_n^m||, which is undefined when a pixel coincides with the nearest head point. Please specify how this case is handled in the implementation (e.g., by adding a small epsilon).
  3. [Sec. 4.3, Implementation Details] The paper does not report the number of training epochs, batch size, or learning-rate schedule. Including these details would improve reproducibility, especially since the baseline is already stronger than several previously published methods.
  4. [Sec. 4.5] There is a typo in 'additational parameter' and a repetition in 'wide range of of values of d'; these should be corrected.
  5. [Fig. 6] The x-axis label 'Deviation' should be clarified as 'annotation deviation (percentage of image height)' to match the description in the text.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: empirical claims are test-set measurements, and hyperparameters are selected on a validation split.

full rationale

The paper's derivation chain is self-contained: Eq. (3) defines a Gaussian likelihood from point annotations, Eq. (4) applies Bayes' theorem to obtain posteriors, Eq. (5) defines the expected count per annotated head, and Eq. (12) supervises those expectations to one while pushing background expectation to zero. This is a modeling choice for a surrogate training loss, not a derivation that manufactures the reported result. The headline numbers in Table 1 are measured on held-out test sets after training on the respective training splits, with the Gaussian parameter sigma and margin d selected on a 120-image validation subset of UCF-QNRF and then fixed for the other datasets. No fitted parameter is renamed as a prediction, and the baseline shares the same network and training process for a fair comparison. Self-citations in the reference list (e.g., [47], [49], [50], [61]) are related-work references to the authors' prior feature-learning and person-re-identification papers; none is load-bearing for the loss derivation or the empirical claims. The only caveat visible in the paper is that reported MAE/MSE values are single runs without variance estimates, which affects confidence in the magnitude of improvement but is a statistical reporting gap, not circularity. Because no claim reduces to its own inputs by construction or through a self-citation chain, the circularity score is 0.

Assumptions & free parameters 2 free parameters · 4 assumptions · 1 invented entities

The contribution is an empirical loss design rather than a derivation from first principles. The central claim depends on two tuned hyperparameters, sigma and d, and on modeling assumptions about how predicted density decomposes into per-head expectations and how background should be represented. No new physical entities are introduced beyond the internal dummy background point.

free parameters (2)
  • sigma = 8
    Width of the Gaussian kernel in Eqs. (3) and (14), selected on a 120-image validation subset of UCF-QNRF training images (Sec. 4.3).
  • d = 15% of the shorter image side
    Margin between the nearest head point and the dummy background point in Eq. (13), selected on the same validation subset (Sec. 4.3).
assumptions (4)
  • domain assumption Each annotated point corresponds to exactly one person, so the ground-truth count c_n equals 1.
    Used to define the loss in Eq. (6); inherited from the point-supervision benchmark datasets and not proven by the paper.
  • domain assumption Predicted density at each pixel can be split into expected count contributions per label via p(y_n|x_m), with no unexplained residual.
    Eq. (5) defines E[c_n] as sum_m p(y_n|x_m) D_est(x_m); this decomposition is the core mechanism of the loss rather than a consequence of the annotation protocol.
  • ad hoc to paper A single fixed Gaussian with width sigma adequately models the spatial uncertainty of every head point across all scenes and scales.
    Eqs. (3) and (14) use one sigma; sigma=8 is tuned on a validation set and assumed to transfer across datasets, although head sizes and scales vary widely.
  • ad hoc to paper The dummy background point at distance d from the nearest head captures pixels that should not contribute to any head count.
    Eqs. (13)-(14) and Fig. 1 introduce a background label y0 anchored to the nearest head; this is a construction specific to the proposed loss.
invented entities (1)
  • Dummy background point z_0^m per pixel
    purpose: Provides a background label y0 so pixels far from annotated heads receive a low expected count and the loss can push background density toward zero.
    Introduced in Eq. (13) as a geometric construction anchored to the nearest head point; it has no observable external referent and is validated only through downstream counting accuracy.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Bayesian Loss for Crowd Count Estimation with Point Supervision." pith.science (2026). https://pith.science/paper/4QCJBDJN

@misc{pith2026190803684,
  author       = {Pith},
  title        = {Pith review of: Bayesian Loss for Crowd Count Estimation with Point Supervision},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/4QCJBDJN}},
  note         = {Machine review of arXiv:1908.03684}
}
read the original abstract

In crowd counting datasets, each person is annotated by a point, which is usually the center of the head. And the task is to estimate the total count in a crowd scene. Most of the state-of-the-art methods are based on density map estimation, which convert the sparse point annotations into a "ground truth" density map through a Gaussian kernel, and then use it as the learning target to train a density map estimator. However, such a "ground-truth" density map is imperfect due to occlusions, perspective effects, variations in object shapes, etc. On the contrary, we propose \emph{Bayesian loss}, a novel loss function which constructs a density contribution probability model from the point annotations. Instead of constraining the value at every pixel in the density map, the proposed training loss adopts a more reliable supervision on the count expectation at each annotated point. Without bells and whistles, the loss function makes substantial improvements over the baseline loss on all tested datasets. Moreover, our proposed loss function equipped with a standard backbone network, without using any external detectors or multi-scale architectures, plays favourably against the state of the arts. Our method outperforms previous best approaches by a large margin on the latest and largest UCF-QNRF dataset. The source code is available at \url{https://github.com/ZhihengCV/Baysian-Crowd-Counting}.

Figures

Figures reproduced from arXiv: 1908.03684 by the authors.

Figure 1
Figure 1. Geometrical illustration of the dummy back￾ground point, where xm denotes a pixel in the density map, z m n is its nearest head point and z m 0 is the defined dummy background point. To define the background likelihood, we construct a dummy background point for each pixel, z m 0 = z m n + d xm − z m n kxm − zm n k2 , (13) where z m n denotes the nearest head point of xm, and d is a parameter that controls the margin… view at source ↗
Figure 2
Figure 2. Visualization of the posterior label probability. We construct an entropy map using Eq. (15), which measures the uncertainty on the label a pixel in the density map belongs to. The color is warmer, the value is larger. (a) Input image. (b)-(c): Entropy maps with different σ, without background pixel modelling. (e)-(f): Entropy maps with different d, with background pixel modelling. (d): Blend of the input image and … view at source ↗
Figure 3
Figure 3. Density maps generated by (b) BASELINE, our (c) BAYESIAN, and (d) BAYESIAN+. The color is warmer, the density is higher. Note that in dense crowds, BASELINE often produces abnormal values, while in sparse areas, it can not localize each person well. In contrast, our methods give more accurate count estimate and localization, respectively [PITH_FULL_IMAGE:figures/full_fig_p006_3.png] view at source ↗
Figures from the paper (3 more)
Figure 4
Figure 4. Figure 4: The curves of testing results for different losses w.r.t. the Gaussian parameter σ on UCF-QNRF. accurate estimations. Our methods benefit from the pro￾posed probability model which constructs soft posterior probabilities if the pixel is close to several head points. In…
Figure 5
Figure 5. Figure 5: The performance of our BAYESIAN+ method w.r.t. d. Although most of the datasets place the annotation point at the center of each head, small errors from human labeling is inevitable. In this experiment, we simulate human labeling errors by adding uniform random noises …
Figure 6
Figure 6. Figure 6: Robustness evaluations to annotation error. We sim￾ulate human labeling errors by adding uniform random noises to the annotated point locations (percentage of image height). Cross-dataset evaluation. To further explore the general￾ization ability of different loss func…

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

61 extracted references · 58 canonical work pages

  1. [1]

    Lempitsky, and Andrew Zisserman

    Carlos Arteta, Victor S. Lempitsky, and Andrew Zisserman. Counting in the wild. In ECCV, 2016. 1

  2. [2]

    Sajjan, R

    Deepak Babu Sam, Neeraj N. Sajjan, R. Venkatesh Babu, and Mukundhan Srinivasan. Divide and grow: Capturing huge diversity in crowd images with incrementally growing cnn. In CVPR, 2018. 6

  3. [3]

    Venkatesh Babu

    Deepak Babu Sam, Shiv Surya, and R. Venkatesh Babu. Switching convolutional neural network for crowd counting. In CVPR, 2017. 6

  4. [4]

    Scale aggregation network for accurate and efficient crowd count- ing

    Xinkun Cao, Zhipeng Wang, Yanyun Zhao, and Fei Su. Scale aggregation network for accurate and efficient crowd count- ing. In ECCV, 2018. 1, 2, 6

  5. [5]

    Chan, Zhang-Sheng John Liang, and Nuno Vas- concelos

    Antoni B. Chan, Zhang-Sheng John Liang, and Nuno Vas- concelos. Privacy preserving crowd monitoring: Counting people without people models or tracking. In CVPR, 2008. 1, 2

  6. [6]

    Selvaraju, Dhruv Batra, and Devi Parikh

    Prithvijit Chattopadhyay, Ramakrishna Vedantam, Ram- prasaath R. Selvaraju, Dhruv Batra, and Devi Parikh. Count- ing everyday objects in everyday scenes. In CVPR, 2017. 1, 2

  7. [7]

    Cumulative attribute space for age and crowd density estimation

    Ke Chen, Shaogang Gong, Tao Xiang, and Chen Change Loy. Cumulative attribute space for age and crowd density estimation. In CVPR, 2013. 1, 2

  8. [8]

    Glaston- bury, Henry Z

    Joseph Paul Cohen, Genevieve Boucher, Craig A. Glaston- bury, Henry Z. Lo, and Yoshua Bengio. Count-ception: Counting by fully convolutional redundant counting. In ICCV Workshops, 2017. 1

Show all 61 references
  1. [9]

    An aggregated mul- ticolumn dilated convolution network for perspective-free counting

    Diptodip Deb and Jonathan Ventura. An aggregated mul- ticolumn dilated convolution network for perspective-free counting. In CVPR Workshops, 2018. 1

  2. [10]

    A discriminatively trained, multiscale, deformable part model

    Pedro F Felzenszwalb, David A McAllester, Deva Ramanan, et al. A discriminatively trained, multiscale, deformable part model. In CVPR, 2008. 2

  3. [11]

    Ham- precht

    Luca Fiaschi, Ullrich K ¨othe, Rahul Nair, and Fred A. Ham- precht. Learning to count with regression forest and struc- tured labels. In ICPR, 2012. 1, 2

  4. [12]

    Weina Ge and Robert T. Collins. Marked point processes for crowd counting. In CVPR, 2009. 1, 2

  5. [13]

    Delving deep into rectifiers: Surpassing human-level perfor- mance on imagenet classification

    Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Delving deep into rectifiers: Surpassing human-level perfor- mance on imagenet classification. In ICCV, 2015. 5

  6. [14]

    Meng-Ru Hsieh, Yen-Liang Lin, and Winston H. Hsu. Drone-based object counting by spatially regularized re- gional proposal network. In ICCV, 2017. 1

  7. [15]

    Multi-source multi-scale counting in extremely dense crowd images

    Haroon Idrees, Imran Saleemi, Cody Seibert, and Mubarak Shah. Multi-source multi-scale counting in extremely dense crowd images. In CVPR, 2013. 1, 2, 5

  8. [16]

    Composition loss for counting, density map estima- tion and localization in dense crowds

    Haroon Idrees, Muhmmad Tayyab, Kishan Athrey, Dong Zhang, Somaya Al-Maadeed, Nasir Rajpoot, and Mubarak Shah. Composition loss for counting, density map estima- tion and localization in dense crowds. In ECCV, 2018. 1, 2, 3, 5, 6, 7

  9. [17]

    Imagenet classification with deep convolutional neural net- works

    Alex Krizhevsky, Ilya Sutskever, and Geoffrey E Hinton. Imagenet classification with deep convolutional neural net- works. In F. Pereira, C. J. C. Burges, L. Bottou, and K. Q. Weinberger, editors,NIPS. 2012. 2, 5, 8

  10. [18]

    Laradji, Negar Rostamzadeh, Pedro O

    Issam H. Laradji, Negar Rostamzadeh, Pedro O. Pinheiro, David Vazquez, and Mark Schmidt. Where are the blobs: Counting by localization with point supervision. In ECCV,

  11. [19]

    Be- yond bags of features: Spatial pyramid matching for recog- nizing natural scene categories

    Svetlana Lazebnik, Cordelia Schmid, and Jean Ponce. Be- yond bags of features: Spatial pyramid matching for recog- nizing natural scene categories. In CVPR, 2006. 2

  12. [20]

    Learning to count objects in images

    Victor Lempitsky and Andrew Zisserman. Learning to count objects in images. In NIPS, 2010. 1, 2

  13. [21]

    Es- timating the number of people in crowded scenes by MID based foreground segmentation and head-shoulder detection

    Min Li, Zhaoxiang Zhang, Kaiqi Huang, and Tieniu Tan. Es- timating the number of people in crowded scenes by MID based foreground segmentation and head-shoulder detection. In ICPR, pages 1–4, 2008. 1, 2

  14. [22]

    Esti- mation of number of people in crowded scenes using per- spective transformation

    Sheng-Fuu Lin, Jaw-Yeh Chen, and Hung-Xin Chao. Esti- mation of number of people in crowded scenes using per- spective transformation. IEEE Trans. Systems, Man, and Cy- bernetics, Part A, 31(6):645–654, 2001. 1, 2

  15. [23]

    Bayesian model adaptation for crowd counts

    Bo Liu and Nuno Vasconcelos. Bayesian model adaptation for crowd counts. In ICCV, 2015. 2

  16. [24]

    Hauptmann

    Jiang Liu, Chenqiang Gao, Deyu Meng, and Alexander G. Hauptmann. Decidenet: Counting varying density crowds through attention guided detection and density estimation. In CVPR, 2018. 2

  17. [25]

    Crowd counting using deep recurrent spatial- aware network

    Lingbo Liu, Hongjun Wang, Guanbin Li, Wanli Ouyang, and Liang Lin. Crowd counting using deep recurrent spatial- aware network. In IJCAI, 2018. 2

  18. [26]

    Bagdanov

    Xialei Liu, Joost van de Weijer, and Andrew D. Bagdanov. Leveraging unlabeled data for crowd counting by learning to rank. In CVPR, 2018. 2

  19. [27]

    Zheng Ma, Lei Yu, and Antoni B. Chan. Small instance de- tection by integer programming on object density maps. In CVPR, 2015. 1

  20. [28]

    Keogh, and Noel E

    Mark Marsden, Kevin McGuinness, Suzanne Little, Ciara E. Keogh, and Noel E. O’Connor. People, penguins and petri dishes: Adapting object counting models to new visual do- mains and object types without forgetting. In CVPR, 2018. 1

  21. [29]

    Nathan Mundhenk, Goran Konjevod, Wesam A

    T. Nathan Mundhenk, Goran Konjevod, Wesam A. Sakla, and Kofi Boakye. A large contextual dataset for classifica- tion, detection and counting of cars with deep learning. In ECCV, 2016. 1

  22. [30]

    To- wards perspective-free object counting with deep learning

    Daniel O ˜noro-Rubio and Roberto Javier L ´opez-Sastre. To- wards perspective-free object counting with deep learning. In ECCV, 2016. 1

  23. [31]

    COUNT forest: Co-voting uncertain number of targets using random forest for crowd density estimation

    Viet-Quoc Pham, Tatsuo Kozakaya, Osamu Yamaguchi, and Ryuzo Okada. COUNT forest: Co-voting uncertain number of targets using random forest for crowd density estimation. In ICCV, 2015. 1, 2

  24. [32]

    Iterative crowd counting

    Viresh Ranjan, Hieu Le, and Minh Hoai. Iterative crowd counting. In ECCV, 2018. 1, 2, 6

  25. [33]

    Faster r-cnn: Towards real-time object detection with region proposal networks

    Shaoqing Ren, Kaiming He, Ross Girshick, and Jian Sun. Faster r-cnn: Towards real-time object detection with region proposal networks. In NIPS, 2015. 2

  26. [34]

    Weihong Ren, Di Kang, Yandong Tang, and Antoni B. Chan. Fusing crowd density maps and visual object trackers for people tracking in crowd scenes. In CVPR, 2018. 2

  27. [35]

    Crowd counting using multiple local features

    David Ryan, Simon Denman, Clinton Fookes, and Sridha Sridharan. Crowd counting using multiple local features. In DICTA, 2009. 1, 2

  28. [36]

    End-to-end crowd counting via joint learning local and global count

    Chong Shang, Haizhou Ai, and Bo Bai. End-to-end crowd counting via joint learning local and global count. In ICIP,

  29. [37]

    Crowd counting via adversarial cross-scale consistency pursuit

    Zan Shen, Yi Xu, Bingbing Ni, Minsi Wang, Jianguo Hu, and Xiaokang Yang. Crowd counting via adversarial cross-scale consistency pursuit. In CVPR, 2018. 6

  30. [38]

    Crowd counting with deep negative correlation learning

    Zenglin Shi, Le Zhang, Yun Liu, Xiaofeng Cao, Yangdong Ye, Ming-Ming Cheng, and Guoyan Zheng. Crowd counting with deep negative correlation learning. In CVPR, 2018. 1, 2, 6

  31. [39]

    Very deep convo- lutional networks for large-scale image recognition

    Karen Simonyan and Andrew Zisserman. Very deep convo- lutional networks for large-scale image recognition. ICLR, abs/1409.1556, 2014. 2, 5, 8

  32. [40]

    Sindagi and Vishal M

    Vishwanath A. Sindagi and Vishal M. Patel. Cnn-based cas- caded multi-task learning of high-level prior and density es- timation for crowd counting. In AVSS, 2017. 6

  33. [41]

    Sindagi and Vishal M

    Vishwanath A. Sindagi and Vishal M. Patel. Generating high-quality crowd density maps using contextual pyramid cnns. In ICCV, 2017. 6

  34. [42]

    Korsuk Sirinukunwattana, Shan e Ahmed Raza, Yee-Wah Tsang, David R. J. Snead, Ian A. Cree, and Nasir M. Rajpoot. Locality sensitive deep learning for detection and classifica- tion of nuclei in routine colon cancer histology images.IEEE Trans. Med. Imaging, 35(5):1196–1206, 2016. 1

  35. [43]

    Russell Stewart, Mykhaylo Andriluka, and Andrew Y . Ng. End-to-end people detection in crowded scenes. In CVPR,

  36. [44]

    Rao, Kumar T

    Matthias von Borstel, Melih Kandemir, Philip Schmidt, Madhavi K. Rao, Kumar T. Rajamani, and Fred A. Ham- precht. Gaussian process density counting from weak super- vision. In ECCV, 2016. 1

  37. [45]

    Learning to count with CNN boosting

    Elad Walach and Lior Wolf. Learning to count with CNN boosting. In ECCV, 2016. 1

  38. [46]

    Deep people counting in extremely dense crowds

    Chuan Wang, Hua Zhang, Liang Yang, Si Liu, and Xiaochun Cao. Deep people counting in extremely dense crowds. In ACM MM, 2015. 1, 2

  39. [47]

    Locality-constrained linear cod- ing for image classification

    Jinjun Wang, Jianchao Yang, Kai Yu, Fengjun Lv, Thomas Huang, and Yihong Gong. Locality-constrained linear cod- ing for image classification. In CVPR, 2010. 2

  40. [48]

    Repulsion loss: Detecting pedestri- ans in a crowd

    Xinlong Wang, Tete Xiao, Yuning Jiang, Shuai Shao, Jian Sun, and Chunhua Shen. Repulsion loss: Detecting pedestri- ans in a crowd. In CVPR, 2018. 2

  41. [49]

    Grassmann pooling as compact homoge- neous bilinear pooling for fine-grained visual classification

    Xing Wei, Yue Zhang, Yihong Gong, Jiawei Zhang, and Nanning Zheng. Grassmann pooling as compact homoge- neous bilinear pooling for fine-grained visual classification. In ECCV, 2018. 2

  42. [50]

    Kernelized subspace pooling for deep local descriptors

    Xing Wei, Yue Zhang, Yihong Gong, and Nanning Zheng. Kernelized subspace pooling for deep local descriptors. In CVPR, 2018. 2

  43. [51]

    Spatiotem- poral modeling for crowd counting in videos

    Feng Xiong, Xingjian Shi, and Dit-Yan Yeung. Spatiotem- poral modeling for crowd counting in videos. InICCV, 2017. 2

  44. [52]

    Structured model- ing of joint deep feature and prediction refinement for salient object detection

    Yingyue Xu, Dan Xu, Xiaopeng Hong, Wanli Ouyang, Ji Rongrong, Xu Min, and Guoying Zhao. Structured model- ing of joint deep feature and prediction refinement for salient object detection. In ICCV, 2019. 2

  45. [53]

    Cross-scene crowd counting via deep convolutional neural networks

    Cong Zhang, Hongsheng Li, Xiaogang Wang, and Xiaokang Yang. Cross-scene crowd counting via deep convolutional neural networks. In CVPR, 2015. 1, 2, 6

  46. [54]

    Crowd counting via scale-adaptive convolutional neural network

    Lu Zhang, Miaojing Shi, and Qiaobo Chen. Crowd counting via scale-adaptive convolutional neural network. In WACV,

  47. [55]

    Shifeng Zhang, Longyin Wen, Xiao Bian, Zhen Lei, and Stan Z. Li. Occlusion-aware r-cnn: Detecting pedestrians in a crowd. In ECCV, 2018. 2

  48. [56]

    Costeira, and Jose M

    Shanghang Zhang, Guanhang Wu, Joao P. Costeira, and Jose M. F. Moura. Fcn-rlstm: Deep spatio-temporal neural net- works for vehicle counting in city cameras. In ICCV, 2017. 1

  49. [57]

    Single-image crowd counting via multi-column convolutional neural network

    Yingying Zhang, Desen Zhou, Siqin Chen, Shenghua Gao, and Yi Ma. Single-image crowd counting via multi-column convolutional neural network. In CVPR, 2016. 1, 2, 3, 5, 6, 7

  50. [58]

    Bayesian human segmen- tation in crowded situations

    Tao Zhao and Ramakant Nevatia. Bayesian human segmen- tation in crowded situations. In CVPR, 2003. 1, 2

  51. [59]

    Crossing-line crowd counting with two-phase deep neural networks

    Zhuoyi Zhao, Hongsheng Li, Rui Zhao, and Xiaogang Wang. Crossing-line crowd counting with two-phase deep neural networks. In ECCV, 2016. 1

  52. [60]

    Discriminative fea- ture learning with foreground attention for person re- identification

    Sanping Zhou, Jinjun Wang, Deyu Meng, Yudong Liang, Yihong Gong, and Nanning Zheng. Discriminative fea- ture learning with foreground attention for person re- identification. IEEE Trans. Image Processing, 2019. 2

  53. [61]

    Point to set similarity based deep fea- ture learning for person re-identification

    Sanping Zhou, Jinjun Wang, Jiayun Wang, Yihong Gong, and Nanning Zheng. Point to set similarity based deep fea- ture learning for person re-identification. In CVPR, 2017. 2

Pith tools

Reviewed August 14, 2026 · model on record in the stance chip above.