Skip to content
AI.info

Research

OTI: A Model-free and Visually Interpretable Measure of Image Attackability

OTI: A Model-free and Visually Interpretable Measure of Image Attackability Overview Research area: Adversarial machine learning / computer vision, specifically sample-centric robustness analysis — me

arXiv
2601.17536
Published
2026-01-24
Authors
Jiaming Liang, Haowei Liu, Chi-Man Pun

AI summary

OTI: A Model-free and Visually Interpretable Measure of Image Attackability

Overview

Research area: Adversarial machine learning / computer vision, specifically sample-centric robustness analysis — measuring how "attackable" an individual benign image is, rather than how robust a model is.

Technical level: Intermediate. The underlying computation is simple and the paper explains it plainly, but it sits inside advanced adversarial-attack literature (decision boundaries, transferability, mid- and high-frequency perturbation theory).

Scope in one sentence: The paper proposes Object Texture Intensity (OTI), a measure that scores an image's vulnerability to adversarial perturbation using only the texture strength inside its semantic object — no model, no gradients, and no prior knowledge required.

What This Paper Is About

Given the same attack configuration, some images are easily fooled by adversarial perturbations while others resist. Existing tools for predicting which is which (IAARS, ZGP) all require a trained "model proxy" to supply gradients or minimal perturbations, and the features they extract cannot be visually tied back to the image a human is looking at. This paper asks whether image attackability can instead be predicted from intrinsic, human-perceivable properties of the image itself, and proposes OTI as the answer: lower object texture intensity means greater attackability.

Key Contributions

  1. First link between semantic-object texture intensity and attackability. The authors state this is the first work to reveal the relationship between the texture intensity of semantic objects and image attackability.
  2. Two theoretical explanations. They justify the relationship from decision-boundary theory (attackable images have a larger "degradation vector" and sit closer to the boundary) and from the mid- and high-frequency nature of adversarial perturbations.
  3. OTI itself — the first model-free, visually interpretable attackability measure. It combines Object Area Ratio (OAR) and Image Texture Intensity (ITI) via a Hadamard product, using the Sobel operator as the texture extractor.
  4. Broad empirical validation. Experiments across different tasks, attacks, domains, dataset sizes, defended and undefended targets, and configurations show OTI is effective and computationally efficient while giving a visual reference for human understanding of attackability.

Main Findings

  • Single-surrogate untargeted attacks: Ranking the 50K ImageNet Validation images by OTI and selecting the top-α subset raised average ASR by 13.39% over random sampling at α = 10% (perturbation budget L∞ = 10/255, six benchmarks).
  • Single-surrogate targeted attacks: With R50 as surrogate and L∞ = 16/255, OTI-based sampling improved average ASR by 6.79% at α = 10%, despite targeted attacks being harder.
  • Ensemble-based untargeted attacks: Across four ensemble benchmarks and three ensemble surrogate sets, OTI achieved an average improvement of 13.55% over random sampling at α = 10%.
  • Defended (adversarially trained) targets: Against six adversarially trained models with R50 as surrogate, OTI-based sampling produced a 12.24% higher ASR than random sampling at α = 10%.
  • Query-based attacks: Using the ImageNet Validation subset, OTI-selected vulnerable images required smaller perturbations under two state-of-the-art query-based methods with L∞ and L2 norms, confirming the intuition that more attackable images need less perturbation.
  • Non-natural segmentation domain: On the 200-image Kvasir-SEG polyp segmentation dataset with MI-FGSM at L∞ = 4/255 and U-Net as surrogate, both visualizations and detailed metrics confirm OTI remains effective.
  • Ablation: OTI outperforms both OAR and ITI in all cases, showing the two components are complementary. OAR generally beats ITI because it measures the quantity of semantically relevant elements, whereas ITI captures global, possibly semantically irrelevant texture. All three substantially beat random sampling.
  • Two empirical trends motivating the measure: more attackable images tend to have (1) smaller semantic object area and (2) weaker texture and lower contrast. Illustrations use the DeCoWA attack with R50 as surrogate and D161/SwinT as targets.

Methodology in Plain English

The authors start from a hunch visible in data: images with small objects, or with weak texture and low contrast, break more easily under attack. They formalize each hunch as a separate number.

  • Object Area Ratio (OAR) — run an object segmentation map over the image and compute the fraction of pixels the object occupies. Small object, low score.
  • Image Texture Intensity (ITI) — convolve the image with a texture extraction operator (the Sobel operator is sufficient and fast) and average the absolute response. Weak texture, low score.
  • OTI — multiply the object mask by the texture response, then average the absolute values over the whole image. In effect it measures texture strength only inside the semantic object, ignoring background clutter.

For segmentation of the object, the implementation is flexible: semantic segmentation networks, salient object detection, gradient activation maps, coarse annotations, or manual labels all work as long as the binarized map is roughly correct. In practice the authors use the VST saliency detector for ImageNet validation (where salient and semantic objects largely overlap) and the manual ground-truth annotations for Kvasir-SEG.

Evaluation is a ranking experiment: sort benign images by OTI, take the top α fraction, craft adversarial examples on a surrogate model, transfer them to black-box targets, and measure ASR against a random-sampling baseline. For segmentation tasks, precision, F1-score, and IoU replace ASR, where lower values indicate better identification of vulnerable images. All experiments ran on an NVIDIA A100 Tensor Core GPU and are based on a single run.

Why This Matters

Impact on research. The paper opens a sample-centric alternative to model-centric robustness analysis. Because OTI needs no proxy model — no public checkpoint, no gradients, no training — it sidesteps a real obstacle in fields like medical imaging, where task-specific models are not readily accessible and training costs are prohibitively high. It also provides a visual, human-checkable quantity, in contrast to discriminator embeddings or gradient statistics.

Real-world applications (as identified by the paper):

  • Active learning — identify the most informative images to label.
  • Adversarial training — select the most vulnerable images to generate adversarial examples efficiently (building on Madry et al. 2017).
  • Efficient attacks — focus attack computation on the most vulnerable images, which the query-based experiments show requires less perturbation.
  • Debiasing — construct effective subsets for debiasing (Zhu et al. 2025).

Industry relevance. A measure that is both cheap and model-free can be dropped into security auditing workflows where the target model is a black box or an unreleased third party. It gives a pre-deployment estimate of which of your images are exposure points without needing to query or retrain anything.

Future Directions

  • Other modalities. The authors state OTI is limited to image data, and explicitly name audio and text as valuable targets for similar measures.
  • Object segmenter choice. Since object(·) can be a segmentation network, a saliency detector, activation maps, coarse annotations, or manual labels, how sensitive OTI is to the quality and type of segmentation map remains an open question the paper does not resolve.
  • Texture operator choice. The authors report that the Sobel operator "suffices," leaving open whether richer texture operators would improve discrimination.
  • Generalizing beyond classification and segmentation. Experiments cover natural image classification, polyp segmentation, single and ensemble surrogates, targeted and untargeted attacks, and defended models — but what other task families OTI transfers to is untested.

Target Audience

Researchers and practitioners in adversarial machine learning and trustworthy AI — particularly those working on black-box attacks, adversarial training sample selection, active learning, and data-centric robustness. Security engineers auditing models they cannot access also benefit, as do medical imaging researchers who face exactly the "no accessible public model" problem the paper highlights. Readers need only a basic grasp of adversarial examples; the theory sections assume some familiarity with decision boundaries and frequency-domain analysis of perturbations.

Authors’ abstract

Despite the tremendous success of neural networks, benign images can be corrupted by adversarial perturbations to deceive these models. Intriguingly, images differ in their attackability. Specifically, given an attack configuration, some images are easily corrupted, whereas others are more resistant. Evaluating image attackability has important applications in active learning, adversarial training, and attack enhancement. This prompts a growing interest in developing attackability measures. However, existing methods are scarce and suffer from two major limitations: (1) They rely on a model proxy to provide prior knowledge (e.g., gradients or minimal perturbation) to extract model-dependent image features. Unfortunately, in practice, many task-specific models are not readily accessible. (2) Extracted features characterizing image attackability lack visual interpretability, obscuring their direct relationship with the images. To address these, we propose a novel Object Texture Intensity (OTI), a model-free and visually interpretable measure of image attackability, which measures image attackability as the texture intensity of the image's semantic object. Theoretically, we describe the principles of OTI from the perspectives of decision boundaries as well as the mid- and high-frequency characteristics of adversarial perturbations. Comprehensive experiments demonstrate that OTI is effective and computationally efficient. In addition, our OTI provides the adversarial machine learning community with a visual understanding of attackability.

Read the original paper