From 0d470f5270bdfedf27e3270625e8dde63d629eea Mon Sep 17 00:00:00 2001 From: matlabbe Date: Tue, 23 Sep 2014 13:46:01 +0000 Subject: [PATCH] set default image width/height = 0 git-svn-id: http://find-object.googlecode.com/svn/trunk/find_object@409 620bd6b2-0a58-f614-fd9a-1bd335dccda9 --- include/find_object/Settings.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/find_object/Settings.h b/include/find_object/Settings.h index 60e2bee5..ca9a0488 100644 --- a/include/find_object/Settings.h +++ b/include/find_object/Settings.h @@ -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.");