| MatRandShuffle Method (Double, RNG) |
shuffles the input array elements
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public void RandShuffle(
double iterFactor,
ref RNG rng
)
Public Sub RandShuffle (
iterFactor As Double,
ByRef rng As RNG
)
public:
void RandShuffle(
double iterFactor,
RNG% rng
)
member RandShuffle :
iterFactor : float *
rng : RNG byref -> unit
Parameters
- 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.
Return Value
Type:
The input/output numerical 1D array
See Also