CN105809677B - Image edge detection method and system based on bilateral filter - Google Patents

Image edge detection method and system based on bilateral filter Download PDF

Info

Publication number
CN105809677B
CN105809677B CN201610121118.9A CN201610121118A CN105809677B CN 105809677 B CN105809677 B CN 105809677B CN 201610121118 A CN201610121118 A CN 201610121118A CN 105809677 B CN105809677 B CN 105809677B
Authority
CN
China
Prior art keywords
image
ltoreq
pixel point
brightness
calculating
Prior art date
Legal status (The legal status 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 status listed.)
Active
Application number
CN201610121118.9A
Other languages
Chinese (zh)
Other versions
CN105809677A (en
Inventor
唐卫东
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Wuhan TCL Group Industrial Research Institute Co Ltd
Original Assignee
Wuhan TCL Group Industrial Research Institute Co Ltd
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 Wuhan TCL Group Industrial Research Institute Co Ltd filed Critical Wuhan TCL Group Industrial Research Institute Co Ltd
Priority to CN201610121118.9A priority Critical patent/CN105809677B/en
Publication of CN105809677A publication Critical patent/CN105809677A/en
Application granted granted Critical
Publication of CN105809677B publication Critical patent/CN105809677B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Classifications

    • 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
    • G06T2207/20028Bilateral filtering

Landscapes

  • Image Processing (AREA)
  • Facsimile Image Signal Circuits (AREA)
  • Image Analysis (AREA)

Abstract

The invention discloses an image edge detection method and system based on a bilateral filter, wherein the method comprises the following steps: acquiring an input image to be subjected to image processing, and calculating the brightness difference between all pixel points and adjacent pixel points in the image; acquiring brightness data of all pixel points in the image after filtering; calculating a gradient value of the filtered luminance information; and when the gradient value is detected to be larger than the preset threshold value, the position of the corresponding pixel point is the image edge. The invention can remove noise and fluctuation of non-edge part, and strengthen edge part, to improve edge detection stability and accuracy.

Description

Image edge detection method and system based on bilateral filter
Technical Field
The invention relates to the technical field of image processing, in particular to an image edge detection method and system based on a bilateral filter.
Background
In image processing, it is often necessary to extract edges of objects in an image. The most basic method is to calculate the gradient of the image, i.e. the difference in brightness of neighboring pixels. Directly calculating the gradient is easy to generate false edges, and the existing edges are likely to be missed. The edge detection technology in the prior art cannot avoid false edges, reduce the image quality after image processing, and cannot further analyze images. The image edge detection is sensitive to noise, the noise is easy to be taken as an edge, and the edge of an object can be blurred if the noise is input into the image smoothly and indiscriminately, so that the edge is lost.
Accordingly, the prior art is yet to be improved and developed.
Disclosure of Invention
In view of the defects of the prior art, the present invention aims to provide an image edge detection method and system based on a bilateral filter, which aims to solve the problem that in the prior art, the image edge detection is sensitive to noise, the noise is easy to be regarded as an edge, and the edge of an object is blurred if the image is input smoothly without selection, so that the edge is lost.
The technical scheme of the invention is as follows:
an image edge detection method based on a bilateral filter is disclosed, wherein the method comprises the following steps;
A. acquiring an input image to be subjected to image processing, and calculating the brightness difference between all pixel points and adjacent pixel points in the image;
B. acquiring brightness data of all pixel points in the image after filtering;
C. calculating a gradient value of the filtered luminance information;
D. and when the gradient value is detected to be larger than the preset threshold value, the position of the corresponding pixel point is the image edge.
The image edge detection method based on the bilateral filter, wherein the step a specifically includes:
a1, obtaining an image to be subjected to image processing, and obtaining the brightness value of each color component of each pixel point in the image;
a2, calculating the brightness difference of the color component corresponding to the adjacent point in each color of each pixel point in all the pixel points in the image, and adding the sum to be used as the brightness difference of the current pixel point and the adjacent pixel point.
In the image edge detection method based on the bilateral filter, the pixel size of the image in the step a2 is marked as (X, Y), the current pixel point is marked as (X, Y), and then the brightness value of the red component of the current pixel point (X, Y) is marked as Ir(x, y), and recording the brightness value of the green component of the current pixel point (x, y) as Ig(x, y), and recording the brightness value of the blue component of the current pixel point (x, y) as Ib(x, y), the brightness difference between the current pixel point and the adjacent pixel point is recorded as
Figure BDA0000934274690000021
i and j are positive integers and satisfy-X/2. ltoreq. i.ltoreq.X/2 and-Y/2. ltoreq. j.ltoreq.Y/2
Figure BDA0000934274690000022
The calculation formula of (2) is as follows:
Figure BDA0000934274690000023
in the method for detecting an image edge based on a bilateral filter, if the luminance data filtered in step B is denoted as F (x, y), the luminance data is filtered in step B
Figure BDA0000934274690000024
Wherein σc、σdIs a smoothing parameter, m and n are the length and width of the filter window, respectively, and m and n satisfy 1. ltoreq. m.ltoreq.X/2 and 1. ltoreq. n.ltoreq.Y/2, i and j satisfy-m. ltoreq. i.ltoreq.m and-n. ltoreq. j.ltoreq.n.
The image edge detection method based on the bilateral filter includes:
c1, calculating gradient value of the filtered brightness information in the x direction, and marking the gradient value in the x direction as Gx(x, y) wherein
Figure BDA0000934274690000031
C2, calculating the gradient of the filtered brightness information in the y direction, and marking the gradient in the y direction as Gy(x, y) then
Figure BDA0000934274690000032
C3, calculating the total gradient of the filtered brightness information, wherein the total gradient is marked as G (x, y),
G(x,y)=|Gx(x,y)|+|Gy(x,y)|。
the image edge detection method based on the bilateral filter is characterized in that the preset threshold in the step D is marked as T, the image edge is marked as E (x, y),
Figure BDA0000934274690000033
the edge of the object in the image is located where the value of E (x, y) is 1.
An image edge detection system based on bilateral filter, wherein the system comprises:
the brightness difference calculation module is used for acquiring an input image to be subjected to image processing and calculating the brightness difference between all pixel points and adjacent pixel points in the image;
the filtering module is used for acquiring brightness data of all pixel points in the image after filtering;
the gradient calculation module is used for calculating gradient values of the filtered brightness information;
and the image edge acquisition module is used for determining the position of the corresponding pixel point as the image edge when the gradient value is detected to be larger than the preset threshold value.
The image edge detection system based on the bilateral filter, wherein the brightness difference calculation module specifically includes:
the brightness acquisition unit is used for acquiring an image to be subjected to image processing and acquiring the brightness value of each color component of each pixel point in the image;
and the computing unit is used for computing the brightness difference of color components corresponding to the adjacent points in each color of each pixel point in all the pixel points in the image and then adding the sum to be used as the brightness difference of the current pixel point and the adjacent pixel point.
The image edge detection system based on the bilateral filter is characterized in that the pixel size of the image in the brightness difference calculation module is marked as (X, Y), the current pixel point is marked as (X, Y), and then the brightness value of the red component of the current pixel point (X, Y) is marked as Ir(x, y), and recording the brightness value of the green component of the current pixel point (x, y) as Ig(x, y), and recording the brightness value of the blue component of the current pixel point (x, y) as Ib(x, y), the brightness difference between the current pixel point and the adjacent pixel point is recorded as
Figure BDA0000934274690000041
i and j are positive integers and satisfy-X/2. ltoreq. i.ltoreq.X/2 and-Y/2. ltoreq. j.ltoreq.Y/2
Figure BDA0000934274690000042
The calculation formula of (2) is as follows:
Figure BDA0000934274690000043
the image edge detection system based on the bilateral filter, wherein the brightness data filtered by the filtering module is recorded as F (x, y), then
Figure BDA0000934274690000044
Wherein σc、σdIs a smoothing parameter, m and n are the length and width of the filter window, respectively, and m and n satisfy 1. ltoreq. m.ltoreq.X/2 and 1. ltoreq. n.ltoreq.Y/2, i and j satisfy-m. ltoreq. i.ltoreq.m and-n. ltoreq. j.ltoreq.n.
The invention provides an image edge detection method and system based on a bilateral filter. The filtering algorithm reduces the noise in the original image, especially the amplitude of common white noise, so that the occurrence probability of false edges is reduced. The edge part is strengthened while removing noise and fluctuation of the non-edge part, so that stability and accuracy of edge detection are enhanced.
Drawings
FIG. 1 is a flowchart illustrating an image edge detection method based on bilateral filter according to a preferred embodiment of the present invention.
FIG. 2 is a functional block diagram of a preferred embodiment of a bilateral filter-based image edge detection system according to the present invention.
Detailed Description
In order to make the objects, technical solutions and effects of the present invention clearer and clearer, the present invention is described in further detail below. It should be understood that the specific embodiments described herein are merely illustrative of the invention and are not intended to limit the invention.
The present invention also provides a flowchart of a preferred embodiment of a bilateral filter-based image edge detection method, as shown in fig. 1, wherein the method includes:
step S100, an input image to be subjected to image processing is obtained, and the brightness difference between all pixel points in the image and adjacent pixel points is calculated.
Specifically, in the case of daily image processing, it is necessary to acquire an edge of an image in advance. The image in the embodiment of the present invention refers to a color image. The image to be processed may be taken as an input image, and data of the input image may be acquired. And calculating the brightness difference value of each pixel point and the adjacent pixel point in all the pixel points in the input image.
In specific implementation, the step S100 specifically includes:
s101, acquiring an image to be subjected to image processing, and acquiring the brightness value of each color component of each pixel point in the image;
step S102, calculating the brightness difference of color components corresponding to adjacent points in each color of each pixel point in all pixel points in the image, and adding the sum to obtain the brightness difference of the current pixel point and the adjacent pixel point.
In specific implementation, the image in step S101 is a color image, and it is necessary to obtain the luminance values of the red, green, and blue color components of the image in advance. In step S102, the pixel size of the image is marked as (X, Y), the current pixel point is marked as (X, Y), and then the brightness value of the red component of the current pixel point (X, Y) is marked as Ir(x, y), and recording the brightness value of the green component of the current pixel point (x, y) as Ig(x, y), and recording the brightness value of the blue component of the current pixel point (x, y) as Ib(x, y), the brightness difference between the current pixel point and the adjacent pixel point is recorded as
Figure BDA0000934274690000061
i and j are positive integers and satisfy-X/2. ltoreq. i.ltoreq.X/2 and-Y/2. ltoreq. j.ltoreq.Y/2
Figure BDA0000934274690000062
The calculation formula of (2) is as follows:
Figure BDA0000934274690000063
and S200, acquiring the brightness of all pixel points in the image after filtering.
In specific implementation, if the luminance data filtered in step S200 is denoted as F (x, y), the luminance data is filtered
Figure BDA0000934274690000064
Wherein σc、σdIs a smoothing parameter, m and n are the length and width of the filter window, respectively, and m and n satisfy 1. ltoreq. m.ltoreq.X/2 and 1. ltoreq. n.ltoreq.Y/2, i and j satisfy-m. ltoreq. i.ltoreq.m and-n. ltoreq. j.ltoreq.n.
And step S300, calculating gradient values of the filtered brightness information.
In the specific implementation, since the image is in the x and y directions in the matrix, the sum of the gradient values of the filtered luminance information in the x and y directions is calculated respectively to be the gradient value of the final luminance information.
Specifically, the step S300 specifically includes:
step S301, calculating gradient value of the filtered brightness information in the x direction, wherein the gradient value in the x direction is marked as Gx(x, y) wherein
Figure BDA0000934274690000065
Step S302, calculating the gradient of the filtered brightness information in the y direction, wherein the gradient of the y direction is marked as Gy(x, y) then
Figure BDA0000934274690000071
Step S303, calculating the total gradient of the filtered brightness information, wherein the total gradient is marked as G (x, y),
G(x,y)=|Gx(x,y)|+|Gy(x,y)|。
step S400, when the gradient value is detected to be larger than the preset threshold value, the position of the corresponding pixel point is the image edge.
In specific implementation, the threshold preset in step S400 is denoted as T, the image edge is denoted as E (x, y),
Figure BDA0000934274690000072
when the value of E (x, y) is 1, the edge of the object in the image is shown.
The invention provides an image edge detection algorithm based on a bilateral filter for detecting the edge of an image, and the non-edge part of the image obtained after filtering is smoother, while the edge part is strengthened, so that the edge obtained by calculating the gradient is more reliable. The filtering algorithm reduces the amplitude of noise in the original image, especially common white noise, so that the occurrence probability of false edges is reduced.
The present invention further provides a functional block diagram of a preferred embodiment of a bilateral filter-based image edge detection system, as shown in fig. 2, wherein the system comprises:
a brightness difference calculation module 100, configured to obtain an input image to be subjected to image processing, and calculate brightness differences between all pixel points in the image and adjacent pixel points; as described in the method examples above.
The filtering module 200 is configured to obtain brightness data of all pixel points in the image after filtering; as described in the method examples above.
A gradient calculating module 300 for calculating gradient values of the filtered luminance information; as described in the method examples above.
An image edge obtaining module 400, configured to, when it is detected that the gradient value is greater than a preset threshold value, determine that a position where the corresponding pixel point is located is an image edge; as described in the method examples above.
The image edge detection system based on the bilateral filter, wherein the brightness difference calculation module specifically includes:
the brightness acquisition unit is used for acquiring an image to be subjected to image processing and acquiring the brightness value of each color component of each pixel point in the image; as described in the method examples above.
The calculating unit is used for calculating the brightness difference of color components corresponding to adjacent points in each color of each pixel point in all pixel points in the image and then adding the brightness differences to be used as the brightness difference of the current pixel point and the adjacent pixel point; as described in the method examples above.
The image edge detection system based on the bilateral filter is characterized in that the pixel size of the image in the brightness difference calculation module is marked as (X, Y), the current pixel point is marked as (X, Y), and then the brightness value of the red component of the current pixel point (X, Y) is marked as Ir(x, y), and recording the brightness value of the green component of the current pixel point (x, y) as Ig(x, y), and recording the brightness value of the blue component of the current pixel point (x, y) as Ib(x, y), the brightness difference between the current pixel point and the adjacent pixel point is recorded as
Figure BDA0000934274690000081
i and j are positive integers and satisfy-X/2. ltoreq. i.ltoreq.X/2 and-Y/2. ltoreq. j.ltoreq.Y/2
Figure BDA0000934274690000082
The calculation formula of (2) is as follows:
Figure BDA0000934274690000083
Figure BDA0000934274690000084
as described in the method examples above.
The image edge detection system based on the bilateral filter, wherein the brightness data filtered by the filtering module is recorded as F (x, y), then
Figure BDA0000934274690000085
Wherein σc、σdIs a smoothing parameter, m and n are the length and width of the filter window respectively, and m and n satisfy, i and j satisfy-m is less than or equal to i is less than or equal to m and-n is less than or equal to j is less than or equal to n; as described in the method examples above.
In summary, the present invention provides an image edge detection method and system based on a bilateral filter, the method includes: acquiring an input image to be subjected to image processing, and calculating the brightness difference between all pixel points and adjacent pixel points in the image; acquiring brightness data of all pixel points in the image after filtering; calculating a gradient value of the filtered luminance information; and when the gradient value is detected to be larger than the preset threshold value, the position of the corresponding pixel point is the image edge. The invention can remove noise and fluctuation of non-edge part, and strengthen edge part, to improve edge detection stability and accuracy.
It is to be understood that the invention is not limited to the examples described above, but that modifications and variations may be effected thereto by those of ordinary skill in the art in light of the foregoing description, and that all such modifications and variations are intended to be within the scope of the invention as defined by the appended claims.

Claims (4)

1. An image edge detection method based on a bilateral filter is characterized by comprising the following steps of;
A. acquiring an input image to be subjected to image processing, and calculating the brightness difference between all pixel points in the image and adjacent pixel points, wherein the image is a color image;
B. acquiring brightness information of all pixel points in the image after filtering;
C. calculating a gradient value of the filtered luminance information;
D. when the gradient value is detected to be larger than a preset threshold value, the position of the corresponding pixel point is an image edge;
the step A specifically comprises the following steps:
a1, obtaining an image to be subjected to image processing, and obtaining the brightness value of each color component of each pixel point in the image;
a2, calculating the brightness difference of the color component corresponding to the adjacent point in each color of each pixel point in all the pixel points in the image, and adding the sum to be used as the brightness difference of the current pixel point and the adjacent pixel point;
in step a2, the pixel size of the image is marked as (X, Y), the current pixel point is marked as (X, Y), and then the current pixel point is marked as (X, Y)Y) the brightness value of the red component is denoted as Ir(x, y), and recording the brightness value of the green component of the current pixel point (x, y) as Ig(x, y), and recording the brightness value of the blue component of the current pixel point (x, y) as Ib(x, y), the brightness difference between the current pixel point and the adjacent pixel point is recorded as
Figure FDA0002617838160000011
i and j are positive integers and satisfy-X/2. ltoreq. i.ltoreq.X/2 and-Y/2. ltoreq. j.ltoreq.Y/2
Figure FDA0002617838160000012
The calculation formula of (2) is as follows:
Figure FDA0002617838160000013
Figure FDA0002617838160000021
and B, recording the filtered brightness information as F (x, y), and then
Figure FDA0002617838160000022
Wherein σc、σdIs a smoothing parameter, m and n are the length and width of the filter window, respectively, and m and n satisfy 1. ltoreq. m.ltoreq.X/2 and 1. ltoreq. n.ltoreq.Y/2, i and j satisfy-m. ltoreq. i.ltoreq.m and-n. ltoreq. j.ltoreq.n.
2. The bilateral-filter-based image edge detection method according to claim 1, wherein the step C specifically includes:
c1, calculating gradient value of the filtered brightness information in the x direction, and marking the gradient value in the x direction as Gx(x, y) wherein
Figure FDA0002617838160000023
C2, calculating the gradient of the filtered brightness information in the y direction, and marking the gradient in the y direction as Gy(x, y) then
Figure FDA0002617838160000024
C3, calculating the total gradient of the filtered brightness information, wherein the total gradient is marked as G (x, y),
G(x,y)=|Gx(x,y)|+|Gy(x,y)|。
3. the bilateral filter-based image edge detection method according to claim 2, wherein the predetermined threshold in step D is denoted as T, the image edge is denoted as E (x, y),
Figure FDA0002617838160000031
the edge of the object in the image is located where the value of E (x, y) is 1.
4. An image edge detection system based on bilateral filter, characterized in that the system comprises:
the brightness difference calculation module is used for acquiring an input image to be subjected to image processing, and calculating the brightness difference between all pixel points and adjacent pixel points in the image, wherein the image is a color image;
the filtering module is used for acquiring brightness information of all pixel points in the image after filtering;
the gradient calculation module is used for calculating gradient values of the filtered brightness information;
the image edge acquisition module is used for determining the position of the corresponding pixel point as an image edge when the gradient value is detected to be larger than a preset threshold value;
the brightness difference calculation module specifically includes:
the brightness acquisition unit is used for acquiring an image to be subjected to image processing and acquiring the brightness value of each color component of each pixel point in the image;
the calculating unit is used for calculating the brightness difference of color components corresponding to adjacent points in each color of each pixel point in all pixel points in the image and then adding the brightness differences to be used as the brightness difference of the current pixel point and the adjacent pixel point;
the pixel size of the image in the brightness difference calculation module is marked as (X, Y), the current pixel point is marked as (X, Y), and then the brightness value of the red component of the current pixel point (X, Y) is marked as Ir(x, y), and recording the brightness value of the green component of the current pixel point (x, y) as Ig(x, y), and recording the brightness value of the blue component of the current pixel point (x, y) as Ib(x, y), the brightness difference between the current pixel point and the adjacent pixel point is recorded as
Figure FDA0002617838160000032
i and j are positive integers and satisfy-X/2. ltoreq. i.ltoreq.X/2 and-Y/2. ltoreq. j.ltoreq.Y/2
Figure FDA0002617838160000041
The calculation formula of (2) is as follows:
Figure FDA0002617838160000042
the brightness information after filtering in the filtering module is marked as F (x, y), then
Figure FDA0002617838160000043
Wherein σc、σdIs a smoothing parameter, m and n are the length and width of the filter window, respectively, and m and n satisfy 1. ltoreq. m.ltoreq.X/2 and 1. ltoreq. n.ltoreq.Y/2, i and j satisfy-m. ltoreq. i.ltoreq.m and-n. ltoreq. j.ltoreq.n.
CN201610121118.9A 2016-03-03 2016-03-03 Image edge detection method and system based on bilateral filter Active CN105809677B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201610121118.9A CN105809677B (en) 2016-03-03 2016-03-03 Image edge detection method and system based on bilateral filter

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201610121118.9A CN105809677B (en) 2016-03-03 2016-03-03 Image edge detection method and system based on bilateral filter

Publications (2)

Publication Number Publication Date
CN105809677A CN105809677A (en) 2016-07-27
CN105809677B true CN105809677B (en) 2020-12-22

Family

ID=56466327

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201610121118.9A Active CN105809677B (en) 2016-03-03 2016-03-03 Image edge detection method and system based on bilateral filter

Country Status (1)

Country Link
CN (1) CN105809677B (en)

Families Citing this family (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN107392869B (en) * 2017-07-21 2020-12-01 长安大学 Face image filtering method based on edge-preserving filter
CN109955741B (en) * 2018-10-29 2021-01-22 中画高新技术产业发展(重庆)有限公司 Automatic adjusting mechanism of electric seat
CN112583997B (en) * 2019-09-30 2024-04-12 瑞昱半导体股份有限公司 Image processing circuit and method

Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN202736125U (en) * 2012-06-15 2013-02-13 黄淮学院 Medical image edge detection system
CN103150735A (en) * 2013-03-26 2013-06-12 山东大学 Gray level difference averaging-based image edge detection method
CN103177260A (en) * 2013-04-19 2013-06-26 福州大学 Color image boundary extraction method
CN103679737A (en) * 2013-12-26 2014-03-26 清华大学 Method for color image edge detection on basis of multichannel information selection
CN104077773A (en) * 2014-06-23 2014-10-01 北京京东方视讯科技有限公司 Image edge detection method, and image target identification method and device

Family Cites Families (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US8165383B2 (en) * 2008-03-24 2012-04-24 Applied Materials Israel, Ltd. Method, system and computer program product for edge detection

Patent Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN202736125U (en) * 2012-06-15 2013-02-13 黄淮学院 Medical image edge detection system
CN103150735A (en) * 2013-03-26 2013-06-12 山东大学 Gray level difference averaging-based image edge detection method
CN103177260A (en) * 2013-04-19 2013-06-26 福州大学 Color image boundary extraction method
CN103679737A (en) * 2013-12-26 2014-03-26 清华大学 Method for color image edge detection on basis of multichannel information selection
CN104077773A (en) * 2014-06-23 2014-10-01 北京京东方视讯科技有限公司 Image edge detection method, and image target identification method and device

Also Published As

Publication number Publication date
CN105809677A (en) 2016-07-27

Similar Documents

Publication Publication Date Title
WO2019233264A1 (en) Image processing method, computer readable storage medium, and electronic device
WO2017121018A1 (en) Method and apparatus for processing two-dimensional code image, and terminal and storage medium
WO2016206087A1 (en) Low-illumination image processing method and device
JP4767240B2 (en) Method and apparatus for detecting video boundary and computer-readable recording medium embodying the same
US9811746B2 (en) Method and system for detecting traffic lights
US10515438B2 (en) System and method for supporting image denoising based on neighborhood block dimensionality reduction
CN109214996B (en) Image processing method and device
KR101812341B1 (en) A method for edge enhancement of image
CN107230208B (en) Image noise intensity estimation method of Gaussian noise
CN108389215B (en) Edge detection method and device, computer storage medium and terminal
US8693783B2 (en) Processing method for image interpolation
CN109255752B (en) Image self-adaptive compression method, device, terminal and storage medium
CN105809677B (en) Image edge detection method and system based on bilateral filter
US20120320433A1 (en) Image processing method, image processing device and scanner
US8482630B2 (en) Apparatus and method for adjusting automatic white balance by detecting effective area
CN107194886B (en) Dust detection method and device for camera sensor
CN112053302A (en) Denoising method and device for hyperspectral image and storage medium
WO2017128646A1 (en) Image processing method and device
WO2024016791A1 (en) Method and apparatus for processing graphic symbol, and computer-readable storage medium
US20120155762A1 (en) Image processing method, image processing device, and program
WO2024016632A1 (en) Bright spot location method, bright spot location apparatus, electronic device and storage medium
CN113379631B (en) Image defogging method and device
CN113744200B (en) Camera dirt detection method, device and equipment
RU2405200C2 (en) Method and device for fast noise filtration in digital images
CN109934215B (en) Identification card identification method

Legal Events

Date Code Title Description
C06 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination
CB02 Change of applicant information
CB02 Change of applicant information

Address after: 516006 TCL technology building, No.17, Huifeng Third Road, Zhongkai high tech Zone, Huizhou City, Guangdong Province

Applicant after: TCL Technology Group Co.,Ltd.

Address before: 516006 Guangdong province Huizhou Zhongkai hi tech Development Zone No. nineteen District

Applicant before: TCL RESEARCH AMERICA Inc.

TA01 Transfer of patent application right
TA01 Transfer of patent application right

Effective date of registration: 20201118

Address after: 430000 8-storey Future Science and Technology Building, 999 Hi-tech Avenue, Donghu New Technology Development Zone, Wuhan City, Hubei Province

Applicant after: Wuhan TCL Group Industrial Research Institute Co.,Ltd.

Address before: 516006 TCL technology building, No.17, Huifeng Third Road, Zhongkai high tech Zone, Huizhou City, Guangdong Province

Applicant before: TCL Technology Group Co.,Ltd.

GR01 Patent grant
GR01 Patent grant