Drawing decision boundary of two multivariate gaussian

断了今生、忘了曾经 提交于 2019-12-06 12:33:59

If you know the probability density function of each of the gaussian for a given point (x,y), lets say its pdf1(x,y) and pdf2(x,y) then you can simply plot the contour line of f(x,y) := pdf1(x,y) > pdf2(x,y). So you define function f to be 1 iff pdf1(x,y)>pdf2(x,y). This way the only contour will be placed along the curve where pdf1(x,y)==pdf2(x,y) which is the decision boundary (discriminant). If you wish to define "nice" function you can do it simply by setting f(x,y) = sgn( pdf1(x,y) - pdf2(x,y) ), and plotting its contour plot will result in exact same discriminant.

Here is how I would solve this problem analytically: you equate these two discriminant functions

g1(x)=x' W1 x + w1' x + w10
g2(x)=x' W2 x + w2' x + w20
g1(x) = g2(x)

==> x' (W2 - W1) x + (w2-w1)'x + w20 - w10

then, I consider W2 - W1 to have be this matrix

W2-W1 = [a b; c d]

which then by expanding vector x=[x1 x2]', we get:

a x1^2 + (b+c) x1 x2 + d x2^2 + (w21-w11) x1 + (w22-w12) x2 + w20-w10 = 0

this is the equation of an ellipse, so you can simplify it into the form below:

(x1 - a0)^2/h + (x2-b0)^2/g = r^2

Or, you can assume that you know the range of x1 for example x1=[-2:0.1:2], and then solve the parabola

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!