search
HomeTechnology peripheralsAIAutomatically convert images into text, and image descriptions are of higher quality and more accurate.

Automatically convert images into text, and image descriptions are of higher quality and more accurate.
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

Pi Renjie: a third-year PhD student at Hong Kong University of Science and Technology, studying under Professor Zhang Tong and Professor Zhou Xiaofang. Received Apple Scholarship in 2024. The current main research directions are multi-modal large language models and data-centered AI.

Zhang Jianshu: A third-year undergraduate student at Wuhan University. Currently working as a research intern under the guidance of Professor Zhang Tong. His main research directions are large language models, multi-modal large language models and continuous learning. Currently looking for PhD admission opportunities for 2025 fall.

In the development of today's multi-modal large models, the performance of the model is closely related to the quality of the training data. It can be said that "the data gives the model most of its capabilities."

In this, image-text datasets play a vital role in many fields such as image understanding, text generation and image retrieval.

However, existing image description data sets are mainly derived from network crawling and manual annotation, and there are problems such as uneven quality, lack of details, and high description noise. Although humans can provide detailed descriptions for images, the high annotation cost limits its scale and feasibility. Therefore, there is an urgent need for an efficient and scalable method to generate accurate and detailed image descriptions.

In order to address the above challenges, researchers from Hong Kong University of Science and Technology, Wuhan University, Zhejiang University, and UIUC jointly proposed an innovative automation framework - Image-Textualization (IT), which integrates multi-modal large language models (MLLMs) and a variety of visual expert models collaborate to textualize image information, and finally use a pure text large language model with powerful reasoning capabilities to transform this textualized information into high-quality image descriptions.

Automatically convert images into text, and image descriptions are of higher quality and more accurate.

  • Paper: Image Textualization: An Automatic Framework for Creating Accurate and Detailed Image Descriptions

  • Paper address: https://arxiv.org/pdf/2406.07502v1

  • Project address: https: //github.com/sterzhang/image-textualization/

Automatically convert images into text, and image descriptions are of higher quality and more accurate.

  • uses a picture made by multi-modal models to describe vs using IT pictures to describe. Generally speaking, the contribution of this article includes:
  • Innovative framework: We propose an image textualization framework, which uses the coarse-grained image understanding capabilities of multi-modal large models, the fine-grained perception capabilities of visual expert models, and the reasoning capabilities of plain text large language models to automatically generate Image descriptions that are rich in detail and clearly articulated.
  • Evaluation benchmarks and experiments: Multiple benchmarks for evaluating detailed image descriptions are proposed, and the effectiveness of the framework is verified through extensive experiments.

Automatically convert images into text, and image descriptions are of higher quality and more accurate.Dataset and code release: Leveraging our image textualization framework, we generated a large-scale, high-quality image description dataset (IT-170K). To facilitate future research, we have made all source code and generated datasets publicly available.

🎜Image Textualization method 🎜🎜🎜Image-Textualization (IT) framework includes the following three stages: 🎜

1. Coarse-grained picture textualization (Holistic Textualization): First, use a multi-modal large language model to generate reference descriptions for pictures. Although these descriptions may have missing details and illusions, they represent the visual information and language expression of the image. The basic structure is provided. The visual structure here is mainly reflected in the fact that reference descriptions often contain some large, core objects, which can provide an "anchor" effect for subsequent details, making the final textualized recaptioning better. of added details. In addition, the structure of language expression is mainly reflected in the large plain text language model included in the multi-modal large model, which makes it have strong language capabilities. This allows the reference description generated here to be well organized in language. For example, it will be first Tell what the picture roughly describes, then expand on the details, and finally summarize. This description style is more biased towards human preference. This also enables the final textualized recaptioning to be processed on a template with better language capabilities.

2. Visual Detail Textualization: At this stage, we extract details from the picture side and the text side at the same time.

The first is the text side. Since the reference description we generated using the multi-modal large model in the previous stage may contain hallucinations, the first thing we do here is "hallucination detection". We first use LLM to capture the entity contained in the reference description, and then use an open set detector to match the entity in the picture. If it is not detected, the entity is judged as an illusion. Here we also textualize the detected hallucinations and delete them in the final textualized recaptioning.

Automatically convert images into text, and image descriptions are of higher quality and more accurate.

On the visual side, we use visual expert models on various tasks trained on high-resolution images to extract detailed information in the image. If you want to express the detailed information of an object in a picture using text, it is not enough to just use the object's caption. We first use the bounding box of these objects to extract the left-right relationship of these objects in the form of text. But the objects in the picture not only have left and right information, but also front and back information. In this regard, we first use the segmentation model to extract the masks of these objects, then convert the original pictures into depth maps, and reflect the depth information in the text by calculating the depth scores corresponding to the masks of specific objects in the depth map. At this point, we can use text to restore detailed information such as the size, left and right positions, and context of each object in the picture.

Automatically convert images into text, and image descriptions are of higher quality and more accurate.

3. Textualized Recaptioning: Combining the textualization results of the image information in the first two stages, plus our carefully designed rewritten prompt, the large language model of plain text can be very good It restores image information through pure text and generates detailed and accurate image descriptions through powerful understanding and reasoning capabilities.

Comprehensive evaluation and experimental verification

To verify the effectiveness of our framework, we constructed three evaluation benchmarks, namely DID-Bench (Detailed Image Description Benchmark), D2I-Bench (Description-to-Image Benchmark) and LIN -Bench (Language Benchmark). We conduct extensive experiments and show that the image descriptions generated by the IT framework significantly outperform existing methods in terms of detail richness and accuracy. In particular, MLLMs trained on datasets generated by our IT framework, such as LLaVA-7B, exhibit stronger image description capabilities and reduced hallucination phenomena.

DID-Bench (Detailed Image Description Benchmark): used to evaluate the similarity between image descriptions and human manually labeled detailed image descriptions. It can be seen that our modified IT-{LLaVA} and IT-{GPT4-V} image descriptions are more detailed and accurate than before the modification, and are more consistent with the descriptions marked by humans.

Automatically convert images into text, and image descriptions are of higher quality and more accurate.

D2I-Bench (Description to Image Benchmark): Use the Vincentian graph model to convert the generated description into a picture, and compare the similarity with the original image. Here we selected CLIP-score and DINO-score for evaluation. can achieve higher scores.

Automatically convert images into text, and image descriptions are of higher quality and more accurate.

Automatically convert images into text, and image descriptions are of higher quality and more accurate.

In addition, we also verified on POPE and LIN-Bench that LLaVA-7B, which is trained using data generated by our framework, can generate more detailed and complex descriptions (LIN-Bench on the right side of the table) , and can also reduce hallucinations (POPE benchmark on the left side of the table).

Automatically convert images into text, and image descriptions are of higher quality and more accurate.

Finally, we statistically compared the generated data, and we can see that the number of each part of speech in our modified description has been greatly improved.

Automatically convert images into text, and image descriptions are of higher quality and more accurate.

Future Outlook

Our work not only addresses the limitations of existing image description datasets, but also provides inspiration for designing more efficient and scalable methods. We look forward to the IT framework demonstrating its potential in more application areas and promoting the further development of image understanding and generation technology.

The above is the detailed content of Automatically convert images into text, and image descriptions are of higher quality and more accurate.. 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

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment