Method | Description | |
---|---|---|
Flip ( |
Flips the GpuMat<Byte> in one of different 3 ways (row and column indices are 0-based).
|
|
GetDeviceName ( int deviceId ) : String |
Get the name of the device associated with the specific ID
|
|
GetGpuMemInfo ( ulong &free, ulong &total ) : void |
Get the free and total amount of GPU memory on the current devide
|
|
HistEven ( |
Calculates histogram with evenly distributed bins for signle channel source.
|
Method | Description | |
---|---|---|
Absdiff ( |
||
Absdiff ( |
||
Add ( |
||
Add ( |
||
BitwiseAnd ( |
||
BitwiseNot ( |
||
BitwiseOr ( |
||
BitwiseXor ( |
||
CartToPolar ( |
||
Compare ( |
||
ConvertTo ( |
||
Copy ( |
||
CountNonZero ( |
||
CvtColor ( |
||
Dilate ( |
||
Divide ( |
||
Divide ( |
||
Erode ( |
||
Exp ( |
||
Filter2D ( |
||
GaussianBlur ( |
||
GetComputeCapability ( int deviceId, int &major, int &minor ) : void | ||
GetCudaEnabledDeviceCount ( ) : int | ||
GetDevice ( ) : int | ||
GetNumberOfSMs ( int device ) : int | ||
GpuInvoke ( ) : System | ||
GpuMatCreate ( int rows, int cols, int type ) : |
||
GpuMatCreateDefault ( ) : |
||
GpuMatCreateFromArr ( |
||
GpuMatDownload ( |
||
GpuMatGetChannels ( |
||
GpuMatGetSize ( |
||
GpuMatRelease ( |
||
GpuMatSetTo ( |
||
GpuMatUpload ( |
||
HasAtomicsSupport ( int device ) : bool | ||
HasNativeDoubleSupport ( int device ) : bool | ||
LUT ( |
||
Laplacian ( |
||
Log ( |
||
Magnitude ( |
||
MagnitudeSqr ( |
||
MeanStdDev ( |
||
Merge ( |
||
MinMaxLoc ( |
||
Multiply ( |
||
Multiply ( |
||
Norm ( |
||
Phase ( |
||
PolarToCart ( |
||
Remap ( |
||
Reshape ( |
||
Resize ( |
||
Sobel ( |
||
Split ( |
||
Subtract ( |
||
Subtract ( |
||
WarpAffine ( |
||
WarpPerspective ( |
||
getGpuMemInfo ( |
||
gpuGetDeviceName ( int device, [ buffer, int maxSizeInBytes ) : void | ||
gpuMatFlip ( |
||
gpuMatHistEven ( |
public static Flip ( |
||
src | Source array. | |
dst | Destination array. | |
flipType | CvEnum | Specifies how to flip the array. |
return | void |
public static GetDeviceName ( int deviceId ) : String | ||
deviceId | int | The id of the cuda device |
return | String |
public static GetGpuMemInfo ( ulong &free, ulong &total ) : void | ||
free | ulong | The free amount of GPU memory |
total | ulong | The total amount of GPU memory |
return | void |
public static HistEven ( |
||
src | The source GpuMat. Supports CV_8UC1, CV_16UC1 and CV_16SC1 types. | |
histSize | int | The size of histogram (number of levels) |
lowerLevel | int | The lower level |
upperLevel | int | The upper level |
return | GpuMat |