You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Release 6.3.0
## New features
- Set delay to wait before trying to download latest image from SEC camera (see setSEC100SnapshotDelay)
- Set status if images of SEC camera should be processed internally. Deactivate to save processing time (see setSEC100InternalImageProcessing)
- Provide image binary string via event (see OnNewRawImageCameraNUM)
## Improvements
- Better handling of SEC images (CSK_Module_MultiHTTPClient version 2.3.0 needed)
- Provide SEC features on devices without image processing
- Improved connection check to SEC camera
title="Set to FALSE to only forward received SEC raw images without internal image processing (will be send via 'OnNewRawImageCamera'-event). This reduces the imgae proccesing time.">
Copy file name to clipboardExpand all lines: CSK_Module_MultiRemoteCamera/project.mf.xml
+33-2Lines changed: 33 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -52,6 +52,11 @@ There is also the possibility to edit GigE Vision camera parameters (check also
52
52
<itemdesc="JPG"name="jpg">jpg</item>
53
53
<itemdesc="PNG"name="png">png</item>
54
54
</enum>
55
+
<enumname="ImageMode"trait="released">
56
+
<desc>Mode of image.</desc>
57
+
<itemdesc="Image"name="IMAGE">IMAGE</item>
58
+
<itemdesc="Use this mode if no image processing APIs are available on device but to forward binary image data from SEC camera."name="BINARY">BINARY</item>
59
+
</enum>
55
60
<serves>
56
61
<eventname="OnNewGain">
57
62
<desc>Notify gain of currently selected camera instance.</desc>
@@ -371,6 +376,23 @@ INFO: Other modules can check via "Script.isServedAsEvent" if event of sepecific
371
376
<desc>Notfiy interface of HTTP client to use for SEC connection.</desc>
<desc>Notify status if SEC raw images should be converted for internal image processing (TRUE) or if only raw images will be forwarrded without conversion to reduce processing time (FALSE).</desc>
<desc>Function to set delay to wait after SEC trigger to download the latest snapshot from the SEC.</desc>
707
+
<paramdesc="Time in ms."multiplicity="1"name="delay"type="int"/>
708
+
</function>
709
+
<functionname="setSEC100InternalImageProcessing">
710
+
<desc>Function to set status if received raw images of SEC camera should be converted for internal image processing. Set to FALSE to reduce processing time if raw images should only be forwarded.</desc>
<paramdesc="'CSK_MultiRemoteCamera.OnNewImageCamera[InstanceNUM]' or 'CSK_MultiRemoteCamera.OnNewRawImageCamera[InstanceNUM]' or Parameter: 1: Image (IMAGE or BINARY STRING) 2: Timestampe (INT)"multiplicity="1"name="OnNewImage"type="string"/>
698
728
</event>
699
729
<functionname="create">
700
730
<trait>released</trait>
701
731
<desc>Internally used CSK_FlowConfig create function.</desc>
702
732
<paramconstraint="1-99"desc="Numeric identifier of camera instance."multiplicity="1"name="Instance"type="int"/>
733
+
<paramdesc="Image mode. 'IMAGE' = Default mode 'BINARY' = Use this mode if no image processing APIs are available on device but to forward binary image data from SEC camera."multiplicity="1"name="Mode"ref="CSK_MultiRemoteCamera.ImageMode"type="enum"/>
703
734
<returndesc="Handle to internally used FlowConfig instance."multiplicity="1"name="handle"type="handle"/>
704
735
</function>
705
736
<functionname="register">
@@ -714,7 +745,7 @@ According to the selected model it will use some predefined GigE Vision paramete
0 commit comments