Development status:
Released,
Release: Release_1_3
Information status: Updated
Repository:
http://svn.code.sf.net/p/tango-ds/code/DeviceClasses/Acquisition/2D/AXISCamera
Contact:
Class Description
Server to get image from AXIS Dome cameras
Families: Acquisition
Key words:
Platform: All Platforms
Language: PythonHL
License: GPL
Contact:
Hardware
Manufacturer: none
Bus: Not Applicable
Class interface
Attributes:
Name | Description |
---|---|
ResolutionModeScalar: DevLong | — |
AvailableResolutionsScalar: DevString | — |
FrameTimeScalar: DevDouble | — |
FrameTimeStrScalar: DevString | — |
FPSLimitScalar: DevLong | — |
CurrentFPSScalar: DevDouble | — |
PanScalar: DevDouble | — |
TiltScalar: DevDouble | — |
ZoomScalar: DevLong | — |
IrisScalar: DevLong | — |
FocusScalar: DevLong | — |
BrightnessScalar: DevLong | — |
AutoFocusScalar: DevBoolean | — |
MaxPanScalar: DevDouble | — |
MinPanScalar: DevDouble | — |
MaxTiltScalar: DevDouble | — |
MinTiltScalar: DevDouble | — |
MaxZoomScalar: DevLong | — |
MinZoomScalar: DevLong | — |
MaxFocusScalar: DevLong | — |
MinFocusScalar: DevLong | — |
LastFrameNumberScalar: DevLong | — |
ImageRGBImage: DevLong | — |
ImageGrayscaleImage: DevDouble | — |
Commands:
Name | Description |
---|---|
StateInput: DevVoid Output: State Device state |
This command gets the device state (stored in its device_state data member) and returns it to the caller. |
StatusInput: DevVoid Output: ConstDevString Device status |
This command gets the device status (stored in its device_status data member) and returns it to the caller. |
StartAcquisitionInput: DevVoid Output: DevVoid |
— |
StopAcquisitionInput: DevVoid Output: DevVoid |
— |
StartAcquisitionOnceInput: DevVoid Output: DevVoid |
— |
Pipes:
Properties:
Name | Description |
---|---|
UserDevString | — |
PasswordDevString | — |
HostDevString | — |
Please log in to comment.
README
b'# AXISCamera server\r\n\r\n###General info:\r\nThis is small server to acquire image from AXIS Dome cameras and control camera position\r\n\r\nServer can login to the camera, if username and password are provided. Alternative, you should enable anonymous login frame view and PZT control in camera settings \r\n\r\nThe server is better to use with the PetraViewer utility.\r\n\r\n###Properties:\r\nHost: host of the camera\r\n\r\nUser: username for login\r\n\r\nPassword: password for login\r\n\r\n###Operation:\r\n\r\nAfter start, server tries to automatically find the available resolutions and movement limits.\r\n\r\nThe found resolutions are displayed in AvailableResolutions attribute and can be selected by ResolutionMode attribute. The mode 0 is the highest possible resolution, the modes 1, 2, etc - are the next lower one\r\n\r\nTo start frame view execute StartAcquisition command. To limit FPS set FPSLimit attribute. FPSLimit=0 means unlimited FPS\r\n\r\nThe frames are available by ImageGrayscale or ImageRGB attributes, where ImageRGB is converted to 32bit integer RBG pixel. \r\n'