 | CIMUGetZPeaksVV 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.GXNet
Assembly:
geoengine.core.gxnet (in geoengine.core.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static void GetZPeaksVV(
CIMG img,
CVV vv_x,
CVV vv_y,
CVV vv_z
)
public static void GetZPeaksVV(
CIMG img,
CVV vv_x,
CVV vv_y,
CVV vv_z
)
Public Shared Sub GetZPeaksVV (
img As CIMG,
vv_x As CVV,
vv_y As CVV,
vv_z As CVV
)
Public Shared Sub GetZPeaksVV (
img As CIMG,
vv_x As CVV,
vv_y As CVV,
vv_z As CVV
)
public:
static void GetZPeaksVV(
CIMG^ img,
CVV^ vv_x,
CVV^ vv_y,
CVV^ vv_z
)
public:
static void GetZPeaksVV(
CIMG^ img,
CVV^ vv_x,
CVV^ vv_y,
CVV^ vv_z
)
static member GetZPeaksVV :
img : CIMG *
vv_x : CVV *
vv_y : CVV *
vv_z : CVV -> unit
static member GetZPeaksVV :
img : CIMG *
vv_x : CVV *
vv_y : CVV *
vv_z : CVV -> unit
Parameters
- img
- Type: GeoEngine.Core.GXNetCIMG
Input grid - vv_x
- Type: GeoEngine.Core.GXNetCVV
X VV - vv_y
- Type: GeoEngine.Core.GXNetCVV
Y VV - vv_z
- Type: GeoEngine.Core.GXNetCVV
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