ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Camera functions
  • Operating mode of the Camera control when displaying dialog boxes
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Allows you to configure the video capture driver. This configuration can be performed by the user (via a dialog box) or through programming (configuration of the resolution).
Caution: This function can only be used with Camera controls in compatibility mode ("Use the former 'Video for Windows' APIs (compatibility)" option checked in the control description).
Remark: This function is equivalent to VideoConfigure.
Example
// Displays the standard dialog box for configuring the driver for video capture
// used for the "CAM_MyVideo" control
CameraConfigure(CAM_MyVideo)
// Specifies a resolution of 640 by 480
CameraConfigure(CAM_VIDEO1, viResolution, 640, 480)
Syntax
<Result> = CameraConfigure(<Camera control> [, <Type of configuration> [, <Resolution in width> , <Resolution in height>]])
<Result>: Boolean
  • True if the standard dialog box was displayed,
  • False if an error occurred. The corresponding error message is returned by ErrorInfo.
<Camera control>: Control name
Name of the Camera control to be used.
<Type of configuration>: Optional integer constant
Type of configuration to perform:
viConfigureFormatDisplay a dialog box (if it exists) allowing the user to specify the camera resolution, the number of colors used, etc.
viConfigureSource
(default value)
Display a dialog box (if it exists) allowing the user to specify the name of camera to use and the parameters of this camera (saturation for example).
This dialog box depends on the driver used by the Camera control.
viResolutionUsed to specify a resolution for the camera, via <Resolution in width> and <Resolution in height>.
<Resolution in width>: Optional integer
Width of camera resolution (in pixels). This parameter must be specified if <Type of configuration> is set to viResolution.
<Resolution in height>: Optional integer
Height of the camera resolution (in pixels). This parameter must be specified if <Type of configuration> is set to viResolution.
Remarks

Operating mode of the Camera control when displaying dialog boxes

  • If the panel for configuring the format is displayed, the Camera control is frozen.
  • If the configuration panel is displayed by the viConfigureSource constant, the Camera control continues to operate. The modifications of the parameters are immediately taken into account and applied to the Camera control in "direct live".
Component: wd290obj.dll
Minimum version required
  • Version 22
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/27/2022

Send a report | Local help