Pith. sign in

REVIEW 4 major objections 6 minor 52 references

PDC-ViT : Source Camera Identification using Pixel Difference Convolution and Vision Transformer

T0 review · 4 major / 6 minor · reviewed 2026-08-10 · deepseek-v4-flash

Pith's one-line read PDC-ViT claims that pixel-difference convolution features fed into a Vision Transformer outperform prior source camera identification methods on five public benchmarks.

desk verdict Plausible PDC+ViT combination for source camera ID, but the evaluation is under-specified and the headline numbers are not yet trustworthy. read the letter →

arxiv 2501.16227 v1 pith:UMNZ7VA5 submitted 2025-01-27 cs.CV

classification cs.CV
keywords sourcecameraidentificationPixelDifferenceConvolutionVisionTransformerangularradialmultimediaforensicsmodeldeeplearning
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

The paper proposes PDC-ViT, a source camera identification method that replaces content-based feature extraction with Pixel Difference Convolution (PDC), computing angular and radial differences between neighboring pixels, and feeds those features into a Vision Transformer for classification. The claim is that this combination captures sensor-specific pixel-level variations better than conventional CNN backbones, and the reported results support that: 94.30% on Vision, 84.06% on Daxing, 94.22% on Socrates, 92.29% on QUFVD, and 74.77% on Video-ACID, each beating previously published methods on those benchmarks. A sympathetic reader would care because source camera identification is used in digital forensics to trace images and videos to the device that captured them, and the paper argues that pixel-difference features plus attention give a content-independent, high-accuracy route to that trace.

What carries the argument

The load-bearing mechanism is Pixel Difference Convolution, which replaces the vanilla convolution sum with weighted differences between paired neighboring pixels: $Y = \sum_{(x_i,x_i') \in P} w_i \,(x_i - x_i')$. Angular PDC uses 3x3 kernels that follow a circular ordering of pixel pairs; Radial PDC uses 5x5 kernels that pair a center pixel with radially arranged neighbors. These PDC feature maps are concatenated and embedded as 64x64 patches into a Vision Transformer with six encoder layers, sixteen attention heads, and embedding dimension 1024. The PDC stage is what suppresses scene content and exposes sensor-specific micro-patterns; the ViT stage is what classifies those patterns globally. The paper's comparison of APDC-only, RPDC-only, and combined variants isolates the contribution of each difference geometry.

What would settle it

Re-run the evaluation with a strict camera-disjoint or video-disjoint split, training on some cameras or videos and testing only on cameras or videos never seen in training, and compare the accuracy. If PDC-ViT's margin over baselines collapses or drops substantially, the claimed generalization to source cameras is an artifact of same-video frame overlap.

Watch

Extended reading notes

Core claim

On its own terms, the paper's central claim is that source camera identity is best learned from pixel-difference statistics rather than from scene content. The proposed PDC-ViT computes Angular PDC with 3x3 kernels and Radial PDC with 5x5 kernels, concatenates their feature maps, and feeds the resulting PDC features as patches to a Vision Transformer. Across five public datasets, the authors report accuracy of 94.30% (Vision), 84.06% (Daxing), 94.22% (Socrates), 92.29% (QUFVD), and 74.77% (Video-ACID with added devices), exceeding the best prior results they compare against on each benchmark. They also report that combining angular and radial branches outperforms either branch alone, with 92.29% versus 85.47% and 83.36% on QUFVD, and that PDC feature clusters are more separated in t-SNE visualization than ResNet101 features.

Load-bearing premise

The reported accuracy depends on the 80/20 train/test split being free of frame-level leakage: frames from the same video or recording session must not appear in both training and testing, because the model could then recognize a particular video's noise pattern rather than the camera's fingerprint.

Editorial extensions

If this is right

  • If the reported numbers hold, pixel-difference features plus a Vision Transformer are enough to identify source cameras at state-of-the-art accuracy on closed-set benchmarks with up to 35 devices.
  • Combining angular and radial PDC branches improves over either branch alone, so the two difference geometries carry complementary identity information.
  • The method reaches competitive accuracy on both image datasets and video-frame datasets, suggesting the pixel-difference signal survives video compression and scene variation.
  • On Video-ACID, the overall false negative rate of 23.4% and false positive rate of 0.92% are lower than the PRNU-based baselines compared against, which would mean fewer missed identifications and fewer false attributions in forensic use.

Reading between the lines

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

  • A camera-disjoint evaluation is the natural next test: if the 94.30% Vision accuracy persists when training and test sets share no camera, the method would generalize to unseen devices of the same models; the paper's random 80/20 split does not establish this.
  • Because PDC suppresses scene content, the same backbone might transfer to manipulated or recompressed images more gracefully than content-based CNNs, but the paper does not test compression or anti-forensic manipulation.
  • The architecture suggests a cheap ablation probe: keeping the same ViT, replacing PDC with ordinary convolution at matched parameter count would isolate whether the pixel-difference operation itself, rather than the larger effective receptive field, drives the gain.
  • The reported t-SNE separation of PDC features against ResNet101 features hints that an open-set or verification variant of PDC-ViT could work, but the paper only evaluates closed-set classification.
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

4 major / 6 minor

Summary. The paper proposes PDC-ViT, a source camera identification method that computes Angular and Radial Pixel Difference Convolution features from input images and feeds them to a Vision Transformer for classification. The authors report closed-set identification accuracies of 94.30% on Vision, 84.06% on Daxing, 94.22% on Socrates, 92.29% on QUFVD, and 74.77% on Video-ACID, and they compare these numbers with previously published results on the same datasets to claim state-of-the-art performance. The manuscript also provides confusion matrices and t-SNE visualizations for some datasets.

Significance. If the reported results survive a clean evaluation, the idea of using PDC as a feature extractor for ViT-based source camera identification is a reasonable engineering contribution that avoids explicit PRNU estimation and could be useful for forensic applications. The paper is honest about its limitations (Section 5) and uses public datasets, which makes the claims checkable in principle. However, the current validation does not yet establish the central 'superiority' claim: the split protocol may allow frame-level leakage, the baselines are compared under heterogeneous protocols, and several numbers are internally inconsistent.

major comments (4)
  1. [§4.1, §4.3] The evaluation does not confirm that the training/validation/test split is disjoint at the video or device level. Section 4.1 states only that 'we used 80% of each dataset for Training/validation and 20% for testing,' and Section 4.3 says 'the images are selected randomly from each set of cameras'; for video-based datasets such as Vision, Daxing, QUFVD, and Video-ACID, this procedure can place frames from the same video or recording session in both training and test, allowing the model to exploit video-specific content and inflate accuracy. A video-disjoint (or at least session-disjoint) split is necessary to support the claim that PDC-ViT generalizes to new captures from known cameras; please describe the exact partition rule and rerun the experiments under a disjoint partition.
  2. [Tables 2–5] The comparisons against state-of-the-art methods are not controlled. In Table 2, baseline accuracies are cited for different numbers of devices (11, 28, or 35), different input resolutions (32x32 to 480x800), and different training protocols; Table 4 gives no protocol information for the baselines; and Table 5 mixes resolutions and does not specify the device subset used for evaluation. Since accuracy in this task depends strongly on class count, image size, and split, the claimed margins over prior work are not established by the presented numbers. Please either re-run the baselines under identical conditions or clearly justify why cross-paper comparisons with differing protocols are valid.
  3. [§4.4, §4.6, Table 3, Table 5] Several reported numbers are internally inconsistent. Section 4.4 reports a Daxing accuracy of 82.81 but Table 3 reports 84.06 for the same setting; Section 4.6 says PDC-ViT, RPDC-ViT, and APDC-ViT achieved 92.29%, 85.47%, and 83.36%, respectively, while Table 5 lists RPDC-ViT as 83.36 and APDC-ViT as 85.47, reversing the two variants. These contradictions need to be resolved and the correct table/text values verified before the accuracy claims can be assessed.
  4. [§4.4–§4.7] All reported accuracies are single-run numbers without error bars or repeated trials, and the stability claim in Section 4.7 is based on one run. Given that some margins over the second-best method are small (e.g., 1.91% in Table 4), statistical significance is unknown. Please provide mean and standard deviation over multiple training seeds and, for video datasets, per-video aggregated metrics to show that the improvement is not due to a particular train/test draw.
minor comments (6)
  1. [§3.1] In the sentence 'the use of pixel difference convolution exploding the angular and radial differences ... using 3 × 3 kernels for Angular PDC (APDC) and 5 × 5 kernels for Radial PDC (APDC)', the second occurrence of '(APDC)' should be '(RPDC)'.
  2. [§4.2] The sentence 'In the case of the iPhone 6S (Plus), 23 different smartphone models are available' is unclear; it seems to describe the Daxing dataset but the wording should be revised.
  3. [§4.7] The text uses 'FNTs' where 'FNRs' is intended, and the abbreviation 'Video W A PRNU' is never defined; please define it at first use (likely 'weighted averaging PRNU' from reference [27]).
  4. [Figure 4] The caption of Figure 4 lists 'Vision dataset' in its title while the subfigures and text refer to QUFVD; please correct the caption to match the content.
  5. [Table 6] The 'Overall' row in Table 6 does not specify whether the FNR and FPR are macro-averaged over devices or micro-averaged over all test samples; please clarify the averaging procedure.
  6. [Data availability] The code availability statement says code 'will be published when the paper is accepted'; since the evaluation protocol is a central issue, releasing the exact data split would substantially strengthen reproducibility.

Circularity Check

0 steps flagged · score 0.0 of 10

Empirical architecture evaluation; no derivation reduces to its own inputs.

full rationale

PDC-ViT is an empirical architecture paper: PDC feature extraction (Eqs. 2-3, based on prior external work [28-30]) is combined with a standard ViT classifier [33], and headline accuracies are measured on public datasets under a supervised split. No closed-form result is derived from a formula that already contains the answer, and no fitted parameter is renamed as a prediction. The only self-referential elements are dataset [7] and comparison baselines [27], [37] authored by the same group, but these are used as external benchmarks, not to set constants or to justify the method's correctness; the comparisons would not change if the baselines were replaced by independent implementations. Reported inconsistencies (Daxing 82.81 vs 84.06; APDC/RPDC accuracy reversal in Sec 4.6) and the unverified random frame-level split are validity/reproducibility concerns, not circularity. There is no self-citation chain that forces the outcome, so the circularity score is 0.

Assumptions & free parameters 5 free parameters · 3 assumptions · 0 invented entities

The central accuracy claims rest on three domain assumptions: that pixel-difference features capture camera-specific noise, that the 80/20 split avoids frame-level leakage, and that cross-paper accuracy comparisons are meaningful despite different resolutions and device counts. No invented entities are introduced. The only free quantities are hand-set hyperparameters and the fixed 224x224 crop.

free parameters (5)
  • learning rate = 0.00003
    Chosen by hand with no schedule or sensitivity analysis; the Adam optimizer is used at this fixed rate.
  • input crop size = 224 x 224
    All datasets are cropped to 224x224; the Daxing comparisons show that input resolution strongly affects accuracy, so this hand choice influences the reported results.
  • ViT patch size = 64 x 64
    Set for the Vision Transformer input; no ablation on patch size is reported.
  • ViT hyperparameters = dim 1024, depth 6, heads 16, mlp_dim 2048, dropout 0.1
    Hand-selected architecture hyperparameters with no ablation or sensitivity analysis.
  • number of PDC blocks per type = 2 blocks each for APDC and RPDC
    The architecture depth is chosen by hand, and no ablation shows this configuration is optimal.
assumptions (3)
  • domain assumption PDC features computed from angular and radial pixel differences retain camera-specific sensor noise needed for identification.
    The paper assumes pixel-difference statistics are discriminative across cameras; this is plausible but not proven in isolation against other feature extractors.
  • domain assumption The 80/20 train-validation-test split avoids frame-level leakage and respects each dataset's intended evaluation structure.
    Section 4.1 states the split but does not describe whether frames from the same video or camera session are kept in one partition; the claimed accuracies depend on this.
  • domain assumption Reported accuracies of competing methods in Tables 2-5 are directly comparable despite differing image sizes, device counts, and protocols.
    The comparison tables mix resolutions and dataset subsets from different papers without recalibration, so the performance gap is not a controlled comparison.

how reviews work

0 comments
Cite this review

Pith. "Pith review of PDC-ViT : Source Camera Identification using Pixel Difference Convolution and Vision Transformer." pith.science (2026). https://pith.science/paper/UMNZ7VA5

@misc{pith2026250116227,
  author       = {Pith},
  title        = {Pith review of: PDC-ViT : Source Camera Identification using Pixel Difference Convolution and Vision Transformer},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/UMNZ7VA5}},
  note         = {Machine review of arXiv:2501.16227}
}
read the original abstract

Source camera identification has emerged as a vital solution to unlock incidents involving critical cases like terrorism, violence, and other criminal activities. The ability to trace the origin of an image/video can aid law enforcement agencies in gathering evidence and constructing the timeline of events. Moreover, identifying the owner of a certain device narrows down the area of search in a criminal investigation where smartphone devices are involved. This paper proposes a new pixel-based method for source camera identification, integrating Pixel Difference Convolution (PDC) with a Vision Transformer network (ViT), and named PDC-ViT. While the PDC acts as the backbone for feature extraction by exploiting Angular PDC (APDC) and Radial PDC (RPDC). These techniques enhance the capability to capture subtle variations in pixel information, which are crucial for distinguishing between different source cameras. The second part of the methodology focuses on classification, which is based on a Vision Transformer network. Unlike traditional methods that utilize image patches directly for training the classification network, the proposed approach uniquely inputs PDC features into the Vision Transformer network. To demonstrate the effectiveness of the PDC-ViT approach, it has been assessed on five different datasets, which include various image contents and video scenes. The method has also been compared with state-of-the-art source camera identification methods. Experimental results demonstrate the effectiveness and superiority of the proposed system in terms of accuracy and robustness when compared to its competitors. For example, our proposed PDC-ViT has achieved an accuracy of 94.30%, 84%, 94.22% and 92.29% using the Vision dataset, Daxing dataset, Socrates dataset and QUFVD dataset, respectively.

Figures

Figures reproduced from arXiv: 2501.16227 by the authors.

Figure 1
Figure 1. Flowchart of the proposed network. In summary, the various methods proposed for camera model identification and source device identification offer significant advancements in digital forensics and multimedia analysis. Techniques such as dual-branch convolutional neural networks, hierarchical deep learning models, Discriminative Feature Projection, as well as the deployment of different CNN blocks have shown notable … view at source ↗
Figure 2
Figure 2. Selection of pixel pairs and convolution in Angular PDC. [PITH_FULL_IMAGE:figures/full_fig_p007_2.png] view at source ↗
Figure 3
Figure 3. Confusion matrices obtained of the evaluation using PDC-ViT on Vision and Daxing datasets. [PITH_FULL_IMAGE:figures/full_fig_p010_3.png] view at source ↗
Figures from the paper (4 more)
Figure 4
Figure 4. Figure 4: t-SNE visualization on QUFVD and Vision dataset [PITH_FULL_IMAGE:figures/full_fig_p011_4.png]
Figure 5
Figure 5. Figure 5: Confusion matrices obtained of the evaluation using APDC-ViT, RPDC-ViT, and PDC-ViT [PITH_FULL_IMAGE:figures/full_fig_p012_5.png]
Figure 6
Figure 6. Figure 6: Confusion matrix using PDC-ViT on Video-ACID dataset [PITH_FULL_IMAGE:figures/full_fig_p013_6.png]
Figure 7
Figure 7. Figure 7: FNR and FPR of of PDC-ViT and state-of-the-art methods on Video-ACID + Video WA PRNU [PITH_FULL_IMAGE:figures/full_fig_p015_7.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

52 extracted references · 48 canonical work pages

  1. [1]

    Akbari, Y., Al-maadeed, S., Elharrouss, O., Khelifi, F., Lawgaly, A., & Bouridane, A. (2022). Digi- tal forensic analysis for source video identification: A survey. Forensic Science International: Digital Investigation, 41, 301390. 17

  2. [2]

    Pasquini, C., Amerini, I.,& Boato, G. (2021). Media forensics on social media platforms: a survey. EURASIP Journal on Information Security, 2021(1), 1-19

  3. [4]

    ”VISION: a video and image dataset for source identification.” EURASIP Journal on Information Security 2017.1 (2017): 1-16

    Shullani, Dasara, et al. ”VISION: a video and image dataset for source identification.” EURASIP Journal on Information Security 2017.1 (2017): 1-16

  4. [5]

    Tian, H., Xiao, Y., Cao, G., Zhang, Y., Xu, Z., & Zhao, Y. (2019). Daxing smartphone identification dataset. IEEE Access, 7, 101046-101053

  5. [6]

    Galdi, C., Hartung, F., & Dugelay, J. L. (2019, February). SOCRatES: A Database of Realistic Data for SOurce Camera REcognition on Smartphones. In ICPRAM (pp. 648-655)

  6. [7]

    Akbari, Y., Al-Maadeed, S., Al-Maadeed, N., Al-Ali, A., Khelifi, F., & Lawgaly, A. (2022). A new forensic video database for source smartphone identification: Description and analysis. IEEE Access, 10, 20080-20091

  7. [8]

    C., Zhao, X., Mayer, O., Chen, C., Shackleford, J

    Hosler, B. C., Zhao, X., Mayer, O., Chen, C., Shackleford, J. A., & Stamm, M. C. (2019). The video authentication and camera identification database: A new database for video forensics. IEEE Access, 7, 76937-76948

  8. [9]

    (2018, December)

    Ferreira, A., Chen, H., Li, B., & Huang, J. (2018, December). An inception-based data-driven ensemble approach to camera model identification. In 2018 IEEE International Workshop on Information Forensics and Security (WIFS) (pp. 1-7). IEEE

Show all 52 references
  1. [10]

    Freire-Obreg´ on, D., Narducci, F., Barra, S., & Castrillon-Santana, M. (2019). Deep learning for source camera identification on mobile devices. Pattern Recognition Letters, 126, 86-91

  2. [11]

    Bernacki, J. (2021). Robustness of digital camera identification with convolutional neural networks. Multimedia Tools and Applications, 80(19), 29657-29673

  3. [12]

    Liu, Y., Zou, Z., Yang, Y., Law, N. F. B., & Bharath, A. A. (2021). Efficient source camera identification with diversity-enhanced patch selection and deep residual prediction. Sensors, 21(14), 4701

  4. [13]

    Wang, B., Wang, Y., Hou, J., Li, Y., & Guo, Y. (2022). Open-Set source camera identification based on envelope of data clustering optimization (EDCO). Computers & Security, 113, 102571

  5. [14]

    Bayar and M

    B. Bayar and M. C. Stamm, ”Towards Open Set Camera Model Identification Using a Deep Learning Framework,” 2018 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP), Calgary, AB, Canada, 2018, pp. 2007-2011, doi: 10.1109/ICASSP.2018.8462383

  6. [15]

    Bayar and M

    B. Bayar and M. C. Stamm, ”Augmented convolutional feature maps for robust CNN-based cam- era model identification,” 2017 IEEE International Conference on Image Processing (ICIP), Beijing, China,2017, pp. 4098-4102, doi: 10.1109/ICIP.2017.8297053

  7. [16]

    Mayer and M

    O. Mayer and M. C. Stamm, ”Forensic Similarity for Digital Images,” in IEEE Transactions on Infor- mation Forensics and Security, vol. 15, pp. 1331-1346, 2020, doi: 10.1109/TIFS.2019.2924552

  8. [17]

    X. Ding, Y. Chen, Z. Tang and Y. Huang, ”Camera Identification Based on Domain Knowledge- Driven Deep Multi-Task Learning,” in IEEE Access, vol. 7, pp. 25878-25890, 2019, doi: 10.1109/AC- CESS.2019.2897360

  9. [18]

    A., & Stamm, M

    Hosler, B., Mayer, O., Bayar, B., Zhao, X., Chen, C., Shackleford, J. A., & Stamm, M. C. (2019, May). A video camera model identification system using deep learning and fusion. In ICASSP 2019-2019 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP...

  10. [19]

    ”Video camera identification from sensor pattern noise with a constrained ConvNet.” arXiv preprint arXiv:2012.06277 (2020)

    Timmerman, Derrick, et al. ”Video camera identification from sensor pattern noise with a constrained ConvNet.” arXiv preprint arXiv:2012.06277 (2020). 18

  11. [20]

    In: Proceedings of the IEEE conference on computer vision and pattern recognition, pp 2433–2442

    Kligvasser I, Shaham TR, Michaeli T (2018) xunit: learning a spatial activation function for efficient image restoration. In: Proceedings of the IEEE conference on computer vision and pattern recognition, pp 2433–2442

  12. [21]

    Xiao, Y., Tian, H., Cao, G., Yang, D., & Li, H. (2022). Effective PRNU extraction via densely connected hierarchical network. Multimedia Tools and Applications, 1-21

  13. [22]

    Berthet, A., Galdi, C., & Dugelay, J. L. (2022, February). Towards a More Reliable and Reproducible Protocol of Source Camera Recognition. In ICPRAM (pp. 745-752)

  14. [23]

    Marra, F., Gragnaniello, D., & Verdoliva, L. (2018). On the vulnerability of deep learning to adversarial attacks for camera model identification. Signal Processing: Image Communication, 65, 240-248

  15. [24]

    U., & Naskar, R

    Sameer, V. U., & Naskar, R. (2020). Deep siamese network for limited labels classification in source camera identification. Multimedia Tools and Applications, 79(37), 28079-28104

  16. [25]

    S., Timmerman, D., Alegre, E., & Azzopardi, G

    Bennabhaktula, G. S., Timmerman, D., Alegre, E., & Azzopardi, G. (2022). Source Camera Device Identification from Videos. SN Computer Science, 3(4), 1-15

  17. [26]

    Mayer, Owen, Brian Hosler, and Matthew C. Stamm. ”Open set video camera model verification.” ICASSP 2020-2020 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP). IEEE, 2020

  18. [27]

    (2022, May)

    Lawgaly, A., Khelifi, F., Bouridane, A., Al-Maaddeed, S., & Akbari, Y. (2022, May). PRNU Estimation based on Weighted Averaging for Source Smartphone Video Identification. In 2022 8th International Conference on Control, Decision and Information Technologies (CoDIT) (Vol. 1, p...

  19. [28]

    & Zhao, G

    Yu, Z., Zhao, C., Wang, Z., Qin, Y., Su, Z., Li, X., ... & Zhao, G. (2020). Searching central difference convolutional networks for face anti-spoofing. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (pp. 5295-5305)

  20. [29]

    Liu, W., Su, Z., & Liu, L. (2021). Beyond Vanilla Convolution: Random Pixel Difference Convolution for Face Perception. IEEE Access, 9, 139248-139259

  21. [30]

    & Liu, L

    Su, Z., Liu, W., Yu, Z., Hu, D., Liao, Q., Tian, Q., ... & Liu, L. (2021). Pixel difference networks for efficient edge detection. In Proceedings of the IEEE/CVF International Conference on Computer Vision (pp. 5117-5127)

  22. [31]

    Vaswani, A., Shazeer, N., Parmar, N., Uszkoreit, J., Jones, L., Gomez, A. N., ... & Polosukhin, I. (2017). Attention is all you need. Advances in neural information processing systems, 30

  23. [32]

    Ramachandran, P., Parmar, N., Vaswani, A., Bello, I., Levskaya, A., & Shlens, J. (2019). Stand-alone self-attention in vision models. Advances in Neural Information Processing Systems, 32

  24. [33]

    & Houlsby, N

    Dosovitskiy, A., Beyer, L., Kolesnikov, A., Weissenborn, D., Zhai, X., Unterthiner, T., ... & Houlsby, N. (2020). An image is worth 16x16 words: Transformers for image recognition at scale. arXiv preprint arXiv:2010.11929

  25. [34]

    (2020, August)

    Carion, N., Massa, F., Synnaeve, G., Usunier, N., Kirillov, A., & Zagoruyko, S. (2020, August). End- to-end object detection with transformers. In European conference on computer vision (pp. 213-229). Springer, Cham

  26. [35]

    Yuan, L., Chen, Y., Wang, T., Yu, W., Shi, Y., Jiang, Z. H., ... & Yan, S. (2021). Tokens-to-token vit: Training vision transformers from scratch on imagenet. In Proceedings of the IEEE/CVF International Conference on Computer Vision (pp. 558-567)

  27. [36]

    Rana, K., Goyal, P., & Sharma, G. (2024). Dual-branch convolutional neural network for robust camera model identification. Expert Systems with Applications, 238, 121828. 19

  28. [37]

    Akbari, Y., Al Maadeed, S., Elharrouss, O., Ottakath, N., & Khelifi, F. (2024). Hierarchical deep learning approach using fusion layer for Source Camera Model Identification based on video taken by smartphone. Expert Systems with Applications, 238, 121603

  29. [38]

    Huan, S., Liu, Y., Yang, Y., & Law, N. F. B. (2024). Camera model identification based on dual-path enhanced ConvNeXt network and patches selected by uniform local binary pattern. Expert Systems with Applications, 241, 122501

  30. [39]

    Wang, B., Hou, J., Wei, F., Yu, F., & Zheng, W. (2023). MDM-CPS: a few-shot sample approach for source camera identification. Expert Systems with Applications, 229, 120315

  31. [40]

    Korgialas, C., Tzolopoulos, G., & Kotropoulos, C. (2024). On Explainable Closed-Set Source Device Identification Using log-Mel Spectrograms from Videos’ Audio: A Grad-CAM Approach. IEEE Access

  32. [41]

    H., Haider, M

    Al Banna, M. H., Haider, M. A., Al Nahian, M. J., Islam, M. M., Taher, K. A., & Kaiser, M. S. (2019, January). Camera model identification using deep CNN and transfer learning approach. In 2019 international conference on robotics, electrical and signal processing techniques (...

  33. [42]

    Dal Cortivo, D., Mandelli, S., Bestagini, P., & Tubaro, S. (2021). CNN-based multi-modal camera model identification on video sequences. Journal of Imaging, 7(8), 135

  34. [43]

    Wang, Y., Sun, Q., & Rong, D. (2024). Generalizing Source Camera Identification Based on Integral Image Optimization and Constrained Neural Network. Electronics, 13(18), 3630

  35. [44]

    Chen, C., & Stamm, M. C. (2021). Robust camera model identification using demosaicing residual features. Multimedia Tools and Applications, 80(8), 11365-11393

  36. [45]

    Zunaed, M., & Fattah, S. A. (2022). A Novel Hierarchical-Classification-Block Based Convolutional Neural Network for Source Camera Model Identification. arXiv preprint arXiv:2212.04161

  37. [46]

    Wang, Y., Sun, Q., Rong, D., Li, S., & Xu, L. D. (2021). Image source identification using convolutional neural networks in IoT environment. Wireless Communications and Mobile Computing, 2021(1), 5804665

  38. [47]

    Lorch, B., Schirrmacher, F., Maier, A., & Riess, C. (2021). Reliable camera model identification using sparse gaussian processes. IEEE Signal Processing Letters, 28, 912-916

  39. [48]

    Kang, C., & Kang, S. U. (2020). Camera model identification using a deep network and a reduced edge dataset. Neural Computing and Applications, 32(17), 13139-13146

  40. [49]

    Berthet, A., & Dugelay, J. L. (2022, January). Comparative study of DL-based methods performance for camera model identification with multiple databases. In MWSF 2022, Media Watermarking, Security, and Forensics Conference

  41. [50]

    J. Liu, B. Liu, H. Zhou, H. Li, Y. Liu, Tokenmix: Rethinking image mixing for data augmentation in vision transformers, in: European Conference on Computer Vision, Springer, 2022, pp. 455–471

  42. [51]

    Y. Liu, C. Matsoukas, F. Strand, H. Azizpour, K. Smith, Patchdropout: Economizing vision trans- formers using patch dropout, in: Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision, 2023, pp. 3953–3962

  43. [52]

    Dehghani, J

    M. Dehghani, J. Djolonga, B. Mustafa, P. Padlewski, J. Heek, J. Gilmer, A. P. Steiner, M. Caron, R. Geirhos, I. Alabdulmohsin, et al., Scaling vision transformers to 22 billion parameters, in: International Conference on Machine Learning, PMLR, 2023, pp. 7480–7512

  44. [53]

    J.-N. Chen, S. Sun, J. He, P. H. Torr, A. Yuille, S. Bai, Transmix: Attend to mix for vision transformers, in: Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, 2022, pp. 12135–12144 20

Pith tools

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