Click or drag to resize

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
Syntax
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
)

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