


Industry Wind Vane丨The trend of AI-empowered smart terminals is clear, and a new round of consumer electronics cycle may be coming
Every reporter: Liu Mingtao Every editor: Xiao Ruidong
At present, emerging technologies represented by the integration of "AI human perception" have begun to gradually penetrate into all aspects of industrial manufacturing. Machine vision, as a seed industry landing technology for AI manufacturing, has been involved in the tracking of manufacturing production links and the monitoring of product quality. Testing etc. Artificial intelligence is the mother of machine vision, and deep learning is the technical fortress of machine vision. Recently, Meta released the SAM mode, which is expected to help machine vision usher in the GPT moment.
AI machine vision technology has obvious advantages, policy support and social demand (the ebb of demographic dividend) drive medium and long-term development. my country's machine vision has a large space to penetrate. With the continuous deepening of concepts such as Industry 4.0 and the continuous breakthroughs in R&D technology, AI machine vision continues to empower downstream industrial application fields and is expected to benefit from the high prosperity of the downstream track. From the perspective of industry fields, semiconductors, automobiles, and new energy in the high-prosperity track are expected to become one of the most important driving forces of the industry in the future. The electronic field will still be the most widely used downstream in the medium and long term.
Tianfeng Securities pointed out that from the perspective of application depth, AI gives machine vision the high-precision advantage, making machine vision a necessary standard in many industries. Machine vision has gradually been embedded in semiconductors, automobiles, new energy lithium batteries and photovoltaics. The production inspection process can improve the assembly quality of automotive electronics, break through the photovoltaic defect detection bottleneck to improve product yield, etc.
The business cycle of consumer electronics is mainly affected by the new demands brought about by technological progress, according to the observation of industry cycles. With the successive release of various large models, the trend of AI application scenarios gradually extending from the current PC and cloud to the fields of IoT devices such as smartphones, smart speakers, and smart homes is clear. The user experience of consumer electronics products is expected to be greatly improved with the help of AI. Energy has been redefined. Mobile phones and IoT devices are expected to become the main traffic access points for the Internet of Everything and AI applications in the future. They are expected to increase the value of downstream smart hardware, promote the innovation of various AI software ecosystems, and accelerate the update of the downstream consumer electronics industry. The pace of generational change and recovery.
From the perspective of industry valuation, the current PB of Shenwan consumer electronics sector is 2.48 times, and PE (TTM) is 21.61 times, which is significantly lower than the historical median and average of the industry. There is a strong certainty that the valuation will bottom out and be restored. It is recommended to pay attention to the revaluation of AI, because as my country's consumption gradually warms up and AI strengthens the capabilities of smart terminals, the demand for downstream terminals is expected to accelerate recovery.
Comments: 202023 is a big year for Apple ID innovation. iPhone sales have strong resilience, and we are cautiously optimistic about the sales performance of new phones this year. Apple’s first virtual display product is expected to be released this year, and the ARVR technology layout is profound. We are optimistic that Apple’s subsequent new MR product releases will redefine the ARVR user product experience and stimulate a new round of consumer electronics innovation cycle.
Here, by integrating the latest research reports of more than 10 securities companies such as Tianfeng, Anxin, Guosen, etc., 4 company profiles are brought to fans and friends for reference only.
1. Kerui Technology
Technological progress in the field of mobile terminals is expected to promote new demands for equipment. In 2022, the company's AR/VR product field revenue will be 86 million yuan. According to the company's investment platform reply on April 4, the company provides automated testing equipment for AR/VR terminal products in the mobile terminal field, focusing on domestic and foreign brand customers. As an industry-leading manufacturer of non-standard automation equipment, our products cover multiple industries such as e-cigarettes, medical care, and food. In the long term, we are expected to benefit from the recovery in consumption.
——Huatai Securities
2. Rockchip
The company's main flagship chip RK3588 is the current domestic flagship SoC product in China. Its performance directly benchmarks Qualcomm Snapdragon 855/865 products, and can cover the derived 8155, XR2 and other scenarios, and is used in automotive, ARVR, information In fields such as innovation and AI, there are very few localized options for mid-to-high-end consumption scenarios and are extremely scarce. The company's business in the field of AI distributed servers is advancing rapidly, and it is expected to enter a rapid growth channel with the AI wave.
——Zhongtai Securities
3. Lingyizhizao
The company is a leader in the field of precision functional and structural parts. Through vertical integration and horizontal expansion, it has achieved the success of a one-stop platform for intelligent manufacturing. In the field of consumer electronics, the company is deeply involved in customer A business, and its product lines and product numbers continue to be enriched, and it is actively deploying new categories such as folding screens and AR/VR; in the field of new energy, the company is actively seizing development opportunities in the new energy vehicles and photovoltaic construction industries, and is expected to Benefit from development dividends.
--CITIC Securities
4. Anker Innovation
The company is the benchmark for China's overseas brands. It has not only achieved the core competitiveness of existing products/brands/channels, etc., but also confirmed the strategic vision of the management; the existing foundation has accumulated as the cornerstone, and it has great potential to continue to iterate in the face of the vast market. . Although the general environment is still disturbed, the downward pressure on the global economy has increased and inflation in many overseas countries, combined with the impact of product iteration cycles, has put the company's sales under slight pressure; freight and raw materials have improved, and costs and profits have recovered.
——Guosheng Securities
Daily Economic News
The above is the detailed content of Industry Wind Vane丨The trend of AI-empowered smart terminals is clear, and a new round of consumer electronics cycle may be coming. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

The return value types of C language function include int, float, double, char, void and pointer types. int is used to return integers, float and double are used to return floats, and char returns characters. void means that the function does not return any value. The pointer type returns the memory address, be careful to avoid memory leakage.结构体或联合体可返回多个相关数据。

Flexible application of function pointers: use comparison functions to find the maximum value of an array. First, define the comparison function type CompareFunc, and then write the comparison function compareMax(a, b). The findMax function accepts array, array size, and comparison function parameters, and uses the comparison function to loop to compare array elements to find the maximum value. This method has strong code reusability, reflects the idea of higher-order programming, and is conducive to solving more complex problems.

How to output a countdown in C? Answer: Use loop statements. Steps: 1. Define the variable n and store the countdown number to output; 2. Use the while loop to continuously print n until n is less than 1; 3. In the loop body, print out the value of n; 4. At the end of the loop, subtract n by 1 to output the next smaller reciprocal.

The pointer parameters of C language function directly operate the memory area passed by the caller, including pointers to integers, strings, or structures. When using pointer parameters, you need to be careful to modify the memory pointed to by the pointer to avoid errors or memory problems. For double pointers to strings, modifying the pointer itself will lead to pointing to new strings, and memory management needs to be paid attention to. When handling pointer parameters to structures or arrays, you need to carefully check the pointer type and boundaries to avoid out-of-bounds access.

Algorithms are the set of instructions to solve problems, and their execution speed and memory usage vary. In programming, many algorithms are based on data search and sorting. This article will introduce several data retrieval and sorting algorithms. Linear search assumes that there is an array [20,500,10,5,100,1,50] and needs to find the number 50. The linear search algorithm checks each element in the array one by one until the target value is found or the complete array is traversed. The algorithm flowchart is as follows: The pseudo-code for linear search is as follows: Check each element: If the target value is found: Return true Return false C language implementation: #include#includeintmain(void){i

A function pointer is a pointer to a function, and a pointer function is a function that returns a pointer. Function pointers point to functions, used to select and execute different functions; pointer functions return pointers to variables, arrays or other functions; when using function pointers, pay attention to parameter matching and checking pointer null values; when using pointer functions, pay attention to memory management and free dynamically allocated memory; understand the differences and characteristics of the two to avoid confusion and errors.

Integers are the most basic data type in programming and can be regarded as the cornerstone of programming. The job of a programmer is to give these numbers meanings. No matter how complex the software is, it ultimately comes down to integer operations, because the processor only understands integers. To represent negative numbers, we introduced two's complement; to represent decimal numbers, we created scientific notation, so there are floating-point numbers. But in the final analysis, everything is still inseparable from 0 and 1. A brief history of integers In C, int is almost the default type. Although the compiler may issue a warning, in many cases you can still write code like this: main(void){return0;} From a technical point of view, this is equivalent to the following code: intmain(void){return0;}

The C language function returns a pointer to output a memory address. The pointing content depends on the operation inside the function, which may point to local variables (be careful, memory has been released after the function ends), dynamically allocated memory (must be allocated with malloc and free), or global variables.
