OpenCV... using blur
in
Contributed Library Questions
•
3 months ago
Hello,
I'm using OpenCV with processing to detect motion for an interactive floor and I'm having some trouble with adding some blur to the image (it's just to remove the camera noise and be able to calibrate better when installing the system).
Code goes like:
opencv.read();opencv.flip( OpenCV.FLIP_HORIZONTAL);opencv.convert(OpenCV.GRAY);opencv.blur(OpenCV.BLUR, 3);opencv.threshold(threshold);background( opencv.image() );
However, when I run the programm it stops because it has trouble accesing the libOpenCV.jnilib module. And if I just remove the blur line it works just fine.
Do you know what could be wrong? Should I install openCV again?
1