Research Article

A Novel Threshold Scheme for Reducing Spatial Intersymbol Interference in Vehicular Visible Light Communication Based on Image Sensors

Algorithm 1

Threshold calculation algorithm based on probability distribution.
Given blooming coefficient σ, the interval of neighbour LEDs d, LED transmission power Pi(t), communication distance U, 256 LEDs statuses matrices L and noise power N.
 Initialization transmission distance u.
for u=1: U
  The optical power without interference is calculated by the formula (6);
  Using the formula (10) to calculate the spacing among LEDR,C to eight neighbour LEDs in the image sensor;
  According to the state matrix L, the sum ISISI of eight surrounding LEDs is calculated using formula (8);
   ifLEDR,C is on,
    Received optical power is YON=Yo+ ISISI +N;
    Yo is calculated using formula (6);
    Calculate probability distribution of YON;
   else
    Received optical power is YOFF= ISISI +N;
    Calculate probability distribution of YOFF;
   end
   if the probability curves of YON and YOFF distribution intersect,
   that is YON,minYOFF,max
    for Thu = YON,min : YOFF,max
    The sum of the probabilities of status misjudgement is calculated, which is the BER;
    Find out Thu with the minimum BER, and set this value as
    the judgment threshold;
    end
   else
    Set the threshold value Thu equals to the mean value of the YON,min and YOFF,max;
   end
end