kalman.py was broken totally
authorAnatoly Orlov <anatolix@yandex.ru>
Tue, 29 Mar 2016 15:27:35 +0000 (18:27 +0300)
committerAnatoly Orlov <anatolix@yandex.ru>
Tue, 29 Mar 2016 15:27:35 +0000 (18:27 +0300)
commit2be805ce29b690d80e6ef3beb207a71fe9f8c837
tree8dedcf6f9c3dfd6feafd2b31f99a7b8185e2bb75
parentff0d11580024e71f28a7663c851f377ad74ecb0f
kalman.py was broken totally

1. Following condition is True on each iteration becuase -1 % 0xFF is 255 not -1

code = cv2.waitKey(100) % 0x100
if code != -1:
   break

this were resetting point position on each cycle not on key press as intended

2. Previous small bug were masking serious bug with matrix operation on matrices of incorrect size.
   As the result on 2nd iteration of internal cycle program has crushed.

   I have fixed it too, matrix operation was taken from examples/cpp/kalman.cpp where it looks like
   randn( processNoise, Scalar(0), Scalar::all(sqrt(KF.processNoiseCov.at<float>(0, 0))));
   which is something totally different from previous code here.

   Example behave as it should now, i.e. point moving by circle trajectory as in C++ example.
samples/python/kalman.py