 | CIMU.GetZPeaksVV Method |
Same as GetZVV_IMU, but find the closest peak value to the input locations, and return
the peak value and peak value location.
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic static void GetZPeaksVV(
CGXNETCore gxNetShared,
CIMG img,
CVV vv_x,
CVV vv_y,
CVV vv_z
)
public static void GetZPeaksVV(
CGXNETCore gxNetShared,
CIMG img,
CVV vv_x,
CVV vv_y,
CVV vv_z
)
Public Shared Sub GetZPeaksVV (
gxNetShared As CGXNETCore,
img As CIMG,
vv_x As CVV,
vv_y As CVV,
vv_z As CVV
)
Public Shared Sub GetZPeaksVV (
gxNetShared As CGXNETCore,
img As CIMG,
vv_x As CVV,
vv_y As CVV,
vv_z As CVV
)
public:
static void GetZPeaksVV(
CGXNETCore^ gxNetShared,
CIMG^ img,
CVV^ vv_x,
CVV^ vv_y,
CVV^ vv_z
)
public:
static void GetZPeaksVV(
CGXNETCore^ gxNetShared,
CIMG^ img,
CVV^ vv_x,
CVV^ vv_y,
CVV^ vv_z
)
static member GetZPeaksVV :
gxNetShared : CGXNETCore *
img : CIMG *
vv_x : CVV *
vv_y : CVV *
vv_z : CVV -> unit
static member GetZPeaksVV :
gxNetShared : CGXNETCore *
img : CIMG *
vv_x : CVV *
vv_y : CVV *
vv_z : CVV -> unit
Parameters
- gxNetShared
- Type: GeoEngine.Core.GXNetX.CGXNETCore
A shared CGXNETCore - img
- Type: GeoEngine.Core.GXNetX.CIMG
Input grid - vv_x
- Type: GeoEngine.Core.GXNetX.CVV
X VV - vv_y
- Type: GeoEngine.Core.GXNetX.CVV
Y VV - vv_z
- Type: GeoEngine.Core.GXNetX.CVV
Z VV filled with values (set to be same size as X, Y)
Remarks
The returned locations will always be a grid point location; no interpolation is performed when locating the peaks. A simple search is
done of all neighbouring points from the starting point, and once no neighbours can be located with a higher value, the search stops.
See Also