| Cv2RandShuffle Method (InputOutputArray, Double, RNG) |
shuffles the input array elements
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public static void RandShuffle(
InputOutputArray dst,
double iterFactor,
ref RNG rng
)
Public Shared Sub RandShuffle (
dst As InputOutputArray,
iterFactor As Double,
ByRef rng As RNG
)
public:
static void RandShuffle(
InputOutputArray^ dst,
double iterFactor,
RNG% rng
)
static member RandShuffle :
dst : InputOutputArray *
iterFactor : float *
rng : RNG byref -> unit
Parameters
- dst
- Type: OpenCvSharpInputOutputArray
The input/output numerical 1D array - iterFactor
- Type: SystemDouble
The scale factor that determines the number of random swap operations. - rng
- Type: OpenCvSharpRNG
The optional random number generator used for shuffling.
If it is null, theRng() is used instead.
See Also