COM object EvFishTrackingProperties
EvApplication > EvFileCollection > EvFile > EvFileProperties > EvFishTrackingProperties
View the COM map and the COM summary. |
The EvFishTrackingProperties object provides information about and allows you to change fish tracking settings on the Track Detection Properties dialog box. This object is accessed via the EvFileProperties.FishTracking property.
EvFishTrackingProperties classes:
EvFishTrackingProperties properties:
|
Description |
(read-write) EFishTrackingDataDimensions DataDimensions SummaryGet or set the Fish tracking algorithm for fish track detection, under the Data section of the Algorithm page of the Track Detection Properties dialog box, by using an enum for EFishTrackingDataDimensions. See also: Enum issue under VBS. ParametersAn enum for the 2D or 4D fish tracking algorithm. ResultRead or change the enum for the fish tracking algorithm. ExampleDim EvApp: Set EvApp = CreateObject("EchoviewCom.EvApplication") 'This will begin at the first (already) open EV file. Dim EvFile: Set EvFile = EvApp.EvFiles.Item(0) 'Changing Fish tracking detection properties. Dim FTProps: Set FTProps = EvFile.Properties.FishTracking FTProps.DataDimensions = 4 FTProps.Alpha.MajorAxis = 0.1 FTProps.Alpha.MinorAxis = 0.2 FTProps.Alpha.Range = 0.3 FTProps.Beta.MajorAxis = 0.4 FTProps.Beta.MinorAxis = 0.5 FTProps.Beta.Range = 0.6 FTProps.ExclusionDistance.MajorAxis = 0.7 FTProps.ExclusionDistance.MinorAxis = 0.8 FTProps.ExclusionDistance.Range = 0.9 FTProps.MissedPingExpansion.MajorAxis = 1.0 FTProps.MissedPingExpansion.MinorAxis = 1.1 FTProps.MissedPingExpansion.Range = 1.2 FTProps.Weights.MajorAxis = 1.3 FTProps.Weights.MinorAxis = 1.4 FTProps.Weights.Range = 1.5 FTProps.Weights.TS = 1.6 FTProps.Weights.PingGap = 1.7 FTProps.MinimumTargets = 4 FTProps.MinimumPings = 5 FTProps.MaximumGap = 3 |
|
(read only) EvFishTrackingAnglesAndRange Alpha SummaryAccess the values for Alpha under the Track detection section of the Algorithm page of the Track Detection Properties dialog box. ParametersRead or write the real values for Alpha via the EvFishTrackingAnglesAndRange object. ResultExampleSee above. |
|
(read only) EvFishTrackingAnglesAndRange Beta SummaryAccess the values for Beta under the Track detection section of the Algorithm page of the Track Detection Properties dialog box. ParametersRead or write the real values for Beta via the EvFishTrackingAnglesAndRange object. ResultExampleSee above. |
|
(read-only) EvFishTrackingAnglesAndRange ExclusionDistance SummaryAccess the value for Exclusion distance under the Target gates section of the Algorithm page of the Track Detection Properties dialog box. ParametersRead or write the real values for ExclusionDistance via the EvFishTrackingAnglesAndRange object. ResultExampleSee above. |
|
(read only) EvFishTrackingAnglesAndRange MissedPingExpansion SummaryAccess the value for Missed ping expansion under the Target gates section of the Algorithm page of the Track Detection Properties dialog box. ParametersRead or write the real values for MissedPingExpansion via the EvFishTrackingAnglesAndRange object. ResultExampleSee above. |
|
(read-only) EvFishTrackingWeights Weights SummaryAccess the values for Weights on the Weights page of the Track Detection Properties dialog box. ParametersRead or write the real values for Weights via the EvFishTrackingWeights object. ResultExampleSee above. |
|
(read-write) integer MinimumTargets SummaryRead or write the value for the Minimum number of single targets in a track on the Track Acceptance page of the Track Detection Properties dialog box. ParametersInteger value for the Minimum Targets setting. ExampleSee above. |
|
(read-write) integer MinimumPings SummaryRead or write the value for the Minimum number of pings in track on the Track Acceptance page of the Track Detection Properties dialog box. ParametersInteger value for the Minimum Pings setting. ExampleSee above. |
|
(read-write) integer MaximumGap SummaryRead or write the value for the Maximum gap between single targets on the Track Acceptance page of the Track Detection Properties dialog box. ParametersInteger value for the Maximum Gap setting. ExampleSee above. |
See also
Scripting with COM objects
EvFileProperties object
COM object hierarchy