METHOD OF SALIENT OBJECT DETECTION IN IMAGES

Information

  • Patent Application
  • 20230177801
  • Publication Number
    20230177801
  • Date Filed
    November 30, 2022
    a year ago
  • Date Published
    June 08, 2023
    11 months ago
  • Inventors
    • Le; Van Bang
    • Lu; Manh Hung
  • Original Assignees
Abstract
A method for determining a salient object in an image based on superpixel analysis consists of initializing superpixels using SLIC algorithm and merging of adjacent superpixels that have similar color distribution. Then, calculate the spatial and color distribution correlation between the superpixels after being merged. Combined with the statistics of the occupancy rate, the distance to the original image center, and the global contrast of the superpixels, calculate the saliency evaluation vector for each superpixel. Finally, interpolate the saliency for each pixel in the superpixel.
Description
THE TECHNICAL FIELD OF THE INVENTION

This invention presents a method for detecting a salient object in an image. Specifically, the method of identifying salient objects in images is applied in the fields of artificial intelligence and computer vision, helping to process and analyze objects with a more prominent color distribution.


TECHNICAL STATUS OF THE INVENTION

In computer vision systems in general and object segmentation systems in particular, salient object detection in an image plays an important role in determining which components to focus on in images, for example, segmenting objects from the background, detecting and marking prominent features, or identifying abnormal behaviors in a video sequence.


In the field of salient object detection, superpixel is one of the popular techniques for analyzing and grouping close pixels that have similar color distributions. However, this technique usually only has a global analysis role for the image, it is not possible to identify the superpixels that are more salient than the surrounding background.


Recently, deep learning models are applied to the salient object detection problem. However, with this approach, a large training dataset needs to be prepared. In addition, the analysis efficiency for objects that have not appeared in the training data is very poor. On the other hand, superpixel analysis-based methods have high adaptability to detect unseen salient objects and events, which can be flexibly used in many different applications.


THE PROPERTY OF THE INVENTION

A primary contribution of this invention is to propose a segmentation method for salient objects in an image. Consequently, it alleviates mentioned above existing technical issues. The proposed segmentation algorithm is based on color distribution analysis and spatial correlations in images.


In this invention, the salient object segmentation method contains several components. The first module is superpixel initialization from the input image and clustering neighboring superpixels with a similar color distribution. The second module is color and spatial correlation analysis between superpixels. The final module is to select and merge superpixels to segment salient objects.


The following section will present a detailed description of each step.


Step 1: Pre-processing input image; in this step, a blurring Gaussian algorithm is applied, then transform from RGB (Red-green-blue) color space to HSV (Hue-Saturation-Illumination) color space, and apply SLIC (Simple Linear Iterative Clustering) is to initialize superpixels and statistical analysis on color and spatial distribution of the superpixels.


Step 2: Merge superpixels with similar color correlation.


Step 3: Statistical analysis on the color and spatial characteristics of the superpixels; in this step, based on the superpixels merged after step 2, perform descriptive statistics about the scale of the superpixel, the distance to the original image center and calculate the correlation of the color distribution, spatial distribution, and the contrast of superpixels.


Step 4: Analyze the final estimation of the discriminant between superpixels; in this step, based on the calculation of the composite correlation matrix, and the salient evaluation vector of the superpixel, finally interpolate the saliency index of each pixel in the corresponding superpixel.


Where steps 1 and 2 both run on module Superpixel initialization, and the others (steps 3, 4) run on module Correlation analysis and module Saliency object segmentation, respectively.





BRIEF DESCRIPTIONS OF THE DRAWINGS


FIG. 1 shows the steps of the inventive method of superpixel analysis based salient object segmentation in images.



FIG. 2 shows the method of calculating the occupancy index of superpixels;



FIGS. 3a and 3b show the result of the method for a test image of a banana;



FIGS. 4a and 4b show the result of the method for a test image of a clock;





DETAILED DESCRIPTION

Step 1: Pre-processing input image.


In this step, a blurring Gaussian algorithm is applied, then transform from RGB (Red-green-blue) color space to HSV (Hue-Saturation-Illumination) color space, and apply SLIC (Simple Linear Iterative Clustering) to initialize superpixels and statistical analysis on color and spatial distribution of the superpixels. The detail of the sub-steps is following:


Step 1.1: Image/(x, y) is an RGB image convoluted with a Gaussian kernel k with the size of [3,3], and a sigma value of 0.5, as the below formula:






I(x,y)←I(x,y)⊗k(i,j)


Step 1.2: Superpixel initialization from the blurred image I(x,y), uses SLIC algorithm, with the parameter n as the maximum number of superpixels. After initialization, the original image is split into large superpixels S(i), where regions with similar characteristics are merged into the same superpixel, and the location of superpixels is marked from small to large with directions from left to right, from up to down.


Step 1.3: Transform the original image from RGB space to HSV space, and obtain I′(x,y).


Step 2: Merge superpixels with similar color correlations. The detail of the sub-steps is following:


Step 2.1: With input as the set of superpixels S(i) was computed at step 1, generate the HSV color distribution for each superpixel. Detail calculation as the below equation:







h

(
i
)

=


histogram

i


[

1
,
m

]



(



I

S

(
i
)



(

x
,
y

)

,

bins
=

[

8
,
8
,
8

]



)





where, bins is the number of groups divided from 256 gray levels, after calculating the color distribution for each superpixel, a matrix h(i) with size of m×8×8×8 (m is superpixel numbers).


From the h(i) matrix, calculate the color correlation matrix between the superpixels, using the Bhattacharyya Coefficient (BC). The calculation formula is as follows:








color
(

i
,
j

)


i
,

j


[

1
,
m

]




=

BC

(


h
i

,

h
j


)





with BC is the Bhattacharyya Coefficient of two vectors:






BC(p,q)=−ln(10−1+Σ√{square root over (piqi)})


In the above formula, 10−1 is added to avoid the case that the value from the function ln(·) does not exist.


Step 2.2: Proceed to merge neighboring superpixels with a similar color distribution. For this process, the superpixels with adjacent positions are superpixels that are directly linked to each other on the image, consequently, on the color correlation matrix, position (i, i+1) with BC lower than the predefined threshold, epsilon, then the two superpixels i and i+1 can be merged into a new superpixel.


After merging superpixels, the superpixels are updated, into new superpixels, as follows:









S
updated


i


[

1
,

n



]



(
i
)




S

i


[

1
,
n

]



(
i
)





Step 2.3: Continue to perform two steps 2.1 and 2.2, until the number of superpixels remains constant, then terminate the superpixel merging process, and obtain the final superpixel{S(i)|i=1, 2, . . . ,n}.


Step 3: Statistics on the color and spatial characteristics of the superpixels; based on the superpixels {S(i)|i=1, 2, . . . ,n} that are merged after step 2, conduct descriptive statistics about the scale of the superpixel, the distance to the center of the image. initialization and calculate the correlation of color distribution, spatial distribution, and the contrast of superpixels. Specifically, it is done through the following small steps:


Step 3.1: Statistics of the distance from the center of the superpixel to the center of the image and count the number of pixels in the superpixel. Normally, the image that needs to calculate the salient area usually focuses on the center area, therefore the superpixels that are close to the center of the image will likely be the salient area.


The distance from the superpixel to the center point of the image is defined by the Euclidean distance from the center of the superpixel to the center point of the original image. The calculation formula is as follows:







d

(
i
)

=









S

(
i
)



(

x
,
y

)






S

(
i
)





"\[LeftBracketingBar]"


(

x
,
y

)



"\[RightBracketingBar]"




,

(

cx
,
cy

)




_





Where (cx, cy) is the center point of the original image, which is half the height and width of the image, respectively, and is the total number of pixels in the superpixel S(i).


Step 3.2: Calculate the color correlation matrix color(i,j), detailed descriptions of the calculation are the same as in step 2.1.


Step 3.3: From the set of superpixels S(i), calculate the circumscribed circle filling index of each superpixel, the process is shown in FIG. 2. In detail, it is done through the following sub-steps:


Step 3.3.1: Lets call the center point of the i-th superpixel as ci, then the radius of the circumcircle of this superpixel is calculated as follows:







r

(
i
)

=


max


(

x
,
y

)



S

(
i
)



(




(

x
,
y

)

,

c
i




)





Step 3.3.2: The circumcircle filling index compact(i) of the superpixel is calculated by following equation:







compact



(
i
)


=






(

x
,
y

)



S

(
i
)






"\[LeftBracketingBar]"


(

x
,
y

)



"\[RightBracketingBar]"




π
×


r
2

(
i
)







Step 3.4: From set of superpixels S(i) computed at step 2.3 and the circumcircle filling index compact(i) computed at step 3.3.2, calculate spatial correlation matrix between superpixels, as following formula:







spatial



(

i
,
j

)


=


(

1
-




ci
,
cj






cx
2

+

cy
2





)

×

(

1
-

compact



(
i
)



)








    • where ci, cj are center points of superpixels i, and j, respectively.





Step 3.5: Compute global contrast matrix between superpixels, where, superpixels with higher number of pixels have more effects on processing of evaluating saliency of the superpixels.







contrast



(

i
,
j

)


=


dot

i
,

j


[

1
,
n

]




(




"\[LeftBracketingBar]"


color



(

i
,
j

)




"\[RightBracketingBar]"


,

{


npixel
i

=




S

(
i
)





"\[LeftBracketingBar]"


(

x
,
y

)



"\[RightBracketingBar]"




}


)





Where npixeli is the number of pixels in superpixel i. Also contrast(i,j) is normalized to [0,1] based on the interval [min(contrast), max(contrast)]. Also, dot(·) describes the multiplication of two matrices.


Step 4: analyze the final estimation of the discriminant between superpixels; This step calculates the composite correlation matrix, and the saliency evaluation vector of the superpixel, and interpolates the saliency index of each pixel in the corresponding superpixel. This step is done in small steps as follows:


Step 4.1: synthesize the composite correlation matrix, similar(i,j), is a combination of factors: color correlation matrix, spatial correlation matrix, as follows:





similar(i,j)=color(i,j)×spatial(i,j)


The composite correlation matrix is considered a correlation matrix with the estimations being the color correlation matrix under the effect of the spatial correlation matrix as a coefficient matrix. Larger superpixels (a large number of pixels) will have more effect.


Step 4.2: the saliency evaluation vector of the superpixel, decision(i) is calculated from the pixel correlation matrix from step 4.1, the global contrast matrix from step 3.5, and the statistical results of the distance from the center of the superpixel to the center point of the original image from step 3.1. Detail calculations at sub-steps are as following:


Step 4.2.1: calculate the extended spatial matrix spread(i,j), using the composite correlation matrix similar(i,j) and distance d(i). The calculation formula is as follows:







spread



(

i
,
j

)


=


dot



(


d

(
i
)

,

similar



(

i
,
j

)



)






axis
=
0



similar



(

i
,
j

)








Then matrix spread(i,j) is normalized to [0, 1] based on interval [min(spread), max(spread)].


This step mainly compensates the convergence factor into the initial center point of superpixels. The closer superpixel is to the center the more it gets attention, and it is highly potential is a part of salient objects.


Step 4.2.2: The saliency evaluation vector, decision(i) is a sequence of evaluation indices, it is calculated as follows:







decision
(
i
)

=

1
-


dot
(


contrast
(

i
,
j

)

,



similar
(

i
,
j

)



dot
(


spread
(

i
,
j

)

,

similar
(

i
,
j

)


)








axis
=
0




similar
(

i
,
j

)

2








The decision(i) vector has a length that is equal to number of initialized superpixels, the larger values are the more salient they are.


Step 4.3: Calculate saliency index of each pixel p(x,y) in HSV space via salient evaluation vector.







S

(
p
)

=






S

(
i
)



N

(
p
)





decision
(
i
)




histogram
(
i
)

[

bin
(
p
)

]








S

(
i
)



N

(
p
)





histogram
(
i
)

[

bin
(
p
)

]







Where N(p) is neighboring pixels of p(x,y) (eight points).


In the above equation, pixels with more popular color intensity in superpixel, the saliency index of those pixels are higher. Where bin(p) is color intensity (h,s,v) in HSV space of the pixel p(x,y) after it is compressed into 3-bit, as follows:







bin
(
p
)

=

[


round
(

h
8

)

,

round
(

s
8

)

,

round
(

v
8

)


]





Finally, the original RGB image is transformed into a matrix with the same size, the value of an element in the matrix represents the saliency of each corresponding pixel.


EXAMPLES OF INVENTION IMPLEMENTATION

The research team has carried on experiments and evaluated the performance of the proposed method in this invention with various types of data.


As shown in FIGS. 3 and 4, the result of the salient object detection with the objects of bananas, a clock, and a person, respectively. FIGS. 3a and 4a are the original images, respectively, and FIGS. 3b and 4b are the results of the salient object detection (the darker the color is, the more salient it is).


The results show the ability to detect salient objects at multi-levels of the proposed method, for example in FIG. 3, the watch stands out more from the background, while in the watch the hands stand out more than the rest, which shows that good self-adaptability of the method.


The proposed salient object detection method in this patent is suitable for multi-types of objects, is able to be used for many applications, and can be the fundamental step for abnormal analysis problems in industrial products, behavior analysis problems in video sequences, as well as problems that need to remove salient objects from the background, helping for automatic data processing.


Benefits (Effectiveness) that can be Achieved by the Invention


The method presented in the invention has been deployed in various products for analyzing visual characteristics of humans and vehicles, security monitoring systems, and searching for objects of the Viettel High-tech and Industrial Corporation. Objects such as humans, and vehicles are segmented from the background of the image, analyzing color characteristics, in addition to salient elements of appearance, wear, accessories, logo, etc. They are the features to search for humans and vehicles in the video surveillance system.


In addition, this method is also used effectively in processing tools, data analysis, and data normalization for video data from cameras. A large amount of data will be automatically analyzed and segmented based on wear characteristics, and the method can perform the segmentation of multi-types of objects from the background in images.


Besides, in terms of practical implementation, the proposed method in this invention does not require high computation resources, therefore the technology has high applicability in industrial products.

Claims
  • 1. A method of Salient Object detection in an image, comprising: Step 1: Pre-processing an input image, In this step, a blurring Gaussian algorithm is applied to the image, then the image is transformed from RGB (Red-green-blue) color space to HSV (Hue-Saturation-Illumination) color space, and SLIC (Simple Linear Iterative Clustering) is applied to initialize superpixels and statistical analysis on color and spatial distribution of the superpixels with the following sub-steps: An Image I(x, y) is RGB image convoluted with a Gaussian kernel k with a size of [3,3], and a sigma value of 0, 5, according to the below formula: I(x,y)←I(x,y)⊗k(i,j)Providing a blurred image, Superpixel initialization from the blurred image I(x,y), uses a SLIC algorithm, with a parameter n as the maximum number of superpixels, After initialization, the original image is split into large superpixels S(i), where regions with similar characteristics are merged into a same superpixel, and location of superpixels is marked from small to large with directions from left to right, from up to down;The original image is transformed from RGB space to HSV space, obtaining I′(x,y);Step 2: Merge superpixels with similar color correlations according to the following: With input as the set of superpixels S(i) computed at step 1, generate an HSV color distribution for each superpixel according to the below equation:
Priority Claims (1)
Number Date Country Kind
1-2021-07680 Nov 2021 VN national