WO2022100048A1 - Procédé et appareil de traitement d'image, dispositif électronique et support de stockage lisible par ordinateur - Google Patents

Procédé et appareil de traitement d'image, dispositif électronique et support de stockage lisible par ordinateur Download PDF

Info

Publication number
WO2022100048A1
WO2022100048A1 PCT/CN2021/094568 CN2021094568W WO2022100048A1 WO 2022100048 A1 WO2022100048 A1 WO 2022100048A1 CN 2021094568 W CN2021094568 W CN 2021094568W WO 2022100048 A1 WO2022100048 A1 WO 2022100048A1
Authority
WO
WIPO (PCT)
Prior art keywords
pixel
image processing
filtering window
processed
variance
Prior art date
Application number
PCT/CN2021/094568
Other languages
English (en)
Chinese (zh)
Inventor
赵博
李永超
韩启强
洪星智
Original Assignee
海宁奕斯伟集成电路设计有限公司
北京奕斯伟计算技术有限公司
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by 海宁奕斯伟集成电路设计有限公司, 北京奕斯伟计算技术有限公司 filed Critical 海宁奕斯伟集成电路设计有限公司
Publication of WO2022100048A1 publication Critical patent/WO2022100048A1/fr

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06TIMAGE DATA PROCESSING OR GENERATION, IN GENERAL
    • G06T5/00Image enhancement or restoration
    • G06T5/20Image enhancement or restoration using local operators
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06TIMAGE DATA PROCESSING OR GENERATION, IN GENERAL
    • G06T5/00Image enhancement or restoration
    • G06T5/70Denoising; Smoothing
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06TIMAGE DATA PROCESSING OR GENERATION, IN GENERAL
    • G06T2207/00Indexing scheme for image analysis or image enhancement
    • G06T2207/10Image acquisition modality
    • G06T2207/10004Still image; Photographic image
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06TIMAGE DATA PROCESSING OR GENERATION, IN GENERAL
    • G06T2207/00Indexing scheme for image analysis or image enhancement
    • G06T2207/20Special algorithmic details
    • G06T2207/20024Filtering details
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06TIMAGE DATA PROCESSING OR GENERATION, IN GENERAL
    • G06T2207/00Indexing scheme for image analysis or image enhancement
    • G06T2207/20Special algorithmic details
    • G06T2207/20172Image enhancement details

Definitions

  • the present disclosure relates to the technical field of image processing, and in particular, to an image processing method, apparatus, electronic device, and storage medium.
  • Bilateral Filter is widely used in the fields of Noise Reduction, Photographic Style Transfer, Tone Mapping, Cartoon Rendition and Image Enhancement.
  • the bilateral filter is an edge-preserving filter using a nonlinear filtering method, it will cause artifacts such as Gradient Reversal when it is applied to image processing in the field of image enhancement.
  • the present disclosure provides an image processing method, an apparatus, an electronic device and a storage medium, which are used to solve the problem of artifacts such as gradient inversion during image processing in the field of image enhancement.
  • the present disclosure provides an image processing method, the method comprising: acquiring an image to be processed, and for each pixel to be processed in the to-be-processed image, performing the following operations to obtain filtering processing After the output image; the pixel to be processed is used as the central pixel to construct a filtering window, wherein the central pixel is I(y,x), and the size of the filtering window is M ⁇ N, where M, N are both is an odd number greater than 1; calculate the angle value of each pixel of the filtering window and the central pixel, the pixel of the filtering window is I(i,j), where i is greater than or equal to 1 and less than or equal to M , j is greater than or equal to 1 and less than or equal to N; calculate the variance in the filtering window according to the angle value; calculate the weight coefficient of each pixel in the filtering window according to the variance; All pixels of the filtering window are used to obtain the weighted result.
  • the calculation formula of the angle value is:
  • theta(i,j) is the angle value
  • sim(i,j) is the pixel similarity between the pixel of the filter window and the center pixel
  • dis(i,j) is the filter window
  • a is the first adjustment parameter.
  • the calculation formula of the pixel similarity is:
  • sim(i,j) I(i,j)-I(y,x).
  • the calculation formula of the pixel distance is:
  • the formula for calculating the variance is:
  • sigma is the variance
  • b is the preset target mean
  • c is the second adjustment parameter.
  • the calculation formula of the weight coefficient is:
  • weight(i,j) is the weight coefficient
  • the calculation formula of the weighted result is:
  • the present disclosure provides an image processing apparatus, the image processing apparatus comprising: an acquisition module for acquiring a to-be-processed image, the to-be-processed image including a plurality of to-be-processed pixels; a building module , which is used to construct a filtering window with the pixel to be processed as the central pixel, where the central pixel is I(y,x), and the size of the filtering window is M ⁇ N, where M and N are both larger than an odd number of 1; the angle value calculation module is used to calculate the angle value between each pixel of the filtering window and the central pixel, and the pixel of the filtering window is I(i, j), where i is greater than or equal to 1 and less than or equal to M, j is greater than or equal to 1 and less than or equal to N; the variance calculation module is used to calculate the variance in the filtering window according to the angle value; the weight coefficient calculation module is used to calculate the filter according to the variance a weighting
  • the present disclosure provides an electronic device comprising a processor, a memory, and a program or instruction stored on the memory and executable on the processor, the program or instruction being executed by the
  • the processor implements the steps of the image processing method described above when executed.
  • the present disclosure provides a readable storage medium, on which a program or an instruction is stored, and when the program or the instruction is executed by a processor, implements the above-mentioned image processing method.
  • the beneficial effects of the present disclosure are: by taking each pixel to be processed in the image to be processed as the central pixel to construct a filtering window, and calculating the angle value between each pixel in the filtering window and the central pixel, In this way, the variance in the filtering window is obtained, and then the weight coefficient of each pixel in the filtering window is obtained, and finally all pixels in the filtering window are weighted according to the weight coefficient, so as to avoid the problem of artifacts such as gradient flipping during image enhancement processing.
  • the filtered image maintains good details while reducing noise, enhancing the image display quality.
  • FIG. 1 is a schematic flowchart of steps of an image processing method according to an embodiment of the present disclosure.
  • FIG. 2 is a schematic diagram of a frame structure of an image enhancement provided by an embodiment of the present disclosure.
  • FIG. 3 is a schematic structural diagram of an image processing apparatus according to an embodiment of the present disclosure.
  • FIG. 4 is a schematic structural diagram of an electronic device according to an embodiment of the present disclosure.
  • FIG. 5 is a schematic diagram of a specific structure of an electronic device provided by an embodiment of the present disclosure.
  • an embodiment of the present disclosure provides an image processing method, which is applied to an electronic device, and the method includes steps S11 to S16 .
  • step S11 an image to be processed is acquired, and the image to be processed includes a plurality of pixels to be processed, and the following operations are performed to obtain an output image after filtering.
  • the original picture may be split and processed according to the size, or a picture may be directly processed as an image to be processed, which is not specifically limited in the embodiment of the present disclosure.
  • a filter window is constructed with the pixel to be processed as the center pixel, wherein the center pixel is I(y,x), and the size of the filter window is M ⁇ N, where M and N are both larger than Odd number of 1.
  • one pixel is selected as the center pixel in turn, and the center pixel is used as the center of the filtering window, and the center pixel is moved to the upper left, upper right, upper right, right left, right, lower left, right lower,
  • Step S13 Calculate the angle value between each pixel of the filter window and the center pixel, where the pixel of the filter window is I(i,j), where i is greater than or equal to 1 and less than or equal to M, and j is greater than or equal to M. Equal to 1 and less than or equal to N.
  • the calculation formula of the angle value is:
  • theta(i,j) is the angle value
  • sim(i,j) is the pixel similarity between the pixel of the filter window and the center pixel
  • dis(i,j) is the difference between the pixel of the filter window and the center pixel pixel distance
  • a is the first adjustment parameter
  • a is used to The result is adjusted, the larger a is, the larger the absolute value of theta(i,j) is, and the larger the filtering degree is, where a is a real number greater than 0.
  • sim(i,j) I(i,j)-I(y,x).
  • Step S14 Calculate the variance in the filtering window according to the angle value.
  • the calculation formula of variance is:
  • sigma is the variance
  • b is the preset target mean value
  • b can be obtained according to the weighted average of the angle values in the filter window
  • the value range of b is c is the second adjustment parameter
  • c is used to adjust the result of the sigma, the larger the c is, the larger the sigma, and the greater the filtering degree, where c is a real number greater than 0.
  • Step S15 Calculate the weight coefficient of each pixel in the filtering window according to the variance.
  • the calculation formula of the weight coefficient is:
  • weight(i,j) is the weight coefficient
  • Step S16 weight all the pixels of the filtering window according to the weight coefficient to obtain a weighting result.
  • the calculation formula of the weighted result is:
  • a filtered image is obtained by performing the above image processing on each pixel.
  • an embodiment of the present disclosure provides a schematic diagram of a frame structure of image enhancement.
  • a low-pass filter After inputting the image, first pass a low-pass filter to obtain low-pass components and high-frequency components (High Frequency); then, enhance the high-frequency components (Enhance), such as multiplying the high-frequency components by the gain value (Gain) to carry out Amplify, and finally add the enhanced high-frequency components back to the low-pass components of the input image, resulting in an output enhanced image.
  • an embodiment of the present disclosure provides an image processing apparatus, which is applied to an electronic device.
  • the apparatus includes an acquisition module 301 , a construction module 302 , an angle value calculation module 303 , a variance calculation module 304 , a weight coefficient calculation module 305 , and Weighting module 306 .
  • the acquiring module 301 is configured to acquire an image to be processed, and the image to be processed includes a plurality of pixels to be processed.
  • the original picture may be split and processed according to the size, or a picture may be directly processed as an image to be processed, which is not specifically limited in the embodiment of the present disclosure.
  • the building module 302 is configured to use the pixel to be processed as a central pixel to construct a filtering window, wherein the central pixel is I(y,x), and the size of the filtering window is M ⁇ N, where M and N are both. is an odd number greater than 1.
  • one pixel is selected as the center pixel in turn, and the center pixel is used as the center of the filtering window, and the center pixel is moved to the upper left, upper right, upper right, right left, right, lower left, right lower,
  • the angle value calculation module 303 is used to calculate the angle value between each pixel of the filtering window and the central pixel, and the pixel of the filtering window is I(i,j), where i is greater than or equal to 1 and less than or equal to M, j is greater than or equal to 1 and less than or equal to N.
  • the calculation formula of the angle value is:
  • theta(i,j) is the angle value
  • sim(i,j) is the pixel similarity between the pixel of the filter window and the center pixel
  • dis(i,j) is the difference between the pixel of the filter window and the center pixel pixel distance
  • a is the first adjustment parameter
  • a is used to The result is adjusted, the larger a is, the larger the absolute value of theta(i,j) is, and the larger the filtering degree is, where a is a real number greater than 0.
  • sim(i,j) I(i,j)-I(y,x).
  • the variance calculation module 304 is configured to calculate the variance within the filtering window according to the angle value.
  • the calculation formula of variance is:
  • sigma is the variance
  • b is the preset target mean value
  • b can be obtained according to the weighted average of the angle values in the filter window
  • the value range of b is c is the second adjustment parameter
  • c is used to adjust the result of the sigma, the larger the c is, the larger the sigma, and the greater the filtering degree, where c is a real number greater than 0.
  • the weight coefficient calculation module 305 is configured to calculate the weight coefficient of each pixel in the filter window according to the variance.
  • the calculation formula of the weight coefficient is:
  • weight(i,j) is the weight coefficient
  • the weighting module 306 is configured to weight all the pixels of the filtering window according to the weight coefficient to obtain a weighting result.
  • the calculation formula of the weighted result is:
  • the image to be processed is processed by the above modules to obtain a filtered image.
  • an embodiment of the present disclosure further provides an electronic device 400 , and the electronic device 400 may be devices such as a mobile phone, a tablet, and a computer.
  • the electronic device 400 includes a processor 401 and a memory 402 .
  • the processor 401 is electrically connected to the memory 402 .
  • the processor 401 is the control center of the electronic device 400, uses various interfaces and lines to connect various parts of the entire electronic device, executes the electronic Various functions of the device and processing data, so as to carry out the overall monitoring of the electronic device.
  • the electronic device 400 is provided with multiple storage partitions, and the multiple storage partitions include a system partition and a target partition.
  • the instructions corresponding to the process of the program are loaded into the memory 402, and the processor 401 runs the application program stored in the memory 402, thereby realizing various functions:
  • the filter window is constructed with the pixel to be processed as the center pixel, wherein the center pixel is I(y,x), and the size of the filter window is M ⁇ N, where M and N are odd numbers greater than 1 ;
  • the pixel of the filtering window is I(i,j), where i is greater than or equal to 1 and less than or equal to M, j is greater than or equal to 1 and less than or equal to N;
  • All pixels of the filtering window are weighted according to the weight coefficient to obtain a weighting result.
  • FIG. 5 shows a specific structural block diagram of an electronic device 500 provided by an embodiment of the present disclosure, and the electronic device 500 may be used to implement the image processing method provided in the foregoing embodiments.
  • the electronic device 500 may be a mobile phone or a tablet.
  • the electronic device 500 also includes the following components.
  • the RF circuit 510 is used for receiving and sending electromagnetic waves, realizing mutual conversion between electromagnetic waves and electrical signals, so as to communicate with a communication network or other devices.
  • RF circuitry 510 may include various related art circuit elements for performing these functions, eg, antennas, radio frequency transceivers, digital signal processors, encryption/decryption chips, Subscriber Identity Module (SIM) cards, memory, and the like.
  • the RF circuit 510 may communicate with various networks such as the Internet, an intranet, a wireless network, or with other devices over a wireless network.
  • the aforementioned wireless network may include a cellular telephone network, a wireless local area network, or a metropolitan area network.
  • the above-mentioned wireless network can use various communication standards, protocols and technologies, including but not limited to Global System for Mobile Communication (GSM), Enhanced Data GSM Environment (EDGE), wideband code Division Multiple Access (Wideband Code Division Multiple Access, WCDMA), Code Division Multiple Access (Code Division Access, CDMA), Time Division Multiple Access (TDMA), Wireless Fidelity (Wireless Fidelity, Wi- Fi) (such as IEEE 802.11a, IEEE 802.11b, IEEE802.11g and/or IEEE802.11n), Voice over Internet Protocol (VoIP), Worldwide Interoperability for Microwave Access, Wi-Max), other protocols for mail, instant messaging, and short messaging, and any other suitable communication protocols, even those that are not currently being developed.
  • GSM Global System for Mobile Communication
  • EDGE Enhanced Data GSM Environment
  • WCDMA Wideband Code Division Multiple Access
  • CDMA Code Division Multiple Access
  • TDMA Time Division Multiple Access
  • Wireless Fidelity Wireless Fidelity
  • Wi- Fi such as IEEE 802.11a, IEEE
  • the memory 520 can be used to store software programs and modules, such as program instructions/modules corresponding to the image processing method in the above-mentioned embodiments, and the processor 580 executes various functional applications and data processing by running the software programs and modules stored in the memory 520. , that is, the function of realizing the image processing method.
  • Memory 520 may include high-speed random access memory, and may also include non-volatile memory, such as one or more magnetic storage devices, flash memory, or other non-volatile solid-state memory.
  • memory 520 may further include memory located remotely from processor 580, which may be connected to electronic device 500 through a network. Examples of such networks include, but are not limited to, the Internet, an intranet, a local area network, a mobile communication network, and combinations thereof.
  • the input unit 530 may be used to receive input numerical or character information, and generate keyboard, mouse, joystick, optical or trackball signal input related to user settings and function control.
  • the input unit 530 may include a touch-sensitive surface 531 as well as other input devices 532 .
  • Touch-sensitive surface 531 also known as a touch display or trackpad, can collect user touch operations on or near it (such as a user using a finger, stylus, etc., any suitable object or accessory on or on touch-sensitive surface 531). operation near the touch-sensitive surface 531 ), and drive the corresponding connection device according to a preset program.
  • the touch-sensitive surface 531 may include two parts, a touch detection device and a touch controller.
  • the touch detection device detects the user's touch orientation, detects the signal brought by the touch operation, and transmits the signal to the touch controller; the touch controller receives the touch information from the touch detection device, converts it into contact coordinates, and then sends it to the touch controller.
  • the touch-sensitive surface 531 may be implemented using resistive, capacitive, infrared, and surface acoustic wave types.
  • the input unit 530 may also include other input devices 532 .
  • other input devices 532 may include, but are not limited to, one or more of physical keyboards, function keys (such as volume control keys, switch keys, etc.), trackballs, mice, joysticks, and the like.
  • the display unit 540 may be used to display information input by or provided to the user and various graphical user interfaces of the electronic device 500, which may be composed of graphics, text, icons, videos, and any combination thereof.
  • the display unit 540 may include a display panel 541, and optionally, the display panel 541 may be configured in the form of an LCD (Liquid Crystal Display, liquid crystal display), an OLED (Organic Light-Emitting Diode, organic light-emitting diode) and the like. Further, the touch-sensitive surface 531 may cover the display panel 541.
  • the touch-sensitive surface 531 When the touch-sensitive surface 531 detects a touch operation on or near it, it transmits it to the processor 580 to determine the type of the touch event, and then the processor 580 determines the type of the touch event according to the touch event. Type provides corresponding visual output on display panel 541 .
  • the touch-sensitive surface 531 and the display panel 541 are implemented as two separate components to realize the input and output functions, in some embodiments, the touch-sensitive surface 531 and the display panel 541 may be integrated to realize the input and output functions.
  • the electronic device 500 may also include at least one sensor 550, such as a light sensor, a motion sensor, and other sensors.
  • the light sensor may include an ambient light sensor and a proximity sensor, wherein the ambient light sensor may adjust the brightness of the display panel 541 according to the brightness of the ambient light, and the proximity sensor may turn off the display panel 541 when the electronic device 500 is moved to the ear and/or backlight.
  • the gravitational acceleration sensor can detect the magnitude of acceleration in all directions (usually three axes), and can detect the magnitude and direction of gravity when stationary, and can be used for applications that recognize the attitude of mobile phones (such as horizontal and vertical screen switching, related games, magnetometer attitude calibration), vibration recognition related functions (such as pedometer, tapping), etc.; as for other sensors such as gyroscope, barometer, hygrometer, thermometer, infrared sensor, etc. that can be configured in the electronic device 500, here No longer.
  • the audio circuit 560 , the speaker 561 , and the microphone 562 may provide an audio interface between the user and the electronic device 500 .
  • the audio circuit 560 can transmit the received audio data converted electrical signal to the speaker 561, and the speaker 561 converts it into a sound signal for output; on the other hand, the microphone 562 converts the collected sound signal into an electrical signal, which is converted by the audio circuit 560 After receiving, it is converted into audio data, and then the audio data is output to the processor 580 for processing, and then sent to, for example, another terminal through the RF circuit 510, or the audio data is output to the memory 520 for further processing.
  • the audio circuit 560 may also include an earphone jack to provide for communication of peripheral headphones with the electronic device 500 .
  • the electronic device 500 can help the user to send and receive emails, browse web pages, access streaming media, etc. through the transmission module 570 (eg, a Wi-Fi module), which provides the user with wireless broadband Internet access.
  • the transmission module 570 eg, a Wi-Fi module
  • FIG. 5 shows the transmission module 570, it can be understood that it does not belong to the essential structure of the electronic device 500, and can be completely omitted as required within the scope of not changing the essence of the invention.
  • the processor 580 is the control center of the electronic device 500, uses various interfaces and lines to connect various parts of the entire mobile phone, runs or executes the software programs and/or modules stored in the memory 520, and calls the data stored in the memory 520. , perform various functions of the electronic device 500 and process data, so as to monitor the mobile phone as a whole.
  • the processor 580 may include one or more processing cores; in some embodiments, the processor 580 may integrate an application processor and a modem processor, wherein the application processor mainly handles the operating system, user interface and Applications, etc., the modem processor mainly deals with wireless communication. It can be understood that, the above-mentioned modulation and demodulation processor may not be integrated into the processor 580 .
  • the electronic device 500 also includes a power source 590 (such as a battery) for powering the various components.
  • the power source may be logically connected to the processor 580 through a power management system to manage charging, discharging, and power consumption through the power management system. management and other functions.
  • Power supply 590 may also include one or more DC or AC power sources, recharging systems, power failure detection circuits, power converters or inverters, power status indicators, and any other components.
  • the electronic device 500 may further include a camera (eg, a front-facing camera, a rear-facing camera), a Bluetooth module, and the like, which will not be repeated here.
  • the display unit of the electronic device is a touch screen display
  • the electronic device further includes a memory, and one or more programs, wherein one or more programs are stored in the memory and configured to be executed by one or more programs.
  • the above processor executing one or more programs contains instructions for:
  • the filter window is constructed with the pixel to be processed as the center pixel, wherein the center pixel is I(y,x), and the size of the filter window is M ⁇ N, where M and N are odd numbers greater than 1 ;
  • the pixel of the filtering window is I(i,j), where i is greater than or equal to 1 and less than or equal to M, j is greater than or equal to 1 and less than or equal to N;
  • All pixels of the filtering window are weighted according to the weight coefficient to obtain a weighting result.
  • the above modules can be implemented as independent entities, or can be arbitrarily combined to be implemented as the same or several entities.
  • the specific implementation of the above modules can refer to the previous method embodiments, which will not be repeated here.
  • the readable storage medium may include: a read-only memory (ROM, Read Only Memory), a random access memory (RAM, Random Access Memory), a magnetic disk or an optical disk, and the like.
  • ROM Read Only Memory
  • RAM Random Access Memory
  • magnetic disk or an optical disk and the like.
  • a filter window is constructed by taking each pixel to be processed in the image to be processed as the center pixel, and the angle value between each pixel in the filter window and the center pixel is calculated, so as to obtain the value of the filter window. Then, the weight coefficient of each pixel in the filter window is obtained, and finally all pixels in the filter window are weighted according to the weight coefficient, so as to avoid the problem of gradient flipping and other artifacts caused by image enhancement processing, and realize that the filtered image is reduced in size. Noise while maintaining good details, enhancing the image display quality.
  • modules can all be implemented in the form of software calling through processing elements; they can also all be implemented in hardware; some modules can also be implemented in the form of calling software through processing elements, and some modules can be implemented in hardware.
  • the determination module may be a separately established processing element, or may be integrated into a certain chip of the above-mentioned device to be implemented, in addition, it may also be stored in the memory of the above-mentioned device in the form of program code, and a certain processing element of the above-mentioned device may Call and execute the function of the above determined module.
  • the implementation of other modules is similar. In addition, all or part of these modules can be integrated together, and can also be implemented independently.
  • the processing element described here may be an integrated circuit with signal processing capability. In the implementation process, each step of the above-mentioned method or each of the above-mentioned modules can be completed by an integrated logic circuit of hardware in the processor element or an instruction in the form of software.
  • each module, unit, sub-unit or sub-module may be one or more integrated circuits configured to implement the above methods, such as: one or more Application Specific Integrated Circuit (ASIC), or, one or Multiple microprocessors (digital signal processors, DSP), or, one or more field programmable gate arrays (Field Programmable Gate Array, FPGA), etc.
  • ASIC Application Specific Integrated Circuit
  • DSP digital signal processors
  • FPGA Field Programmable Gate Array
  • the processing element may be a general-purpose processor, such as a central processing unit (Central Processing Unit, CPU) or other processors that can call program codes.
  • CPU central processing unit
  • these modules can be integrated together and implemented in the form of a system-on-a-chip (SOC).
  • SOC system-on-a-chip

Landscapes

  • Physics & Mathematics (AREA)
  • General Physics & Mathematics (AREA)
  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Image Processing (AREA)

Abstract

La présente divulgation concerne un procédé et un appareil de traitement d'image, un dispositif électronique et un support de stockage lisible par ordinateur. Le procédé de la présente divulgation consiste : à utiliser chaque pixel à traiter dans une image à traiter comme pixel central et à construire ainsi une fenêtre de filtrage ; à calculer une valeur d'angle de chaque pixel dans la fenêtre de filtrage par rapport au pixel central, de manière à acquérir une variance de la fenêtre de filtrage ; à acquérir un coefficient de pondération de chaque pixel dans la fenêtre de filtrage ; et à pondérer tous les pixels dans la fenêtre de filtrage selon le coefficient de pondération, de manière à obtenir un résultat pondéré.
PCT/CN2021/094568 2020-11-11 2021-05-19 Procédé et appareil de traitement d'image, dispositif électronique et support de stockage lisible par ordinateur WO2022100048A1 (fr)

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
CN202011256082.8A CN112308806B (zh) 2020-11-11 2020-11-11 图像处理方法、装置、电子设备以及可读存储介质
CN202011256082.8 2020-11-11

Publications (1)

Publication Number Publication Date
WO2022100048A1 true WO2022100048A1 (fr) 2022-05-19

Family

ID=74325846

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/CN2021/094568 WO2022100048A1 (fr) 2020-11-11 2021-05-19 Procédé et appareil de traitement d'image, dispositif électronique et support de stockage lisible par ordinateur

Country Status (2)

Country Link
CN (1) CN112308806B (fr)
WO (1) WO2022100048A1 (fr)

Cited By (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN114972354A (zh) * 2022-08-02 2022-08-30 济宁金筑新型建材科技有限公司 基于图像处理的蒸压加气混凝土砌块生产控制方法及系统
CN115840828A (zh) * 2023-02-13 2023-03-24 湖北芯擎科技有限公司 一种图像比对显示方法、装置、设备及介质
CN116071220A (zh) * 2023-03-06 2023-05-05 浙江华感科技有限公司 一种图像窗口数据处理方法、装置、设备及介质
CN116091405A (zh) * 2022-11-30 2023-05-09 武汉极动智能科技有限公司 图像处理方法及装置、计算机设备、存储介质
CN116453029A (zh) * 2023-06-16 2023-07-18 济南东庆软件技术有限公司 基于图像数据的楼宇火灾环境检测方法
CN116503404A (zh) * 2023-06-27 2023-07-28 梁山县创新工艺品股份有限公司 塑料玩具质量检测方法、装置、电子设备及存储介质

Families Citing this family (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN112308806B (zh) * 2020-11-11 2024-06-18 海宁奕斯伟集成电路设计有限公司 图像处理方法、装置、电子设备以及可读存储介质
CN113034396B (zh) * 2021-03-26 2023-05-12 龙芯中科(合肥)技术有限公司 图像滤波方法、装置、电子设备及存储介质
CN114363477A (zh) * 2021-12-30 2022-04-15 上海网达软件股份有限公司 基于滑窗权重回归的视频自适应锐化的方法及系统

Citations (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103778613A (zh) * 2014-02-21 2014-05-07 武汉大学 一种窗口自适应的极化sar影像滤波方法
CN105894464A (zh) * 2016-03-28 2016-08-24 福州瑞芯微电子股份有限公司 一种中值滤波图像处理方法和装置
CN106373095A (zh) * 2016-08-29 2017-02-01 广东欧珀移动通信有限公司 一种图像处理方法及终端
US20170178294A1 (en) * 2015-12-22 2017-06-22 Intel Corporation Code filters for coded light depth acquisition in depth images
CN109389560A (zh) * 2018-09-27 2019-02-26 深圳开阳电子股份有限公司 一种自适应加权滤波图像降噪方法、装置及图像处理设备
CN112308806A (zh) * 2020-11-11 2021-02-02 海宁奕斯伟集成电路设计有限公司 图像处理方法、装置、电子设备以及可读存储介质

Family Cites Families (12)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101877124A (zh) * 2009-04-28 2010-11-03 北京捷科惠康科技有限公司 一种医学图像的滤波方法及系统
JP5289288B2 (ja) * 2009-11-27 2013-09-11 三菱電機株式会社 ノイズ除去装置及びノイズ除去方法
WO2013038333A2 (fr) * 2011-09-18 2013-03-21 Forus Health Pvt. Ltd. Procédé et système pour améliorer la qualité d'une image
CN102663708B (zh) * 2012-04-27 2015-06-10 飞依诺科技(苏州)有限公司 基于方向加权中值滤波的超声图像处理方法
CN104331863B (zh) * 2014-10-15 2018-01-09 中国航空工业集团公司洛阳电光设备研究所 一种图像滤波去噪方法
CN104978715B (zh) * 2015-05-11 2017-08-11 中国科学院光电技术研究所 一种基于滤波窗口及参数自适应的非局部均值图像去噪方法
CN106874912A (zh) * 2016-12-20 2017-06-20 银江股份有限公司 一种基于改进lbp算子的图像目标检测方法
CN108230255A (zh) * 2017-09-19 2018-06-29 北京市商汤科技开发有限公司 用于实现图像增强的方法、装置和电子设备
CN109087257B (zh) * 2018-07-25 2020-08-07 武汉科技大学 一种基于参数估计框架的空域增量图像滤波方法
CN109741287B (zh) * 2018-12-27 2021-01-01 湖南国科微电子股份有限公司 图像导向滤波方法及装置
CN110211082B (zh) * 2019-05-31 2021-09-21 浙江大华技术股份有限公司 一种图像融合方法、装置、电子设备及存储介质
CN110619647B (zh) * 2019-09-16 2022-12-30 中山大学 基于边缘点频域空域特征结合图像模糊区域定位方法

Patent Citations (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103778613A (zh) * 2014-02-21 2014-05-07 武汉大学 一种窗口自适应的极化sar影像滤波方法
US20170178294A1 (en) * 2015-12-22 2017-06-22 Intel Corporation Code filters for coded light depth acquisition in depth images
CN105894464A (zh) * 2016-03-28 2016-08-24 福州瑞芯微电子股份有限公司 一种中值滤波图像处理方法和装置
CN106373095A (zh) * 2016-08-29 2017-02-01 广东欧珀移动通信有限公司 一种图像处理方法及终端
CN109389560A (zh) * 2018-09-27 2019-02-26 深圳开阳电子股份有限公司 一种自适应加权滤波图像降噪方法、装置及图像处理设备
CN112308806A (zh) * 2020-11-11 2021-02-02 海宁奕斯伟集成电路设计有限公司 图像处理方法、装置、电子设备以及可读存储介质

Cited By (10)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN114972354A (zh) * 2022-08-02 2022-08-30 济宁金筑新型建材科技有限公司 基于图像处理的蒸压加气混凝土砌块生产控制方法及系统
CN116091405A (zh) * 2022-11-30 2023-05-09 武汉极动智能科技有限公司 图像处理方法及装置、计算机设备、存储介质
CN116091405B (zh) * 2022-11-30 2024-01-26 武汉极动智能科技有限公司 图像处理方法及装置、计算机设备、存储介质
CN115840828A (zh) * 2023-02-13 2023-03-24 湖北芯擎科技有限公司 一种图像比对显示方法、装置、设备及介质
CN115840828B (zh) * 2023-02-13 2023-06-06 湖北芯擎科技有限公司 一种图像比对显示方法、装置、设备及介质
CN116071220A (zh) * 2023-03-06 2023-05-05 浙江华感科技有限公司 一种图像窗口数据处理方法、装置、设备及介质
CN116453029A (zh) * 2023-06-16 2023-07-18 济南东庆软件技术有限公司 基于图像数据的楼宇火灾环境检测方法
CN116453029B (zh) * 2023-06-16 2023-08-29 济南东庆软件技术有限公司 基于图像数据的楼宇火灾环境检测方法
CN116503404A (zh) * 2023-06-27 2023-07-28 梁山县创新工艺品股份有限公司 塑料玩具质量检测方法、装置、电子设备及存储介质
CN116503404B (zh) * 2023-06-27 2023-09-01 梁山县创新工艺品股份有限公司 塑料玩具质量检测方法、装置、电子设备及存储介质

Also Published As

Publication number Publication date
CN112308806A (zh) 2021-02-02
CN112308806B (zh) 2024-06-18

Similar Documents

Publication Publication Date Title
WO2022100048A1 (fr) Procédé et appareil de traitement d'image, dispositif électronique et support de stockage lisible par ordinateur
EP3370204B1 (fr) Procédé de détection de région de peau et dispositif de détection de région de peau
WO2022110687A1 (fr) Procédé et appareil de traitement d'images, dispositif électronique et support de stockage lisible par ordinateur
CN111176602B (zh) 图片显示方法、装置、存储介质及智能设备
WO2019109990A1 (fr) Procédé de photographie utilisant une image locale comme arrière-plan, support d'enregistrement et terminal mobile
WO2019129092A1 (fr) Procédé de photographie à cadence de prise de vue réduite, terminal mobile et support de mémorisation
WO2020007116A1 (fr) Procédé et appareil de réglage de fenêtre d'écran fractionné, support d'informations et dispositif électronique
WO2020133797A1 (fr) Procédé et dispositif de transmission de données de terminal, et support de stockage
US11050942B2 (en) Screen fill light photographing method for mobile terminal, system and mobile terminal
WO2020097836A1 (fr) Procédé et appareil de traitement d'image, et dispositif informatique et support de stockage
WO2020134789A1 (fr) Terminal mobile et procédé de commande d'activation et de désactivation d'écran et support de stockage informatique
WO2021120383A1 (fr) Procédé et appareil de commande de température de couleur d'écran, support de stockage, et terminal mobile
WO2022100082A1 (fr) Procédé et appareil de traitement d'image, dispositif électronique et support de stockage lisible
WO2022082960A1 (fr) Procédé de détermination de valeur de compensation de région d'affichage local, appareil, support d'enregistrement et équipement terminal
CN111556248B (zh) 拍摄方法、装置、存储介质及移动终端
CN110855896A (zh) 拍摄方法及装置、存储介质、终端设备
WO2022127790A1 (fr) Procédé et appareil de configuration de canal, dispositif électronique, et support de stockage lisible
CN117116203A (zh) 屏幕亮度调整方法、装置、存储介质及电子设备
US11892723B2 (en) Electronic device and driving method therefor
EP4123574A1 (fr) Procédé et appareil de fusion d'image, support de stockage et terminal mobile
CN112230825A (zh) 分享方法、移动终端及存储介质
CN112468725B (zh) 照片拍摄方法、装置、存储介质及移动终端
WO2023138214A1 (fr) Procédé de mise en correspondance d'écran, procédé de configuration d'écran et dispositif de mise en correspondance d'écran
WO2023025184A1 (fr) Procédé et appareil de commande d'élément d'interface, dispositif électronique et support de stockage
CN111026488B (zh) 通信数据保存方法、装置、终端设备和存储介质

Legal Events

Date Code Title Description
121 Ep: the epo has been informed by wipo that ep was designated in this application

Ref document number: 21890580

Country of ref document: EP

Kind code of ref document: A1

NENP Non-entry into the national phase

Ref country code: DE

122 Ep: pct application non-entry in european phase

Ref document number: 21890580

Country of ref document: EP

Kind code of ref document: A1