CVSearch: Empowering Multimodal LLMs with Cognitive Visual Search for High-Resolution Image Perception
Liupeng Li 1 2 Haoqian Kang 1 Zhenyu Lu 2 3 Jinpeng Wang 1 Bin Chen 1 Ke Chen 2 Yaowei Wang 1 2 What color is the statue at the top of the monument? What type of vehicle is the blue and white car?
arXiv:2605.23655v1 [cs.CV] 22 May 2026
Abstract
Is there a red car?
High-resolution (HR) image perception presents a key bottleneck for multimodal large language models (MLLMs). While visual search offers a promising solution, existing methods struggle with the trade-off between coverage and efficiency. Visual expert-assisted search is efficient but prone to blind spots when proposals fail, whereas scan-based search guarantees coverage at the cost of computational redundancy and semantic fragmentation. To address this dilemma, we introduce CVSearch, a training-free adaptive framework that dynamically schedules search strategies via an Assess-then-Search workflow. Specifically, CVSearch first invokes expertassisted search when global information is insufficient, and only triggers a novel semanticaware scanning mechanism upon failure. Distinct from rigid grid partitioning, this efficient scanning paradigm incorporates Semantic Guided Adaptive Patching to decompose images into semantically consistent regions, effectively mitigating object fragmentation. Furthermore, we devise a Dynamic Bottom-Up Search strategy driven by a Visual Complexity prior to enable efficient and precise iterative exploration of local details. Extensive experiments on HR benchmarks demonstrate that CVSearch achieves state-of-the-art accuracy while substantially improving search efficiency. Code is released at ICML26-CVSearch.
(a) Varying perceptual scales in real-world scenarios. Method
Efficiency
Direct Answer
--
High
Visual Expert Assisted
DyFo
Medium
Scan-based Search
RAP
Low
(b) Comparison of different visual search modes. +4.1 ×2.9 +4.8
×1.5
(c) Performance comparison on HR benchmarks. Figure 1. (a) Real-world HR image perception requires handling targets with distinct granularities. (b) Existing methods struggle to balance coverage and efficiency. Visual expert assisted methods lack sufficient coverage for tiny targets, while scan-based methods ensure coverage but suffer from low efficiency. (c) Built upon Qwen2.5-VL-7B, CVSearch achieves the best balance, delivering SOTA accuracy with competitive throughput.
1. Introduction The integration of Large Language Models (LLMs) (Touvron et al., 2023; Team et al., 2024) with visual encoders (Radford et al., 2021; Zhai et al., 2023) has revolutionized multimodal understanding, giving birth to Multimodal LLMs (MLLMs) capable of sophisticated reasoning. Despite this progress, current MLLMs largely rely on fixedresolution processing schemes (Liu et al., 2024; Wang et al., 2024), which inevitably introduce a perceptual bottleneck. High-resolution (HR) images are aggressively downsampled, rendering the model blind to small objects and finegrained details essential for real-world tasks (Zhang et al., 2024a), as illustrated in Figure 1(a).
1
Harbin Institute of Technology, Shenzhen, China 2 Peng Cheng Laboratory, Shenzhen, China 3 Shenzhen Institutes of Advanced Technology, Chinese Academy of Sciences, Shenzhen, China. Correspondence to: Jinpeng Wang <[email protected]>, Yaowei Wang <[email protected]>. Proceedings of the 43 rd International Conference on Machine Learning, Seoul, South Korea. PMLR 306, 2026. Copyright 2026 by the author(s).
To mitigate this limitation, recent research has branched into three paradigms: (1) Cropping-based paradigms (Li 1
CVSearch: Empowering Multimodal LLMs with Cognitive Visual Search for High-Resolution Image Perception
et al., 2024a;b;c) partition images into local crops. While this preserves details, it severs spatial coherence, causing semantic fragmentation where objects spanning crop boundaries are split into disjoint tokens. (2) HR Visual Encoder paradigms (Ge et al., 2024; Luo et al., 2025) inject highfrequency features via complex architectural modifications (hierarchical backbones or adapters) but struggle with varying aspect ratios. (3) Visual Search paradigms (Wu & Xie, 2024; Wang et al., 2025c; Shen et al., 2025; Lu et al., 2026a;b) represent a shift from passive processing to active perception, dynamically exploring relevant regions.
mechanism interprets it as a signal to activate the proposed Scene-aware Scanning mode, ensuring a seamless transition from rapid localization to comprehensive exploration. Secondly, within the Scene-aware Scanning phase, we introduce two complementary strategies to mitigate the limitations of conventional scanning. To address semantic fragmentation, we propose Semantic Guided Adaptive Patching (SGAP). Capitalizing on the insight (Zou et al., 2023; Fu et al., 2025) that deep visual features from the expert retain rich scene semantics even when explicit localization fails, SGAP clusters these features to partition the image into semantically coherent regions rather than rigid grids. Simultaneously, it quantifies a Visual Complexity Prior to identify and prune redundant background branches, focusing computation on high-entropy areas. Furthermore, to overcome the error propagation inherent in top-down methods, we devise a Dynamic Bottom-Up Search strategy. By initiating exploration from information-dense leaf nodes and aggregating evidence upwards, this strategy not only ensures robust evidence collection but also enables an iterative search mechanism, allowing the model to refine its focus and recover from initial search failures.
While visual search offers a promising alternative, existing approaches face a stark dichotomy between efficiency and robustness (see Figure 1(b)). Visual Expert Assisted Search (e.g., SEAL (Wu & Xie, 2024), DyFo (Li et al., 2025a), V2 -SAM (Pan et al., 2025)) leverages external vision experts for rapid localization. While efficient, these systems are fragile because their performance is upper-bounded by the expert’s capability. In scenarios involving tiny or occluded objects where the expert fails to generate accurate proposals, the MLLM is left with no fallback, leading to irreversible blind spots. Conversely, Scan-based Visual Search (e.g., RAP (Wang et al., 2025d), ZoomEye (Shen et al., 2025), DC2 (Wang et al., 2025c)) ensures exhaustive coverage through rigid grid scanning but is semanticagnostic. These methods suffer from two critical drawbacks. They waste computation on information-sparse backgrounds due to uniform resource allocation, incurring prohibitive latency, and their rigid grid-based partitioning fractures object semantics, undermining downstream reasoning. This dichotomy presents a critical challenge: How can we bridge the gap between the efficiency of expert guidance and the robustness of exhaustive search, without compromising semantic integrity?
Our contributions are summarized as follows: • Cognitive Hierarchical Framework: We present CVSearch, the first training-free framework to unify the efficiency of visual expert assisted search with the robustness of semantic-aware scanning via a cognitive, failureaware switching mechanism. • Semantic-Preserving Granularity: We propose (SGAP), which repurposes visual expert features to construct semantically consistent image patches, overcoming the fragmentation of rigid grids. • Robust Bottom-Up Exploration: We introduce a dynamic bottom-up search strategy that prevents error propagation inherent in top-down methods, significantly improving small object perception. • SOTA Performance: Extensive experiments on HR benchmarks demonstrate that CVSearch achieves stateof-the-art accuracy while substantially improving search efficiency compared to scan-based baselines.
In this work, we propose CVSearch, a training-free framework that empowers MLLMs with cognitive, human-like visual search capabilities. Drawing inspiration from the cognitive process of human visual search (Wolfe et al., 2011; Li et al., 2025b), CVSearch implements a cognitive Assess-then-Search workflow, dynamically alternating between non-selective global perception (for gist extraction) and selective serial attention (for detailed scrutiny) based on task difficulty.
2. Related Works 2.1. High-Resolution Image Perception in MLLMs
To resolve the efficiency-robustness dilemma, CVSearch introduces a hierarchical framework underpinned by three key innovations. Firstly, we propose a Cognitive-Driven Adaptive Switching Mechanism to dynamically schedules search modes of varying complexity. This mechanism mimics human cognitive control by prioritizing efficient visual expert assisted search (powered by SAM 3 (Carion et al., 2025)) upon detecting insufficient global information. Crucially, instead of treating expert failure as a dead-end, the
To bridge the gap between the limited input resolution of pre-trained vision encoders (e.g., 336 × 336) and real-world demands for fine-grained details, existing strategies primarily fall into three paradigms. Cropping-based methods (Li et al., 2024a;b;c) partition high-resolution (HR) images into fixed grids. While preserving local details, they suffer from the “semantic sawtooth” effect (Huang et al., 2024), where rigid partitioning fractures objects across patches, disrupt-
2
CVSearch: Empowering Multimodal LLMs with Cognitive Visual Search for High-Resolution Image Perception
resolution of Zv (Tong et al., 2024). Naive resizing to fixed resolutions (e.g., 3362 ) (Liu et al., 2024) causes severe detail loss and distortion. To mitigate this, AnyRes mechanisms (Li et al., 2024a;b) decompose high-resolution (HR) images into flexible grids of local patches alongside a downsampled global view. While AnyRes preserves details, it incurs a prohibitive computational cost, as the sequence length of Zv scales linearly with the number of patches.
ing semantic coherence. Furthermore, being semantically agnostic, they incur computational redundancy by processing empty backgrounds equally with dense foregrounds. HR Visual Encoder (Ge et al., 2024; Luo et al., 2025) mitigate token explosion via hierarchical backbones (e.g., ConvNeXt (Woo et al., 2023)) or adaptors. However, they rely on global processing and lack the flexibility to selectively ignore irrelevant regions, often necessitating aggressive downsampling. Visual Search frameworks shift towards active perception. Some approaches (e.g., SEAL (Wu & Xie, 2024), DyFo (Li et al., 2025a)) leverage external experts for region proposal, while others (e.g., ZoomEye (Shen et al., 2025), RAP (Wang et al., 2025d)) employ tree-structured scanning. Despite progress, a critical trade-off remains: scan-based methods are robust but inefficient, while expert assisted methods are efficient but fragile upon expert failure. CVSearch resolves this dichotomy via a cognitive mechanism that intelligently switches between fast expert search and robust semantic-aware scanning, further enabled by bottom-up error correction.
Unlike AnyRes which ingests all patches in a single pass, visual search methods iteratively explore local regions to perceive fine-grained details. However, existing approaches face a critical trade-off. Visual Expert Assisted Search offers efficiency but is inherently fragile; its success relies entirely on external proposals, leaving the MLLM blind if the expert fails. Conversely, Scan-based Search ensure robustness via dense coverage but suffer from computational redundancy and semantic fragmentation due to rigid partitioning.
4. Proposed Cognitive Visual Search 4.1. Method Overview
2.2. Cognitive Mechanisms of Visual Search
Drawing from human cognitive mechanisms that alternate between non-selective and selective attention, CVSearch adopts a cognitive Assess-then-Search workflow Figure 2(a). The process begins with a global assessment, akin to a human “glimpse.” If global information proves insufficient the system triggers Visual Expert-assisted Search for rapid localization. In cases the target remain elusive, it transitions to Scene-aware Scanning for fine-grained inspection. Crucially, a bidirectional feedback loop integrates these modes, enabling iterative refinement to capture tiny targets.
Cognitive theories of human vision posit that visual search is not a unitary process but an interplay between two distinct pathways: a selective pathway and a nonselective pathway (Wolfe et al., 2011). The nonselective pathway rapidly extracts global gist in parallel to reject vast irrelevant regions. In contrast, the selective pathway performs serial, capacitylimited processing of specific objects guided by attentional templates (Wolfe, 2020). Crucially, attention deployment is governed by guidance factors (Wolfe & Horowitz, 2017). Among these, scene structure plays a dominant role, knowing that a “chimney” is likely on a “roof” enables efficient prioritization. CVSearch computationally instantiates this cognitive architecture. Our cognitive Assess-then-Search workflow mimics the progression from nonselective to selective attention, while Visual Complexity captures scene structure to dynamically prune the search space.
4.2. Visual Expert Assisted Search CVSearch optimizes efficiency by bypassing search when the MLLM’s global perception is sufficient. The Visual Expert is activated solely when relevant information is elusive, serving as a rapid proposal mechanism to avoid unnecessary scanning costs.
3. Preliminary
4.2.1. I NFORMATION S UFFICIENCY A SSESSMENT
We consider a standard MLLM framework comprising a vision encoder V, a projector P, and an LLM F. Given an input image I ∈ RH×W ×3 and a text query Q, the vision encoder extracts features Hv which are projected into visual tokens Zv = P(Hv ). Combined with text embeddings Zt , the model generates the response Y = {y1 , . . . , yS } autoregressively. The probability of generating Y is factorized as: s−1 Y p(ys | I, Q) = F(yi | y<i , Zv , Zt ), (1)
We first quantify the sufficiency of the current visual context. Inspired by (Shen et al., 2025), we use the MLLM’s internal confidence in whether the current image I can answer the given query Q as the information sufficiency: cq (I) = M(“Yes”|pq (Q), I),
(2)
where M represents the MLLM and pq (·) represents the prompt (e.g., “Question: {Q}. Could you answer the question based on the available visual information? Answer Yes or No.”) used to query the MLLM for calculating the confidence that the answer is “Yes”. A higher cq (I) indicates that, for the MLLM, the current image I contains more
i=1
The perceptual capability of MLLMs is constrained by the 3
CVSearch: Empowering Multimodal LLMs with Cognitive Visual Search for High-Resolution Image Perception (a) Overview
Iterative Search
Visual Expert Search
Global Assessment (b) Visual Expert Search
Candidate Regions
�∗ = 5
High
Semantic Guided Adaptive Patching
· · ·
· · ·
��∗
�
· · ·
3
Semantic Clustering
· · ·
��
Low
Visual Complexity Estimation
��
SAM 3
��
Iterative Search Candidate
Visual Complexity
��
· · ·
Visual Feature
Identified visual evidence
Adaptive Image Tree �
��∗
��∗ ��∗
��∗
��∗
2
��∗
1
Local Assessment
red car
�
Search Order
(c) Scene-aware Scanning SLIC
�
1
�� �� > �� Visual Evidence Pool
· · ·
Parser
Failed
Bounding Boxes
Scene-aware Scanning
Yes
�� � < �� ?
Is there a red car?
�
�� = ∅ ?
�, �
Is there a red car?
Succeed
Dynamic Bottom-Up Search
Figure 2. Illustration of the CVSearch framework. (a) Workflow. A cognitive Assess-then-Search mechanism triggers Visual Expert Search when global information is insufficient (cq < τq ). Expert failure (proposals Be = ∅) activates Scene-aware Scanning, which either yields visual evidence upon success or returns the optimal candidate for iterative search upon failure. (b) Visual Expert Search. This module parses queries to prompt a visual expert (SAM 3) for rapid proposals. On failure, extracted visual features are repurposed for the scanning phase. (c) Scene-aware Scanning. Semantic Guided Adaptive Patching partitions images into semantically coherent regions via adaptive clustering. Subsequently, Dynamic Bottom-Up Search prioritizes exploration from leaf nodes and aggregates evidence upwards. If the target remains unconfirmed, the optimal candidate from the first layer guides the next search iteration.
sufficient information to answer the given query Q. Consequently, When cq (I) exceeds the sufficiency threshold τq , the global view is deemed adequate for a direct answer response, bypassing fine-grained inspection.
mon failure mode for tiny or abstract objects, CVSearch triggers the Scene-aware Scanning phase, reusing the preextracted He to minimize computational overhead. 4.3. Scene-aware Scanning
4.2.2. V ISUAL E XPERT P ROPOSAL
Scan-based visual search methods (Shen et al., 2025; Wang et al., 2025c;d) improve retrieval via fine-grained exploration of local regions, serving as an effective means to compensate for the fragility of vision-expert-assisted search. However, existing scan-based methods partition images into rigid grids and perform top-down tree search without considering scene semantics, leading to substantial search resources being wasted on exploring target-irrelevant regions and correcting initial search errors. To address these issues, we propose scene-aware scanning, comprising Semantic Guided Adaptive Patching and Dynamic Bottom-up Search.
For queries unresolved by global image information, we employ a visual expert E to search for the key objects mentioned in the query. As shown in Figure 2(b), we adopt SAM 3 (Carion et al., 2025) as our visual expert. To enable concept-level prompting, we parse the query Q into a set of target objects O = {o1 , o2 , · · · , om }. Specifically, we leverage the in-context capability from the LLM base of the MLLM to extract key objects from the query, falling back to SpaCy (Jugran et al., 2021) for noun phrase extraction if necessary. Querying E(I, O) yields candidate bounding boxes Be and dense visual features He .
4.3.1. S EMANTIC G UIDED A DAPTIVE PATCHING
We further verify whether the proposed regions Be adequately cover the target objects in O. Specifically, this coverage is satisfied when the number of targets (across different categories) segmented by SAM 3 strictly matches the number of extracted target objects. If validated, the system crops I according to Be for answer generation. Conversely, if the visual expert fails to localize targets, which is a com-
Standard grid-based partitioning often disrupts semantic integrity by cutting across object boundaries. As shown in Figure 2(c), we utilize the scene structure embedded in the visual feature He as a prior for adaptive image patching. We first over-segment He into N atomic superpixels A = {a1 , a2 , · · · , aN } using Simple Linear Iterative Clus4
CVSearch: Empowering Multimodal LLMs with Cognitive Visual Search for High-Resolution Image Perception
tering (SLIC) (Achanta et al., 2012) on the feature space and construct a region adjacency graph G to encode connectivity. Subsequently, we partition these atoms into k semantic clusters via Agglomerative Clustering (Müllner, 2011) constrained by G. Each semantic cluster consists of spatially adjacent atoms, and the cluster boundary is converted into a region bounding box, which can be used for semantic-preserving image patching.
However, at the initial stage, models struggle to accurately perceive small objects, often resulting in erroneous search paths. As shown in Figure 2(c), we propose a Dynamic Bottom-Up Search mechanism to robustly identify target objects. The search initiates at the deepest layer of nodes, which provide detailed local information to enhance the MLLM’s precision in perceiving small targets. If unsuccessful at this layer, the collected search information is aggregated and propagated to the layer containing the parent nodes, where the search continues.
The number of clusters k significantly impacts the quality of image patching, and the optimal k is scene-dependent. Adhering to the principle that high-quality patching must preserve clear semantic boundaries while minimizing region overlap, we optimize the optimal number of clusters k ∗ within [kmin , kmax ] by minimizing the cost function L(k): k ∗ = arg mink∈[kmin ,kmax ] L(k), L(k) = Lo (Bk ) − Ls (Ha , lk ),
Within each layer, nodes are sorted by their priority values cx to determine the order of node visitation. For each node nd,t , we adopt the MLLM to assess the existence confidence co of the target objects in O. co is calculated by Equation (2) with prompt po (oi ) (e.g., “Is there a {oi } in the image? Answer Yes or No.”) and the image patch Id,t . The priority value for a node is the weighted sum of the Visual Complexity score cv , the existence confidence co , and the priority value c∗x aggregated from child nodes:
(3)
where Lo penalizes spatial overlap among bounding boxes Bk = {b1 , b2 , · · · , bk } of all clusters, and Ls is the silhouette score (Vardakas et al., 2024) measuring clustering quality. Ha = {h1 , h2 , · · · , hN } denotes atomic features derived from the visual feature He , and lk are the clustering label corresponding to atomic features. Based on k ∗ , the image is adaptively patched into k ∗ semantic regions.
cx = α · cv + β · co + γ · c∗x ,
where α, β, and γ are hyperparameter that balance the effects of different terms. For a node with child nodes, the value of c∗x is the maximum priority value among its children, whereas for a node without child nodes, c∗x = 0. The information sufficiency cq of ranked nodes is calculated using Equation (2) to serve as the stopping criterion for the bottom-up search. For multi-target scenarios, we adopt the same setting as ZoomEye (Shen et al., 2025) and construct a decoupled query Qd (e.g., “What is the appearance of the {oi }”) for each target. For the search termination criterion, we adopt an adaptive sufficiency threshold τcurr instead of a static stopping rule. The search begins with a rigorous standard (τcurr = τq ) to guarantee that easy samples are resolved with high certainty. For more challenging scenarios where the model may hesitate, τcurr gradually decays to permit valid but less confident predictions, ensuring the retrieval of subtle details. Crucially, this relaxation is bounded by a minimum threshold τ̂q , which serves as a safeguard to reject regions that lack sufficient semantic evidence for reasoning. The search terminates once cq exceeds a predefined threshold τcurr . If the search proceeds to completion at depth d = 1 without meeting this condition, the top-ranked node from that layer is fed back to the visual expert as the candidate region for iterative search.
4.3.2. DYNAMIC B OTTOM -U P S EARCH By recursively applying adaptive patching, we model the HR image I as an adaptive tree T with depth D. Each node at depth d, denoted as nd,t , represents a patch view Id,t . Furthermore, we introduce a Visual Complexity score cv to quantify the exploration value of an image patch. The cv of an image patch Id,t is defined as the degree of dispersion of its corresponding atomic features in the semantic direction, quantified by the average cosine similarity: cv (Id,t ) = max(0, 1 −
1 X cosim(hi , h̄)), |R|
(5)
(4)
i∈R
where h̄ = Ei∈R [hi ] represents the semantic centroid of the image patch derived from the expectation of atomic features, cosim(·, ·) denotes the cosine similarity, and R represents the set of atomic indices belonging to Id,t . A low cv indicates high feature similarity within the image patch, suggesting that the region is more likely to be a background area with limited semantic information and thus lower exploration value. Conversely, a high cv reflects low feature similarity in the image patch, indicating that the region is more likely to be a semantically rich foreground area with higher exploration value. To prioritize semantically rich regions, we prune T by discarding nodes with cv < τv .
5. Experiments 5.1. Experimental Setup Datasets. We evaluate CVSearch on a comprehensive suite of high-resolution benchmarks. For HR-specific evaluation, we use V* Bench (Wu & Xie, 2024) (avg. res. 2246×1582), which targets attribute recognition and spatial reasoning,
Traditional hierarchical search methods (Shen et al., 2025; Wang et al., 2025c;d) traverses trees top-down (root-to-leaf). 5
CVSearch: Empowering Multimodal LLMs with Cognitive Visual Search for High-Resolution Image Perception Table 1. Performance comparison of our CVSearch (integrated with several advances models) with existing works on high-resolution benchmarks. FSP: Fine-grained Single-instance Perception; FCP: Finegrained Cross-instance Perception.
V* Bench
Method
HR-Bench 4K
HR-Bench 8K
Attribute
Spatial
Overall
FSP
FCP
Overall
FSP
FCP
Overall
-
-
66.0 -
70.0 65.0
48.0 52.0
59.0 58.5
62.0 54.0
49.0 51.0
55.5 52.5
Open-source MLLMs LLaVA-v1.6-7B (Li et al., 2024b) LLaVA-v1.6-13B (Li et al., 2024b) LLaVA-v1.6-34B (Li et al., 2024b) LLaVA-HR-X-7B (Luo et al., 2025) LLaVA-HR-X-13B (Luo et al., 2025) Qwen2.5-VL-32B (Bai et al., 2025) Yi-VL-34B (Young et al., 2024) InternVL3-38B (Zhu et al., 2025)
60.9 60.0 51.3 83.5 77.4
63.2 64.5 64.5 89.5 77.6
61.8 61.8 56.5 85.9 77.5
49.0 49.8 55.3 57.8 61.3 89.3 46.0 83.5
46.8 41.3 50.5 46.3 46.0 60.3 42.8 69.0
47.9 45.5 52.9 52.0 53.6 74.8 44.4 76.3
37.3 38.0 44.5 42.0 49.5 86.5 39.5 71.3
44.3 38.3 50.3 41.3 44.3 56.8 38.5 62.8
40.8 38.1 47.4 41.6 46.9 71.6 39.0 67.0
Baseline and CVSearch LLaVA-OV-7B (Li et al., 2024a) -w/ CVSearch Qwen2.5-VL-7B (Bai et al., 2025) -w/ CVSearch InternVL2.5-8B (Chen et al., 2024) -w/ CVSearch
75.7 95.7 73.9 93.0 67.8 86.1
75.0 85.5 67.1 85.5 71.1 93.4
75.4 91.6 71.2 90.1 69.1 89.0
72.0 89.5 85.2 91.5 75.8 93.0
54.0 61.8 52.2 61.8 56.3 61.0
63.0 75.6 68.8 76.6 66.0 77.0
67.3 89.0 78.8 90.0 61.5 92.3
52.3 60.5 51.8 61.3 53.3 63.0
59.8 74.8 65.3 75.6 57.4 77.6
Closed-source MLLMs GPT 4o (Hurst et al., 2024) QWen-VL-max (Bai et al., 2023)
5.2. Main Experimental Results
and HR-Bench (Wang et al., 2025c), comprising 8K and 4K subsets for fine-grained single- and cross-instance perception. HR-Bench 4K is derived by cropping relevant regions from the 8K-resolution images in HR-Bench 8K. For General and Real-world evaluation, we employ MMERealWorld-Lite (Zhang et al., 2024b) and TreeBench (Wang et al., 2025a). These manually curated benchmarks feature diverse real-world subtasks with high average resolutions (∼ 2000 × 1500). Additionally, we test on FineRS4K (Zhang et al., 2025b), a specialized UAV-captured highresolution dataset for the perception and reasoning of ultrasmall objects.
Results on HR Benchmark. As shown in Table 1, integrating our CVSearch framework with various open-source MLLMs consistently yields substantial performance gains across all high-resolution benchmarks, underscoring its robust model-agnostic effectiveness. Our method significantly enhances both FSP and FCP tasks, achieving state-of-theart results on HR-Bench 4K and HR-Bench 8K. Notably, when applied to InternVL2.5-8B, CVSearch boosts overall accuracy by +20.2% on HR-Bench 8K and by +11.0 on HR-Bench 4K. On V* Bench, CVSearch dramatically boosts performance as LLaVA-OV-7B improves from 75.4 to 91.6 and Qwen2.5-VL-7B reaches 90.1, rivaling much larger closed-source models. These results demonstrate that our method effectively empowers existing MLLMs with the capability to perceive high-resolution images more accurately.
Implementation Details. We select Qwen2.5-VL-7B (Bai et al., 2025), LLaVA-OV (OneVision)-7B (Li et al., 2024a), and InternVL2.5-8B (Chen et al., 2024) as baseline MLLMs. The information sufficiency threshold τq is set to 0.9, the search termination threshold τ̂q to 0.5, and the tree pruning threshold τv to 0.4. The minimum and maximum numbers of clusters, kmin and kmax , are set to 4 and 8, respectively. The depth D of the adaptive image tree T is set to 2 for single-object cases (m = 1) and 3 for multi-object cases (m > 1). The hyperparameters α, β, and γ are set to 0.2, 0.4, and 0.4, respectively. All experiments are conducted on four NVIDIA A6000 GPUs, while inference speed evaluation is performed using a single GPU.
Compared with Visual Search Methods. We compare our proposed CVSearch against representative visual search paradigms, comprising expert-assisted methods (SEAL (Wu & Xie, 2024), DyFo (Li et al., 2025a)) and scan-based approaches (Zoom Eye (Shen et al., 2025), RAP (Wang et al., 2025d)). As shown in Table 2, our method consistently outperforms all baselines across all evaluated benchmarks. Specifically, while scanning-based methods like Zoom Eye and RAP offer improvements over the vanilla LLaVA-OV7B, they still fall short of CVSearch, which achieves 91.6
6
CVSearch: Empowering Multimodal LLMs with Cognitive Visual Search for High-Resolution Image Perception Table 2. Performance comparison between our CVSearch and other search-based method.
Method
V*
HR-4K
HR-8K
SEAL DyFo
75.4 81.2
-
-
LLaVA-OV-7B -w/ Zoom Eye -w/ RAP -w/ CVSearch Qwen2.5-VL-7B -w/ Zoom Eye -w/ RAP -w/ CVSearch InternVL2.5-8B -w/ Zoom Eye -w/ RAP -w/ CVSearch
75.4 90.6 79.6 91.6 71.2 85.3 84.8 90.1 69.1 84.8 88.5 89.0
63.0 69.6 71.0 75.6 68.8 72.5 74.8 76.6 66.0 75.1 76.0 77.0
59.8 69.3 67.6 74.8 65.3 69.8 76.0 75.6 57.4 73.6 74.0 77.6
Table 4. Comparison of our CVSearch against the baseline MLLM with varying parameter sizes and generations.
LLaVA-OV-7B -w/ CVSearch Qwen2.5-VL-7B -w/ CVSearch InternVL2.5-8B -w/ CVSearch
MME-RW-L TreeBench FineRS-4K 43.7 48.8 42.3 46.7 44.9 46.1
37.3 38.8 37.0 40.7 25.7 29.1
V*
HR-4K
HR-8K
Qwen2.5-VL-3B -w/ CVSearch Qwen3-VL-2B -w/ CVSearch Qwen3-VL-4B -w/ CVSearch Qwen3-VL-8B -w/ CVSearch Qwen3-VL-32B -w/ CVSearch
77.0 91.1 79.1 92.2 89.5 93.7 88.0 91.6 86.9 89.5
65.9 70.5 71.3 74.0 76.3 77.4 79.1 79.5 76.5 80.3
62.9 67.3 67.8 73.6 71.6 75.1 74.5 76.5 70.9 78.4
ables LLaVA-OV-7B to surge from 49.7 to 61.2 (+11.5) in the challenging OVQA setting, while also boosting InternVL2.5-8B to 78.5 in MVQA. These results confirm that the cognitive search mechanism of CVSearch effectively extends to complex, open-ended real-world scenarios.
Table 3. Comparison of our CVSearch against the baseline MLLM on three general multimodal benchmarks. MME-RW-L stands for MME-RealWorld-Lite.
Method
Method
5.3. Model Analysis
72.0/49.7 77.4/61.2 80.4/59.1 82.5/58.3 71.6/51.6 78.5/57.9
Scalability across Sizes and Generations. To investigate the scalability of our framework, we evaluate CVSearch on models with varying parameter sizes (ranging from 2B to 32B) and generations (Qwen2.5-VL vs. the latest Qwen3VL). As shown in Table 4, our method consistently enhances performance across all model variants. For smaller models, the improvements are particularly substantial. For instance, on the V* Bench, CVSearch boosts Qwen2.5-VL-3B by +14.1 and Qwen3-VL-2B by +13.1. Crucially, to address potential concerns regarding diminishing returns on more advanced backbones, we scale our evaluation up to Qwen3VL-32B. Despite the powerful native perception capabilities of this large model, CVSearch continues to provide substantial gains, boosting performance by +7.5 on HR-8K, +3.8 on HR-4K, and +2.6 on V*. This validates that our search mechanism effectively resolves high-resolution bottlenecks even for highly advanced MLLMs, serving as a scalable solution that benefits both resource-constrained deployment (on small models) and high-performance computing (on large models).
on V* Bench, surpassing the strong expert-assisted DyFo (81.2) by a wide margin. On high-resolution benchmarks, our method proves highly scalable, achieving state-of-theart scores of 77.0 on HR-Bench 4K and 77.6 on HR-Bench 8K with InternVL2.5-8B. These results highlight the clear advantage of our cognitive search mechanism compared to fixed scanning strategies or external expert dependency. More comparison results with other HR image processing methods can be found in the Appendix B.1. Results on General Benchmarks. To assess the generalization capability of CVSearch in complex real-world scenarios, we evaluate it on three challenging multimodal benchmarks (Table 3). Note that for FineRS-4K, we provide accuracy metrics for both multiple-choice and open-ended visual question answering (MVQA/OVQA). As we can see, CVSearch yields consistent improvements across all baselines, demonstrating its robustness in handling complex visual reasoning tasks. Specifically, on MME-RealWorldLite and TreeBench, our method improves the reasoning accuracy of Qwen2.5-VL-7B by +4.4 and +3.7, respectively. A more pronounced advantage is observed on FineRS-4K, where identifying tiny objects is critical. CVSearch en-
Impact of Tree Depth. We investigate the influence of the search depth D on perception accuracy, as illustrated in Figure 3. Given that V* Bench comprises single-object Attribute tasks (m = 1) and multi-object Spatial tasks (m = 2), we observe a clear correlation between target count and optimal depth. Specifically, Attribute tasks perform exceptionally well at depth 2, whereas Spatial tasks peak at depth 3. Furthermore, under current benchmark resolutions (up to 8K), extending the search to depth 4 offers negligible accuracy improvement but may incur penalties in 7
CVSearch: Empowering Multimodal LLMs with Cognitive Visual Search for High-Resolution Image Perception Table 5. Search efficiency comparison with expert-based and scan-based methods. We measure search efficiency by Throughput (samples per minute) on a single GPU using Qwen2.5-VL-7B. The Accuracy and Throughput are represented as Acc and Thr, respectively.
Qwen2.5-VL-7B -w/ Visual Expert (SAM 3) -w/ Scan-based (Zoom Eye) -w/ Scan-based (RAP) -w/ CVSearch
HR-Bench 4K
HR-Bench 8K
Acc ↑
Thr ↑
Acc ↑
Thr ↑
Acc ↑
Thr ↑
71.2 84.3 85.3 84.8 90.1
8.30 3.60 0.68 0.66 1.02
68.8 71.9 72.5 74.8 76.6
7.62 5.59 1.29 1.22 3.77
65.3 68.1 69.8 76.0 75.6
7.62 5.30 0.68 0.58 1.92