Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
422 B
13 lines
422 B
\section{Data Structures} |
|
|
|
|
|
\cvCppFunc{gpu::createContinuous} |
|
Creates continuous matrix in GPU memory. |
|
|
|
\cvdefCpp{void createContinuous(int rows, int cols, int type, GpuMat\& m);} |
|
\begin{description} |
|
\cvarg{rows}{Row count.} |
|
\cvarg{cols}{Column count.} |
|
\cvarg{type}{Type of the matrix.} |
|
\cvarg{m}{Destination matrix. Will be reshaped only if it has proper type and area ($rows \times cols$).} |
|
\end{description} |