search
HomeTechnology peripheralsAIECCV 2024 | To improve the performance of GPT-4V and Gemini detection tasks, you need this prompt paradigm

ECCV 2024 | 提升GPT-4V、Gemini检测任务性能,你需要这种提示范式
The AIxiv column is a column where this site publishes academic and technical content. In the past few years, the AIxiv column of this site has received more than 2,000 reports, covering top laboratories from major universities and companies around the world, effectively promoting academic exchanges and dissemination. If you have excellent work that you want to share, please feel free to contribute or contact us for reporting. Submission email: liyazhou@jiqizhixin.com; zhaoyunfeng@jiqizhixin.com

The authors of this article are from Zhejiang University, Shanghai Artificial Intelligence Laboratory, Chinese University of Hong Kong, University of Sydney and Oxford University. Author list: Wu Yixuan, Wang Yizhou, Tang Shixiang, Wu Wenhao, He Tong, Wanli Ouyang, Philip Torr, Jian Wu. Among them, the co-first author Wu Yixuan is a doctoral student at Zhejiang University, and Wang Yizhou is a scientific research assistant at the Shanghai Artificial Intelligence Laboratory. The corresponding author Tang Shixiang is a postdoctoral researcher at the Chinese University of Hong Kong.

Multimodal Large Language Models (MLLMs) have shown impressive capabilities in different tasks, despite this, the potential of these models in detection tasks is still underestimated. When precise coordinates are required in complex object detection tasks, the hallucinations of MLLMs often make them miss target objects or give inaccurate bounding boxes. In order to enable MLLMs for detection, existing work not only requires collecting large amounts of high-quality instruction data sets, but also fine-tuning open source models. While time-consuming and labor-intensive, it also fails to take advantage of the more powerful visual understanding capabilities of closed-source models. To this end, Zhejiang University, together with Shanghai Artificial Intelligence Laboratory and Oxford University, proposed DetToolChain, a new prompt paradigm that releases the detection capabilities of multi-modal large language models. Large multi-modal models can learn to detect accurately without training. Relevant research has been included in ECCV 2024.

In order to solve the problems of MLLM in detection tasks, DetToolChain starts from three points: (1) Design visual prompts for detection, which is more direct and effective for MLLM than traditional textual prompts. Understand position information, (2) break down detailed detection tasks into small and simple tasks, (3) use chain-of-thought to gradually optimize detection results, and avoid the illusion of large multi-modal models as much as possible.

Corresponding to the above insights, DetToolChain contains two key designs: (1) A comprehensive set of visual processing prompts (visual processing prompts), which are drawn directly in the image and can significantly narrow the gap between visual information and text information difference. (2) A comprehensive set of detection reasoning prompts to enhance the spatial understanding of the detection target and gradually determine the final precise target location through a sample-adaptive detection tool chain.

By combining DetToolChain with MLLM, such as GPT-4V and Gemini, various detection tasks can be supported without instruction tuning, including open vocabulary detection, description target detection, referential expression understanding and oriented target detection .

ECCV 2024 | 提升GPT-4V、Gemini检测任务性能,你需要这种提示范式

  • Paper title: DetToolChain: A New Prompting Paradigm to Unleash Detection Ability of MLLM
  • Paper link: https://arxiv.org/abs/2403.12488

What is DetToolChain?

ECCV 2024 | 提升GPT-4V、Gemini检测任务性能,你需要这种提示范式

                                                                                                                                                                                               Steps:

I. Formatting: Convert the original input format of the task into an appropriate instruction template as input to the MLLM;
II. Think: Break down a specific complex detection task into simpler subtasks and select effective tips from the detection tip toolkit ( prompts);
III. Execute: Iteratively execute specific prompts (prompts) in sequence;
IV. Respond: Use MLLM's own reasoning capabilities to supervise the entire detection process and return the final response (final answer).
Detection Prompt Toolkit: Visual Processing Prompts

Figure 2: Schematic diagram of visual processing prompts. We designed (1) Regional Amplifier, (2) Spatial Measurement Standard, (3) Scene Image Parser to improve the detection capabilities of MLLMs from different perspectives.

As shown in Figure 2, (1) Regional Amplifier aims to enhance the visibility of MLLMs on regions of interest (ROI), including cropping the original image into different sub-regions, focusing on the sub-regions where the target object is located. area; in addition, the zoom function enables fine-grained observation of specific sub-areas in the image.

(2) Spatial Measurement Standard provides a clearer reference for target detection by superimposing a ruler and compass with linear scales on the original image, as shown in Figure 2 (2). Auxiliary rulers and compasses enable MLLMs to output accurate coordinates and angles using translational and rotational references superimposed on the image. Essentially, this auxiliary line simplifies the detection task, allowing MLLMs to read the coordinates of objects instead of directly predicting them.

(3) Scene Image Parser marks the predicted object position or relationship, and uses spatial and contextual information to achieve spatial relationship understanding of the image. Scene Image Parser can be divided into two categories: First, for a single target object , we label the predicted object with centroid, convex hull and bounding box with label name and box index. These markers represent object position information in different formats, enabling MLLM to detect diverse objects of different shapes and backgrounds, especially objects with irregular shapes or heavy occlusions. For example, the convex hull marker marks the boundary points of an object and connects them into a convex hull to enhance the detection performance of very irregularly shaped objects. Secondly, for multi-objectives, we connect the centers of different objects through scene graph markers to highlight the relationship between objects in the image. Based on the scene graph, MLLM can leverage its contextual reasoning capabilities to optimize predicted bounding boxes and avoid hallucinations. For example, as shown in Figure 2 (3), Jerry wants to eat cheese, so their bounding boxes should be very close.

Detection Reasoning Prompts Toolkit: Detection Reasoning Prompts

ECCV 2024 | 提升GPT-4V、Gemini检测任务性能,你需要这种提示范式

To improve the reliability of the prediction box, we conducted detection reasoning prompts (shown in Table 1) to check the prediction results and diagnose possible potential problems. First, we propose Problem Insight Guider, which highlights difficult problems and provides effective detection suggestions and similar examples for query images. For example, for Figure 3, the Problem Insight Guider defines the query as a problem of small object detection and suggests solving it by zooming in on the surfboard area. Second, to leverage the inherent spatial and contextual capabilities of MLLMs, we design Spatial Relationship Explorer and Contextual Object Predictor to ensure that detection results are consistent with common sense. As shown in Figure 3, a surfboard may co-occur with the ocean (contextual knowledge), and there should be a surfboard near the surfer's feet (spatial knowledge). Furthermore, we apply Self-Verification Promoter to enhance the consistency of responses across multiple rounds. To further improve the reasoning capabilities of MLLMs, we adopt widely used prompting methods, such as debating and self-debugging. Please see the original text for a detailed description.

ECCV 2024 | 提升GPT-4V、Gemini检测任务性能,你需要这种提示范式

                                                                                                                      Detection inference hints can help MLLMs solve small object detection problems, for example, using common sense to locate a surfboard under a person’s feet, and encourage the model to detect surfboards in the ocean.

ECCV 2024 | 提升GPT-4V、Gemini检测任务性能,你需要这种提示范式

                                                                                                                                                                                                                                                                  Experiment: You can surpass the fine-tuning method without training

As shown in the table As shown in 2, we evaluated our method on open vocabulary detection (OVD), testing the AP50 results on 17 new classes, 48 ​​basic classes and all classes in the COCO OVD benchmark. The results show that the performance of both GPT-4V and Gemini is significantly improved using our DetToolChain.

ECCV 2024 | 提升GPT-4V、Gemini检测任务性能,你需要这种提示范式

Pour démontrer l'efficacité de notre méthode sur la compréhension des expressions référentielles, nous comparons notre méthode avec d'autres méthodes zero-shot sur les jeux de données RefCOCO, RefCOCO+ et RefCOCOg (Tableau 5). Sur RefCOCO, DetToolChain a amélioré les performances de la ligne de base GPT-4V de 44,53 %, 46,11 % et 24,85 % respectivement sur val, test-A et test-B, démontrant la compréhension et les performances supérieures de l'expression référentielle de DetToolChain dans des conditions de positionnement zéro.

The above is the detailed content of ECCV 2024 | To improve the performance of GPT-4V and Gemini detection tasks, you need this prompt paradigm. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Can't use ChatGPT! Explaining the causes and solutions that can be tested immediately [Latest 2025]Can't use ChatGPT! Explaining the causes and solutions that can be tested immediately [Latest 2025]May 14, 2025 am 05:04 AM

ChatGPT is not accessible? This article provides a variety of practical solutions! Many users may encounter problems such as inaccessibility or slow response when using ChatGPT on a daily basis. This article will guide you to solve these problems step by step based on different situations. Causes of ChatGPT's inaccessibility and preliminary troubleshooting First, we need to determine whether the problem lies in the OpenAI server side, or the user's own network or device problems. Please follow the steps below to troubleshoot: Step 1: Check the official status of OpenAI Visit the OpenAI Status page (status.openai.com) to see if the ChatGPT service is running normally. If a red or yellow alarm is displayed, it means Open

Calculating The Risk Of ASI Starts With Human MindsCalculating The Risk Of ASI Starts With Human MindsMay 14, 2025 am 05:02 AM

On 10 May 2025, MIT physicist Max Tegmark told The Guardian that AI labs should emulate Oppenheimer’s Trinity-test calculus before releasing Artificial Super-Intelligence. “My assessment is that the 'Compton constant', the probability that a race to

An easy-to-understand explanation of how to write and compose lyrics and recommended tools in ChatGPTAn easy-to-understand explanation of how to write and compose lyrics and recommended tools in ChatGPTMay 14, 2025 am 05:01 AM

AI music creation technology is changing with each passing day. This article will use AI models such as ChatGPT as an example to explain in detail how to use AI to assist music creation, and explain it with actual cases. We will introduce how to create music through SunoAI, AI jukebox on Hugging Face, and Python's Music21 library. Through these technologies, everyone can easily create original music. However, it should be noted that the copyright issue of AI-generated content cannot be ignored, and you must be cautious when using it. Let’s explore the infinite possibilities of AI in the music field together! OpenAI's latest AI agent "OpenAI Deep Research" introduces: [ChatGPT]Ope

What is ChatGPT-4? A thorough explanation of what you can do, the pricing, and the differences from GPT-3.5!What is ChatGPT-4? A thorough explanation of what you can do, the pricing, and the differences from GPT-3.5!May 14, 2025 am 05:00 AM

The emergence of ChatGPT-4 has greatly expanded the possibility of AI applications. Compared with GPT-3.5, ChatGPT-4 has significantly improved. It has powerful context comprehension capabilities and can also recognize and generate images. It is a universal AI assistant. It has shown great potential in many fields such as improving business efficiency and assisting creation. However, at the same time, we must also pay attention to the precautions in its use. This article will explain the characteristics of ChatGPT-4 in detail and introduce effective usage methods for different scenarios. The article contains skills to make full use of the latest AI technologies, please refer to it. OpenAI's latest AI agent, please click the link below for details of "OpenAI Deep Research"

Explaining how to use the ChatGPT app! Japanese support and voice conversation functionExplaining how to use the ChatGPT app! Japanese support and voice conversation functionMay 14, 2025 am 04:59 AM

ChatGPT App: Unleash your creativity with the AI ​​assistant! Beginner's Guide The ChatGPT app is an innovative AI assistant that handles a wide range of tasks, including writing, translation, and question answering. It is a tool with endless possibilities that is useful for creative activities and information gathering. In this article, we will explain in an easy-to-understand way for beginners, from how to install the ChatGPT smartphone app, to the features unique to apps such as voice input functions and plugins, as well as the points to keep in mind when using the app. We'll also be taking a closer look at plugin restrictions and device-to-device configuration synchronization

How do I use the Chinese version of ChatGPT? Explanation of registration procedures and feesHow do I use the Chinese version of ChatGPT? Explanation of registration procedures and feesMay 14, 2025 am 04:56 AM

ChatGPT Chinese version: Unlock new experience of Chinese AI dialogue ChatGPT is popular all over the world, did you know it also offers a Chinese version? This powerful AI tool not only supports daily conversations, but also handles professional content and is compatible with Simplified and Traditional Chinese. Whether it is a user in China or a friend who is learning Chinese, you can benefit from it. This article will introduce in detail how to use ChatGPT Chinese version, including account settings, Chinese prompt word input, filter use, and selection of different packages, and analyze potential risks and response strategies. In addition, we will also compare ChatGPT Chinese version with other Chinese AI tools to help you better understand its advantages and application scenarios. OpenAI's latest AI intelligence

5 AI Agent Myths You Need To Stop Believing Now5 AI Agent Myths You Need To Stop Believing NowMay 14, 2025 am 04:54 AM

These can be thought of as the next leap forward in the field of generative AI, which gave us ChatGPT and other large-language-model chatbots. Rather than simply answering questions or generating information, they can take action on our behalf, inter

An easy-to-understand explanation of the illegality of creating and managing multiple accounts using ChatGPTAn easy-to-understand explanation of the illegality of creating and managing multiple accounts using ChatGPTMay 14, 2025 am 04:50 AM

Efficient multiple account management techniques using ChatGPT | A thorough explanation of how to use business and private life! ChatGPT is used in a variety of situations, but some people may be worried about managing multiple accounts. This article will explain in detail how to create multiple accounts for ChatGPT, what to do when using it, and how to operate it safely and efficiently. We also cover important points such as the difference in business and private use, and complying with OpenAI's terms of use, and provide a guide to help you safely utilize multiple accounts. OpenAI

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)