Quote:
Originally Posted by Geek 2.0
Are there any suggestions for what you can do in code (we use Java) to make image processing more efficient so that it doesn't affect robot performance?
|
We use this and haven't noticed any slow down:
Code:
cam = AxisCamera.getInstance();
cam.writeResolution(AxisCamera.ResolutionT.k320x240)
cam.writeCompression(30);
The image size/resolution and compression are the things to pay attention to as obviously the less compressed and larger the picture, the more bandwidth would be used up.