SCENE OBSTRUCTION DETECTION USING HIGH PASS FILTERS

Information

  • Patent Application
  • 20170193641
  • Publication Number
    20170193641
  • Date Filed
    January 04, 2017
    8 years ago
  • Date Published
    July 06, 2017
    7 years ago
Abstract
Advanced driver assistance systems need to be able to operate under real time constraints, and under a wide variety of visual conditions. The camera lens may be partially or fully obstructed by dust, road dirt, snow etc. The invention shown extracts high frequency components from the image, and is operable to classify the image as being obstructed or non-obstructed.
Description
TECHNICAL FIELD OF THE INVENTION

The technical field of this invention is image processing, particularly to detect if the view of a fixed focus camera lens is obstructed by surface deposits (dust, road dirt, etc).


BACKGROUND OF THE INVENTION

The fixed focus cameras used for Advanced Driver Assistance Systems (ADAS) are subject to many external conditions that may make the lens dirty from time to time. Car manufacturers are starting to design intelligent self-cleaning cameras that can detect dirt and automatically clean the lens using air or water.


One of the difficulties encountered in the prior art is the reliable detection of foreign objects such as dust, road dirt, snow, etc., obscuring the lens while ignoring large objects that are part of the scene being viewed by the cameras.


SUMMARY OF THE INVENTION

The solution shown applies to fixed focus cameras, widely used in automotive for ADAS applications. The problem solved by this invention is distinguishing a scene obscured by an obstruction, such as illustrated in FIG. 1, from a scene having large homogeneous areas, such as illustrated in FIG. 2. In accordance with this invention the distinction is made based upon the picture data produced by the camera. Obstructions created by deposits on a lens surface, as shown in FIG. 1, will appear blurred and will have predominantly low frequency content. A high pass filter may therefore be used to detect the obstructions.


A machine-learning algorithm is used to implement classification of the scene in this invention.





BRIEF DESCRIPTION OF THE DRAWINGS

These and other aspects of this invention are illustrated in the drawings, in which:



FIG. 1 shows a partially obstructed scene due to an obstruction on the lens;



FIG. 2 shows the same scene without an obstruction of the lens;



FIG. 3 shows a block diagram of the functions performed according to this invention;



FIG. 4 shows the scene of FIG. 2 divided into a grid of blocks;



FIG. 5 is a graphical representation of a feature vector;



FIG. 6 is a graphical representation of a sample cost function for the case of a one dimensional feature vector; and



FIG. 7 shows a processor operable to implement this invention.





DETAILED DESCRIPTION OF PREFERRED EMBODIMENTS

The steps required to implement the invention are shown in FIG. 3. The input image is first divided into a grid of N×M blocks in step 301. FIG. 4 illustrates the scene of FIG. 2 divided into a 3×3 set of blocks.


In step 302 the high frequency content of each block is computed by using horizontal and vertical high pass filters. This produces a total of 2×M×N values.


The reason for separately processing 3×3 (9) different regions of the image instead of the entire image is to calculate the standard deviation of the values across the image. The classified of this invention uses both mean and standard deviation values. Employing only the mean value could be sufficient to detect scenarios where the entire view is blocked but cannot prevent false-positive cases where one part of the image is obstructed and other parts are perfectly fine. The mean value cannot measure the high-frequency's contrast between different regions whereas the standard deviation can.


Step 303 then calculates the mean and the standard deviation for each high pass filter, across M×N values to form a 4 dimensional feature vector. Step 304 is an optional step that may augment the features vector an additional P component. This additional component may be meta information such as image brightness, temporal differences, etc.


Step 305 then classifies the scene as obscured or not obscured using a logistic regression algorithm having the feature vector as its input. This algorithm is well suited for binary classifications such as pass/fail, win/lose, or in this case blocked/not blocked.


This algorithm performs well where the two classes can be separated by a decision boundary in the form of a linear equation. Classification is shown in FIG. 5, where:


If θ01·x12·x2≧0

    • then the (x1,x2) sample belongs to the X class 501 (image blocked) illustrated in FIG. 5,


      and


If θ01·x12·x2<0

    • then the (x1,x2) sample belongs to the O class 502 (image clear) illustrated in FIG. 5.


In this invention the line is parametrized by θ=[θ0, θ1, θ2] since the feature vector has two components x1 and x2. The task of the logistic regression is to find the optimal θ, which will minimize the classification error for the images used for training. In the case of scene obstruction detection, the feature vectors have 4 components [x1, x2, x3, x4] and thus the decision boundary is in form of an hyperplane with parameters [θ0, θ1, θ2, θ3, θ4].


The training algorithm determines the parameter θ=[θ012 . . . ] by performing the following tasks:


Gather all feature vectors into a matrix X and the corresponding classes into a vector Y.












X
=

{




X
1
0




X
1
1







X
1

M
-
1







X
2
0




X
2
1







X
2

M
-
1







X
3
0




X
3
1







X
3

M
-
1







X
4
0




X
4
1







X
4

M
-
1





}







=

[


X
0



X
1













X

M
-
1



]








=

[


X
0



X
1













X

M
-
1



]







Y
=


[


y
0



y
1













y

M
-
1



]






where






y
k






is





0





or





1.













Find θ=[θ0, θ1, θ2, θ3, θ4] that minimizes the cost function:










J


(
Θ
)


=


1
M






k
=
0


M
-
1




Cost


(



h
Θ



(

X
k

)


,

y
k


)











with


:









Cost


(



h
Θ



(

X
k

)


,

y
k


)


=



-

y
k




log


(


h
Θ



(

X
k

)


)



-


(

1
-

y
k


)



log


(

1
-


h
Θ



(

X
k

)



)







and











h
Θ



(

X
k

)


=

1

1
+

e


-

Θ
T




x
k














FIG. 6 shows the graphical representation of a sample cost function J(θ) for the case of a one dimensional feature vector.


Gradient descent is one of the techniques to find the optimum θmin which minimizes J(θ).


If for θmin we have Jθmin=0, this means the error rate for the classifier, when applied to the training data set, is 0%. However most of the time J(θmin)>0, which means there is some miss-classification error that can be quantified.


Next the algorithm's miss-classification error (also called accuracy) is calculated by applying the classifier rule to every feature vector of the dataset and comparing the results with the true result.


The final classification is done as follows:


If θ01·x12·x2≧0

    • then the image is blocked,


      and


If θ01·x12·x2<0

    • then the image is clear.



FIG. 7 illustrates an example system-on-chip (SOC) 700 suitable for this invention. SOC 700 includes general purpose central processing unit (CPU) 701, digital signal processor (DSP) 702, graphics processing unit (GPU) 703, video input ports 704, internal memory 705, display controller subsystem 706, peripherals 707 and external memory controller 708. In this example, all these parts are bidirectionally connected to a system bus 709. General purpose central processing unit 701 typically executes what is called control code. Control code is what gives SOC 700 its essential character generally in the way it interacts with the user. Thus CPU 701 controls how SOC 700 responds to user inputs (typically received via peripherals 707). DSP 702 typically operates to process images and real-time data. These processes are typically known as filtering. The processes FIG. 3 are performed by DSP 702. GPU 703 performs image synthesis and display oriented operations used for manipulation of the data to be displayed. Video input ports 704 receive the input images from possibly plural cameras. Video input ports 704 typically also includes suitable buffering of the image data prior to processing. Internal memory 705 stores data used by other units and may be used to pass data between units. The existence of memory 705 on SOC 700 does not preclude the possibility that CPU 701, DSP 702 and GPU 703 may include instruction and data cache. Display controller subsystem 706 generates the signals necessary to drive the external display used by the system. Peripherals 707 may include various parts such as a direct memory access controller, power control logic, programmable timers and external communication ports for exchange of data with external systems (as illustrated schematically in FIG. 7). External memory controller 708 controls data movement into and out of external memory 710.


A typical embodiment of this invention would include non-volatile memory as a part of external memory 710. The instructions to control SOC 700 to practice this invention are stored the non-volatile memory part of external memory 710. As an alternate, these instruction could be permanently stored in non-volatile memory part of external memory 710.

Claims
  • 1. A method of scene obstruction detection comprising the steps of: dividing the input image into a grid of N×M blocks;computing each block's high frequency content by processing said blocks with a plurality of horizontal and vertical high pass filters;computing the mean and the standard deviation of said high pass filters across M×N values to form a four dimensional feature matrix;classifying said image as obscured or non-obscured based on said feature matrix.
  • 2. The method of claim 1 wherein: said image is classified by a logistic regression algorithm.
  • 3. A scene obstruction detection apparatus comprising of: a processor operable to perform the steps of dividing the input image into a grid of N×M blocks;computing each blocks high frequency content by processing said blocks with a plurality of horizontal and vertical high pass filters;computing the mean and the standard deviation of said high pass filters across M×N values to form a four dimensional feature matrix;classifying said image as obscured or non-obscured based on said feature matrix.
  • 4. The apparatus of claim 3 wherein: said image is classified by a logistic regression algorithm.
CLAIM OF PRIORITY

This application claims priority under 35 U.S.C 119(e)(1) to Provisional Application No. 62274525 filed Jan. 4, 2016.

Provisional Applications (1)
Number Date Country
62274525 Jan 2016 US