User`s manual
92    Spyder3 GigE Vision SG-14 Monochrome Cameras User’s Manual 
03-032-20123-01    Teledyne DALSA 
Correct Lookup Table Syntax 
Syntax 
Valid Construction 
Sample Line 
Line 
Output = Expression EOL (end of 
line) 
Output 
Q0, Q1, Q2, ..., Q16, Q17 
Input 
I0, I1, I2, ..., I6, I7 
Expression 
Input 
Not Input 
Boolean constant 
Q1=I5 
Q1=!I5 
Q1=FALSE 
Combined Expression 
Expression Boolean operator 
Expression 
Q1=I5 & I3 
Q16 = I8 |  I6 
Boolean Operators 
& (and) 
|  (or) 
^ (xor) 
Q14 = I4 & I6 
Q15 = I3 |  I5 
Q9 = I1 ^ I8 
Not 
! 
Q0=!I0 
Q10= !(I8 & I5) 
Delimiter 
() 
Q0 = !(I0) 
Q3 = !(I1 |  (I7 ^ I5)) 
Q6 = (I3 |  I5) ^ (I1 & I2) 
Boolean Constants 
1, true, TRUE 
0, false, FALSE 
Q0 = 1 
Q3 = TRUE Q6 = I3 ^  true 
EOL 
\ r 
\ n 
\ r\ n 
\ n\ r 
(used only for SDK, not 
Coyote) 
Incorrect Lookup Table Usage 
Rule 
Incorrect Syntax 
Correct Syntax 
The output must be on the left 
hand side of the equation 
(the value is being assigned to 
Q4, not I5). 
I5 = Q4 
Q4 = I5 
Outputs may not be on the right 
hand side of the equation. 
Q1 = I7 & I8 
Q2 = Q1 |  I5 
Q1 = I7 & I8 
Q2 = (I7 & I8) |  I5 
Equations must be separated by 
a carriage return or an EOL 
symbol. 
Q3 = I7,Q15=I8 
Q3 = I7 
Q15 = I8 










