set default image width/height = 0

git-svn-id: http://find-object.googlecode.com/svn/trunk/find_object@409 620bd6b2-0a58-f614-fd9a-1bd335dccda9
This commit is contained in:
matlabbe 2014-09-23 13:46:01 +00:00
parent b3024cb1dc
commit 0d470f5270

View File

@ -85,8 +85,8 @@ typedef unsigned int uint;
class FINDOBJECT_EXP Settings
{
PARAMETER(Camera, 1deviceId, int, 0, "Device ID (default 0).");
PARAMETER(Camera, 2imageWidth, int, 640, "Image width (0 means default width from camera).");
PARAMETER(Camera, 3imageHeight, int, 480, "Image height (0 means default height from camera).");
PARAMETER(Camera, 2imageWidth, int, 0, "Image width (0 means default width from camera).");
PARAMETER(Camera, 3imageHeight, int, 0, "Image height (0 means default height from camera).");
PARAMETER(Camera, 4imageRate, double, 2.0, "Image rate in Hz (0 Hz means as fast as possible)."); // Hz
PARAMETER(Camera, 5mediaPath, QString, "", "Video file or directory of images. If set, the camera is not used. See General->videoFormats and General->imageFormats for available formats.");
PARAMETER(Camera, 6useTcpCamera, bool, false, "Use TCP/IP input camera.");