public class opencv_core extends opencv_core
| Modifier and Type | Class and Description |
|---|---|
static class |
opencv_core.Algorithm
Base class for high-level OpenCV algorithms
|
static class |
opencv_core.AlgorithmInfo |
static class |
opencv_core.Arrays |
static class |
opencv_core.AutoLock |
static class |
opencv_core.BinaryFunc |
static class |
opencv_core.Buffer
\namespace cv
Namespace where all the C++ OpenCV functionality resides
|
static class |
opencv_core.ByteVectorVector |
static class |
opencv_core.ConvertData |
static class |
opencv_core.ConvertScaleData |
static class |
opencv_core.Cv_iplAllocateImageData |
static class |
opencv_core.Cv_iplCloneImage |
static class |
opencv_core.Cv_iplCreateImageHeader |
static class |
opencv_core.Cv_iplCreateROI |
static class |
opencv_core.Cv_iplDeallocate |
static class |
opencv_core.Cv32suf |
static class |
opencv_core.Cv64suf |
static class |
opencv_core.CvAllocFunc |
static class |
opencv_core.CvAttrList |
static class |
opencv_core.CvBox2D |
static class |
opencv_core.CvChain
Chain/Countour
|
static class |
opencv_core.CvCloneFunc |
static class |
opencv_core.CvCmpFunc |
static class |
opencv_core.CvContour |
static class |
opencv_core.CvErrorCallback |
static class |
opencv_core.CvFileNode |
static class |
opencv_core.CvFileNodeHash |
static class |
opencv_core.CvFileStorage
\
Data structures for persistence (a.k.a serialization) functionality *
\
|
static class |
opencv_core.CvFont |
static class |
opencv_core.CvFreeFunc |
static class |
opencv_core.CvGraph |
static class |
opencv_core.CvGraphEdge
Graph
|
static class |
opencv_core.CvGraphScanner |
static class |
opencv_core.CvGraphVtx |
static class |
opencv_core.CvGraphVtx2D |
static class |
opencv_core.CvHistogram |
static class |
opencv_core.CvIsInstanceFunc |
static class |
opencv_core.CvLineIterator |
static class |
opencv_core.CvMat |
static class |
opencv_core.CvMatND |
static class |
opencv_core.CvMemBlock
Memory storage
|
static class |
opencv_core.CvMemStorage |
static class |
opencv_core.CvMemStoragePos |
static class |
opencv_core.CvModule |
static class |
opencv_core.CvModuleInfo |
static class |
opencv_core.CvNArrayIterator |
static class |
opencv_core.CvPluginFuncInfo
System data types
|
static class |
opencv_core.CvPoint
CvPoint and variants
|
static class |
opencv_core.CvPoint2D32f |
static class |
opencv_core.CvPoint2D64f |
static class |
opencv_core.CvPoint3D32f |
static class |
opencv_core.CvPoint3D64f |
static class |
opencv_core.CvReadFunc |
static class |
opencv_core.CvRect
CvRect
|
static class |
opencv_core.CvReleaseFunc |
static class |
opencv_core.CvScalar
CvScalar
|
static class |
opencv_core.CvSeq |
static class |
opencv_core.CvSeqBlock
Sequence
|
static class |
opencv_core.CvSeqReader |
static class |
opencv_core.CvSeqWriter |
static class |
opencv_core.CvSet |
static class |
opencv_core.CvSetElem
Set
|
static class |
opencv_core.CvSize
CvSize's & CvBox
|
static class |
opencv_core.CvSize2D32f |
static class |
opencv_core.CvSlice
CvSlice
|
static class |
opencv_core.CvSparseMat |
static class |
opencv_core.CvSparseMatIterator |
static class |
opencv_core.CvSparseNode
iteration through a sparse array
|
static class |
opencv_core.CvString |
static class |
opencv_core.CvStringHashNode |
static class |
opencv_core.CvTermCriteria |
static class |
opencv_core.CvTreeNodeIterator
Iteration through the sequence tree
|
static class |
opencv_core.CvType |
static class |
opencv_core.CvTypeInfo |
static class |
opencv_core.CvWriteFunc |
static class |
opencv_core.ErrorCallback |
static class |
opencv_core.FileNode
File Storage Node class
The node is used to store each and every element of the file storage opened for reading -
from the primitive objects, such as numbers and text strings, to the complex nodes:
sequences, mappings and the registered objects.
|
static class |
opencv_core.FileNodeIterator
File Node Iterator
The class is used for iterating sequences (usually) and mappings.
|
static class |
opencv_core.FileStorage
XML/YAML File Storage Class.
|
static class |
opencv_core.GlArrays |
static class |
opencv_core.GlBuffer |
static class |
opencv_core.GlCamera |
static class |
opencv_core.GlTexture |
static class |
opencv_core.GpuMat |
static class |
opencv_core.IntVectorVector |
static class |
opencv_core.IplConvKernel |
static class |
opencv_core.IplConvKernelFP |
static class |
opencv_core.IplImage |
static class |
opencv_core.IplROI |
static class |
opencv_core.IplTileInfo |
static class |
opencv_core.KDTree
Fast Nearest Neighbor Search Class.
|
static class |
opencv_core.LineIterator
Line iterator class
The class is used to iterate over all the pixels on the raster line
segment connecting two specified points.
|
static class |
opencv_core.Mat
The n-dimensional matrix class.
|
static class |
opencv_core.MatAllocator
Custom array allocator
|
static class |
opencv_core.MatArg |
static class |
opencv_core.MatConstIterator
Template matrix class derived from Mat
The class Mat_ is a "thin" template wrapper on top of cv::Mat.
|
static class |
opencv_core.MatExpr |
static class |
opencv_core.MatOp_Base |
static class |
opencv_core.MatVector |
static class |
opencv_core.Mutex |
static class |
opencv_core.NAryMatIterator
n-Dimensional Dense Matrix Iterator Class.
|
static class |
opencv_core.ParallelLoopBody
"\nThe CommandLineParser class is designed for command line arguments parsing\n"
"Keys map: \n"
"Before you start to work with CommandLineParser you have to create a map for keys.\n"
" It will look like this\n"
" const char* keys =\n"
" {\n"
" { s| string| 123asd |string parameter}\n"
" { d| digit | 100 |digit parameter }\n"
" { c|noCamera|false |without camera }\n"
" { 1| |some text|help }\n"
" { 2| |333 |another help }\n"
" };\n"
"Usage syntax: \n"
" \"{\" - start of parameter string.\n"
" \"}\" - end of parameter string\n"
" \"|\" - separator between short name, full name, default value and help\n"
"Supported syntax: \n"
" --key1=arg1
|
static class |
opencv_core.Param |
static class |
opencv_core.PCA
Principal Component Analysis
The class PCA is used to compute the special basis for a set of vectors.
|
static class |
opencv_core.Point
template 2D point class.
|
static class |
opencv_core.Point2d |
static class |
opencv_core.Point2dVectorVector |
static class |
opencv_core.Point2f |
static class |
opencv_core.Point2fVectorVector |
static class |
opencv_core.Point3d |
static class |
opencv_core.Point3f |
static class |
opencv_core.Point3i
template 3D point class.
|
static class |
opencv_core.PointVectorVector |
static class |
opencv_core.Range
The 2D range class
This is the class used to specify a continuous subsequence, i.e.
|
static class |
opencv_core.Rect
The 2D up-right rectangle class
The class represents a 2D rectangle with coordinates of the specified data type.
|
static class |
opencv_core.Rectd |
static class |
opencv_core.Rectf |
static class |
opencv_core.RectVectorVector |
static class |
opencv_core.RNG
Random Number Generator
The class implements RNG using Multiply-with-Carry algorithm
|
static class |
opencv_core.RNG_MT19937
Random Number Generator - MT
The class implements RNG using the Mersenne Twister algorithm
|
static class |
opencv_core.RotatedRect
The rotated 2D rectangle.
|
static class |
opencv_core.Scalar
The template scalar class.
|
static class |
opencv_core.Size
The 2D size class
The class represents the size of a 2D rectangle, image size, matrix size etc.
|
static class |
opencv_core.Size2d |
static class |
opencv_core.Size2f |
static class |
opencv_core.SparseMat
Sparse matrix class.
|
static class |
opencv_core.SparseMatConstIterator
Read-Only Sparse Matrix Iterator.
|
static class |
opencv_core.SparseMatIterator
Read-write Sparse Matrix Iterator
The class is similar to cv::SparseMatConstIterator,
but can be used for in-place modification of the matrix elements.
|
static class |
opencv_core.StringVector |
static class |
opencv_core.SVD
Singular Value Decomposition class
The class is used to compute Singular Value Decomposition of a floating-point matrix and then
use it to solve least-square problems, under-determined linear systems, invert matrices,
compute condition numbers etc.
|
static class |
opencv_core.TermCriteria
Termination criteria in iterative algorithms
|
static class |
opencv_core.Texture2D |
static class |
opencv_core.TLSDataContainer |
opencv_core.AbstractArray, opencv_core.AbstractCvBox2D, opencv_core.AbstractCvFileStorage, opencv_core.AbstractCvFont, opencv_core.AbstractCvGraph, opencv_core.AbstractCvGraphScanner, opencv_core.AbstractCvMat, opencv_core.AbstractCvMatND, opencv_core.AbstractCvMemStorage, opencv_core.AbstractCvPoint, opencv_core.AbstractCvPoint2D32f, opencv_core.AbstractCvPoint2D64f, opencv_core.AbstractCvPoint3D32f, opencv_core.AbstractCvPoint3D64f, opencv_core.AbstractCvRect, opencv_core.AbstractCvScalar, opencv_core.AbstractCvSeq, opencv_core.AbstractCvSet, opencv_core.AbstractCvSize, opencv_core.AbstractCvSize2D32f, opencv_core.AbstractCvSparseMat, opencv_core.AbstractIplImage, opencv_core.AbstractMat, opencv_core.CvArr, opencv_core.CvArrArray, opencv_core.CvMatArray, opencv_core.CvMatNDArray, opencv_core.IplImageArrayopencv_core.Ptr| Modifier and Type | Field and Description |
|---|---|
static int |
CMP_EQ
enum cv::
|
static int |
CMP_GE
enum cv::
|
static int |
CMP_GT
enum cv::
|
static int |
CMP_LE
enum cv::
|
static int |
CMP_LT
enum cv::
|
static int |
CMP_NE
enum cv::
|
static int |
COVAR_COLS
enum cv::
|
static int |
COVAR_NORMAL
enum cv::
|
static int |
COVAR_ROWS
enum cv::
|
static int |
COVAR_SCALE
enum cv::
|
static int |
COVAR_SCRAMBLED
enum cv::
|
static int |
COVAR_USE_AVG
enum cv::
|
static int |
CV_16S |
static int |
CV_16SC1 |
static int |
CV_16SC2 |
static int |
CV_16SC3 |
static int |
CV_16SC4 |
static int |
CV_16U |
static int |
CV_16UC1 |
static int |
CV_16UC2 |
static int |
CV_16UC3 |
static int |
CV_16UC4 |
static int |
CV_32F |
static int |
CV_32FC1 |
static int |
CV_32FC2 |
static int |
CV_32FC3 |
static int |
CV_32FC4 |
static int |
CV_32S |
static int |
CV_32SC1 |
static int |
CV_32SC2 |
static int |
CV_32SC3 |
static int |
CV_32SC4 |
static int |
CV_64F |
static int |
CV_64FC1 |
static int |
CV_64FC2 |
static int |
CV_64FC3 |
static int |
CV_64FC4 |
static int |
CV_8S |
static int |
CV_8SC1 |
static int |
CV_8SC2 |
static int |
CV_8SC3 |
static int |
CV_8SC4 |
static int |
CV_8U |
static int |
CV_8UC1 |
static int |
CV_8UC2 |
static int |
CV_8UC3 |
static int |
CV_8UC4 |
static int |
CV_AA |
static int |
CV_AUTO_STEP |
static int |
CV_AUTOSTEP |
static int |
CV_BACK |
static int |
CV_BadAlign
enum
|
static int |
CV_BadAlphaChannel
enum
|
static int |
CV_BadCallBack
enum
|
static int |
CV_BadCOI
enum
|
static int |
CV_BadDataPtr
enum
|
static int |
CV_BadDepth
enum
|
static int |
CV_BadImageSize
enum
|
static int |
CV_BadModelOrChSeq
enum
|
static int |
CV_BadNumChannel1U
enum
|
static int |
CV_BadNumChannels
enum
|
static int |
CV_BadOffset
enum
|
static int |
CV_BadOrder
enum
|
static int |
CV_BadOrigin
enum
|
static int |
CV_BadROISize
enum
|
static int |
CV_BadStep
enum
|
static int |
CV_BadTileSize
enum
|
static int |
CV_C |
static int |
CV_CHECK_QUIET |
static int |
CV_CHECK_RANGE |
static int |
CV_CHOLESKY |
static int |
CV_CMP_EQ |
static int |
CV_CMP_GE |
static int |
CV_CMP_GT |
static int |
CV_CMP_LE |
static int |
CV_CMP_LT |
static int |
CV_CMP_NE |
static int |
CV_CN_MAX
\
Matrix type (CvMat) *
\
|
static int |
CV_CN_SHIFT |
static int |
CV_COVAR_COLS |
static int |
CV_COVAR_NORMAL |
static int |
CV_COVAR_ROWS |
static int |
CV_COVAR_SCALE |
static int |
CV_COVAR_SCRAMBLED |
static int |
CV_COVAR_USE_AVG |
static int |
CV_CPU_AVX |
static int |
CV_CPU_MMX |
static int |
CV_CPU_NONE
CPU capabilities
|
static int |
CV_CPU_POPCNT |
static int |
CV_CPU_SSE |
static int |
CV_CPU_SSE2 |
static int |
CV_CPU_SSE3 |
static int |
CV_CPU_SSE4_1 |
static int |
CV_CPU_SSE4_2 |
static int |
CV_CPU_SSSE3 |
static int |
CV_DEPTH_MAX |
static int |
CV_DIFF |
static int |
CV_DIFF_C |
static int |
CV_DIFF_L1 |
static int |
CV_DIFF_L2 |
static int |
CV_DXT_FORWARD
\
Discrete Linear Transforms and Related Functions *
\
|
static int |
CV_DXT_INV_SCALE |
static int |
CV_DXT_INVERSE |
static int |
CV_DXT_INVERSE_SCALE |
static int |
CV_DXT_MUL_CONJ |
static int |
CV_DXT_ROWS |
static int |
CV_DXT_SCALE |
static int |
CV_ErrModeLeaf |
static int |
CV_ErrModeParent |
static int |
CV_ErrModeSilent |
static int |
CV_FILLED
\
Drawing functions work with images/matrices of arbitrary type.
|
static int |
CV_FONT_HERSHEY_COMPLEX |
static int |
CV_FONT_HERSHEY_COMPLEX_SMALL |
static int |
CV_FONT_HERSHEY_DUPLEX |
static int |
CV_FONT_HERSHEY_PLAIN |
static int |
CV_FONT_HERSHEY_SCRIPT_COMPLEX |
static int |
CV_FONT_HERSHEY_SCRIPT_SIMPLEX |
static int |
CV_FONT_HERSHEY_SIMPLEX |
static int |
CV_FONT_HERSHEY_TRIPLEX |
static int |
CV_FONT_ITALIC |
static int |
CV_FONT_VECTOR0 |
static int |
CV_FRONT |
static int |
CV_GEMM_A_T |
static int |
CV_GEMM_B_T |
static int |
CV_GEMM_C_T |
static int |
CV_GpuApiCallError
enum
|
static int |
CV_GpuNotSupported
enum
|
static int |
CV_GRAPH |
static int |
CV_GRAPH_ALL_ITEMS |
static int |
CV_GRAPH_ANY_EDGE |
static int |
CV_GRAPH_BACK_EDGE |
static int |
CV_GRAPH_BACKTRACKING |
static int |
CV_GRAPH_CROSS_EDGE |
static int |
CV_GRAPH_FLAG_ORIENTED |
static int |
CV_GRAPH_FORWARD_EDGE |
static int |
CV_GRAPH_FORWARD_EDGE_FLAG |
static int |
CV_GRAPH_ITEM_VISITED_FLAG |
static int |
CV_GRAPH_NEW_TREE |
static int |
CV_GRAPH_OVER |
static int |
CV_GRAPH_SEARCH_TREE_NODE_FLAG |
static int |
CV_GRAPH_TREE_EDGE |
static int |
CV_GRAPH_VERTEX |
static int |
CV_HARDWARE_MAX_FEATURE |
static int |
CV_HeaderIsNull
enum
|
static int |
CV_HIST_ARRAY |
static int |
CV_HIST_MAGIC_VAL
\
Histogram *
\
|
static int |
CV_HIST_RANGES_FLAG |
static int |
CV_HIST_SPARSE |
static int |
CV_HIST_TREE |
static int |
CV_HIST_UNIFORM |
static int |
CV_HIST_UNIFORM_FLAG |
static int |
CV_KMEANS_USE_INITIAL_LABELS |
static int |
CV_L1 |
static int |
CV_L2 |
static double |
CV_LOG2 |
static int |
CV_LU |
static int |
CV_MAGIC_MASK |
static int |
CV_MaskIsTiled
enum
|
static int |
CV_MAT_CN_MASK |
static int |
CV_MAT_CONT_FLAG |
static int |
CV_MAT_CONT_FLAG_SHIFT |
static int |
CV_MAT_DEPTH_MASK |
static int |
CV_MAT_MAGIC_VAL |
static int |
CV_MAT_TYPE_MASK |
static int |
CV_MATND_MAGIC_VAL
\
Multi-dimensional dense array (CvMatND) *
\
|
static int |
CV_MAX_ARR
matrix iterator: used for n-ary operations on dense arrays
|
static int |
CV_MAX_DIM |
static int |
CV_MAX_DIM_HEAP |
static int |
CV_MINMAX |
static int |
CV_NO_CN_CHECK |
static int |
CV_NO_DEPTH_CHECK |
static int |
CV_NO_SIZE_CHECK |
static int |
CV_NODE_EMPTY |
static int |
CV_NODE_FLOAT |
static int |
CV_NODE_FLOW |
static int |
CV_NODE_INT |
static int |
CV_NODE_INTEGER |
static int |
CV_NODE_MAP |
static int |
CV_NODE_NAMED |
static int |
CV_NODE_NONE |
static int |
CV_NODE_REAL |
static int |
CV_NODE_REF |
static int |
CV_NODE_SEQ |
static int |
CV_NODE_SEQ_SIMPLE |
static int |
CV_NODE_STR |
static int |
CV_NODE_STRING |
static int |
CV_NODE_TYPE_MASK |
static int |
CV_NODE_USER |
static int |
CV_NORM_MASK |
static int |
CV_NORMAL |
static int |
CV_OpenCLDoubleNotSupported
enum
|
static int |
CV_OpenCLInitError
enum
|
static int |
CV_OpenCLNoAMDBlasFft
enum
|
static int |
CV_OpenGlApiCallError
enum
|
static int |
CV_OpenGlNotSupported
enum
|
static int |
CV_ORIENTED_GRAPH |
static int |
CV_PCA_DATA_AS_COL |
static int |
CV_PCA_DATA_AS_ROW |
static int |
CV_PCA_USE_AVG |
static double |
CV_PI
\
Common macros and inline functions *
\
|
static int |
CV_QR |
static int |
CV_RAND_NORMAL |
static int |
CV_RAND_UNI |
static int |
CV_REDUCE_AVG |
static int |
CV_REDUCE_MAX |
static int |
CV_REDUCE_MIN |
static int |
CV_REDUCE_SUM |
static int |
CV_RELATIVE |
static int |
CV_RELATIVE_C |
static int |
CV_RELATIVE_L1 |
static int |
CV_RELATIVE_L2 |
static long |
CV_RNG_COEFF
Random number generation
|
static int |
CV_SEQ_CHAIN |
static int |
CV_SEQ_CHAIN_CONTOUR |
static int |
CV_SEQ_CONNECTED_COMP |
static int |
CV_SEQ_CONTOUR |
static int |
CV_SEQ_ELTYPE_BITS |
static int |
CV_SEQ_ELTYPE_CODE |
static int |
CV_SEQ_ELTYPE_CONNECTED_COMP |
static int |
CV_SEQ_ELTYPE_GENERIC |
static int |
CV_SEQ_ELTYPE_GRAPH_EDGE |
static int |
CV_SEQ_ELTYPE_GRAPH_VERTEX |
static int |
CV_SEQ_ELTYPE_INDEX |
static int |
CV_SEQ_ELTYPE_MASK |
static int |
CV_SEQ_ELTYPE_POINT |
static int |
CV_SEQ_ELTYPE_POINT3D |
static int |
CV_SEQ_ELTYPE_PPOINT |
static int |
CV_SEQ_ELTYPE_PTR |
static int |
CV_SEQ_ELTYPE_TRIAN_ATR |
static int |
CV_SEQ_FLAG_CLOSED |
static int |
CV_SEQ_FLAG_CONVEX |
static int |
CV_SEQ_FLAG_HOLE |
static int |
CV_SEQ_FLAG_SHIFT |
static int |
CV_SEQ_FLAG_SIMPLE |
static int |
CV_SEQ_INDEX |
static int |
CV_SEQ_KIND_BIN_TREE |
static int |
CV_SEQ_KIND_BITS |
static int |
CV_SEQ_KIND_CURVE |
static int |
CV_SEQ_KIND_GENERIC |
static int |
CV_SEQ_KIND_GRAPH |
static int |
CV_SEQ_KIND_MASK |
static int |
CV_SEQ_KIND_SUBDIV2D |
static int |
CV_SEQ_MAGIC_VAL
\
Sequence types *
\
|
static int |
CV_SEQ_POINT_SET |
static int |
CV_SEQ_POINT3D_SET |
static int |
CV_SEQ_POLYGON |
static int |
CV_SEQ_POLYGON_TREE |
static int |
CV_SEQ_POLYLINE |
static int |
CV_SEQ_SIMPLE_POLYGON |
static int |
CV_SET_ELEM_FREE_FLAG |
static int |
CV_SET_ELEM_IDX_MASK |
static int |
CV_SET_MAGIC_VAL |
static int |
CV_SORT_ASCENDING |
static int |
CV_SORT_DESCENDING |
static int |
CV_SORT_EVERY_COLUMN |
static int |
CV_SORT_EVERY_ROW |
static int |
CV_SPARSE_MAT_MAGIC_VAL
\
Multi-dimensional sparse array (CvSparseMat) *
\
|
static int |
CV_STORAGE_APPEND |
static int |
CV_STORAGE_FORMAT_AUTO |
static int |
CV_STORAGE_FORMAT_MASK |
static int |
CV_STORAGE_FORMAT_XML |
static int |
CV_STORAGE_FORMAT_YAML |
static int |
CV_STORAGE_MAGIC_VAL |
static int |
CV_STORAGE_MEMORY |
static int |
CV_STORAGE_READ |
static int |
CV_STORAGE_WRITE |
static int |
CV_STORAGE_WRITE_BINARY |
static int |
CV_STORAGE_WRITE_TEXT |
static int |
CV_StsAssert
enum
|
static int |
CV_StsAutoTrace
enum
|
static int |
CV_StsBackTrace
enum
|
static int |
CV_StsBadArg
enum
|
static int |
CV_StsBadFlag
enum
|
static int |
CV_StsBadFunc
enum
|
static int |
CV_StsBadMask
enum
|
static int |
CV_StsBadMemBlock
enum
|
static int |
CV_StsBadPoint
enum
|
static int |
CV_StsBadSize
enum
|
static int |
CV_StsDivByZero
enum
|
static int |
CV_StsError
enum
|
static int |
CV_StsFilterOffsetErr
enum
|
static int |
CV_StsFilterStructContentErr
enum
|
static int |
CV_StsInplaceNotSupported
enum
|
static int |
CV_StsInternal
enum
|
static int |
CV_StsKernelStructContentErr
enum
|
static int |
CV_StsNoConv
enum
|
static int |
CV_StsNoMem
enum
|
static int |
CV_StsNotImplemented
enum
|
static int |
CV_StsNullPtr
enum
|
static int |
CV_StsObjectNotFound
enum
|
static int |
CV_StsOk
enum
|
static int |
CV_StsOutOfRange
enum
|
static int |
CV_StsParseError
enum
|
static int |
CV_StsUnmatchedFormats
enum
|
static int |
CV_StsUnmatchedSizes
enum
|
static int |
CV_StsUnsupportedFormat
enum
|
static int |
CV_StsVecLengthErr
enum
|
static int |
CV_SUBMAT_FLAG |
static int |
CV_SUBMAT_FLAG_SHIFT |
static int |
CV_SVD |
static int |
CV_SVD_MODIFY_A |
static int |
CV_SVD_SYM |
static int |
CV_SVD_U_T |
static int |
CV_SVD_V_T |
static int |
CV_TERMCRIT_EPS |
static int |
CV_TERMCRIT_ITER
CvTermCriteria
|
static int |
CV_TERMCRIT_NUMBER |
static String |
CV_TYPE_NAME_GRAPH |
static String |
CV_TYPE_NAME_IMAGE |
static String |
CV_TYPE_NAME_MAT |
static String |
CV_TYPE_NAME_MATND |
static String |
CV_TYPE_NAME_SEQ |
static String |
CV_TYPE_NAME_SEQ_TREE |
static String |
CV_TYPE_NAME_SPARSE_MAT |
static int |
CV_USRTYPE1 |
static opencv_core.CvSlice |
CV_WHOLE_ARR |
static opencv_core.CvSlice |
CV_WHOLE_SEQ |
static int |
CV_WHOLE_SEQ_END_INDEX |
static String |
cvFuncName |
static int |
DCT_INVERSE
enum cv::
|
static int |
DCT_ROWS
enum cv::
|
static int |
DECOMP_CHOLESKY
enum cv::
|
static int |
DECOMP_EIG
enum cv::
|
static int |
DECOMP_LU
enum cv::
|
static int |
DECOMP_NORMAL
enum cv::
|
static int |
DECOMP_QR
enum cv::
|
static int |
DECOMP_SVD
enum cv::
|
static int |
DEPTH_MASK
enum cv::
|
static int |
DEPTH_MASK_16S
enum cv::
|
static int |
DEPTH_MASK_16U
enum cv::
|
static int |
DEPTH_MASK_32F
enum cv::
|
static int |
DEPTH_MASK_32S
enum cv::
|
static int |
DEPTH_MASK_64F
enum cv::
|
static int |
DEPTH_MASK_8S
enum cv::
|
static int |
DEPTH_MASK_8U
enum cv::
|
static int |
DEPTH_MASK_ALL
enum cv::
|
static int |
DEPTH_MASK_ALL_BUT_8S
enum cv::
|
static int |
DEPTH_MASK_FLT
enum cv::
|
static int |
DFT_COMPLEX_OUTPUT
enum cv::
|
static int |
DFT_INVERSE
enum cv::
|
static int |
DFT_REAL_OUTPUT
enum cv::
|
static int |
DFT_ROWS
enum cv::
|
static int |
DFT_SCALE
enum cv::
|
static int |
FONT_HERSHEY_COMPLEX
enum cv::
|
static int |
FONT_HERSHEY_COMPLEX_SMALL
enum cv::
|
static int |
FONT_HERSHEY_DUPLEX
enum cv::
|
static int |
FONT_HERSHEY_PLAIN
enum cv::
|
static int |
FONT_HERSHEY_SCRIPT_COMPLEX
enum cv::
|
static int |
FONT_HERSHEY_SCRIPT_SIMPLEX
enum cv::
|
static int |
FONT_HERSHEY_SIMPLEX
enum cv::
|
static int |
FONT_HERSHEY_TRIPLEX
enum cv::
|
static int |
FONT_ITALIC
enum cv::
|
static int |
GEMM_1_T
enum cv::
|
static int |
GEMM_2_T
enum cv::
|
static int |
GEMM_3_T
enum cv::
|
static int |
IPL_ALIGN_16BYTES |
static int |
IPL_ALIGN_32BYTES |
static int |
IPL_ALIGN_4BYTES |
static int |
IPL_ALIGN_8BYTES |
static int |
IPL_ALIGN_DWORD |
static int |
IPL_ALIGN_QWORD |
static int |
IPL_BORDER_CONSTANT |
static int |
IPL_BORDER_REFLECT |
static int |
IPL_BORDER_REFLECT_101 |
static int |
IPL_BORDER_REPLICATE |
static int |
IPL_BORDER_TRANSPARENT |
static int |
IPL_BORDER_WRAP |
static int |
IPL_DATA_ORDER_PIXEL |
static int |
IPL_DATA_ORDER_PLANE |
static int |
IPL_DEPTH_16S |
static int |
IPL_DEPTH_16U |
static int |
IPL_DEPTH_1U |
static int |
IPL_DEPTH_32F |
static int |
IPL_DEPTH_32S |
static int |
IPL_DEPTH_64F |
static int |
IPL_DEPTH_8S |
static int |
IPL_DEPTH_8U |
static int |
IPL_DEPTH_SIGN
\
Image type (IplImage) *
\
|
static int |
IPL_IMAGE_DATA |
static int |
IPL_IMAGE_HEADER |
static int |
IPL_IMAGE_MAGIC_VAL |
static int |
IPL_IMAGE_ROI |
static int |
IPL_ORIGIN_BL |
static int |
IPL_ORIGIN_TL |
static int |
KMEANS_PP_CENTERS
enum cv::
|
static int |
KMEANS_RANDOM_CENTERS
enum cv::
|
static int |
KMEANS_USE_INITIAL_LABELS
enum cv::
|
static int |
MAGIC_MASK
enum cv::
|
static int |
NORM_HAMMING
enum cv::
|
static int |
NORM_HAMMING2
enum cv::
|
static int |
NORM_INF
enum cv::
|
static int |
NORM_L1
enum cv::
|
static int |
NORM_L2
enum cv::
|
static int |
NORM_L2SQR
enum cv::
|
static int |
NORM_MINMAX
enum cv::
|
static int |
NORM_RELATIVE
enum cv::
|
static int |
NORM_TYPE_MASK
enum cv::
|
static int |
SORT_ASCENDING
enum cv::
|
static int |
SORT_DESCENDING
enum cv::
|
static int |
SORT_EVERY_COLUMN
enum cv::
|
static int |
SORT_EVERY_ROW
enum cv::
|
static int |
TYPE_MASK
enum cv::
|
| Constructor and Description |
|---|
opencv_core() |
| Modifier and Type | Method and Description |
|---|---|
static void |
absdiff(opencv_core.Mat src1,
opencv_core.Mat src2,
opencv_core.Mat dst)
computes element-wise absolute difference of two arrays (dst = abs(src1 - src2))
|
static void |
add(opencv_core.Mat src1,
opencv_core.Mat src2,
opencv_core.Mat dst) |
static void |
add(opencv_core.Mat src1,
opencv_core.Mat src2,
opencv_core.Mat dst,
opencv_core.Mat mask,
int dtype)
adds one matrix to another (dst = src1 + src2)
|
static void |
addWeighted(opencv_core.Mat src1,
double alpha,
opencv_core.Mat src2,
double beta,
double gamma,
opencv_core.Mat dst) |
static void |
addWeighted(opencv_core.Mat src1,
double alpha,
opencv_core.Mat src2,
double beta,
double gamma,
opencv_core.Mat dst,
int dtype)
computes weighted sum of two arrays (dst = alpha*src1 + beta*src2 + gamma)
|
static long |
alignSize(long sz,
int n)
Aligns buffer size by the certain number of bytes
This small inline function aligns a buffer size by the certian number of bytes by enlarging it.
|
static void |
batchDistance(opencv_core.Mat src1,
opencv_core.Mat src2,
opencv_core.Mat dist,
int dtype,
opencv_core.Mat nidx) |
static void |
batchDistance(opencv_core.Mat src1,
opencv_core.Mat src2,
opencv_core.Mat dist,
int dtype,
opencv_core.Mat nidx,
int normType,
int K,
opencv_core.Mat mask,
int update,
boolean crosscheck)
naive nearest neighbor finder
|
static void |
bitwise_and(opencv_core.Mat src1,
opencv_core.Mat src2,
opencv_core.Mat dst) |
static void |
bitwise_and(opencv_core.Mat src1,
opencv_core.Mat src2,
opencv_core.Mat dst,
opencv_core.Mat mask)
computes bitwise conjunction of the two arrays (dst = src1 & src2)
|
static void |
bitwise_not(opencv_core.Mat src,
opencv_core.Mat dst) |
static void |
bitwise_not(opencv_core.Mat src,
opencv_core.Mat dst,
opencv_core.Mat mask)
inverts each bit of array (dst = ~src)
|
static void |
bitwise_or(opencv_core.Mat src1,
opencv_core.Mat src2,
opencv_core.Mat dst) |
static void |
bitwise_or(opencv_core.Mat src1,
opencv_core.Mat src2,
opencv_core.Mat dst,
opencv_core.Mat mask)
computes bitwise disjunction of the two arrays (dst = src1 | src2)
|
static void |
bitwise_xor(opencv_core.Mat src1,
opencv_core.Mat src2,
opencv_core.Mat dst) |
static void |
bitwise_xor(opencv_core.Mat src1,
opencv_core.Mat src2,
opencv_core.Mat dst,
opencv_core.Mat mask)
computes bitwise exclusive-or of the two arrays (dst = src1 ^ src2)
|
static void |
calcCovarMatrix(opencv_core.Mat samples,
int nsamples,
opencv_core.Mat covar,
opencv_core.Mat mean,
int flags) |
static void |
calcCovarMatrix(opencv_core.Mat samples,
int nsamples,
opencv_core.Mat covar,
opencv_core.Mat mean,
int flags,
int ctype)
computes covariation matrix of a set of samples
|
static void |
calcCovarMatrix(opencv_core.Mat samples,
opencv_core.Mat covar,
opencv_core.Mat mean,
int flags) |
static void |
calcCovarMatrix(opencv_core.Mat samples,
opencv_core.Mat covar,
opencv_core.Mat mean,
int flags,
int ctype)
computes covariation matrix of a set of samples
|
static void |
cartToPolar(opencv_core.Mat x,
opencv_core.Mat y,
opencv_core.Mat magnitude,
opencv_core.Mat angle) |
static void |
cartToPolar(opencv_core.Mat x,
opencv_core.Mat y,
opencv_core.Mat magnitude,
opencv_core.Mat angle,
boolean angleInDegrees)
converts Cartesian coordinates to polar
|
static boolean |
checkHardwareSupport(int feature)
Returns SSE etc.
|
static boolean |
checkRange(opencv_core.Mat a) |
static boolean |
checkRange(opencv_core.Mat a,
boolean quiet,
opencv_core.Point pos,
double minVal,
double maxVal)
checks that each matrix element is within the specified range.
|
static void |
circle(opencv_core.Mat img,
opencv_core.Point center,
int radius,
opencv_core.Scalar color) |
static void |
circle(opencv_core.Mat img,
opencv_core.Point center,
int radius,
opencv_core.Scalar color,
int thickness,
int lineType,
int shift)
draws the circle outline or a solid circle in the image
|
static boolean |
clipLine(opencv_core.Rect imgRect,
opencv_core.Point pt1,
opencv_core.Point pt2)
clips the line segment by the rectangle imgRect
|
static boolean |
clipLine(opencv_core.Size imgSize,
opencv_core.Point pt1,
opencv_core.Point pt2)
clips the line segment by the rectangle Rect(0, 0, imgSize.width, imgSize.height)
|
static void |
compare(opencv_core.Mat src1,
opencv_core.Mat src2,
opencv_core.Mat dst,
int cmpop)
compares elements of two arrays (dst = src1
|
static void |
completeSymm(opencv_core.Mat mtx) |
static void |
completeSymm(opencv_core.Mat mtx,
boolean lowerToUpper)
extends the symmetrical matrix from the lower half or from the upper half
|
static void |
convertScaleAbs(opencv_core.Mat src,
opencv_core.Mat dst) |
static void |
convertScaleAbs(opencv_core.Mat src,
opencv_core.Mat dst,
double alpha,
double beta)
scales array elements, computes absolute values and converts the results to 8-bit unsigned integers: dst(i)=saturate_cast
|
static int |
countNonZero(opencv_core.Mat src)
computes the number of nonzero array elements
|
static float |
cubeRoot(float val)
computes cube root of the argument
|
static int |
CV_16SC(int n) |
static int |
CV_16UC(int n) |
static int |
CV_32FC(int n) |
static int |
CV_32SC(int n) |
static int |
CV_64FC(int n) |
static int |
CV_8SC(int n) |
static int |
CV_8UC(int n) |
static int |
CV_IS_CONT_MAT(int arg1) |
static int |
CV_IS_MAT_CONT(int flags) |
static int |
CV_MAKE_TYPE(int arg1,
int arg2) |
static int |
CV_MAKETYPE(int depth,
int cn) |
static int |
CV_MAT_CN(int flags) |
static int |
CV_MAT_DEPTH(int flags) |
static int |
CV_MAT_TYPE(int flags) |
static int |
CV_SET_ELEM_FREE_FLAG() |
static void |
cvAbsDiff(opencv_core.CvArr src1,
opencv_core.CvArr src2,
opencv_core.CvArr dst) |
static void |
cvAbsDiffS(opencv_core.CvArr src,
opencv_core.CvArr dst,
opencv_core.CvScalar value) |
static void |
cvAdd(opencv_core.CvArr src1,
opencv_core.CvArr src2,
opencv_core.CvArr dst) |
static void |
cvAdd(opencv_core.CvArr src1,
opencv_core.CvArr src2,
opencv_core.CvArr dst,
opencv_core.CvArr mask)
\
Arithmetic, logic and comparison operations *
\
|
static void |
cvAddS(opencv_core.CvArr src,
opencv_core.CvScalar value,
opencv_core.CvArr dst) |
static void |
cvAddS(opencv_core.CvArr src,
opencv_core.CvScalar value,
opencv_core.CvArr dst,
opencv_core.CvArr mask) |
static void |
cvAddWeighted(opencv_core.CvArr src1,
double alpha,
opencv_core.CvArr src2,
double beta,
double gamma,
opencv_core.CvArr dst) |
static Pointer |
cvAlloc(long size)
\
Array allocation, deallocation, initialization and access to elements *
\
|
static void |
cvAnd(opencv_core.CvArr src1,
opencv_core.CvArr src2,
opencv_core.CvArr dst) |
static void |
cvAnd(opencv_core.CvArr src1,
opencv_core.CvArr src2,
opencv_core.CvArr dst,
opencv_core.CvArr mask) |
static void |
cvAndS(opencv_core.CvArr src,
opencv_core.CvScalar value,
opencv_core.CvArr dst) |
static void |
cvAndS(opencv_core.CvArr src,
opencv_core.CvScalar value,
opencv_core.CvArr dst,
opencv_core.CvArr mask) |
static opencv_core.Mat |
cvarrToMat(opencv_core.CvArr arr) |
static opencv_core.Mat |
cvarrToMat(opencv_core.CvArr arr,
boolean copyData,
boolean allowND,
int coiMode)
converts array (CvMat or IplImage) to cv::Mat
|
static opencv_core.CvAttrList |
cvAttrList() |
static opencv_core.CvAttrList |
cvAttrList(byte[] attr,
opencv_core.CvAttrList next) |
static opencv_core.CvAttrList |
cvAttrList(ByteBuffer attr,
opencv_core.CvAttrList next) |
static opencv_core.CvAttrList |
cvAttrList(BytePointer attr,
opencv_core.CvAttrList next) |
static opencv_core.CvAttrList |
cvAttrList(PointerPointer attr,
opencv_core.CvAttrList next) |
static BytePointer |
cvAttrValue(opencv_core.CvAttrList attr,
BytePointer attr_name) |
static String |
cvAttrValue(opencv_core.CvAttrList attr,
String attr_name) |
static opencv_core.CvScalar |
cvAvg(opencv_core.CvArr arr) |
static opencv_core.CvScalar |
cvAvg(opencv_core.CvArr arr,
opencv_core.CvArr mask) |
static void |
cvAvgSdv(opencv_core.CvArr arr,
opencv_core.CvScalar mean,
opencv_core.CvScalar std_dev) |
static void |
cvAvgSdv(opencv_core.CvArr arr,
opencv_core.CvScalar mean,
opencv_core.CvScalar std_dev,
opencv_core.CvArr mask) |
static void |
cvBackProjectPCA(opencv_core.CvArr proj,
opencv_core.CvArr mean,
opencv_core.CvArr eigenvects,
opencv_core.CvArr result) |
static void |
cvCalcCovarMatrix(opencv_core.CvArr vects,
int count,
opencv_core.CvArr cov_mat,
opencv_core.CvArr avg,
int flags) |
static void |
cvCalcCovarMatrix(PointerPointer vects,
int count,
opencv_core.CvArr cov_mat,
opencv_core.CvArr avg,
int flags) |
static void |
cvCalcPCA(opencv_core.CvArr data,
opencv_core.CvArr mean,
opencv_core.CvArr eigenvals,
opencv_core.CvArr eigenvects,
int flags) |
static void |
cvCartToPolar(opencv_core.CvArr x,
opencv_core.CvArr y,
opencv_core.CvArr magnitude) |
static void |
cvCartToPolar(opencv_core.CvArr x,
opencv_core.CvArr y,
opencv_core.CvArr magnitude,
opencv_core.CvArr angle,
int angle_in_degrees)
\
Math operations *
\
|
static float |
cvCbrt(float value) |
static int |
cvCeil(double value) |
static void |
cvChangeSeqBlock(Pointer reader,
int direction)
Internal sequence functions
|
static int |
cvCheckArr(opencv_core.CvArr arr) |
static int |
cvCheckArr(opencv_core.CvArr arr,
int flags,
double min_val,
double max_val) |
static int |
cvCheckArray(opencv_core.CvArr arg1,
int arg2,
double arg3,
double arg4) |
static int |
cvCheckHardwareSupport(int feature) |
static opencv_core.CvTermCriteria |
cvCheckTermCriteria(opencv_core.CvTermCriteria criteria,
double default_eps,
int default_max_iters) |
static void |
cvCircle(opencv_core.CvArr img,
int[] center,
int radius,
opencv_core.CvScalar color) |
static void |
cvCircle(opencv_core.CvArr img,
int[] center,
int radius,
opencv_core.CvScalar color,
int thickness,
int line_type,
int shift) |
static void |
cvCircle(opencv_core.CvArr img,
IntBuffer center,
int radius,
opencv_core.CvScalar color) |
static void |
cvCircle(opencv_core.CvArr img,
IntBuffer center,
int radius,
opencv_core.CvScalar color,
int thickness,
int line_type,
int shift) |
static void |
cvCircle(opencv_core.CvArr img,
opencv_core.CvPoint center,
int radius,
opencv_core.CvScalar color) |
static void |
cvCircle(opencv_core.CvArr img,
opencv_core.CvPoint center,
int radius,
opencv_core.CvScalar color,
int thickness,
int line_type,
int shift) |
static void |
cvClearGraph(opencv_core.CvGraph graph) |
static void |
cvClearMemStorage(opencv_core.CvMemStorage storage) |
static void |
cvClearND(opencv_core.CvArr arr,
int[] idx) |
static void |
cvClearND(opencv_core.CvArr arr,
IntBuffer idx) |
static void |
cvClearND(opencv_core.CvArr arr,
IntPointer idx) |
static void |
cvClearSeq(opencv_core.CvSeq seq) |
static void |
cvClearSet(opencv_core.CvSet set_header) |
static int |
cvClipLine(opencv_core.CvSize img_size,
int[] pt1,
int[] pt2) |
static int |
cvClipLine(opencv_core.CvSize img_size,
IntBuffer pt1,
IntBuffer pt2) |
static int |
cvClipLine(opencv_core.CvSize img_size,
opencv_core.CvPoint pt1,
opencv_core.CvPoint pt2) |
static Pointer |
cvClone(Pointer struct_ptr) |
static opencv_core.CvGraph |
cvCloneGraph(opencv_core.CvGraph graph,
opencv_core.CvMemStorage storage) |
static opencv_core.IplImage |
cvCloneImage(opencv_core.IplImage image) |
static opencv_core.CvMat |
cvCloneMat(opencv_core.CvMat mat) |
static opencv_core.CvMatND |
cvCloneMatND(opencv_core.CvMatND mat) |
static opencv_core.CvSeq |
cvCloneSeq(opencv_core.CvSeq seq) |
static opencv_core.CvSeq |
cvCloneSeq(opencv_core.CvSeq seq,
opencv_core.CvMemStorage storage) |
static opencv_core.CvSparseMat |
cvCloneSparseMat(opencv_core.CvSparseMat mat) |
static void |
cvCmp(opencv_core.CvArr src1,
opencv_core.CvArr src2,
opencv_core.CvArr dst,
int cmp_op) |
static void |
cvCmpS(opencv_core.CvArr src,
double value,
opencv_core.CvArr dst,
int cmp_op) |
static opencv_core.CvScalar |
cvColorToScalar(double packed_color,
int arrtype) |
static void |
cvCompleteSymm(opencv_core.CvMat matrix) |
static void |
cvCompleteSymm(opencv_core.CvMat matrix,
int LtoR) |
static void |
cvConvert(opencv_core.CvArr src,
opencv_core.CvArr dst) |
static void |
cvConvertScale(opencv_core.CvArr src,
opencv_core.CvArr dst) |
static void |
cvConvertScale(opencv_core.CvArr src,
opencv_core.CvArr dst,
double scale,
double shift) |
static void |
cvConvertScaleAbs(opencv_core.CvArr src,
opencv_core.CvArr dst) |
static void |
cvConvertScaleAbs(opencv_core.CvArr src,
opencv_core.CvArr dst,
double scale,
double shift) |
static void |
cvCopy(opencv_core.CvArr src,
opencv_core.CvArr dst) |
static void |
cvCopy(opencv_core.CvArr src,
opencv_core.CvArr dst,
opencv_core.CvArr mask) |
static int |
cvCountNonZero(opencv_core.CvArr arr) |
static opencv_core.CvMemStorage |
cvCreateChildMemStorage(opencv_core.CvMemStorage parent) |
static void |
cvCreateData(opencv_core.CvArr arr) |
static opencv_core.CvGraph |
cvCreateGraph(int graph_flags,
int header_size,
int vtx_size,
int edge_size,
opencv_core.CvMemStorage storage) |
static opencv_core.CvGraphScanner |
cvCreateGraphScanner(opencv_core.CvGraph graph) |
static opencv_core.CvGraphScanner |
cvCreateGraphScanner(opencv_core.CvGraph graph,
opencv_core.CvGraphVtx vtx,
int mask) |
static opencv_core.IplImage |
cvCreateImage(opencv_core.CvSize size,
int depth,
int channels) |
static opencv_core.IplImage |
cvCreateImageHeader(opencv_core.CvSize size,
int depth,
int channels) |
static opencv_core.CvMat |
cvCreateMat(int rows,
int cols,
int type) |
static opencv_core.CvMat |
cvCreateMatHeader(int rows,
int cols,
int type) |
static opencv_core.CvMatND |
cvCreateMatND(int dims,
int[] sizes,
int type) |
static opencv_core.CvMatND |
cvCreateMatND(int dims,
IntBuffer sizes,
int type) |
static opencv_core.CvMatND |
cvCreateMatND(int dims,
IntPointer sizes,
int type) |
static opencv_core.CvMatND |
cvCreateMatNDHeader(int dims,
int[] sizes,
int type) |
static opencv_core.CvMatND |
cvCreateMatNDHeader(int dims,
IntBuffer sizes,
int type) |
static opencv_core.CvMatND |
cvCreateMatNDHeader(int dims,
IntPointer sizes,
int type) |
static opencv_core.CvMemStorage |
cvCreateMemStorage() |
static opencv_core.CvMemStorage |
cvCreateMemStorage(int block_size) |
static opencv_core.CvSeq |
cvCreateSeq(int seq_flags,
long header_size,
long elem_size,
opencv_core.CvMemStorage storage) |
static void |
cvCreateSeqBlock(opencv_core.CvSeqWriter writer) |
static opencv_core.CvSet |
cvCreateSet(int set_flags,
int header_size,
int elem_size,
opencv_core.CvMemStorage storage) |
static opencv_core.CvSparseMat |
cvCreateSparseMat(int dims,
int[] sizes,
int type) |
static opencv_core.CvSparseMat |
cvCreateSparseMat(int dims,
IntBuffer sizes,
int type) |
static opencv_core.CvSparseMat |
cvCreateSparseMat(int dims,
IntPointer sizes,
int type) |
static void |
cvCrossProduct(opencv_core.CvArr src1,
opencv_core.CvArr src2,
opencv_core.CvArr dst)
\
Matrix operations *
\
|
static void |
cvCvtScale(opencv_core.CvArr arg1,
opencv_core.CvArr arg2,
double arg3,
double arg4) |
static void |
cvCvtScaleAbs(opencv_core.CvArr arg1,
opencv_core.CvArr arg2,
double arg3,
double arg4) |
static Pointer |
cvCvtSeqToArray(opencv_core.CvSeq seq,
Pointer elements) |
static Pointer |
cvCvtSeqToArray(opencv_core.CvSeq seq,
Pointer elements,
opencv_core.CvSlice slice) |
static void |
cvDCT(opencv_core.CvArr src,
opencv_core.CvArr dst,
int flags) |
static void |
cvDecRefData(opencv_core.CvArr arr) |
static double |
cvDet(opencv_core.CvArr mat) |
static void |
cvDFT(opencv_core.CvArr src,
opencv_core.CvArr dst,
int flags) |
static void |
cvDFT(opencv_core.CvArr src,
opencv_core.CvArr dst,
int flags,
int nonzero_rows) |
static void |
cvDiv(opencv_core.CvArr src1,
opencv_core.CvArr src2,
opencv_core.CvArr dst) |
static void |
cvDiv(opencv_core.CvArr src1,
opencv_core.CvArr src2,
opencv_core.CvArr dst,
double scale) |
static double |
cvDotProduct(opencv_core.CvArr src1,
opencv_core.CvArr src2) |
static void |
cvDrawCircle(opencv_core.CvArr arg1,
int[] arg2,
int arg3,
opencv_core.CvScalar arg4,
int arg5,
int arg6,
int arg7) |
static void |
cvDrawCircle(opencv_core.CvArr arg1,
IntBuffer arg2,
int arg3,
opencv_core.CvScalar arg4,
int arg5,
int arg6,
int arg7) |
static void |
cvDrawCircle(opencv_core.CvArr arg1,
opencv_core.CvPoint arg2,
int arg3,
opencv_core.CvScalar arg4,
int arg5,
int arg6,
int arg7) |
static void |
cvDrawContours(opencv_core.CvArr img,
opencv_core.CvSeq contour,
opencv_core.CvScalar external_color,
opencv_core.CvScalar hole_color,
int max_level) |
static void |
cvDrawContours(opencv_core.CvArr img,
opencv_core.CvSeq contour,
opencv_core.CvScalar external_color,
opencv_core.CvScalar hole_color,
int max_level,
int thickness,
int line_type,
int[] offset) |
static void |
cvDrawContours(opencv_core.CvArr img,
opencv_core.CvSeq contour,
opencv_core.CvScalar external_color,
opencv_core.CvScalar hole_color,
int max_level,
int thickness,
int line_type,
IntBuffer offset) |
static void |
cvDrawContours(opencv_core.CvArr img,
opencv_core.CvSeq contour,
opencv_core.CvScalar external_color,
opencv_core.CvScalar hole_color,
int max_level,
int thickness,
int line_type,
opencv_core.CvPoint offset) |
static void |
cvDrawEllipse(opencv_core.CvArr arg1,
int[] arg2,
opencv_core.CvSize arg3,
double arg4,
double arg5,
double arg6,
opencv_core.CvScalar arg7,
int arg8,
int arg9,
int arg10) |
static void |
cvDrawEllipse(opencv_core.CvArr arg1,
IntBuffer arg2,
opencv_core.CvSize arg3,
double arg4,
double arg5,
double arg6,
opencv_core.CvScalar arg7,
int arg8,
int arg9,
int arg10) |
static void |
cvDrawEllipse(opencv_core.CvArr arg1,
opencv_core.CvPoint arg2,
opencv_core.CvSize arg3,
double arg4,
double arg5,
double arg6,
opencv_core.CvScalar arg7,
int arg8,
int arg9,
int arg10) |
static void |
cvDrawLine(opencv_core.CvArr arg1,
int[] arg2,
int[] arg3,
opencv_core.CvScalar arg4,
int arg5,
int arg6,
int arg7) |
static void |
cvDrawLine(opencv_core.CvArr arg1,
IntBuffer arg2,
IntBuffer arg3,
opencv_core.CvScalar arg4,
int arg5,
int arg6,
int arg7) |
static void |
cvDrawLine(opencv_core.CvArr arg1,
opencv_core.CvPoint arg2,
opencv_core.CvPoint arg3,
opencv_core.CvScalar arg4,
int arg5,
int arg6,
int arg7) |
static void |
cvDrawPolyLine(opencv_core.CvArr arg1,
int[] arg2,
int[] arg3,
int arg4,
int arg5,
opencv_core.CvScalar arg6,
int arg7,
int arg8,
int arg9) |
static void |
cvDrawPolyLine(opencv_core.CvArr arg1,
IntBuffer arg2,
IntBuffer arg3,
int arg4,
int arg5,
opencv_core.CvScalar arg6,
int arg7,
int arg8,
int arg9) |
static void |
cvDrawPolyLine(opencv_core.CvArr arg1,
opencv_core.CvPoint arg2,
IntPointer arg3,
int arg4,
int arg5,
opencv_core.CvScalar arg6,
int arg7,
int arg8,
int arg9) |
static void |
cvDrawPolyLine(opencv_core.CvArr arg1,
PointerPointer arg2,
IntPointer arg3,
int arg4,
int arg5,
opencv_core.CvScalar arg6,
int arg7,
int arg8,
int arg9) |
static void |
cvDrawRect(opencv_core.CvArr arg1,
int[] arg2,
int[] arg3,
opencv_core.CvScalar arg4,
int arg5,
int arg6,
int arg7) |
static void |
cvDrawRect(opencv_core.CvArr arg1,
IntBuffer arg2,
IntBuffer arg3,
opencv_core.CvScalar arg4,
int arg5,
int arg6,
int arg7) |
static void |
cvDrawRect(opencv_core.CvArr arg1,
opencv_core.CvPoint arg2,
opencv_core.CvPoint arg3,
opencv_core.CvScalar arg4,
int arg5,
int arg6,
int arg7) |
static void |
cvEigenVV(opencv_core.CvArr mat,
opencv_core.CvArr evects,
opencv_core.CvArr evals) |
static void |
cvEigenVV(opencv_core.CvArr mat,
opencv_core.CvArr evects,
opencv_core.CvArr evals,
double eps,
int lowindex,
int highindex) |
static void |
cvEllipse(opencv_core.CvArr img,
int[] center,
opencv_core.CvSize axes,
double angle,
double start_angle,
double end_angle,
opencv_core.CvScalar color) |
static void |
cvEllipse(opencv_core.CvArr img,
int[] center,
opencv_core.CvSize axes,
double angle,
double start_angle,
double end_angle,
opencv_core.CvScalar color,
int thickness,
int line_type,
int shift) |
static void |
cvEllipse(opencv_core.CvArr img,
IntBuffer center,
opencv_core.CvSize axes,
double angle,
double start_angle,
double end_angle,
opencv_core.CvScalar color) |
static void |
cvEllipse(opencv_core.CvArr img,
IntBuffer center,
opencv_core.CvSize axes,
double angle,
double start_angle,
double end_angle,
opencv_core.CvScalar color,
int thickness,
int line_type,
int shift) |
static void |
cvEllipse(opencv_core.CvArr img,
opencv_core.CvPoint center,
opencv_core.CvSize axes,
double angle,
double start_angle,
double end_angle,
opencv_core.CvScalar color) |
static void |
cvEllipse(opencv_core.CvArr img,
opencv_core.CvPoint center,
opencv_core.CvSize axes,
double angle,
double start_angle,
double end_angle,
opencv_core.CvScalar color,
int thickness,
int line_type,
int shift) |
static int |
cvEllipse2Poly(int[] center,
opencv_core.CvSize axes,
int angle,
int arc_start,
int arc_end,
int[] pts,
int delta) |
static int |
cvEllipse2Poly(IntBuffer center,
opencv_core.CvSize axes,
int angle,
int arc_start,
int arc_end,
IntBuffer pts,
int delta) |
static int |
cvEllipse2Poly(opencv_core.CvPoint center,
opencv_core.CvSize axes,
int angle,
int arc_start,
int arc_end,
opencv_core.CvPoint pts,
int delta) |
static void |
cvEllipseBox(opencv_core.CvArr img,
opencv_core.CvBox2D box,
opencv_core.CvScalar color) |
static void |
cvEllipseBox(opencv_core.CvArr img,
opencv_core.CvBox2D box,
opencv_core.CvScalar color,
int thickness,
int line_type,
int shift) |
static opencv_core.CvSeq |
cvEndWriteSeq(opencv_core.CvSeqWriter writer) |
static void |
cvEndWriteStruct(opencv_core.CvFileStorage fs) |
static void |
cvError(int status,
BytePointer func_name,
BytePointer err_msg,
BytePointer file_name,
int line) |
static void |
cvError(int status,
String func_name,
String err_msg,
String file_name,
int line) |
static int |
cvErrorFromIppStatus(int ipp_status) |
static BytePointer |
cvErrorStr(int status) |
static void |
cvExp(opencv_core.CvArr src,
opencv_core.CvArr dst) |
static float |
cvFastArctan(float y,
float x) |
static void |
cvFFT(opencv_core.CvArr arg1,
opencv_core.CvArr arg2,
int arg3,
int arg4) |
static void |
cvFillConvexPoly(opencv_core.CvArr img,
int[] pts,
int npts,
opencv_core.CvScalar color) |
static void |
cvFillConvexPoly(opencv_core.CvArr img,
int[] pts,
int npts,
opencv_core.CvScalar color,
int line_type,
int shift) |
static void |
cvFillConvexPoly(opencv_core.CvArr img,
IntBuffer pts,
int npts,
opencv_core.CvScalar color) |
static void |
cvFillConvexPoly(opencv_core.CvArr img,
IntBuffer pts,
int npts,
opencv_core.CvScalar color,
int line_type,
int shift) |
static void |
cvFillConvexPoly(opencv_core.CvArr img,
opencv_core.CvPoint pts,
int npts,
opencv_core.CvScalar color) |
static void |
cvFillConvexPoly(opencv_core.CvArr img,
opencv_core.CvPoint pts,
int npts,
opencv_core.CvScalar color,
int line_type,
int shift) |
static void |
cvFillPoly(opencv_core.CvArr img,
int[] pts,
int[] npts,
int contours,
opencv_core.CvScalar color) |
static void |
cvFillPoly(opencv_core.CvArr img,
int[] pts,
int[] npts,
int contours,
opencv_core.CvScalar color,
int line_type,
int shift) |
static void |
cvFillPoly(opencv_core.CvArr img,
IntBuffer pts,
IntBuffer npts,
int contours,
opencv_core.CvScalar color) |
static void |
cvFillPoly(opencv_core.CvArr img,
IntBuffer pts,
IntBuffer npts,
int contours,
opencv_core.CvScalar color,
int line_type,
int shift) |
static void |
cvFillPoly(opencv_core.CvArr img,
opencv_core.CvPoint pts,
IntPointer npts,
int contours,
opencv_core.CvScalar color) |
static void |
cvFillPoly(opencv_core.CvArr img,
opencv_core.CvPoint pts,
IntPointer npts,
int contours,
opencv_core.CvScalar color,
int line_type,
int shift) |
static void |
cvFillPoly(opencv_core.CvArr img,
PointerPointer pts,
IntPointer npts,
int contours,
opencv_core.CvScalar color,
int line_type,
int shift) |
static opencv_core.CvGraphEdge |
cvFindGraphEdge(opencv_core.CvGraph graph,
int start_idx,
int end_idx) |
static opencv_core.CvGraphEdge |
cvFindGraphEdgeByPtr(opencv_core.CvGraph graph,
opencv_core.CvGraphVtx start_vtx,
opencv_core.CvGraphVtx end_vtx) |
static opencv_core.CvTypeInfo |
cvFindType(BytePointer type_name) |
static opencv_core.CvTypeInfo |
cvFindType(String type_name) |
static opencv_core.CvTypeInfo |
cvFirstType() |
static void |
cvFlip(opencv_core.CvArr src) |
static void |
cvFlip(opencv_core.CvArr src,
opencv_core.CvArr dst,
int flip_mode) |
static int |
cvFloor(double value) |
static void |
cvFlushSeqWriter(opencv_core.CvSeqWriter writer) |
static opencv_core.CvFont |
cvFont(double scale) |
static opencv_core.CvFont |
cvFont(double scale,
int thickness) |
static void |
cvFree_(Pointer ptr) |
static void |
cvGEMM(opencv_core.CvArr src1,
opencv_core.CvArr src2,
double alpha,
opencv_core.CvArr src3,
double beta,
opencv_core.CvArr dst) |
static void |
cvGEMM(opencv_core.CvArr src1,
opencv_core.CvArr src2,
double alpha,
opencv_core.CvArr src3,
double beta,
opencv_core.CvArr dst,
int tABC) |
static opencv_core.CvScalar |
cvGet1D(opencv_core.CvArr arr,
int idx0) |
static opencv_core.CvScalar |
cvGet2D(opencv_core.CvArr arr,
int idx0,
int idx1) |
static opencv_core.CvScalar |
cvGet3D(opencv_core.CvArr arr,
int idx0,
int idx1,
int idx2) |
static opencv_core.CvMat |
cvGetCol(opencv_core.CvArr arr,
opencv_core.CvMat submat,
int col) |
static opencv_core.CvMat |
cvGetCols(opencv_core.CvArr arr,
opencv_core.CvMat submat,
int start_col,
int end_col) |
static opencv_core.CvMat |
cvGetDiag(opencv_core.CvArr arr,
opencv_core.CvMat submat) |
static opencv_core.CvMat |
cvGetDiag(opencv_core.CvArr arr,
opencv_core.CvMat submat,
int diag) |
static int |
cvGetDims(opencv_core.CvArr arr) |
static int |
cvGetDims(opencv_core.CvArr arr,
int[] sizes) |
static int |
cvGetDims(opencv_core.CvArr arr,
IntBuffer sizes) |
static int |
cvGetDims(opencv_core.CvArr arr,
IntPointer sizes) |
static int |
cvGetDimSize(opencv_core.CvArr arr,
int index) |
static int |
cvGetElemType(opencv_core.CvArr arr) |
static int |
cvGetErrInfo(byte[] errcode_desc,
byte[] description,
byte[] filename,
int[] line) |
static int |
cvGetErrInfo(ByteBuffer errcode_desc,
ByteBuffer description,
ByteBuffer filename,
IntBuffer line) |
static int |
cvGetErrInfo(BytePointer errcode_desc,
BytePointer description,
BytePointer filename,
IntPointer line) |
static int |
cvGetErrInfo(PointerPointer errcode_desc,
PointerPointer description,
PointerPointer filename,
IntPointer line) |
static int |
cvGetErrMode() |
static int |
cvGetErrStatus()
Error Handling
|
static opencv_core.CvFileNode |
cvGetFileNode(opencv_core.CvFileStorage fs,
opencv_core.CvFileNode map,
opencv_core.CvStringHashNode key) |
static opencv_core.CvFileNode |
cvGetFileNode(opencv_core.CvFileStorage fs,
opencv_core.CvFileNode map,
opencv_core.CvStringHashNode key,
int create_missing) |
static opencv_core.CvFileNode |
cvGetFileNodeByName(opencv_core.CvFileStorage fs,
opencv_core.CvFileNode map,
BytePointer name) |
static opencv_core.CvFileNode |
cvGetFileNodeByName(opencv_core.CvFileStorage fs,
opencv_core.CvFileNode map,
String name) |
static BytePointer |
cvGetFileNodeName(opencv_core.CvFileNode node) |
static opencv_core.CvStringHashNode |
cvGetHashedKey(opencv_core.CvFileStorage fs,
BytePointer name) |
static opencv_core.CvStringHashNode |
cvGetHashedKey(opencv_core.CvFileStorage fs,
BytePointer name,
int len,
int create_missing) |
static opencv_core.CvStringHashNode |
cvGetHashedKey(opencv_core.CvFileStorage fs,
String name) |
static opencv_core.CvStringHashNode |
cvGetHashedKey(opencv_core.CvFileStorage fs,
String name,
int len,
int create_missing) |
static opencv_core.IplImage |
cvGetImage(opencv_core.CvArr arr,
opencv_core.IplImage image_header) |
static int |
cvGetImageCOI(opencv_core.IplImage image) |
static opencv_core.CvRect |
cvGetImageROI(opencv_core.IplImage image) |
static opencv_core.CvMat |
cvGetMat(opencv_core.CvArr arr,
opencv_core.CvMat header) |
static opencv_core.CvMat |
cvGetMat(opencv_core.CvArr arr,
opencv_core.CvMat header,
int[] coi,
int allowND) |
static opencv_core.CvMat |
cvGetMat(opencv_core.CvArr arr,
opencv_core.CvMat header,
IntBuffer coi,
int allowND) |
static opencv_core.CvMat |
cvGetMat(opencv_core.CvArr arr,
opencv_core.CvMat header,
IntPointer coi,
int allowND) |
static void |
cvGetModuleInfo(BytePointer module_name,
byte[] version,
byte[] loaded_addon_plugins) |
static void |
cvGetModuleInfo(BytePointer module_name,
ByteBuffer version,
ByteBuffer loaded_addon_plugins) |
static void |
cvGetModuleInfo(BytePointer module_name,
BytePointer version,
BytePointer loaded_addon_plugins) |
static void |
cvGetModuleInfo(BytePointer module_name,
PointerPointer version,
PointerPointer loaded_addon_plugins) |
static void |
cvGetModuleInfo(String module_name,
byte[] version,
byte[] loaded_addon_plugins) |
static void |
cvGetModuleInfo(String module_name,
ByteBuffer version,
ByteBuffer loaded_addon_plugins) |
static void |
cvGetModuleInfo(String module_name,
BytePointer version,
BytePointer loaded_addon_plugins) |
static opencv_core.CvScalar |
cvGetND(opencv_core.CvArr arr,
int[] idx) |
static opencv_core.CvScalar |
cvGetND(opencv_core.CvArr arr,
IntBuffer idx) |
static opencv_core.CvScalar |
cvGetND(opencv_core.CvArr arr,
IntPointer idx) |
static opencv_core.CvSparseNode |
cvGetNextSparseNode(opencv_core.CvSparseMatIterator mat_iterator) |
static int |
cvGetNumThreads()
Multi-Threading
|
static int |
cvGetOptimalDFTSize(int size0) |
static void |
cvGetRawData(opencv_core.CvArr arr,
byte[] data) |
static void |
cvGetRawData(opencv_core.CvArr arr,
byte[] data,
int[] step,
opencv_core.CvSize roi_size) |
static void |
cvGetRawData(opencv_core.CvArr arr,
ByteBuffer data) |
static void |
cvGetRawData(opencv_core.CvArr arr,
ByteBuffer data,
IntBuffer step,
opencv_core.CvSize roi_size) |
static void |
cvGetRawData(opencv_core.CvArr arr,
BytePointer data) |
static void |
cvGetRawData(opencv_core.CvArr arr,
BytePointer data,
IntPointer step,
opencv_core.CvSize roi_size) |
static void |
cvGetRawData(opencv_core.CvArr arr,
PointerPointer data,
IntPointer step,
opencv_core.CvSize roi_size) |
static double |
cvGetReal1D(opencv_core.CvArr arr,
int idx0) |
static double |
cvGetReal2D(opencv_core.CvArr arr,
int idx0,
int idx1) |
static double |
cvGetReal3D(opencv_core.CvArr arr,
int idx0,
int idx1,
int idx2) |
static double |
cvGetRealND(opencv_core.CvArr arr,
int[] idx) |
static double |
cvGetRealND(opencv_core.CvArr arr,
IntBuffer idx) |
static double |
cvGetRealND(opencv_core.CvArr arr,
IntPointer idx) |
static opencv_core.CvFileNode |
cvGetRootFileNode(opencv_core.CvFileStorage fs) |
static opencv_core.CvFileNode |
cvGetRootFileNode(opencv_core.CvFileStorage fs,
int stream_index) |
static opencv_core.CvMat |
cvGetRow(opencv_core.CvArr arr,
opencv_core.CvMat submat,
int row) |
static opencv_core.CvMat |
cvGetRows(opencv_core.CvArr arr,
opencv_core.CvMat submat,
int start_row,
int end_row) |
static opencv_core.CvMat |
cvGetRows(opencv_core.CvArr arr,
opencv_core.CvMat submat,
int start_row,
int end_row,
int delta_row) |
static BytePointer |
cvGetSeqElem(opencv_core.CvSeq seq,
int index) |
static int |
cvGetSeqReaderPos(opencv_core.CvSeqReader reader) |
static opencv_core.CvSetElem |
cvGetSetElem(opencv_core.CvSet set_header,
int idx) |
static opencv_core.CvSize |
cvGetSize(opencv_core.CvArr arr) |
static opencv_core.CvMat |
cvGetSubArr(opencv_core.CvArr arg1,
opencv_core.CvMat arg2,
opencv_core.CvRect arg3) |
static opencv_core.CvMat |
cvGetSubRect(opencv_core.CvArr arr,
opencv_core.CvMat submat,
opencv_core.CvRect rect) |
static void |
cvGetTextSize(BytePointer text_string,
opencv_core.CvFont font,
opencv_core.CvSize text_size,
int[] baseline) |
static void |
cvGetTextSize(BytePointer text_string,
opencv_core.CvFont font,
opencv_core.CvSize text_size,
IntBuffer baseline) |
static void |
cvGetTextSize(BytePointer text_string,
opencv_core.CvFont font,
opencv_core.CvSize text_size,
IntPointer baseline) |
static void |
cvGetTextSize(String text_string,
opencv_core.CvFont font,
opencv_core.CvSize text_size,
int[] baseline) |
static void |
cvGetTextSize(String text_string,
opencv_core.CvFont font,
opencv_core.CvSize text_size,
IntBuffer baseline) |
static void |
cvGetTextSize(String text_string,
opencv_core.CvFont font,
opencv_core.CvSize text_size,
IntPointer baseline) |
static int |
cvGetThreadNum() |
static long |
cvGetTickCount()
Measuring Execution Time
|
static double |
cvGetTickFrequency() |
static int |
cvGraphAddEdge(opencv_core.CvGraph graph,
int start_idx,
int end_idx) |
static int |
cvGraphAddEdge(opencv_core.CvGraph graph,
int start_idx,
int end_idx,
opencv_core.CvGraphEdge edge,
opencv_core.CvGraphEdge inserted_edge) |
static int |
cvGraphAddEdge(opencv_core.CvGraph graph,
int start_idx,
int end_idx,
opencv_core.CvGraphEdge edge,
PointerPointer inserted_edge) |
static int |
cvGraphAddEdgeByPtr(opencv_core.CvGraph graph,
opencv_core.CvGraphVtx start_vtx,
opencv_core.CvGraphVtx end_vtx) |
static int |
cvGraphAddEdgeByPtr(opencv_core.CvGraph graph,
opencv_core.CvGraphVtx start_vtx,
opencv_core.CvGraphVtx end_vtx,
opencv_core.CvGraphEdge edge,
opencv_core.CvGraphEdge inserted_edge) |
static int |
cvGraphAddEdgeByPtr(opencv_core.CvGraph graph,
opencv_core.CvGraphVtx start_vtx,
opencv_core.CvGraphVtx end_vtx,
opencv_core.CvGraphEdge edge,
PointerPointer inserted_edge) |
static int |
cvGraphAddVtx(opencv_core.CvGraph graph) |
static int |
cvGraphAddVtx(opencv_core.CvGraph graph,
opencv_core.CvGraphVtx vtx,
opencv_core.CvGraphVtx inserted_vtx) |
static int |
cvGraphAddVtx(opencv_core.CvGraph graph,
opencv_core.CvGraphVtx vtx,
PointerPointer inserted_vtx) |
static opencv_core.CvGraphEdge |
cvGraphFindEdge(opencv_core.CvGraph arg1,
int arg2,
int arg3) |
static opencv_core.CvGraphEdge |
cvGraphFindEdgeByPtr(opencv_core.CvGraph arg1,
opencv_core.CvGraphVtx arg2,
opencv_core.CvGraphVtx arg3) |
static void |
cvGraphRemoveEdge(opencv_core.CvGraph graph,
int start_idx,
int end_idx) |
static void |
cvGraphRemoveEdgeByPtr(opencv_core.CvGraph graph,
opencv_core.CvGraphVtx start_vtx,
opencv_core.CvGraphVtx end_vtx) |
static int |
cvGraphRemoveVtx(opencv_core.CvGraph graph,
int index) |
static int |
cvGraphRemoveVtxByPtr(opencv_core.CvGraph graph,
opencv_core.CvGraphVtx vtx) |
static int |
cvGraphVtxDegree(opencv_core.CvGraph graph,
int vtx_idx) |
static int |
cvGraphVtxDegreeByPtr(opencv_core.CvGraph graph,
opencv_core.CvGraphVtx vtx) |
static int |
cvGuiBoxReport(int status,
BytePointer func_name,
BytePointer err_msg,
BytePointer file_name,
int line,
Pointer userdata) |
static int |
cvGuiBoxReport(int status,
String func_name,
String err_msg,
String file_name,
int line,
Pointer userdata) |
static int |
cvIncRefData(opencv_core.CvArr arr) |
static void |
cvInitFont(opencv_core.CvFont font,
int font_face,
double hscale,
double vscale) |
static void |
cvInitFont(opencv_core.CvFont font,
int font_face,
double hscale,
double vscale,
double shear,
int thickness,
int line_type) |
static opencv_core.IplImage |
cvInitImageHeader(opencv_core.IplImage image,
opencv_core.CvSize size,
int depth,
int channels) |
static opencv_core.IplImage |
cvInitImageHeader(opencv_core.IplImage image,
opencv_core.CvSize size,
int depth,
int channels,
int origin,
int align) |
static int |
cvInitLineIterator(opencv_core.CvArr image,
int[] pt1,
int[] pt2,
opencv_core.CvLineIterator line_iterator) |
static int |
cvInitLineIterator(opencv_core.CvArr image,
int[] pt1,
int[] pt2,
opencv_core.CvLineIterator line_iterator,
int connectivity,
int left_to_right) |
static int |
cvInitLineIterator(opencv_core.CvArr image,
IntBuffer pt1,
IntBuffer pt2,
opencv_core.CvLineIterator line_iterator) |
static int |
cvInitLineIterator(opencv_core.CvArr image,
IntBuffer pt1,
IntBuffer pt2,
opencv_core.CvLineIterator line_iterator,
int connectivity,
int left_to_right) |
static int |
cvInitLineIterator(opencv_core.CvArr image,
opencv_core.CvPoint pt1,
opencv_core.CvPoint pt2,
opencv_core.CvLineIterator line_iterator) |
static int |
cvInitLineIterator(opencv_core.CvArr image,
opencv_core.CvPoint pt1,
opencv_core.CvPoint pt2,
opencv_core.CvLineIterator line_iterator,
int connectivity,
int left_to_right) |
static opencv_core.CvMat |
cvInitMatHeader(opencv_core.CvMat mat,
int rows,
int cols,
int type) |
static opencv_core.CvMat |
cvInitMatHeader(opencv_core.CvMat mat,
int rows,
int cols,
int type,
Pointer data,
int step) |
static opencv_core.CvMatND |
cvInitMatNDHeader(opencv_core.CvMatND mat,
int dims,
int[] sizes,
int type) |
static opencv_core.CvMatND |
cvInitMatNDHeader(opencv_core.CvMatND mat,
int dims,
int[] sizes,
int type,
Pointer data) |
static opencv_core.CvMatND |
cvInitMatNDHeader(opencv_core.CvMatND mat,
int dims,
IntBuffer sizes,
int type) |
static opencv_core.CvMatND |
cvInitMatNDHeader(opencv_core.CvMatND mat,
int dims,
IntBuffer sizes,
int type,
Pointer data) |
static opencv_core.CvMatND |
cvInitMatNDHeader(opencv_core.CvMatND mat,
int dims,
IntPointer sizes,
int type) |
static opencv_core.CvMatND |
cvInitMatNDHeader(opencv_core.CvMatND mat,
int dims,
IntPointer sizes,
int type,
Pointer data) |
static int |
cvInitNArrayIterator(int count,
opencv_core.CvArr arrs,
opencv_core.CvArr mask,
opencv_core.CvMatND stubs,
opencv_core.CvNArrayIterator array_iterator) |
static int |
cvInitNArrayIterator(int count,
opencv_core.CvArr arrs,
opencv_core.CvArr mask,
opencv_core.CvMatND stubs,
opencv_core.CvNArrayIterator array_iterator,
int flags) |
static int |
cvInitNArrayIterator(int count,
PointerPointer arrs,
opencv_core.CvArr mask,
opencv_core.CvMatND stubs,
opencv_core.CvNArrayIterator array_iterator,
int flags) |
static opencv_core.CvSparseNode |
cvInitSparseMatIterator(opencv_core.CvSparseMat mat,
opencv_core.CvSparseMatIterator mat_iterator) |
static void |
cvInitTreeNodeIterator(opencv_core.CvTreeNodeIterator tree_iterator,
Pointer first,
int max_level) |
static void |
cvInRange(opencv_core.CvArr src,
opencv_core.CvArr lower,
opencv_core.CvArr upper,
opencv_core.CvArr dst) |
static void |
cvInRangeS(opencv_core.CvArr src,
opencv_core.CvScalar lower,
opencv_core.CvScalar upper,
opencv_core.CvArr dst) |
static void |
cvInsertNodeIntoTree(Pointer node,
Pointer parent,
Pointer frame) |
static void |
cvInv(opencv_core.CvArr arg1,
opencv_core.CvArr arg2,
int arg3) |
static double |
cvInvert(opencv_core.CvArr src,
opencv_core.CvArr dst) |
static double |
cvInvert(opencv_core.CvArr src,
opencv_core.CvArr dst,
int method) |
static int |
cvIplDepth(int type) |
static int |
cvIsInf(double value) |
static int |
cvIsNaN(double value) |
static int |
cvKMeans2(opencv_core.CvArr samples,
int cluster_count,
opencv_core.CvArr labels,
opencv_core.CvTermCriteria termcrit) |
static int |
cvKMeans2(opencv_core.CvArr samples,
int cluster_count,
opencv_core.CvArr labels,
opencv_core.CvTermCriteria termcrit,
int attempts,
long[] rng,
int flags,
opencv_core.CvArr _centers,
double[] compactness) |
static int |
cvKMeans2(opencv_core.CvArr samples,
int cluster_count,
opencv_core.CvArr labels,
opencv_core.CvTermCriteria termcrit,
int attempts,
LongBuffer rng,
int flags,
opencv_core.CvArr _centers,
DoubleBuffer compactness) |
static int |
cvKMeans2(opencv_core.CvArr samples,
int cluster_count,
opencv_core.CvArr labels,
opencv_core.CvTermCriteria termcrit,
int attempts,
LongPointer rng,
int flags,
opencv_core.CvArr _centers,
DoublePointer compactness) |
static void |
cvLine(opencv_core.CvArr img,
int[] pt1,
int[] pt2,
opencv_core.CvScalar color) |
static void |
cvLine(opencv_core.CvArr img,
int[] pt1,
int[] pt2,
opencv_core.CvScalar color,
int thickness,
int line_type,
int shift) |
static void |
cvLine(opencv_core.CvArr img,
IntBuffer pt1,
IntBuffer pt2,
opencv_core.CvScalar color) |
static void |
cvLine(opencv_core.CvArr img,
IntBuffer pt1,
IntBuffer pt2,
opencv_core.CvScalar color,
int thickness,
int line_type,
int shift) |
static void |
cvLine(opencv_core.CvArr img,
opencv_core.CvPoint pt1,
opencv_core.CvPoint pt2,
opencv_core.CvScalar color) |
static void |
cvLine(opencv_core.CvArr img,
opencv_core.CvPoint pt1,
opencv_core.CvPoint pt2,
opencv_core.CvScalar color,
int thickness,
int line_type,
int shift) |
static Pointer |
cvLoad(BytePointer filename) |
static Pointer |
cvLoad(BytePointer filename,
opencv_core.CvMemStorage memstorage,
BytePointer name,
byte[] real_name) |
static Pointer |
cvLoad(BytePointer filename,
opencv_core.CvMemStorage memstorage,
BytePointer name,
ByteBuffer real_name) |
static Pointer |
cvLoad(BytePointer filename,
opencv_core.CvMemStorage memstorage,
BytePointer name,
BytePointer real_name) |
static Pointer |
cvLoad(BytePointer filename,
opencv_core.CvMemStorage memstorage,
BytePointer name,
PointerPointer real_name) |
static Pointer |
cvLoad(String filename) |
static Pointer |
cvLoad(String filename,
opencv_core.CvMemStorage memstorage,
String name,
byte[] real_name) |
static Pointer |
cvLoad(String filename,
opencv_core.CvMemStorage memstorage,
String name,
ByteBuffer real_name) |
static Pointer |
cvLoad(String filename,
opencv_core.CvMemStorage memstorage,
String name,
BytePointer real_name) |
static void |
cvLog(opencv_core.CvArr src,
opencv_core.CvArr dst) |
static void |
cvLUT(opencv_core.CvArr src,
opencv_core.CvArr dst,
opencv_core.CvArr lut) |
static double |
cvMahalanobis(opencv_core.CvArr vec1,
opencv_core.CvArr vec2,
opencv_core.CvArr mat) |
static double |
cvMahalonobis(opencv_core.CvArr arg1,
opencv_core.CvArr arg2,
opencv_core.CvArr arg3) |
static opencv_core.CvSeq |
cvMakeSeqHeaderForArray(int seq_type,
int header_size,
int elem_size,
Pointer elements,
int total,
opencv_core.CvSeq seq,
opencv_core.CvSeqBlock block) |
static opencv_core.CvMat |
cvMat(int rows,
int cols,
int type) |
static opencv_core.CvMat |
cvMat(int rows,
int cols,
int type,
Pointer data) |
static void |
cvMatMul(opencv_core.CvArr src1,
opencv_core.CvArr src2,
opencv_core.CvArr dst) |
static void |
cvMatMulAdd(opencv_core.CvArr src1,
opencv_core.CvArr src2,
opencv_core.CvArr src3,
opencv_core.CvArr dst) |
static void |
cvMatMulAddEx(opencv_core.CvArr arg1,
opencv_core.CvArr arg2,
double arg3,
opencv_core.CvArr arg4,
double arg5,
opencv_core.CvArr arg6,
int arg7) |
static void |
cvMatMulAddS(opencv_core.CvArr arg1,
opencv_core.CvArr arg2,
opencv_core.CvMat arg3,
opencv_core.CvMat arg4) |
static void |
cvMax(opencv_core.CvArr src1,
opencv_core.CvArr src2,
opencv_core.CvArr dst) |
static void |
cvMaxS(opencv_core.CvArr src,
double value,
opencv_core.CvArr dst) |
static Pointer |
cvMemStorageAlloc(opencv_core.CvMemStorage storage,
long size) |
static opencv_core.CvString |
cvMemStorageAllocString(opencv_core.CvMemStorage storage,
BytePointer ptr) |
static opencv_core.CvString |
cvMemStorageAllocString(opencv_core.CvMemStorage storage,
BytePointer ptr,
int len) |
static opencv_core.CvString |
cvMemStorageAllocString(opencv_core.CvMemStorage storage,
String ptr) |
static opencv_core.CvString |
cvMemStorageAllocString(opencv_core.CvMemStorage storage,
String ptr,
int len) |
static void |
cvMerge(opencv_core.CvArr src0,
opencv_core.CvArr src1,
opencv_core.CvArr src2,
opencv_core.CvArr src3,
opencv_core.CvArr dst) |
static double |
cvmGet(opencv_core.CvMat mat,
int row,
int col) |
static void |
cvMin(opencv_core.CvArr src1,
opencv_core.CvArr src2,
opencv_core.CvArr dst) |
static void |
cvMinMaxLoc(opencv_core.CvArr arr,
double[] min_val,
double[] max_val) |
static void |
cvMinMaxLoc(opencv_core.CvArr arr,
double[] min_val,
double[] max_val,
int[] min_loc,
int[] max_loc,
opencv_core.CvArr mask) |
static void |
cvMinMaxLoc(opencv_core.CvArr arr,
DoubleBuffer min_val,
DoubleBuffer max_val) |
static void |
cvMinMaxLoc(opencv_core.CvArr arr,
DoubleBuffer min_val,
DoubleBuffer max_val,
IntBuffer min_loc,
IntBuffer max_loc,
opencv_core.CvArr mask) |
static void |
cvMinMaxLoc(opencv_core.CvArr arr,
DoublePointer min_val,
DoublePointer max_val) |
static void |
cvMinMaxLoc(opencv_core.CvArr arr,
DoublePointer min_val,
DoublePointer max_val,
opencv_core.CvPoint min_loc,
opencv_core.CvPoint max_loc,
opencv_core.CvArr mask) |
static void |
cvMinS(opencv_core.CvArr src,
double value,
opencv_core.CvArr dst) |
static void |
cvMirror(opencv_core.CvArr arg1,
opencv_core.CvArr arg2,
int arg3) |
static void |
cvMixChannels(opencv_core.CvArr src,
int src_count,
opencv_core.CvArr dst,
int dst_count,
int[] from_to,
int pair_count) |
static void |
cvMixChannels(opencv_core.CvArr src,
int src_count,
opencv_core.CvArr dst,
int dst_count,
IntBuffer from_to,
int pair_count) |
static void |
cvMixChannels(opencv_core.CvArr src,
int src_count,
opencv_core.CvArr dst,
int dst_count,
IntPointer from_to,
int pair_count) |
static void |
cvMixChannels(PointerPointer src,
int src_count,
PointerPointer dst,
int dst_count,
IntPointer from_to,
int pair_count) |
static void |
cvmSet(opencv_core.CvMat mat,
int row,
int col,
double value) |
static void |
cvMul(opencv_core.CvArr src1,
opencv_core.CvArr src2,
opencv_core.CvArr dst) |
static void |
cvMul(opencv_core.CvArr src1,
opencv_core.CvArr src2,
opencv_core.CvArr dst,
double scale) |
static void |
cvMulSpectrums(opencv_core.CvArr src1,
opencv_core.CvArr src2,
opencv_core.CvArr dst,
int flags) |
static void |
cvMulTransposed(opencv_core.CvArr src,
opencv_core.CvArr dst,
int order) |
static void |
cvMulTransposed(opencv_core.CvArr src,
opencv_core.CvArr dst,
int order,
opencv_core.CvArr delta,
double scale) |
static int |
cvNextGraphItem(opencv_core.CvGraphScanner scanner) |
static int |
cvNextNArraySlice(opencv_core.CvNArrayIterator array_iterator) |
static Pointer |
cvNextTreeNode(opencv_core.CvTreeNodeIterator tree_iterator) |
static double |
cvNorm(opencv_core.CvArr arr1) |
static double |
cvNorm(opencv_core.CvArr arr1,
opencv_core.CvArr arr2,
int norm_type,
opencv_core.CvArr mask) |
static void |
cvNormalize(opencv_core.CvArr src,
opencv_core.CvArr dst) |
static void |
cvNormalize(opencv_core.CvArr src,
opencv_core.CvArr dst,
double a,
double b,
int norm_type,
opencv_core.CvArr mask) |
static void |
cvNot(opencv_core.CvArr src,
opencv_core.CvArr dst) |
static int |
cvNulDevReport(int status,
BytePointer func_name,
BytePointer err_msg,
BytePointer file_name,
int line,
Pointer userdata) |
static int |
cvNulDevReport(int status,
String func_name,
String err_msg,
String file_name,
int line,
Pointer userdata) |
static opencv_core.CvFileStorage |
cvOpenFileStorage(BytePointer filename,
opencv_core.CvMemStorage memstorage,
int flags) |
static opencv_core.CvFileStorage |
cvOpenFileStorage(BytePointer filename,
opencv_core.CvMemStorage memstorage,
int flags,
BytePointer encoding)
High-level functions
|
static opencv_core.CvFileStorage |
cvOpenFileStorage(String filename,
opencv_core.CvMemStorage memstorage,
int flags) |
static opencv_core.CvFileStorage |
cvOpenFileStorage(String filename,
opencv_core.CvMemStorage memstorage,
int flags,
String encoding) |
static void |
cvOr(opencv_core.CvArr src1,
opencv_core.CvArr src2,
opencv_core.CvArr dst) |
static void |
cvOr(opencv_core.CvArr src1,
opencv_core.CvArr src2,
opencv_core.CvArr dst,
opencv_core.CvArr mask) |
static void |
cvOrS(opencv_core.CvArr src,
opencv_core.CvScalar value,
opencv_core.CvArr dst) |
static void |
cvOrS(opencv_core.CvArr src,
opencv_core.CvScalar value,
opencv_core.CvArr dst,
opencv_core.CvArr mask) |
static void |
cvPerspectiveTransform(opencv_core.CvArr src,
opencv_core.CvArr dst,
opencv_core.CvMat mat) |
static opencv_core.CvPoint |
cvPoint(int x,
int y) |
static opencv_core.CvPoint2D32f |
cvPoint2D32f(double x,
double y) |
static opencv_core.CvPoint2D64f |
cvPoint2D64f(double x,
double y) |
static opencv_core.CvPoint3D32f |
cvPoint3D32f(double x,
double y,
double z) |
static opencv_core.CvPoint3D64f |
cvPoint3D64f(double x,
double y,
double z) |
static int[] |
cvPointFrom32f(float[] point) |
static IntBuffer |
cvPointFrom32f(FloatBuffer point) |
static opencv_core.CvPoint |
cvPointFrom32f(opencv_core.CvPoint2D32f point) |
static float[] |
cvPointTo32f(int[] point) |
static FloatBuffer |
cvPointTo32f(IntBuffer point) |
static opencv_core.CvPoint2D32f |
cvPointTo32f(opencv_core.CvPoint point) |
static void |
cvPolarToCart(opencv_core.CvArr magnitude,
opencv_core.CvArr angle,
opencv_core.CvArr x,
opencv_core.CvArr y) |
static void |
cvPolarToCart(opencv_core.CvArr magnitude,
opencv_core.CvArr angle,
opencv_core.CvArr x,
opencv_core.CvArr y,
int angle_in_degrees) |
static void |
cvPolyLine(opencv_core.CvArr img,
int[] pts,
int[] npts,
int contours,
int is_closed,
opencv_core.CvScalar color) |
static void |
cvPolyLine(opencv_core.CvArr img,
int[] pts,
int[] npts,
int contours,
int is_closed,
opencv_core.CvScalar color,
int thickness,
int line_type,
int shift) |
static void |
cvPolyLine(opencv_core.CvArr img,
IntBuffer pts,
IntBuffer npts,
int contours,
int is_closed,
opencv_core.CvScalar color) |
static void |
cvPolyLine(opencv_core.CvArr img,
IntBuffer pts,
IntBuffer npts,
int contours,
int is_closed,
opencv_core.CvScalar color,
int thickness,
int line_type,
int shift) |
static void |
cvPolyLine(opencv_core.CvArr img,
opencv_core.CvPoint pts,
IntPointer npts,
int contours,
int is_closed,
opencv_core.CvScalar color) |
static void |
cvPolyLine(opencv_core.CvArr img,
opencv_core.CvPoint pts,
IntPointer npts,
int contours,
int is_closed,
opencv_core.CvScalar color,
int thickness,
int line_type,
int shift) |
static void |
cvPolyLine(opencv_core.CvArr img,
PointerPointer pts,
IntPointer npts,
int contours,
int is_closed,
opencv_core.CvScalar color,
int thickness,
int line_type,
int shift) |
static void |
cvPow(opencv_core.CvArr src,
opencv_core.CvArr dst,
double power) |
static Pointer |
cvPrevTreeNode(opencv_core.CvTreeNodeIterator tree_iterator) |
static void |
cvProjectPCA(opencv_core.CvArr data,
opencv_core.CvArr mean,
opencv_core.CvArr eigenvects,
opencv_core.CvArr result) |
static BytePointer |
cvPtr1D(opencv_core.CvArr arr,
int idx0) |
static byte[] |
cvPtr1D(opencv_core.CvArr arr,
int idx0,
int[] type) |
static ByteBuffer |
cvPtr1D(opencv_core.CvArr arr,
int idx0,
IntBuffer type) |
static BytePointer |
cvPtr1D(opencv_core.CvArr arr,
int idx0,
IntPointer type) |
static BytePointer |
cvPtr2D(opencv_core.CvArr arr,
int idx0,
int idx1) |
static byte[] |
cvPtr2D(opencv_core.CvArr arr,
int idx0,
int idx1,
int[] type) |
static ByteBuffer |
cvPtr2D(opencv_core.CvArr arr,
int idx0,
int idx1,
IntBuffer type) |
static BytePointer |
cvPtr2D(opencv_core.CvArr arr,
int idx0,
int idx1,
IntPointer type) |
static BytePointer |
cvPtr3D(opencv_core.CvArr arr,
int idx0,
int idx1,
int idx2) |
static byte[] |
cvPtr3D(opencv_core.CvArr arr,
int idx0,
int idx1,
int idx2,
int[] type) |
static ByteBuffer |
cvPtr3D(opencv_core.CvArr arr,
int idx0,
int idx1,
int idx2,
IntBuffer type) |
static BytePointer |
cvPtr3D(opencv_core.CvArr arr,
int idx0,
int idx1,
int idx2,
IntPointer type) |
static byte[] |
cvPtrND(opencv_core.CvArr arr,
int[] idx) |
static byte[] |
cvPtrND(opencv_core.CvArr arr,
int[] idx,
int[] type,
int create_node,
int[] precalc_hashval) |
static ByteBuffer |
cvPtrND(opencv_core.CvArr arr,
IntBuffer idx) |
static ByteBuffer |
cvPtrND(opencv_core.CvArr arr,
IntBuffer idx,
IntBuffer type,
int create_node,
IntBuffer precalc_hashval) |
static BytePointer |
cvPtrND(opencv_core.CvArr arr,
IntPointer idx) |
static BytePointer |
cvPtrND(opencv_core.CvArr arr,
IntPointer idx,
IntPointer type,
int create_node,
IntPointer precalc_hashval) |
static void |
cvPutText(opencv_core.CvArr img,
BytePointer text,
int[] org,
opencv_core.CvFont font,
opencv_core.CvScalar color) |
static void |
cvPutText(opencv_core.CvArr img,
BytePointer text,
IntBuffer org,
opencv_core.CvFont font,
opencv_core.CvScalar color) |
static void |
cvPutText(opencv_core.CvArr img,
BytePointer text,
opencv_core.CvPoint org,
opencv_core.CvFont font,
opencv_core.CvScalar color) |
static void |
cvPutText(opencv_core.CvArr img,
String text,
int[] org,
opencv_core.CvFont font,
opencv_core.CvScalar color) |
static void |
cvPutText(opencv_core.CvArr img,
String text,
IntBuffer org,
opencv_core.CvFont font,
opencv_core.CvScalar color) |
static void |
cvPutText(opencv_core.CvArr img,
String text,
opencv_core.CvPoint org,
opencv_core.CvFont font,
opencv_core.CvScalar color) |
static void |
cvRandArr(long[] rng,
opencv_core.CvArr arr,
int dist_type,
opencv_core.CvScalar param1,
opencv_core.CvScalar param2) |
static void |
cvRandArr(LongBuffer rng,
opencv_core.CvArr arr,
int dist_type,
opencv_core.CvScalar param1,
opencv_core.CvScalar param2) |
static void |
cvRandArr(LongPointer rng,
opencv_core.CvArr arr,
int dist_type,
opencv_core.CvScalar param1,
opencv_core.CvScalar param2) |
static int |
cvRandInt(long[] rng) |
static int |
cvRandInt(LongBuffer rng) |
static int |
cvRandInt(LongPointer rng) |
static double |
cvRandReal(long[] rng) |
static double |
cvRandReal(LongBuffer rng) |
static double |
cvRandReal(LongPointer rng) |
static void |
cvRandShuffle(opencv_core.CvArr mat,
long[] rng) |
static void |
cvRandShuffle(opencv_core.CvArr mat,
long[] rng,
double iter_factor) |
static void |
cvRandShuffle(opencv_core.CvArr mat,
LongBuffer rng) |
static void |
cvRandShuffle(opencv_core.CvArr mat,
LongBuffer rng,
double iter_factor) |
static void |
cvRandShuffle(opencv_core.CvArr mat,
LongPointer rng) |
static void |
cvRandShuffle(opencv_core.CvArr mat,
LongPointer rng,
double iter_factor) |
static opencv_core.CvArr |
cvRange(opencv_core.CvArr mat,
double start,
double end) |
static void |
cvRawDataToScalar(Pointer data,
int type,
opencv_core.CvScalar scalar) |
static Pointer |
cvRead(opencv_core.CvFileStorage fs,
opencv_core.CvFileNode node) |
static Pointer |
cvRead(opencv_core.CvFileStorage fs,
opencv_core.CvFileNode node,
opencv_core.CvAttrList attributes) |
static Pointer |
cvReadByName(opencv_core.CvFileStorage fs,
opencv_core.CvFileNode map,
BytePointer name) |
static Pointer |
cvReadByName(opencv_core.CvFileStorage fs,
opencv_core.CvFileNode map,
BytePointer name,
opencv_core.CvAttrList attributes) |
static Pointer |
cvReadByName(opencv_core.CvFileStorage fs,
opencv_core.CvFileNode map,
String name) |
static Pointer |
cvReadByName(opencv_core.CvFileStorage fs,
opencv_core.CvFileNode map,
String name,
opencv_core.CvAttrList attributes) |
static int |
cvReadInt(opencv_core.CvFileNode node) |
static int |
cvReadInt(opencv_core.CvFileNode node,
int default_value) |
static int |
cvReadIntByName(opencv_core.CvFileStorage fs,
opencv_core.CvFileNode map,
BytePointer name) |
static int |
cvReadIntByName(opencv_core.CvFileStorage fs,
opencv_core.CvFileNode map,
BytePointer name,
int default_value) |
static int |
cvReadIntByName(opencv_core.CvFileStorage fs,
opencv_core.CvFileNode map,
String name) |
static int |
cvReadIntByName(opencv_core.CvFileStorage fs,
opencv_core.CvFileNode map,
String name,
int default_value) |
static void |
cvReadRawData(opencv_core.CvFileStorage fs,
opencv_core.CvFileNode src,
Pointer dst,
BytePointer dt) |
static void |
cvReadRawData(opencv_core.CvFileStorage fs,
opencv_core.CvFileNode src,
Pointer dst,
String dt) |
static void |
cvReadRawDataSlice(opencv_core.CvFileStorage fs,
opencv_core.CvSeqReader reader,
int count,
Pointer dst,
BytePointer dt) |
static void |
cvReadRawDataSlice(opencv_core.CvFileStorage fs,
opencv_core.CvSeqReader reader,
int count,
Pointer dst,
String dt) |
static double |
cvReadReal(opencv_core.CvFileNode node) |
static double |
cvReadReal(opencv_core.CvFileNode node,
double default_value) |
static double |
cvReadRealByName(opencv_core.CvFileStorage fs,
opencv_core.CvFileNode map,
BytePointer name) |
static double |
cvReadRealByName(opencv_core.CvFileStorage fs,
opencv_core.CvFileNode map,
BytePointer name,
double default_value) |
static double |
cvReadRealByName(opencv_core.CvFileStorage fs,
opencv_core.CvFileNode map,
String name) |
static double |
cvReadRealByName(opencv_core.CvFileStorage fs,
opencv_core.CvFileNode map,
String name,
double default_value) |
static BytePointer |
cvReadString(opencv_core.CvFileNode node) |
static BytePointer |
cvReadString(opencv_core.CvFileNode node,
BytePointer default_value) |
static String |
cvReadString(opencv_core.CvFileNode node,
String default_value) |
static BytePointer |
cvReadStringByName(opencv_core.CvFileStorage fs,
opencv_core.CvFileNode map,
BytePointer name) |
static BytePointer |
cvReadStringByName(opencv_core.CvFileStorage fs,
opencv_core.CvFileNode map,
BytePointer name,
BytePointer default_value) |
static String |
cvReadStringByName(opencv_core.CvFileStorage fs,
opencv_core.CvFileNode map,
String name) |
static String |
cvReadStringByName(opencv_core.CvFileStorage fs,
opencv_core.CvFileNode map,
String name,
String default_value) |
static opencv_core.CvScalar |
cvRealScalar(double val0) |
static opencv_core.CvRect |
cvRect(int x,
int y,
int width,
int height) |
static void |
cvRectangle(opencv_core.CvArr img,
int[] pt1,
int[] pt2,
opencv_core.CvScalar color) |
static void |
cvRectangle(opencv_core.CvArr img,
int[] pt1,
int[] pt2,
opencv_core.CvScalar color,
int thickness,
int line_type,
int shift) |
static void |
cvRectangle(opencv_core.CvArr img,
IntBuffer pt1,
IntBuffer pt2,
opencv_core.CvScalar color) |
static void |
cvRectangle(opencv_core.CvArr img,
IntBuffer pt1,
IntBuffer pt2,
opencv_core.CvScalar color,
int thickness,
int line_type,
int shift) |
static void |
cvRectangle(opencv_core.CvArr img,
opencv_core.CvPoint pt1,
opencv_core.CvPoint pt2,
opencv_core.CvScalar color) |
static void |
cvRectangle(opencv_core.CvArr img,
opencv_core.CvPoint pt1,
opencv_core.CvPoint pt2,
opencv_core.CvScalar color,
int thickness,
int line_type,
int shift) |
static void |
cvRectangleR(opencv_core.CvArr img,
opencv_core.CvRect r,
opencv_core.CvScalar color) |
static void |
cvRectangleR(opencv_core.CvArr img,
opencv_core.CvRect r,
opencv_core.CvScalar color,
int thickness,
int line_type,
int shift) |
static opencv_core.IplROI |
cvRectToROI(opencv_core.CvRect rect,
int coi) |
static opencv_core.CvErrorCallback |
cvRedirectError(opencv_core.CvErrorCallback error_handler) |
static opencv_core.CvErrorCallback |
cvRedirectError(opencv_core.CvErrorCallback error_handler,
Pointer userdata,
Pointer prev_userdata) |
static opencv_core.CvErrorCallback |
cvRedirectError(opencv_core.CvErrorCallback error_handler,
Pointer userdata,
PointerPointer prev_userdata) |
static void |
cvReduce(opencv_core.CvArr src,
opencv_core.CvArr dst) |
static void |
cvReduce(opencv_core.CvArr src,
opencv_core.CvArr dst,
int dim,
int op) |
static int |
cvRegisterModule(opencv_core.CvModuleInfo module_info)
\
System functions *
\
|
static void |
cvRegisterType(opencv_core.CvTypeInfo info)
Adding own types
|
static void |
cvRelease(Pointer struct_ptr) |
static void |
cvRelease(PointerPointer struct_ptr) |
static void |
cvReleaseData(opencv_core.CvArr arr) |
static void |
cvReleaseFileStorage(opencv_core.CvFileStorage fs) |
static void |
cvReleaseFileStorage(PointerPointer fs) |
static void |
cvReleaseGraphScanner(opencv_core.CvGraphScanner scanner) |
static void |
cvReleaseGraphScanner(PointerPointer scanner) |
static void |
cvReleaseImage(opencv_core.IplImage image) |
static void |
cvReleaseImage(PointerPointer image) |
static void |
cvReleaseImageHeader(opencv_core.IplImage image) |
static void |
cvReleaseImageHeader(PointerPointer image) |
static void |
cvReleaseMat(opencv_core.CvMat mat) |
static void |
cvReleaseMat(PointerPointer mat) |
static void |
cvReleaseMatND(opencv_core.CvMatND mat) |
static void |
cvReleaseMatND(PointerPointer mat) |
static void |
cvReleaseMemStorage(opencv_core.CvMemStorage storage) |
static void |
cvReleaseMemStorage(PointerPointer storage) |
static void |
cvReleaseSparseMat(opencv_core.CvSparseMat mat) |
static void |
cvReleaseSparseMat(PointerPointer mat) |
static void |
cvRemoveNodeFromTree(Pointer node,
Pointer frame) |
static void |
cvRepeat(opencv_core.CvArr src,
opencv_core.CvArr dst) |
static void |
cvResetImageROI(opencv_core.IplImage image) |
static opencv_core.CvMat |
cvReshape(opencv_core.CvArr arr,
opencv_core.CvMat header,
int new_cn) |
static opencv_core.CvMat |
cvReshape(opencv_core.CvArr arr,
opencv_core.CvMat header,
int new_cn,
int new_rows) |
static opencv_core.CvArr |
cvReshapeMatND(opencv_core.CvArr arr,
int sizeof_header,
opencv_core.CvArr header,
int new_cn,
int new_dims,
int[] new_sizes) |
static opencv_core.CvArr |
cvReshapeMatND(opencv_core.CvArr arr,
int sizeof_header,
opencv_core.CvArr header,
int new_cn,
int new_dims,
IntBuffer new_sizes) |
static opencv_core.CvArr |
cvReshapeMatND(opencv_core.CvArr arr,
int sizeof_header,
opencv_core.CvArr header,
int new_cn,
int new_dims,
IntPointer new_sizes) |
static void |
cvRestoreMemStoragePos(opencv_core.CvMemStorage storage,
opencv_core.CvMemStoragePos pos) |
static long |
cvRNG() |
static long |
cvRNG(long seed) |
static opencv_core.CvRect |
cvROIToRect(opencv_core.IplROI roi) |
static int |
cvRound(double value) |
static void |
cvSave(BytePointer filename,
Pointer struct_ptr) |
static void |
cvSave(BytePointer filename,
Pointer struct_ptr,
BytePointer name,
BytePointer comment,
opencv_core.CvAttrList attributes) |
static void |
cvSave(String filename,
Pointer struct_ptr) |
static void |
cvSave(String filename,
Pointer struct_ptr,
String name,
String comment,
opencv_core.CvAttrList attributes) |
static void |
cvSaveMemStoragePos(opencv_core.CvMemStorage storage,
opencv_core.CvMemStoragePos pos) |
static opencv_core.CvScalar |
cvScalar(double val0) |
static opencv_core.CvScalar |
cvScalar(double val0,
double val1,
double val2,
double val3) |
static opencv_core.CvScalar |
cvScalarAll(double val0123) |
static void |
cvScalarToRawData(opencv_core.CvScalar scalar,
Pointer data,
int type) |
static void |
cvScalarToRawData(opencv_core.CvScalar scalar,
Pointer data,
int type,
int extend_to_12) |
static void |
cvScale(opencv_core.CvArr arg1,
opencv_core.CvArr arg2,
double arg3,
double arg4) |
static void |
cvScaleAdd(opencv_core.CvArr src1,
opencv_core.CvScalar scale,
opencv_core.CvArr src2,
opencv_core.CvArr dst) |
static int |
cvSeqElemIdx(opencv_core.CvSeq seq,
Pointer element) |
static int |
cvSeqElemIdx(opencv_core.CvSeq seq,
Pointer element,
opencv_core.CvSeqBlock block) |
static int |
cvSeqElemIdx(opencv_core.CvSeq seq,
Pointer element,
PointerPointer block) |
static BytePointer |
cvSeqInsert(opencv_core.CvSeq seq,
int before_index) |
static BytePointer |
cvSeqInsert(opencv_core.CvSeq seq,
int before_index,
Pointer element) |
static void |
cvSeqInsertSlice(opencv_core.CvSeq seq,
int before_index,
opencv_core.CvArr from_arr) |
static void |
cvSeqInvert(opencv_core.CvSeq seq) |
static int |
cvSeqPartition(opencv_core.CvSeq seq,
opencv_core.CvMemStorage storage,
opencv_core.CvSeq labels,
opencv_core.CvCmpFunc is_equal,
Pointer userdata) |
static int |
cvSeqPartition(opencv_core.CvSeq seq,
opencv_core.CvMemStorage storage,
PointerPointer labels,
opencv_core.CvCmpFunc is_equal,
Pointer userdata) |
static void |
cvSeqPop(opencv_core.CvSeq seq) |
static void |
cvSeqPop(opencv_core.CvSeq seq,
Pointer element) |
static void |
cvSeqPopFront(opencv_core.CvSeq seq) |
static void |
cvSeqPopFront(opencv_core.CvSeq seq,
Pointer element) |
static void |
cvSeqPopMulti(opencv_core.CvSeq seq,
Pointer elements,
int count) |
static void |
cvSeqPopMulti(opencv_core.CvSeq seq,
Pointer elements,
int count,
int in_front) |
static BytePointer |
cvSeqPush(opencv_core.CvSeq seq) |
static BytePointer |
cvSeqPush(opencv_core.CvSeq seq,
Pointer element) |
static BytePointer |
cvSeqPushFront(opencv_core.CvSeq seq) |
static BytePointer |
cvSeqPushFront(opencv_core.CvSeq seq,
Pointer element) |
static void |
cvSeqPushMulti(opencv_core.CvSeq seq,
Pointer elements,
int count) |
static void |
cvSeqPushMulti(opencv_core.CvSeq seq,
Pointer elements,
int count,
int in_front) |
static void |
cvSeqRemove(opencv_core.CvSeq seq,
int index) |
static void |
cvSeqRemoveSlice(opencv_core.CvSeq seq,
opencv_core.CvSlice slice) |
static byte[] |
cvSeqSearch(opencv_core.CvSeq seq,
Pointer elem,
opencv_core.CvCmpFunc func,
int is_sorted,
int[] elem_idx) |
static byte[] |
cvSeqSearch(opencv_core.CvSeq seq,
Pointer elem,
opencv_core.CvCmpFunc func,
int is_sorted,
int[] elem_idx,
Pointer userdata) |
static ByteBuffer |
cvSeqSearch(opencv_core.CvSeq seq,
Pointer elem,
opencv_core.CvCmpFunc func,
int is_sorted,
IntBuffer elem_idx) |
static ByteBuffer |
cvSeqSearch(opencv_core.CvSeq seq,
Pointer elem,
opencv_core.CvCmpFunc func,
int is_sorted,
IntBuffer elem_idx,
Pointer userdata) |
static BytePointer |
cvSeqSearch(opencv_core.CvSeq seq,
Pointer elem,
opencv_core.CvCmpFunc func,
int is_sorted,
IntPointer elem_idx) |
static BytePointer |
cvSeqSearch(opencv_core.CvSeq seq,
Pointer elem,
opencv_core.CvCmpFunc func,
int is_sorted,
IntPointer elem_idx,
Pointer userdata) |
static opencv_core.CvSeq |
cvSeqSlice(opencv_core.CvSeq seq,
opencv_core.CvSlice slice) |
static opencv_core.CvSeq |
cvSeqSlice(opencv_core.CvSeq seq,
opencv_core.CvSlice slice,
opencv_core.CvMemStorage storage,
int copy_data) |
static void |
cvSeqSort(opencv_core.CvSeq seq,
opencv_core.CvCmpFunc func) |
static void |
cvSeqSort(opencv_core.CvSeq seq,
opencv_core.CvCmpFunc func,
Pointer userdata) |
static void |
cvSet(opencv_core.CvArr arr,
opencv_core.CvScalar value) |
static void |
cvSet(opencv_core.CvArr arr,
opencv_core.CvScalar value,
opencv_core.CvArr mask) |
static void |
cvSet1D(opencv_core.CvArr arr,
int idx0,
opencv_core.CvScalar value) |
static void |
cvSet2D(opencv_core.CvArr arr,
int idx0,
int idx1,
opencv_core.CvScalar value) |
static void |
cvSet3D(opencv_core.CvArr arr,
int idx0,
int idx1,
int idx2,
opencv_core.CvScalar value) |
static int |
cvSetAdd(opencv_core.CvSet set_header) |
static int |
cvSetAdd(opencv_core.CvSet set_header,
opencv_core.CvSetElem elem,
opencv_core.CvSetElem inserted_elem) |
static int |
cvSetAdd(opencv_core.CvSet set_header,
opencv_core.CvSetElem elem,
PointerPointer inserted_elem) |
static void |
cvSetData(opencv_core.CvArr arr,
Pointer data,
int step) |
static int |
cvSetErrMode(int mode) |
static void |
cvSetErrStatus(int status) |
static void |
cvSetIdentity(opencv_core.CvArr mat) |
static void |
cvSetIdentity(opencv_core.CvArr mat,
opencv_core.CvScalar value) |
static void |
cvSetImageCOI(opencv_core.IplImage image,
int coi) |
static void |
cvSetImageROI(opencv_core.IplImage image,
opencv_core.CvRect rect) |
static void |
cvSetIPLAllocators(opencv_core.Cv_iplCreateImageHeader create_header,
opencv_core.Cv_iplAllocateImageData allocate_data,
opencv_core.Cv_iplDeallocate deallocate,
opencv_core.Cv_iplCreateROI create_roi,
opencv_core.Cv_iplCloneImage clone_image) |
static void |
cvSetMemoryManager() |
static void |
cvSetMemoryManager(opencv_core.CvAllocFunc alloc_func,
opencv_core.CvFreeFunc free_func,
Pointer userdata) |
static void |
cvSetND(opencv_core.CvArr arr,
int[] idx,
opencv_core.CvScalar value) |
static void |
cvSetND(opencv_core.CvArr arr,
IntBuffer idx,
opencv_core.CvScalar value) |
static void |
cvSetND(opencv_core.CvArr arr,
IntPointer idx,
opencv_core.CvScalar value) |
static opencv_core.CvSetElem |
cvSetNew(opencv_core.CvSet set_header) |
static void |
cvSetNumThreads() |
static void |
cvSetNumThreads(int threads) |
static void |
cvSetReal1D(opencv_core.CvArr arr,
int idx0,
double value) |
static void |
cvSetReal2D(opencv_core.CvArr arr,
int idx0,
int idx1,
double value) |
static void |
cvSetReal3D(opencv_core.CvArr arr,
int idx0,
int idx1,
int idx2,
double value) |
static void |
cvSetRealND(opencv_core.CvArr arr,
int[] idx,
double value) |
static void |
cvSetRealND(opencv_core.CvArr arr,
IntBuffer idx,
double value) |
static void |
cvSetRealND(opencv_core.CvArr arr,
IntPointer idx,
double value) |
static void |
cvSetRemove(opencv_core.CvSet set_header,
int index) |
static void |
cvSetRemoveByPtr(opencv_core.CvSet set_header,
Pointer elem) |
static void |
cvSetSeqBlockSize(opencv_core.CvSeq seq,
int delta_elems) |
static void |
cvSetSeqReaderPos(opencv_core.CvSeqReader reader,
int index) |
static void |
cvSetSeqReaderPos(opencv_core.CvSeqReader reader,
int index,
int is_relative) |
static void |
cvSetZero(opencv_core.CvArr arr) |
static opencv_core.CvSize |
cvSize(int width,
int height) |
static opencv_core.CvSize2D32f |
cvSize2D32f(double width,
double height) |
static opencv_core.CvSlice |
cvSlice(int start,
int end) |
static int |
cvSliceLength(opencv_core.CvSlice slice,
opencv_core.CvSeq seq)
\
Dynamic data structures *
\
|
static int |
cvSolve(opencv_core.CvArr src1,
opencv_core.CvArr src2,
opencv_core.CvArr dst) |
static int |
cvSolve(opencv_core.CvArr src1,
opencv_core.CvArr src2,
opencv_core.CvArr dst,
int method) |
static int |
cvSolveCubic(opencv_core.CvMat coeffs,
opencv_core.CvMat roots) |
static void |
cvSolvePoly(opencv_core.CvMat coeffs,
opencv_core.CvMat roots2) |
static void |
cvSolvePoly(opencv_core.CvMat coeffs,
opencv_core.CvMat roots2,
int maxiter,
int fig) |
static void |
cvSort(opencv_core.CvArr src) |
static void |
cvSort(opencv_core.CvArr src,
opencv_core.CvArr dst,
opencv_core.CvArr idxmat,
int flags) |
static void |
cvSplit(opencv_core.CvArr src,
opencv_core.CvArr dst0,
opencv_core.CvArr dst1,
opencv_core.CvArr dst2,
opencv_core.CvArr dst3) |
static void |
cvStartAppendToSeq(opencv_core.CvSeq seq,
opencv_core.CvSeqWriter writer) |
static void |
cvStartNextStream(opencv_core.CvFileStorage fs) |
static void |
cvStartReadRawData(opencv_core.CvFileStorage fs,
opencv_core.CvFileNode src,
opencv_core.CvSeqReader reader) |
static void |
cvStartReadSeq(opencv_core.CvSeq seq,
opencv_core.CvSeqReader reader) |
static void |
cvStartReadSeq(opencv_core.CvSeq seq,
opencv_core.CvSeqReader reader,
int reverse) |
static void |
cvStartWriteSeq(int seq_flags,
int header_size,
int elem_size,
opencv_core.CvMemStorage storage,
opencv_core.CvSeqWriter writer) |
static void |
cvStartWriteStruct(opencv_core.CvFileStorage fs,
BytePointer name,
int struct_flags) |
static void |
cvStartWriteStruct(opencv_core.CvFileStorage fs,
BytePointer name,
int struct_flags,
BytePointer type_name,
opencv_core.CvAttrList attributes) |
static void |
cvStartWriteStruct(opencv_core.CvFileStorage fs,
String name,
int struct_flags) |
static void |
cvStartWriteStruct(opencv_core.CvFileStorage fs,
String name,
int struct_flags,
String type_name,
opencv_core.CvAttrList attributes) |
static int |
cvStdErrReport(int status,
BytePointer func_name,
BytePointer err_msg,
BytePointer file_name,
int line,
Pointer userdata) |
static int |
cvStdErrReport(int status,
String func_name,
String err_msg,
String file_name,
int line,
Pointer userdata) |
static void |
cvSub(opencv_core.CvArr src1,
opencv_core.CvArr src2,
opencv_core.CvArr dst) |
static void |
cvSub(opencv_core.CvArr src1,
opencv_core.CvArr src2,
opencv_core.CvArr dst,
opencv_core.CvArr mask) |
static void |
cvSubRS(opencv_core.CvArr src,
opencv_core.CvScalar value,
opencv_core.CvArr dst) |
static void |
cvSubRS(opencv_core.CvArr src,
opencv_core.CvScalar value,
opencv_core.CvArr dst,
opencv_core.CvArr mask) |
static void |
cvSubS(opencv_core.CvArr src,
opencv_core.CvScalar value,
opencv_core.CvArr dst) |
static void |
cvSubS(opencv_core.CvArr src,
opencv_core.CvScalar value,
opencv_core.CvArr dst,
opencv_core.CvArr mask) |
static opencv_core.CvScalar |
cvSum(opencv_core.CvArr arr)
\
Array Statistics *
\
|
static void |
cvSVBkSb(opencv_core.CvArr W,
opencv_core.CvArr U,
opencv_core.CvArr V,
opencv_core.CvArr B,
opencv_core.CvArr X,
int flags) |
static void |
cvSVD(opencv_core.CvArr A,
opencv_core.CvArr W) |
static void |
cvSVD(opencv_core.CvArr A,
opencv_core.CvArr W,
opencv_core.CvArr U,
opencv_core.CvArr V,
int flags) |
static void |
cvT(opencv_core.CvArr arg1,
opencv_core.CvArr arg2) |
static opencv_core.CvTermCriteria |
cvTermCriteria(int type,
int max_iter,
double epsilon) |
static opencv_core.CvScalar |
cvTrace(opencv_core.CvArr mat) |
static void |
cvTransform(opencv_core.CvArr src,
opencv_core.CvArr dst,
opencv_core.CvMat transmat) |
static void |
cvTransform(opencv_core.CvArr src,
opencv_core.CvArr dst,
opencv_core.CvMat transmat,
opencv_core.CvMat shiftvec) |
static void |
cvTranspose(opencv_core.CvArr src,
opencv_core.CvArr dst) |
static opencv_core.CvSeq |
cvTreeToNodeSeq(Pointer first,
int header_size,
opencv_core.CvMemStorage storage) |
static opencv_core.CvTypeInfo |
cvTypeOf(Pointer struct_ptr) |
static void |
cvUnregisterType(BytePointer type_name) |
static void |
cvUnregisterType(String type_name) |
static int |
cvUseOptimized(int on_off) |
static void |
cvWrite(opencv_core.CvFileStorage fs,
BytePointer name,
Pointer ptr) |
static void |
cvWrite(opencv_core.CvFileStorage fs,
BytePointer name,
Pointer ptr,
opencv_core.CvAttrList attributes) |
static void |
cvWrite(opencv_core.CvFileStorage fs,
String name,
Pointer ptr) |
static void |
cvWrite(opencv_core.CvFileStorage fs,
String name,
Pointer ptr,
opencv_core.CvAttrList attributes) |
static void |
cvWriteComment(opencv_core.CvFileStorage fs,
BytePointer comment,
int eol_comment) |
static void |
cvWriteComment(opencv_core.CvFileStorage fs,
String comment,
int eol_comment) |
static void |
cvWriteFileNode(opencv_core.CvFileStorage fs,
BytePointer new_node_name,
opencv_core.CvFileNode node,
int embed) |
static void |
cvWriteFileNode(opencv_core.CvFileStorage fs,
String new_node_name,
opencv_core.CvFileNode node,
int embed) |
static void |
cvWriteInt(opencv_core.CvFileStorage fs,
BytePointer name,
int value) |
static void |
cvWriteInt(opencv_core.CvFileStorage fs,
String name,
int value) |
static void |
cvWriteRawData(opencv_core.CvFileStorage fs,
Pointer src,
int len,
BytePointer dt) |
static void |
cvWriteRawData(opencv_core.CvFileStorage fs,
Pointer src,
int len,
String dt) |
static void |
cvWriteReal(opencv_core.CvFileStorage fs,
BytePointer name,
double value) |
static void |
cvWriteReal(opencv_core.CvFileStorage fs,
String name,
double value) |
static void |
cvWriteString(opencv_core.CvFileStorage fs,
BytePointer name,
BytePointer str) |
static void |
cvWriteString(opencv_core.CvFileStorage fs,
BytePointer name,
BytePointer str,
int quote) |
static void |
cvWriteString(opencv_core.CvFileStorage fs,
String name,
String str) |
static void |
cvWriteString(opencv_core.CvFileStorage fs,
String name,
String str,
int quote) |
static void |
cvXor(opencv_core.CvArr src1,
opencv_core.CvArr src2,
opencv_core.CvArr dst) |
static void |
cvXor(opencv_core.CvArr src1,
opencv_core.CvArr src2,
opencv_core.CvArr dst,
opencv_core.CvArr mask) |
static void |
cvXorS(opencv_core.CvArr src,
opencv_core.CvScalar value,
opencv_core.CvArr dst) |
static void |
cvXorS(opencv_core.CvArr src,
opencv_core.CvScalar value,
opencv_core.CvArr dst,
opencv_core.CvArr mask) |
static void |
cvZero(opencv_core.CvArr arg1) |
static void |
dct(opencv_core.Mat src,
opencv_core.Mat dst) |
static void |
dct(opencv_core.Mat src,
opencv_core.Mat dst,
int flags)
performs forward or inverse 1D or 2D Discrete Cosine Transformation
|
static double |
determinant(opencv_core.Mat mtx)
computes determinant of a square matrix
|
static void |
dft(opencv_core.Mat src,
opencv_core.Mat dst) |
static void |
dft(opencv_core.Mat src,
opencv_core.Mat dst,
int flags,
int nonzeroRows)
performs forward or inverse 1D or 2D Discrete Fourier Transformation
|
static void |
divide(double scale,
opencv_core.Mat src2,
opencv_core.Mat dst) |
static void |
divide(double scale,
opencv_core.Mat src2,
opencv_core.Mat dst,
int dtype)
computes element-wise weighted reciprocal of an array (dst = scale/src2)
|
static void |
divide(opencv_core.Mat src1,
opencv_core.Mat src2,
opencv_core.Mat dst) |
static void |
divide(opencv_core.Mat src1,
opencv_core.Mat src2,
opencv_core.Mat dst,
double scale,
int dtype)
computes element-wise weighted quotient of the two arrays (dst = scale*src1/src2)
|
static boolean |
eigen(opencv_core.Mat src,
boolean computeEigenvectors,
opencv_core.Mat eigenvalues,
opencv_core.Mat eigenvectors) |
static boolean |
eigen(opencv_core.Mat src,
opencv_core.Mat eigenvalues) |
static boolean |
eigen(opencv_core.Mat src,
opencv_core.Mat eigenvalues,
int lowindex,
int highindex)
finds eigenvalues of a symmetric matrix
|
static boolean |
eigen(opencv_core.Mat src,
opencv_core.Mat eigenvalues,
opencv_core.Mat eigenvectors) |
static boolean |
eigen(opencv_core.Mat src,
opencv_core.Mat eigenvalues,
opencv_core.Mat eigenvectors,
int lowindex,
int highindex)
finds eigenvalues and eigenvectors of a symmetric matrix
|
static void |
ellipse(opencv_core.Mat img,
opencv_core.Point center,
opencv_core.Size axes,
double angle,
double startAngle,
double endAngle,
opencv_core.Scalar color) |
static void |
ellipse(opencv_core.Mat img,
opencv_core.Point center,
opencv_core.Size axes,
double angle,
double startAngle,
double endAngle,
opencv_core.Scalar color,
int thickness,
int lineType,
int shift)
draws an elliptic arc, ellipse sector or a rotated ellipse in the image
|
static void |
ellipse(opencv_core.Mat img,
opencv_core.RotatedRect box,
opencv_core.Scalar color) |
static void |
ellipse(opencv_core.Mat img,
opencv_core.RotatedRect box,
opencv_core.Scalar color,
int thickness,
int lineType)
draws a rotated ellipse in the image
|
static void |
ellipse2Poly(opencv_core.Point center,
opencv_core.Size axes,
int angle,
int arcStart,
int arcEnd,
int delta,
opencv_core.Point pts)
converts elliptic arc to a polygonal curve
|
static void |
exp(float[] src,
float[] dst,
int n) |
static void |
exp(FloatBuffer src,
FloatBuffer dst,
int n) |
static void |
exp(FloatPointer src,
FloatPointer dst,
int n) |
static void |
exp(opencv_core.Mat src,
opencv_core.Mat dst)
computes exponent of each matrix element (dst = e**src)
|
static void |
extractChannel(opencv_core.Mat src,
opencv_core.Mat dst,
int coi)
extracts a single channel from src (coi is 0-based index)
|
static void |
extractImageCOI(opencv_core.CvArr arr,
opencv_core.Mat coiimg) |
static void |
extractImageCOI(opencv_core.CvArr arr,
opencv_core.Mat coiimg,
int coi)
extracts Channel of Interest from CvMat or IplImage and makes cv::Mat out of it.
|
static void |
fastAtan2(float[] y,
float[] x,
float[] dst,
int n,
boolean angleInDegrees) |
static void |
fastAtan2(FloatBuffer y,
FloatBuffer x,
FloatBuffer dst,
int n,
boolean angleInDegrees) |
static float |
fastAtan2(float y,
float x)
computes the angle in degrees (0..360) of the vector (x,y)
|
static void |
fastAtan2(FloatPointer y,
FloatPointer x,
FloatPointer dst,
int n,
boolean angleInDegrees) |
static void |
fastFree(Pointer ptr)
Frees the memory allocated with cv::fastMalloc
This is the corresponding deallocation function for cv::fastMalloc().
|
static Pointer |
fastMalloc(long bufSize)
Allocates memory buffer
This is specialized OpenCV memory allocation function that returns properly aligned memory buffers.
|
static void |
fillConvexPoly(opencv_core.Mat img,
opencv_core.Mat points,
opencv_core.Scalar color) |
static void |
fillConvexPoly(opencv_core.Mat img,
opencv_core.Mat points,
opencv_core.Scalar color,
int lineType,
int shift) |
static void |
fillConvexPoly(opencv_core.Mat img,
opencv_core.Point pts,
int npts,
opencv_core.Scalar color) |
static void |
fillConvexPoly(opencv_core.Mat img,
opencv_core.Point pts,
int npts,
opencv_core.Scalar color,
int lineType,
int shift)
draws a filled convex polygon in the image
|
static void |
fillPoly(opencv_core.Mat img,
opencv_core.MatVector pts,
opencv_core.Scalar color) |
static void |
fillPoly(opencv_core.Mat img,
opencv_core.MatVector pts,
opencv_core.Scalar color,
int lineType,
int shift,
opencv_core.Point offset) |
static void |
fillPoly(opencv_core.Mat img,
opencv_core.Point pts,
int[] npts,
int ncontours,
opencv_core.Scalar color) |
static void |
fillPoly(opencv_core.Mat img,
opencv_core.Point pts,
int[] npts,
int ncontours,
opencv_core.Scalar color,
int lineType,
int shift,
opencv_core.Point offset) |
static void |
fillPoly(opencv_core.Mat img,
opencv_core.Point pts,
IntBuffer npts,
int ncontours,
opencv_core.Scalar color) |
static void |
fillPoly(opencv_core.Mat img,
opencv_core.Point pts,
IntBuffer npts,
int ncontours,
opencv_core.Scalar color,
int lineType,
int shift,
opencv_core.Point offset) |
static void |
fillPoly(opencv_core.Mat img,
opencv_core.Point pts,
IntPointer npts,
int ncontours,
opencv_core.Scalar color) |
static void |
fillPoly(opencv_core.Mat img,
opencv_core.Point pts,
IntPointer npts,
int ncontours,
opencv_core.Scalar color,
int lineType,
int shift,
opencv_core.Point offset) |
static void |
fillPoly(opencv_core.Mat img,
PointerPointer pts,
IntPointer npts,
int ncontours,
opencv_core.Scalar color,
int lineType,
int shift,
opencv_core.Point offset)
fills an area bounded by one or more polygons
|
static void |
findNonZero(opencv_core.Mat src,
opencv_core.Mat idx)
returns the list of locations of non-zero pixels
|
static void |
flip(opencv_core.Mat src,
opencv_core.Mat dst,
int flipCode)
reverses the order of the rows, columns or both in a matrix
|
static BytePointer |
format(BytePointer fmt) |
static String |
format(String fmt) |
static void |
gemm(opencv_core.Mat src1,
opencv_core.Mat src2,
double alpha,
opencv_core.Mat src3,
double gamma,
opencv_core.Mat dst) |
static void |
gemm(opencv_core.Mat src1,
opencv_core.Mat src2,
double alpha,
opencv_core.Mat src3,
double gamma,
opencv_core.Mat dst,
int flags)
implements generalized matrix product algorithm GEMM from BLAS
|
static BytePointer |
getBuildInformation() |
static opencv_core.ConvertData |
getConvertElem(int fromType,
int toType)
returns the function for converting pixels from one data type to another
|
static opencv_core.BinaryFunc |
getConvertFunc(int sdepth,
int ddepth) |
static opencv_core.ConvertScaleData |
getConvertScaleElem(int fromType,
int toType)
returns the function for converting pixels from one data type to another with the optional scaling
|
static opencv_core.BinaryFunc |
getConvertScaleFunc(int sdepth,
int ddepth) |
static opencv_core.BinaryFunc |
getCopyMaskFunc(long esz) |
static long |
getCPUTickCount()
Returns the number of CPU ticks.
|
static long |
getElemSize(int type) |
static int |
getNumberOfCPUs()
returns the number of CPUs (including hyper-threading)
|
static int |
getNumThreads() |
static int |
getOptimalDFTSize(int vecsize)
computes the minimal vector size vecsize1 >= vecsize so that the dft() of the vector of length vecsize1 can be computed efficiently
|
static opencv_core.Size |
getTextSize(BytePointer text,
int fontFace,
double fontScale,
int thickness,
int[] baseLine) |
static opencv_core.Size |
getTextSize(BytePointer text,
int fontFace,
double fontScale,
int thickness,
IntBuffer baseLine) |
static opencv_core.Size |
getTextSize(BytePointer text,
int fontFace,
double fontScale,
int thickness,
IntPointer baseLine)
returns bounding box of the text string
|
static opencv_core.Size |
getTextSize(String text,
int fontFace,
double fontScale,
int thickness,
int[] baseLine) |
static opencv_core.Size |
getTextSize(String text,
int fontFace,
double fontScale,
int thickness,
IntBuffer baseLine) |
static opencv_core.Size |
getTextSize(String text,
int fontFace,
double fontScale,
int thickness,
IntPointer baseLine) |
static int |
getThreadNum() |
static long |
getTickCount()
Returns the number of ticks.
|
static double |
getTickFrequency()
Returns the number of ticks per seconds.
|
static void |
glob(BytePointer pattern,
opencv_core.StringVector result) |
static void |
glob(BytePointer pattern,
opencv_core.StringVector result,
boolean recursive) |
static void |
glob(String pattern,
opencv_core.StringVector result) |
static void |
glob(String pattern,
opencv_core.StringVector result,
boolean recursive) |
static void |
hconcat(opencv_core.Mat src,
long nsrc,
opencv_core.Mat dst) |
static void |
hconcat(opencv_core.Mat src1,
opencv_core.Mat src2,
opencv_core.Mat dst) |
static void |
hconcat(opencv_core.MatVector src,
opencv_core.Mat dst) |
static void |
idct(opencv_core.Mat src,
opencv_core.Mat dst) |
static void |
idct(opencv_core.Mat src,
opencv_core.Mat dst,
int flags)
performs inverse 1D or 2D Discrete Cosine Transformation
|
static void |
idft(opencv_core.Mat src,
opencv_core.Mat dst) |
static void |
idft(opencv_core.Mat src,
opencv_core.Mat dst,
int flags,
int nonzeroRows)
performs inverse 1D or 2D Discrete Fourier Transformation
|
static void |
inRange(opencv_core.Mat src,
opencv_core.Mat lowerb,
opencv_core.Mat upperb,
opencv_core.Mat dst)
set mask elements for those array elements which are within the element-specific bounding box (dst = lowerb <= src && src < upperb)
|
static void |
insertChannel(opencv_core.Mat src,
opencv_core.Mat dst,
int coi)
inserts a single channel to dst (coi is 0-based index)
|
static void |
insertImageCOI(opencv_core.Mat coiimg,
opencv_core.CvArr arr) |
static void |
insertImageCOI(opencv_core.Mat coiimg,
opencv_core.CvArr arr,
int coi)
inserts single-channel cv::Mat into a multi-channel CvMat or IplImage
|
static double |
invert(opencv_core.Mat src,
opencv_core.Mat dst) |
static double |
invert(opencv_core.Mat src,
opencv_core.Mat dst,
int flags)
computes inverse or pseudo-inverse matrix
|
static int |
IPL_IMAGE_MAGIC_VAL() |
static double |
kmeans(opencv_core.Mat data,
int K,
opencv_core.Mat bestLabels,
opencv_core.TermCriteria criteria,
int attempts,
int flags) |
static double |
kmeans(opencv_core.Mat data,
int K,
opencv_core.Mat bestLabels,
opencv_core.TermCriteria criteria,
int attempts,
int flags,
opencv_core.Mat centers)
clusters the input data using k-Means algorithm
|
static void |
line(opencv_core.Mat img,
opencv_core.Point pt1,
opencv_core.Point pt2,
opencv_core.Scalar color) |
static void |
line(opencv_core.Mat img,
opencv_core.Point pt1,
opencv_core.Point pt2,
opencv_core.Scalar color,
int thickness,
int lineType,
int shift)
draws the line segment (pt1, pt2) in the image
|
static void |
log(float[] src,
float[] dst,
int n) |
static void |
log(FloatBuffer src,
FloatBuffer dst,
int n) |
static void |
log(FloatPointer src,
FloatPointer dst,
int n) |
static void |
log(opencv_core.Mat src,
opencv_core.Mat dst)
computes natural logarithm of absolute value of each matrix element: dst = log(abs(src))
|
static void |
LUT(opencv_core.Mat src,
opencv_core.Mat lut,
opencv_core.Mat dst) |
static void |
LUT(opencv_core.Mat src,
opencv_core.Mat lut,
opencv_core.Mat dst,
int interpolation)
transforms array of numbers using a lookup table: dst(i)=lut(src(i))
|
static void |
magnitude(float[] x,
float[] y,
float[] dst,
int n) |
static void |
magnitude(FloatBuffer x,
FloatBuffer y,
FloatBuffer dst,
int n) |
static void |
magnitude(FloatPointer x,
FloatPointer y,
FloatPointer dst,
int n) |
static void |
magnitude(opencv_core.Mat x,
opencv_core.Mat y,
opencv_core.Mat magnitude)
computes magnitude (magnitude(i)) of each (x(i), y(i)) vector
|
static double |
Mahalanobis(opencv_core.Mat v1,
opencv_core.Mat v2,
opencv_core.Mat icovar)
computes Mahalanobis distance between two vectors: sqrt((v1-v2)'*icovar*(v1-v2)), where icovar is the inverse covariation matrix
|
static double |
Mahalonobis(opencv_core.Mat v1,
opencv_core.Mat v2,
opencv_core.Mat icovar)
a synonym for Mahalanobis
|
static void |
max(opencv_core.Mat src1,
double src2,
opencv_core.Mat dst)
computes per-element maximum of array and scalar (dst = max(src1, src2))
|
static void |
max(opencv_core.Mat src1,
opencv_core.Mat src2,
opencv_core.Mat dst)
computes per-element maximum of two arrays (dst = max(src1, src2))
|
static opencv_core.Scalar |
mean(opencv_core.Mat src) |
static opencv_core.Scalar |
mean(opencv_core.Mat src,
opencv_core.Mat mask)
computes mean value of selected array elements
|
static void |
meanStdDev(opencv_core.Mat src,
opencv_core.Mat mean,
opencv_core.Mat stddev) |
static void |
meanStdDev(opencv_core.Mat src,
opencv_core.Mat mean,
opencv_core.Mat stddev,
opencv_core.Mat mask)
computes mean value and standard deviation of all or selected array elements
|
static void |
merge(opencv_core.Mat mv,
long count,
opencv_core.Mat dst)
makes multi-channel array out of several single-channel arrays
|
static void |
merge(opencv_core.MatVector mv,
opencv_core.Mat dst) |
static void |
min(opencv_core.Mat src1,
double src2,
opencv_core.Mat dst)
computes per-element minimum of array and scalar (dst = min(src1, src2))
|
static void |
min(opencv_core.Mat src1,
opencv_core.Mat src2,
opencv_core.Mat dst)
computes per-element minimum of two arrays (dst = min(src1, src2))
|
static void |
minMaxIdx(opencv_core.Mat src,
double[] minVal,
double[] maxVal) |
static void |
minMaxIdx(opencv_core.Mat src,
double[] minVal,
double[] maxVal,
int[] minIdx,
int[] maxIdx,
opencv_core.Mat mask) |
static void |
minMaxIdx(opencv_core.Mat src,
DoubleBuffer minVal,
DoubleBuffer maxVal) |
static void |
minMaxIdx(opencv_core.Mat src,
DoubleBuffer minVal,
DoubleBuffer maxVal,
IntBuffer minIdx,
IntBuffer maxIdx,
opencv_core.Mat mask) |
static void |
minMaxIdx(opencv_core.Mat src,
DoublePointer minVal,
DoublePointer maxVal) |
static void |
minMaxIdx(opencv_core.Mat src,
DoublePointer minVal,
DoublePointer maxVal,
IntPointer minIdx,
IntPointer maxIdx,
opencv_core.Mat mask) |
static void |
minMaxLoc(opencv_core.Mat src,
double[] minVal) |
static void |
minMaxLoc(opencv_core.Mat src,
double[] minVal,
double[] maxVal,
opencv_core.Point minLoc,
opencv_core.Point maxLoc,
opencv_core.Mat mask) |
static void |
minMaxLoc(opencv_core.Mat src,
DoubleBuffer minVal) |
static void |
minMaxLoc(opencv_core.Mat src,
DoubleBuffer minVal,
DoubleBuffer maxVal,
opencv_core.Point minLoc,
opencv_core.Point maxLoc,
opencv_core.Mat mask) |
static void |
minMaxLoc(opencv_core.Mat src,
DoublePointer minVal) |
static void |
minMaxLoc(opencv_core.Mat src,
DoublePointer minVal,
DoublePointer maxVal,
opencv_core.Point minLoc,
opencv_core.Point maxLoc,
opencv_core.Mat mask)
finds global minimum and maximum array elements and returns their values and their locations
|
static void |
minMaxLoc(opencv_core.SparseMat a,
double[] minVal,
double[] maxVal) |
static void |
minMaxLoc(opencv_core.SparseMat a,
double[] minVal,
double[] maxVal,
int[] minIdx,
int[] maxIdx) |
static void |
minMaxLoc(opencv_core.SparseMat a,
DoubleBuffer minVal,
DoubleBuffer maxVal) |
static void |
minMaxLoc(opencv_core.SparseMat a,
DoubleBuffer minVal,
DoubleBuffer maxVal,
IntBuffer minIdx,
IntBuffer maxIdx) |
static void |
minMaxLoc(opencv_core.SparseMat a,
DoublePointer minVal,
DoublePointer maxVal) |
static void |
minMaxLoc(opencv_core.SparseMat a,
DoublePointer minVal,
DoublePointer maxVal,
IntPointer minIdx,
IntPointer maxIdx)
finds global minimum and maximum sparse array elements and returns their values and their locations
|
static void |
mixChannels(opencv_core.Mat src,
long nsrcs,
opencv_core.Mat dst,
long ndsts,
int[] fromTo,
long npairs) |
static void |
mixChannels(opencv_core.Mat src,
long nsrcs,
opencv_core.Mat dst,
long ndsts,
IntBuffer fromTo,
long npairs) |
static void |
mixChannels(opencv_core.Mat src,
long nsrcs,
opencv_core.Mat dst,
long ndsts,
IntPointer fromTo,
long npairs)
copies selected channels from the input arrays to the selected channels of the output arrays
|
static void |
mixChannels(opencv_core.MatVector src,
opencv_core.MatVector dst,
int[] fromTo) |
static void |
mixChannels(opencv_core.MatVector src,
opencv_core.MatVector dst,
int[] fromTo,
long npairs) |
static void |
mixChannels(opencv_core.MatVector src,
opencv_core.MatVector dst,
IntBuffer fromTo) |
static void |
mixChannels(opencv_core.MatVector src,
opencv_core.MatVector dst,
IntBuffer fromTo,
long npairs) |
static void |
mixChannels(opencv_core.MatVector src,
opencv_core.MatVector dst,
IntPointer fromTo) |
static void |
mixChannels(opencv_core.MatVector src,
opencv_core.MatVector dst,
IntPointer fromTo,
long npairs) |
static void |
mulSpectrums(opencv_core.Mat a,
opencv_core.Mat b,
opencv_core.Mat c,
int flags) |
static void |
mulSpectrums(opencv_core.Mat a,
opencv_core.Mat b,
opencv_core.Mat c,
int flags,
boolean conjB)
computes element-wise product of the two Fourier spectrums.
|
static void |
multiply(opencv_core.Mat src1,
opencv_core.Mat src2,
opencv_core.Mat dst) |
static void |
multiply(opencv_core.Mat src1,
opencv_core.Mat src2,
opencv_core.Mat dst,
double scale,
int dtype)
computes element-wise weighted product of the two arrays (dst = scale*src1*src2)
|
static void |
mulTransposed(opencv_core.Mat src,
opencv_core.Mat dst,
boolean aTa) |
static void |
mulTransposed(opencv_core.Mat src,
opencv_core.Mat dst,
boolean aTa,
opencv_core.Mat delta,
double scale,
int dtype)
multiplies matrix by its transposition from the left or from the right
|
static double |
norm(opencv_core.Mat src1) |
static double |
norm(opencv_core.Mat src1,
int normType,
opencv_core.Mat mask)
computes norm of the selected array part
|
static double |
norm(opencv_core.Mat src1,
opencv_core.Mat src2) |
static double |
norm(opencv_core.Mat src1,
opencv_core.Mat src2,
int normType,
opencv_core.Mat mask)
computes norm of selected part of the difference between two arrays
|
static double |
norm(opencv_core.SparseMat src,
int normType)
computes norm of a sparse matrix
|
static void |
normalize(opencv_core.Mat src,
opencv_core.Mat dst) |
static void |
normalize(opencv_core.Mat src,
opencv_core.Mat dst,
double alpha,
double beta,
int norm_type,
int dtype,
opencv_core.Mat mask)
scales and shifts array elements so that either the specified norm (alpha) or the minimum (alpha) and maximum (beta) array values get the specified values
|
static void |
normalize(opencv_core.SparseMat src,
opencv_core.SparseMat dst,
double alpha,
int normType)
scales and shifts array elements so that either the specified norm (alpha) or the minimum (alpha) and maximum (beta) array values get the specified values
|
static void |
parallel_for_(opencv_core.Range range,
opencv_core.ParallelLoopBody body) |
static void |
parallel_for_(opencv_core.Range range,
opencv_core.ParallelLoopBody body,
double nstripes) |
static void |
patchNaNs(opencv_core.Mat a) |
static void |
patchNaNs(opencv_core.Mat a,
double val)
converts NaN's to the given number
|
static void |
PCABackProject(opencv_core.Mat data,
opencv_core.Mat mean,
opencv_core.Mat eigenvectors,
opencv_core.Mat result) |
static void |
PCACompute(opencv_core.Mat data,
opencv_core.Mat mean,
opencv_core.Mat eigenvectors) |
static void |
PCACompute(opencv_core.Mat data,
opencv_core.Mat mean,
opencv_core.Mat eigenvectors,
int maxComponents) |
static void |
PCAComputeVar(opencv_core.Mat data,
opencv_core.Mat mean,
opencv_core.Mat eigenvectors,
double retainedVariance) |
static void |
PCAProject(opencv_core.Mat data,
opencv_core.Mat mean,
opencv_core.Mat eigenvectors,
opencv_core.Mat result) |
static void |
perspectiveTransform(opencv_core.Mat src,
opencv_core.Mat dst,
opencv_core.Mat m)
performs perspective transformation of each element of multi-channel input matrix
|
static void |
phase(opencv_core.Mat x,
opencv_core.Mat y,
opencv_core.Mat angle) |
static void |
phase(opencv_core.Mat x,
opencv_core.Mat y,
opencv_core.Mat angle,
boolean angleInDegrees)
computes angle (angle(i)) of each (x(i), y(i)) vector
|
static void |
polarToCart(opencv_core.Mat magnitude,
opencv_core.Mat angle,
opencv_core.Mat x,
opencv_core.Mat y) |
static void |
polarToCart(opencv_core.Mat magnitude,
opencv_core.Mat angle,
opencv_core.Mat x,
opencv_core.Mat y,
boolean angleInDegrees)
converts polar coordinates to Cartesian
|
static void |
polylines(opencv_core.Mat img,
opencv_core.MatVector pts,
boolean isClosed,
opencv_core.Scalar color) |
static void |
polylines(opencv_core.Mat img,
opencv_core.MatVector pts,
boolean isClosed,
opencv_core.Scalar color,
int thickness,
int lineType,
int shift) |
static void |
polylines(opencv_core.Mat img,
opencv_core.Point pts,
int[] npts,
int ncontours,
boolean isClosed,
opencv_core.Scalar color) |
static void |
polylines(opencv_core.Mat img,
opencv_core.Point pts,
int[] npts,
int ncontours,
boolean isClosed,
opencv_core.Scalar color,
int thickness,
int lineType,
int shift) |
static void |
polylines(opencv_core.Mat img,
opencv_core.Point pts,
IntBuffer npts,
int ncontours,
boolean isClosed,
opencv_core.Scalar color) |
static void |
polylines(opencv_core.Mat img,
opencv_core.Point pts,
IntBuffer npts,
int ncontours,
boolean isClosed,
opencv_core.Scalar color,
int thickness,
int lineType,
int shift) |
static void |
polylines(opencv_core.Mat img,
opencv_core.Point pts,
IntPointer npts,
int ncontours,
boolean isClosed,
opencv_core.Scalar color) |
static void |
polylines(opencv_core.Mat img,
opencv_core.Point pts,
IntPointer npts,
int ncontours,
boolean isClosed,
opencv_core.Scalar color,
int thickness,
int lineType,
int shift) |
static void |
polylines(opencv_core.Mat img,
PointerPointer pts,
IntPointer npts,
int ncontours,
boolean isClosed,
opencv_core.Scalar color,
int thickness,
int lineType,
int shift)
draws one or more polygonal curves
|
static void |
pow(opencv_core.Mat src,
double power,
opencv_core.Mat dst)
raises the input matrix elements to the specified power (b = a**power)
|
static void |
putText(opencv_core.Mat img,
BytePointer text,
opencv_core.Point org,
int fontFace,
double fontScale,
opencv_core.Scalar color) |
static void |
putText(opencv_core.Mat img,
BytePointer text,
opencv_core.Point org,
int fontFace,
double fontScale,
opencv_core.Scalar color,
int thickness,
int lineType,
boolean bottomLeftOrigin)
renders text string in the image
|
static void |
putText(opencv_core.Mat img,
String text,
opencv_core.Point org,
int fontFace,
double fontScale,
opencv_core.Scalar color) |
static void |
putText(opencv_core.Mat img,
String text,
opencv_core.Point org,
int fontFace,
double fontScale,
opencv_core.Scalar color,
int thickness,
int lineType,
boolean bottomLeftOrigin) |
static double |
randDouble() |
static float |
randFloat() |
static int |
randInt()
returns the next unifomly-distributed random number of the specified type
|
static void |
randn(opencv_core.Mat dst,
opencv_core.Mat mean,
opencv_core.Mat stddev)
fills array with normally-distributed random numbers with the specified mean and the standard deviation
|
static void |
randShuffle(opencv_core.Mat dst) |
static void |
randShuffle(opencv_core.Mat dst,
double iterFactor) |
static void |
randShuffle(opencv_core.Mat dst,
double iterFactor,
opencv_core.RNG rng)
shuffles the input array elements
|
static void |
randu(opencv_core.Mat dst,
opencv_core.Mat low,
opencv_core.Mat high)
fills array with uniformly-distributed random numbers from the range [low, high)
|
static void |
rectangle(opencv_core.Mat img,
opencv_core.Point pt1,
opencv_core.Point pt2,
opencv_core.Scalar color) |
static void |
rectangle(opencv_core.Mat img,
opencv_core.Point pt1,
opencv_core.Point pt2,
opencv_core.Scalar color,
int thickness,
int lineType,
int shift)
draws the rectangle outline or a solid rectangle with the opposite corners pt1 and pt2 in the image
|
static void |
rectangle(opencv_core.Mat img,
opencv_core.Rect rec,
opencv_core.Scalar color) |
static void |
rectangle(opencv_core.Mat img,
opencv_core.Rect rec,
opencv_core.Scalar color,
int thickness,
int lineType,
int shift)
draws the rectangle outline or a solid rectangle covering rec in the image
|
static opencv_core.ErrorCallback |
redirectError(opencv_core.ErrorCallback errCallback) |
static opencv_core.ErrorCallback |
redirectError(opencv_core.ErrorCallback errCallback,
Pointer userdata,
Pointer prevUserdata) |
static opencv_core.ErrorCallback |
redirectError(opencv_core.ErrorCallback errCallback,
Pointer userdata,
PointerPointer prevUserdata)
Sets the new error handler and the optional user data.
|
static void |
reduce(opencv_core.Mat src,
opencv_core.Mat dst,
int dim,
int rtype) |
static void |
reduce(opencv_core.Mat src,
opencv_core.Mat dst,
int dim,
int rtype,
int dtype)
transforms 2D matrix to 1D row or column vector by taking sum, minimum, maximum or mean value over all the rows
|
static opencv_core.Mat |
repeat(opencv_core.Mat src,
int ny,
int nx) |
static void |
repeat(opencv_core.Mat src,
int ny,
int nx,
opencv_core.Mat dst)
replicates the input matrix the specified number of times in the horizontal and/or vertical direction
|
static void |
scalarToRawData(opencv_core.Scalar s,
Pointer buf,
int type) |
static void |
scalarToRawData(opencv_core.Scalar s,
Pointer buf,
int type,
int unroll_to) |
static void |
scaleAdd(opencv_core.Mat src1,
double alpha,
opencv_core.Mat src2,
opencv_core.Mat dst)
adds scaled array to another one (dst = alpha*src1 + src2)
|
static boolean |
setBreakOnError(boolean flag)
Sets/resets the break-on-error mode.
|
static void |
setIdentity(opencv_core.Mat mtx) |
static void |
setIdentity(opencv_core.Mat mtx,
opencv_core.Scalar s)
initializes scaled identity matrix
|
static void |
setNumThreads(int nthreads) |
static void |
setUseOptimized(boolean onoff)
Turns on/off available optimization
The function turns on or off the optimized code in OpenCV.
|
static boolean |
solve(opencv_core.Mat src1,
opencv_core.Mat src2,
opencv_core.Mat dst) |
static boolean |
solve(opencv_core.Mat src1,
opencv_core.Mat src2,
opencv_core.Mat dst,
int flags)
solves linear system or a least-square problem
|
static int |
solveCubic(opencv_core.Mat coeffs,
opencv_core.Mat roots)
finds real roots of a cubic polynomial
|
static double |
solvePoly(opencv_core.Mat coeffs,
opencv_core.Mat roots) |
static double |
solvePoly(opencv_core.Mat coeffs,
opencv_core.Mat roots,
int maxIters)
finds real and complex roots of a polynomial
|
static void |
sort(opencv_core.Mat src,
opencv_core.Mat dst,
int flags)
sorts independently each matrix row or each matrix column
|
static void |
sortIdx(opencv_core.Mat src,
opencv_core.Mat dst,
int flags)
sorts independently each matrix row or each matrix column
|
static void |
split(opencv_core.Mat src,
opencv_core.Mat mvbegin)
copies each plane of a multi-channel array to a dedicated array
|
static void |
split(opencv_core.Mat m,
opencv_core.MatVector mv) |
static void |
sqrt(opencv_core.Mat src,
opencv_core.Mat dst)
computes square root of each matrix element (dst = src**0.5)
|
static void |
subtract(opencv_core.Mat src1,
opencv_core.Mat src2,
opencv_core.Mat dst) |
static void |
subtract(opencv_core.Mat src1,
opencv_core.Mat src2,
opencv_core.Mat dst,
opencv_core.Mat mask,
int dtype)
subtracts one matrix from another (dst = src1 - src2)
|
static opencv_core.Scalar |
sumElems(opencv_core.Mat src)
computes sum of array elements
|
static void |
SVBackSubst(opencv_core.Mat w,
opencv_core.Mat u,
opencv_core.Mat vt,
opencv_core.Mat rhs,
opencv_core.Mat dst)
performs back substitution for the previously computed SVD
|
static void |
SVDecomp(opencv_core.Mat src,
opencv_core.Mat w,
opencv_core.Mat u,
opencv_core.Mat vt) |
static void |
SVDecomp(opencv_core.Mat src,
opencv_core.Mat w,
opencv_core.Mat u,
opencv_core.Mat vt,
int flags)
computes SVD of src
|
static void |
swap(opencv_core.Mat a,
opencv_core.Mat b)
swaps two matrices
|
static BytePointer |
tempfile() |
static BytePointer |
tempfile(BytePointer suffix) |
static String |
tempfile(String suffix) |
static opencv_core.RNG |
theRNG()
returns the thread-local Random number generator
|
static opencv_core.Scalar |
trace(opencv_core.Mat mtx)
computes trace of a matrix
|
static void |
transform(opencv_core.Mat src,
opencv_core.Mat dst,
opencv_core.Mat m)
performs affine transformation of each element of multi-channel input matrix
|
static void |
transpose(opencv_core.Mat src,
opencv_core.Mat dst)
transposes the matrix
|
static boolean |
useOptimized()
Returns the current optimization status
The function returns the current optimization status, which is controlled by cv::setUseOptimized().
|
static void |
vconcat(opencv_core.Mat src,
long nsrc,
opencv_core.Mat dst) |
static void |
vconcat(opencv_core.Mat src1,
opencv_core.Mat src2,
opencv_core.Mat dst) |
static void |
vconcat(opencv_core.MatVector src,
opencv_core.Mat dst) |
CV_RGB, cvCalcCovarMatrix, cvDrawContours, cvDrawPolyLine, cvFillPoly, cvInitNArrayIterator, cvMixChannels, cvNorm, cvPolyLinemappublic static final int CV_StsOk
public static final int CV_StsBackTrace
public static final int CV_StsError
public static final int CV_StsInternal
public static final int CV_StsNoMem
public static final int CV_StsBadArg
public static final int CV_StsBadFunc
public static final int CV_StsNoConv
public static final int CV_StsAutoTrace
public static final int CV_HeaderIsNull
public static final int CV_BadImageSize
public static final int CV_BadOffset
public static final int CV_BadDataPtr
public static final int CV_BadStep
public static final int CV_BadModelOrChSeq
public static final int CV_BadNumChannels
public static final int CV_BadNumChannel1U
public static final int CV_BadDepth
public static final int CV_BadAlphaChannel
public static final int CV_BadOrder
public static final int CV_BadOrigin
public static final int CV_BadAlign
public static final int CV_BadCallBack
public static final int CV_BadTileSize
public static final int CV_BadCOI
public static final int CV_BadROISize
public static final int CV_MaskIsTiled
public static final int CV_StsNullPtr
public static final int CV_StsVecLengthErr
public static final int CV_StsFilterStructContentErr
public static final int CV_StsKernelStructContentErr
public static final int CV_StsFilterOffsetErr
public static final int CV_StsBadSize
public static final int CV_StsDivByZero
public static final int CV_StsInplaceNotSupported
public static final int CV_StsObjectNotFound
public static final int CV_StsUnmatchedFormats
public static final int CV_StsBadFlag
public static final int CV_StsBadPoint
public static final int CV_StsBadMask
public static final int CV_StsUnmatchedSizes
public static final int CV_StsUnsupportedFormat
public static final int CV_StsOutOfRange
public static final int CV_StsParseError
public static final int CV_StsNotImplemented
public static final int CV_StsBadMemBlock
public static final int CV_StsAssert
public static final int CV_GpuNotSupported
public static final int CV_GpuApiCallError
public static final int CV_OpenGlNotSupported
public static final int CV_OpenGlApiCallError
public static final int CV_OpenCLDoubleNotSupported
public static final int CV_OpenCLInitError
public static final int CV_OpenCLNoAMDBlasFft
public static final double CV_PI
public static final double CV_LOG2
public static final long CV_RNG_COEFF
public static final int IPL_DEPTH_SIGN
public static final int IPL_DEPTH_1U
public static final int IPL_DEPTH_8U
public static final int IPL_DEPTH_16U
public static final int IPL_DEPTH_32F
public static final int IPL_DEPTH_8S
public static final int IPL_DEPTH_16S
public static final int IPL_DEPTH_32S
public static final int IPL_DATA_ORDER_PIXEL
public static final int IPL_DATA_ORDER_PLANE
public static final int IPL_ORIGIN_TL
public static final int IPL_ORIGIN_BL
public static final int IPL_ALIGN_4BYTES
public static final int IPL_ALIGN_8BYTES
public static final int IPL_ALIGN_16BYTES
public static final int IPL_ALIGN_32BYTES
public static final int IPL_ALIGN_DWORD
public static final int IPL_ALIGN_QWORD
public static final int IPL_BORDER_CONSTANT
public static final int IPL_BORDER_REPLICATE
public static final int IPL_BORDER_REFLECT
public static final int IPL_BORDER_WRAP
public static final int IPL_IMAGE_HEADER
public static final int IPL_IMAGE_DATA
public static final int IPL_IMAGE_ROI
public static final int IPL_BORDER_REFLECT_101
public static final int IPL_BORDER_TRANSPARENT
public static final int IPL_IMAGE_MAGIC_VAL
public static final String CV_TYPE_NAME_IMAGE
public static final int IPL_DEPTH_64F
public static final int CV_CN_MAX
public static final int CV_CN_SHIFT
public static final int CV_DEPTH_MAX
public static final int CV_8U
public static final int CV_8S
public static final int CV_16U
public static final int CV_16S
public static final int CV_32S
public static final int CV_32F
public static final int CV_64F
public static final int CV_USRTYPE1
public static final int CV_MAT_DEPTH_MASK
public static final int CV_8UC1
public static final int CV_8UC2
public static final int CV_8UC3
public static final int CV_8UC4
public static final int CV_8SC1
public static final int CV_8SC2
public static final int CV_8SC3
public static final int CV_8SC4
public static final int CV_16UC1
public static final int CV_16UC2
public static final int CV_16UC3
public static final int CV_16UC4
public static final int CV_16SC1
public static final int CV_16SC2
public static final int CV_16SC3
public static final int CV_16SC4
public static final int CV_32SC1
public static final int CV_32SC2
public static final int CV_32SC3
public static final int CV_32SC4
public static final int CV_32FC1
public static final int CV_32FC2
public static final int CV_32FC3
public static final int CV_32FC4
public static final int CV_64FC1
public static final int CV_64FC2
public static final int CV_64FC3
public static final int CV_64FC4
public static final int CV_AUTO_STEP
public static final opencv_core.CvSlice CV_WHOLE_ARR
public static final int CV_MAT_CN_MASK
public static final int CV_MAT_TYPE_MASK
public static final int CV_MAT_CONT_FLAG_SHIFT
public static final int CV_MAT_CONT_FLAG
public static final int CV_SUBMAT_FLAG_SHIFT
public static final int CV_SUBMAT_FLAG
public static final int CV_MAGIC_MASK
public static final int CV_MAT_MAGIC_VAL
public static final String CV_TYPE_NAME_MAT
public static final int CV_MATND_MAGIC_VAL
public static final String CV_TYPE_NAME_MATND
public static final int CV_MAX_DIM
public static final int CV_MAX_DIM_HEAP
public static final int CV_SPARSE_MAT_MAGIC_VAL
public static final String CV_TYPE_NAME_SPARSE_MAT
public static final int CV_HIST_MAGIC_VAL
public static final int CV_HIST_UNIFORM_FLAG
public static final int CV_HIST_RANGES_FLAG
public static final int CV_HIST_ARRAY
public static final int CV_HIST_SPARSE
public static final int CV_HIST_TREE
public static final int CV_HIST_UNIFORM
public static final int CV_TERMCRIT_ITER
public static final int CV_TERMCRIT_NUMBER
public static final int CV_TERMCRIT_EPS
public static final int CV_WHOLE_SEQ_END_INDEX
public static final opencv_core.CvSlice CV_WHOLE_SEQ
public static final int CV_STORAGE_MAGIC_VAL
public static final String CV_TYPE_NAME_SEQ
public static final String CV_TYPE_NAME_SEQ_TREE
public static final int CV_SET_ELEM_IDX_MASK
public static final int CV_SET_ELEM_FREE_FLAG
public static final String CV_TYPE_NAME_GRAPH
public static final int CV_SEQ_MAGIC_VAL
public static final int CV_SET_MAGIC_VAL
public static final int CV_SEQ_ELTYPE_BITS
public static final int CV_SEQ_ELTYPE_MASK
public static final int CV_SEQ_ELTYPE_POINT
public static final int CV_SEQ_ELTYPE_CODE
public static final int CV_SEQ_ELTYPE_GENERIC
public static final int CV_SEQ_ELTYPE_PTR
public static final int CV_SEQ_ELTYPE_PPOINT
public static final int CV_SEQ_ELTYPE_INDEX
public static final int CV_SEQ_ELTYPE_GRAPH_EDGE
public static final int CV_SEQ_ELTYPE_GRAPH_VERTEX
public static final int CV_SEQ_ELTYPE_TRIAN_ATR
public static final int CV_SEQ_ELTYPE_CONNECTED_COMP
public static final int CV_SEQ_ELTYPE_POINT3D
public static final int CV_SEQ_KIND_BITS
public static final int CV_SEQ_KIND_MASK
public static final int CV_SEQ_KIND_GENERIC
public static final int CV_SEQ_KIND_CURVE
public static final int CV_SEQ_KIND_BIN_TREE
public static final int CV_SEQ_KIND_GRAPH
public static final int CV_SEQ_KIND_SUBDIV2D
public static final int CV_SEQ_FLAG_SHIFT
public static final int CV_SEQ_FLAG_CLOSED
public static final int CV_SEQ_FLAG_SIMPLE
public static final int CV_SEQ_FLAG_CONVEX
public static final int CV_SEQ_FLAG_HOLE
public static final int CV_GRAPH_FLAG_ORIENTED
public static final int CV_GRAPH
public static final int CV_ORIENTED_GRAPH
public static final int CV_SEQ_POINT_SET
public static final int CV_SEQ_POINT3D_SET
public static final int CV_SEQ_POLYLINE
public static final int CV_SEQ_POLYGON
public static final int CV_SEQ_CONTOUR
public static final int CV_SEQ_SIMPLE_POLYGON
public static final int CV_SEQ_CHAIN
public static final int CV_SEQ_CHAIN_CONTOUR
public static final int CV_SEQ_POLYGON_TREE
public static final int CV_SEQ_CONNECTED_COMP
public static final int CV_SEQ_INDEX
public static final int CV_STORAGE_READ
public static final int CV_STORAGE_WRITE
public static final int CV_STORAGE_WRITE_TEXT
public static final int CV_STORAGE_WRITE_BINARY
public static final int CV_STORAGE_APPEND
public static final int CV_STORAGE_MEMORY
public static final int CV_STORAGE_FORMAT_MASK
public static final int CV_STORAGE_FORMAT_AUTO
public static final int CV_STORAGE_FORMAT_XML
public static final int CV_STORAGE_FORMAT_YAML
public static final int CV_NODE_NONE
public static final int CV_NODE_INT
public static final int CV_NODE_INTEGER
public static final int CV_NODE_REAL
public static final int CV_NODE_FLOAT
public static final int CV_NODE_STR
public static final int CV_NODE_STRING
public static final int CV_NODE_REF
public static final int CV_NODE_SEQ
public static final int CV_NODE_MAP
public static final int CV_NODE_TYPE_MASK
public static final int CV_NODE_FLOW
public static final int CV_NODE_USER
public static final int CV_NODE_EMPTY
public static final int CV_NODE_NAMED
public static final int CV_NODE_SEQ_SIMPLE
public static final int CV_AUTOSTEP
public static final int CV_MAX_ARR
public static final int CV_NO_DEPTH_CHECK
public static final int CV_NO_CN_CHECK
public static final int CV_NO_SIZE_CHECK
public static final int CV_CMP_EQ
public static final int CV_CMP_GT
public static final int CV_CMP_GE
public static final int CV_CMP_LT
public static final int CV_CMP_LE
public static final int CV_CMP_NE
public static final int CV_CHECK_RANGE
public static final int CV_CHECK_QUIET
public static final int CV_RAND_UNI
public static final int CV_RAND_NORMAL
public static final int CV_SORT_EVERY_ROW
public static final int CV_SORT_EVERY_COLUMN
public static final int CV_SORT_ASCENDING
public static final int CV_SORT_DESCENDING
public static final int CV_GEMM_A_T
public static final int CV_GEMM_B_T
public static final int CV_GEMM_C_T
public static final int CV_SVD_MODIFY_A
public static final int CV_SVD_U_T
public static final int CV_SVD_V_T
public static final int CV_LU
public static final int CV_SVD
public static final int CV_SVD_SYM
public static final int CV_CHOLESKY
public static final int CV_QR
public static final int CV_NORMAL
public static final int CV_COVAR_SCRAMBLED
public static final int CV_COVAR_NORMAL
public static final int CV_COVAR_USE_AVG
public static final int CV_COVAR_SCALE
public static final int CV_COVAR_ROWS
public static final int CV_COVAR_COLS
public static final int CV_PCA_DATA_AS_ROW
public static final int CV_PCA_DATA_AS_COL
public static final int CV_PCA_USE_AVG
public static final int CV_C
public static final int CV_L1
public static final int CV_L2
public static final int CV_NORM_MASK
public static final int CV_RELATIVE
public static final int CV_DIFF
public static final int CV_MINMAX
public static final int CV_DIFF_C
public static final int CV_DIFF_L1
public static final int CV_DIFF_L2
public static final int CV_RELATIVE_C
public static final int CV_RELATIVE_L1
public static final int CV_RELATIVE_L2
public static final int CV_REDUCE_SUM
public static final int CV_REDUCE_AVG
public static final int CV_REDUCE_MAX
public static final int CV_REDUCE_MIN
public static final int CV_DXT_FORWARD
public static final int CV_DXT_INVERSE
public static final int CV_DXT_SCALE
public static final int CV_DXT_INV_SCALE
public static final int CV_DXT_INVERSE_SCALE
public static final int CV_DXT_ROWS
public static final int CV_DXT_MUL_CONJ
public static final int CV_FRONT
public static final int CV_BACK
public static final int CV_GRAPH_VERTEX
public static final int CV_GRAPH_TREE_EDGE
public static final int CV_GRAPH_BACK_EDGE
public static final int CV_GRAPH_FORWARD_EDGE
public static final int CV_GRAPH_CROSS_EDGE
public static final int CV_GRAPH_ANY_EDGE
public static final int CV_GRAPH_NEW_TREE
public static final int CV_GRAPH_BACKTRACKING
public static final int CV_GRAPH_OVER
public static final int CV_GRAPH_ALL_ITEMS
public static final int CV_GRAPH_ITEM_VISITED_FLAG
public static final int CV_GRAPH_SEARCH_TREE_NODE_FLAG
public static final int CV_GRAPH_FORWARD_EDGE_FLAG
public static final int CV_FILLED
public static final int CV_AA
public static final int CV_FONT_HERSHEY_SIMPLEX
public static final int CV_FONT_HERSHEY_PLAIN
public static final int CV_FONT_HERSHEY_DUPLEX
public static final int CV_FONT_HERSHEY_COMPLEX
public static final int CV_FONT_HERSHEY_TRIPLEX
public static final int CV_FONT_HERSHEY_COMPLEX_SMALL
public static final int CV_FONT_HERSHEY_SCRIPT_SIMPLEX
public static final int CV_FONT_HERSHEY_SCRIPT_COMPLEX
public static final int CV_FONT_ITALIC
public static final int CV_FONT_VECTOR0
public static final int CV_KMEANS_USE_INITIAL_LABELS
public static final int CV_CPU_NONE
public static final int CV_CPU_MMX
public static final int CV_CPU_SSE
public static final int CV_CPU_SSE2
public static final int CV_CPU_SSE3
public static final int CV_CPU_SSSE3
public static final int CV_CPU_SSE4_1
public static final int CV_CPU_SSE4_2
public static final int CV_CPU_POPCNT
public static final int CV_CPU_AVX
public static final int CV_HARDWARE_MAX_FEATURE
public static final int CV_ErrModeLeaf
public static final int CV_ErrModeParent
public static final int CV_ErrModeSilent
public static final String cvFuncName
public static final int DECOMP_LU
public static final int DECOMP_SVD
public static final int DECOMP_EIG
public static final int DECOMP_CHOLESKY
public static final int DECOMP_QR
public static final int DECOMP_NORMAL
public static final int NORM_INF
public static final int NORM_L1
public static final int NORM_L2
public static final int NORM_L2SQR
public static final int NORM_HAMMING
public static final int NORM_HAMMING2
public static final int NORM_TYPE_MASK
public static final int NORM_RELATIVE
public static final int NORM_MINMAX
public static final int CMP_EQ
public static final int CMP_GT
public static final int CMP_GE
public static final int CMP_LT
public static final int CMP_LE
public static final int CMP_NE
public static final int GEMM_1_T
public static final int GEMM_2_T
public static final int GEMM_3_T
public static final int DFT_INVERSE
public static final int DFT_SCALE
public static final int DFT_ROWS
public static final int DFT_COMPLEX_OUTPUT
public static final int DFT_REAL_OUTPUT
public static final int DCT_INVERSE
public static final int DCT_ROWS
public static final int DEPTH_MASK_8U
public static final int DEPTH_MASK_8S
public static final int DEPTH_MASK_16U
public static final int DEPTH_MASK_16S
public static final int DEPTH_MASK_32S
public static final int DEPTH_MASK_32F
public static final int DEPTH_MASK_64F
public static final int DEPTH_MASK_ALL
public static final int DEPTH_MASK_ALL_BUT_8S
public static final int DEPTH_MASK_FLT
public static final int MAGIC_MASK
public static final int TYPE_MASK
public static final int DEPTH_MASK
public static final int SORT_EVERY_ROW
public static final int SORT_EVERY_COLUMN
public static final int SORT_ASCENDING
public static final int SORT_DESCENDING
public static final int COVAR_SCRAMBLED
public static final int COVAR_NORMAL
public static final int COVAR_USE_AVG
public static final int COVAR_SCALE
public static final int COVAR_ROWS
public static final int COVAR_COLS
public static final int KMEANS_RANDOM_CENTERS
public static final int KMEANS_PP_CENTERS
public static final int KMEANS_USE_INITIAL_LABELS
public static final int FONT_HERSHEY_SIMPLEX
public static final int FONT_HERSHEY_PLAIN
public static final int FONT_HERSHEY_DUPLEX
public static final int FONT_HERSHEY_COMPLEX
public static final int FONT_HERSHEY_TRIPLEX
public static final int FONT_HERSHEY_COMPLEX_SMALL
public static final int FONT_HERSHEY_SCRIPT_SIMPLEX
public static final int FONT_HERSHEY_SCRIPT_COMPLEX
public static final int FONT_ITALIC
public static int cvRound(double value)
public static int cvFloor(double value)
public static int cvCeil(double value)
public static int cvIsNaN(double value)
public static int cvIsInf(double value)
public static long cvRNG(long seed)
public static long cvRNG()
public static int cvRandInt(LongPointer rng)
public static int cvRandInt(LongBuffer rng)
public static int cvRandInt(long[] rng)
public static double cvRandReal(LongPointer rng)
public static double cvRandReal(LongBuffer rng)
public static double cvRandReal(long[] rng)
public static int IPL_IMAGE_MAGIC_VAL()
public static int CV_MAT_DEPTH(int flags)
public static int CV_MAKETYPE(int depth,
int cn)
public static int CV_MAKE_TYPE(int arg1,
int arg2)
public static int CV_8UC(int n)
public static int CV_8SC(int n)
public static int CV_16UC(int n)
public static int CV_16SC(int n)
public static int CV_32SC(int n)
public static int CV_32FC(int n)
public static int CV_64FC(int n)
public static int CV_MAT_CN(int flags)
public static int CV_MAT_TYPE(int flags)
public static int CV_IS_MAT_CONT(int flags)
public static int CV_IS_CONT_MAT(int arg1)
public static opencv_core.CvMat cvMat(int rows, int cols, int type, Pointer data)
public static opencv_core.CvMat cvMat(int rows, int cols, int type)
public static double cvmGet(opencv_core.CvMat mat, int row, int col)
public static void cvmSet(opencv_core.CvMat mat, int row, int col, double value)
public static int cvIplDepth(int type)
public static opencv_core.CvRect cvRect(int x, int y, int width, int height)
public static opencv_core.IplROI cvRectToROI(opencv_core.CvRect rect, int coi)
public static opencv_core.CvRect cvROIToRect(opencv_core.IplROI roi)
public static opencv_core.CvTermCriteria cvTermCriteria(int type, int max_iter, double epsilon)
public static opencv_core.CvPoint cvPoint(int x, int y)
public static opencv_core.CvPoint2D32f cvPoint2D32f(double x, double y)
public static opencv_core.CvPoint2D32f cvPointTo32f(opencv_core.CvPoint point)
public static FloatBuffer cvPointTo32f(IntBuffer point)
public static float[] cvPointTo32f(int[] point)
public static opencv_core.CvPoint cvPointFrom32f(opencv_core.CvPoint2D32f point)
public static IntBuffer cvPointFrom32f(FloatBuffer point)
public static int[] cvPointFrom32f(float[] point)
public static opencv_core.CvPoint3D32f cvPoint3D32f(double x, double y, double z)
public static opencv_core.CvPoint2D64f cvPoint2D64f(double x, double y)
public static opencv_core.CvPoint3D64f cvPoint3D64f(double x, double y, double z)
public static opencv_core.CvSize cvSize(int width, int height)
public static opencv_core.CvSize2D32f cvSize2D32f(double width, double height)
public static opencv_core.CvSlice cvSlice(int start, int end)
public static opencv_core.CvScalar cvScalar(double val0, double val1, double val2, double val3)
public static opencv_core.CvScalar cvScalar(double val0)
public static opencv_core.CvScalar cvRealScalar(double val0)
public static opencv_core.CvScalar cvScalarAll(double val0123)
public static int CV_SET_ELEM_FREE_FLAG()
public static opencv_core.CvAttrList cvAttrList(PointerPointer attr, opencv_core.CvAttrList next)
public static opencv_core.CvAttrList cvAttrList()
public static opencv_core.CvAttrList cvAttrList(BytePointer attr, opencv_core.CvAttrList next)
public static opencv_core.CvAttrList cvAttrList(ByteBuffer attr, opencv_core.CvAttrList next)
public static opencv_core.CvAttrList cvAttrList(byte[] attr, opencv_core.CvAttrList next)
public static Pointer cvAlloc(long size)
public static void cvFree_(Pointer ptr)
public static opencv_core.IplImage cvCreateImageHeader(opencv_core.CvSize size, int depth, int channels)
public static opencv_core.IplImage cvInitImageHeader(opencv_core.IplImage image, opencv_core.CvSize size, int depth, int channels, int origin, int align)
public static opencv_core.IplImage cvInitImageHeader(opencv_core.IplImage image, opencv_core.CvSize size, int depth, int channels)
public static opencv_core.IplImage cvCreateImage(opencv_core.CvSize size, int depth, int channels)
public static void cvReleaseImageHeader(PointerPointer image)
public static void cvReleaseImageHeader(opencv_core.IplImage image)
public static void cvReleaseImage(PointerPointer image)
public static void cvReleaseImage(opencv_core.IplImage image)
public static opencv_core.IplImage cvCloneImage(opencv_core.IplImage image)
public static void cvSetImageCOI(opencv_core.IplImage image, int coi)
public static int cvGetImageCOI(opencv_core.IplImage image)
public static void cvSetImageROI(opencv_core.IplImage image, opencv_core.CvRect rect)
public static void cvResetImageROI(opencv_core.IplImage image)
public static opencv_core.CvRect cvGetImageROI(opencv_core.IplImage image)
public static opencv_core.CvMat cvCreateMatHeader(int rows, int cols, int type)
public static opencv_core.CvMat cvInitMatHeader(opencv_core.CvMat mat, int rows, int cols, int type, Pointer data, int step)
public static opencv_core.CvMat cvInitMatHeader(opencv_core.CvMat mat, int rows, int cols, int type)
public static opencv_core.CvMat cvCreateMat(int rows, int cols, int type)
public static void cvReleaseMat(PointerPointer mat)
public static void cvReleaseMat(opencv_core.CvMat mat)
public static void cvDecRefData(opencv_core.CvArr arr)
public static int cvIncRefData(opencv_core.CvArr arr)
public static opencv_core.CvMat cvCloneMat(opencv_core.CvMat mat)
public static opencv_core.CvMat cvGetSubRect(opencv_core.CvArr arr, opencv_core.CvMat submat, opencv_core.CvRect rect)
public static opencv_core.CvMat cvGetSubArr(opencv_core.CvArr arg1, opencv_core.CvMat arg2, opencv_core.CvRect arg3)
public static opencv_core.CvMat cvGetRows(opencv_core.CvArr arr, opencv_core.CvMat submat, int start_row, int end_row, int delta_row)
public static opencv_core.CvMat cvGetRows(opencv_core.CvArr arr, opencv_core.CvMat submat, int start_row, int end_row)
public static opencv_core.CvMat cvGetRow(opencv_core.CvArr arr, opencv_core.CvMat submat, int row)
public static opencv_core.CvMat cvGetCols(opencv_core.CvArr arr, opencv_core.CvMat submat, int start_col, int end_col)
public static opencv_core.CvMat cvGetCol(opencv_core.CvArr arr, opencv_core.CvMat submat, int col)
public static opencv_core.CvMat cvGetDiag(opencv_core.CvArr arr, opencv_core.CvMat submat, int diag)
public static opencv_core.CvMat cvGetDiag(opencv_core.CvArr arr, opencv_core.CvMat submat)
public static void cvScalarToRawData(opencv_core.CvScalar scalar, Pointer data, int type, int extend_to_12)
public static void cvScalarToRawData(opencv_core.CvScalar scalar, Pointer data, int type)
public static void cvRawDataToScalar(Pointer data, int type, opencv_core.CvScalar scalar)
public static opencv_core.CvMatND cvCreateMatNDHeader(int dims, IntPointer sizes, int type)
public static opencv_core.CvMatND cvCreateMatNDHeader(int dims, IntBuffer sizes, int type)
public static opencv_core.CvMatND cvCreateMatNDHeader(int dims, int[] sizes, int type)
public static opencv_core.CvMatND cvCreateMatND(int dims, IntPointer sizes, int type)
public static opencv_core.CvMatND cvCreateMatND(int dims, IntBuffer sizes, int type)
public static opencv_core.CvMatND cvCreateMatND(int dims, int[] sizes, int type)
public static opencv_core.CvMatND cvInitMatNDHeader(opencv_core.CvMatND mat, int dims, IntPointer sizes, int type, Pointer data)
public static opencv_core.CvMatND cvInitMatNDHeader(opencv_core.CvMatND mat, int dims, IntPointer sizes, int type)
public static opencv_core.CvMatND cvInitMatNDHeader(opencv_core.CvMatND mat, int dims, IntBuffer sizes, int type, Pointer data)
public static opencv_core.CvMatND cvInitMatNDHeader(opencv_core.CvMatND mat, int dims, IntBuffer sizes, int type)
public static opencv_core.CvMatND cvInitMatNDHeader(opencv_core.CvMatND mat, int dims, int[] sizes, int type, Pointer data)
public static opencv_core.CvMatND cvInitMatNDHeader(opencv_core.CvMatND mat, int dims, int[] sizes, int type)
public static void cvReleaseMatND(PointerPointer mat)
public static void cvReleaseMatND(opencv_core.CvMatND mat)
public static opencv_core.CvMatND cvCloneMatND(opencv_core.CvMatND mat)
public static opencv_core.CvSparseMat cvCreateSparseMat(int dims, IntPointer sizes, int type)
public static opencv_core.CvSparseMat cvCreateSparseMat(int dims, IntBuffer sizes, int type)
public static opencv_core.CvSparseMat cvCreateSparseMat(int dims, int[] sizes, int type)
public static void cvReleaseSparseMat(PointerPointer mat)
public static void cvReleaseSparseMat(opencv_core.CvSparseMat mat)
public static opencv_core.CvSparseMat cvCloneSparseMat(opencv_core.CvSparseMat mat)
public static opencv_core.CvSparseNode cvInitSparseMatIterator(opencv_core.CvSparseMat mat, opencv_core.CvSparseMatIterator mat_iterator)
public static opencv_core.CvSparseNode cvGetNextSparseNode(opencv_core.CvSparseMatIterator mat_iterator)
public static int cvInitNArrayIterator(int count,
PointerPointer arrs,
opencv_core.CvArr mask,
opencv_core.CvMatND stubs,
opencv_core.CvNArrayIterator array_iterator,
int flags)
public static int cvInitNArrayIterator(int count,
opencv_core.CvArr arrs,
opencv_core.CvArr mask,
opencv_core.CvMatND stubs,
opencv_core.CvNArrayIterator array_iterator)
public static int cvInitNArrayIterator(int count,
opencv_core.CvArr arrs,
opencv_core.CvArr mask,
opencv_core.CvMatND stubs,
opencv_core.CvNArrayIterator array_iterator,
int flags)
public static int cvNextNArraySlice(opencv_core.CvNArrayIterator array_iterator)
public static int cvGetElemType(opencv_core.CvArr arr)
public static int cvGetDims(opencv_core.CvArr arr, IntPointer sizes)
public static int cvGetDims(opencv_core.CvArr arr)
public static int cvGetDims(opencv_core.CvArr arr, IntBuffer sizes)
public static int cvGetDims(opencv_core.CvArr arr, int[] sizes)
public static int cvGetDimSize(opencv_core.CvArr arr, int index)
public static BytePointer cvPtr1D(opencv_core.CvArr arr, int idx0, IntPointer type)
public static BytePointer cvPtr1D(opencv_core.CvArr arr, int idx0)
public static ByteBuffer cvPtr1D(opencv_core.CvArr arr, int idx0, IntBuffer type)
public static byte[] cvPtr1D(opencv_core.CvArr arr, int idx0, int[] type)
public static BytePointer cvPtr2D(opencv_core.CvArr arr, int idx0, int idx1, IntPointer type)
public static BytePointer cvPtr2D(opencv_core.CvArr arr, int idx0, int idx1)
public static ByteBuffer cvPtr2D(opencv_core.CvArr arr, int idx0, int idx1, IntBuffer type)
public static byte[] cvPtr2D(opencv_core.CvArr arr, int idx0, int idx1, int[] type)
public static BytePointer cvPtr3D(opencv_core.CvArr arr, int idx0, int idx1, int idx2, IntPointer type)
public static BytePointer cvPtr3D(opencv_core.CvArr arr, int idx0, int idx1, int idx2)
public static ByteBuffer cvPtr3D(opencv_core.CvArr arr, int idx0, int idx1, int idx2, IntBuffer type)
public static byte[] cvPtr3D(opencv_core.CvArr arr, int idx0, int idx1, int idx2, int[] type)
public static BytePointer cvPtrND(opencv_core.CvArr arr, IntPointer idx, IntPointer type, int create_node, IntPointer precalc_hashval)
public static BytePointer cvPtrND(opencv_core.CvArr arr, IntPointer idx)
public static ByteBuffer cvPtrND(opencv_core.CvArr arr, IntBuffer idx, IntBuffer type, int create_node, IntBuffer precalc_hashval)
public static ByteBuffer cvPtrND(opencv_core.CvArr arr, IntBuffer idx)
public static byte[] cvPtrND(opencv_core.CvArr arr, int[] idx, int[] type, int create_node, int[] precalc_hashval)
public static byte[] cvPtrND(opencv_core.CvArr arr, int[] idx)
public static opencv_core.CvScalar cvGet1D(opencv_core.CvArr arr, int idx0)
public static opencv_core.CvScalar cvGet2D(opencv_core.CvArr arr, int idx0, int idx1)
public static opencv_core.CvScalar cvGet3D(opencv_core.CvArr arr, int idx0, int idx1, int idx2)
public static opencv_core.CvScalar cvGetND(opencv_core.CvArr arr, IntPointer idx)
public static opencv_core.CvScalar cvGetND(opencv_core.CvArr arr, IntBuffer idx)
public static opencv_core.CvScalar cvGetND(opencv_core.CvArr arr, int[] idx)
public static double cvGetReal1D(opencv_core.CvArr arr, int idx0)
public static double cvGetReal2D(opencv_core.CvArr arr, int idx0, int idx1)
public static double cvGetReal3D(opencv_core.CvArr arr, int idx0, int idx1, int idx2)
public static double cvGetRealND(opencv_core.CvArr arr, IntPointer idx)
public static double cvGetRealND(opencv_core.CvArr arr, IntBuffer idx)
public static double cvGetRealND(opencv_core.CvArr arr, int[] idx)
public static void cvSet1D(opencv_core.CvArr arr, int idx0, opencv_core.CvScalar value)
public static void cvSet2D(opencv_core.CvArr arr, int idx0, int idx1, opencv_core.CvScalar value)
public static void cvSet3D(opencv_core.CvArr arr, int idx0, int idx1, int idx2, opencv_core.CvScalar value)
public static void cvSetND(opencv_core.CvArr arr, IntPointer idx, opencv_core.CvScalar value)
public static void cvSetND(opencv_core.CvArr arr, IntBuffer idx, opencv_core.CvScalar value)
public static void cvSetND(opencv_core.CvArr arr, int[] idx, opencv_core.CvScalar value)
public static void cvSetReal1D(opencv_core.CvArr arr, int idx0, double value)
public static void cvSetReal2D(opencv_core.CvArr arr, int idx0, int idx1, double value)
public static void cvSetReal3D(opencv_core.CvArr arr, int idx0, int idx1, int idx2, double value)
public static void cvSetRealND(opencv_core.CvArr arr, IntPointer idx, double value)
public static void cvSetRealND(opencv_core.CvArr arr, IntBuffer idx, double value)
public static void cvSetRealND(opencv_core.CvArr arr, int[] idx, double value)
public static void cvClearND(opencv_core.CvArr arr, IntPointer idx)
public static void cvClearND(opencv_core.CvArr arr, IntBuffer idx)
public static void cvClearND(opencv_core.CvArr arr, int[] idx)
public static opencv_core.CvMat cvGetMat(opencv_core.CvArr arr, opencv_core.CvMat header, IntPointer coi, int allowND)
public static opencv_core.CvMat cvGetMat(opencv_core.CvArr arr, opencv_core.CvMat header)
public static opencv_core.CvMat cvGetMat(opencv_core.CvArr arr, opencv_core.CvMat header, IntBuffer coi, int allowND)
public static opencv_core.CvMat cvGetMat(opencv_core.CvArr arr, opencv_core.CvMat header, int[] coi, int allowND)
public static opencv_core.IplImage cvGetImage(opencv_core.CvArr arr, opencv_core.IplImage image_header)
public static opencv_core.CvArr cvReshapeMatND(opencv_core.CvArr arr, int sizeof_header, opencv_core.CvArr header, int new_cn, int new_dims, IntPointer new_sizes)
public static opencv_core.CvArr cvReshapeMatND(opencv_core.CvArr arr, int sizeof_header, opencv_core.CvArr header, int new_cn, int new_dims, IntBuffer new_sizes)
public static opencv_core.CvArr cvReshapeMatND(opencv_core.CvArr arr, int sizeof_header, opencv_core.CvArr header, int new_cn, int new_dims, int[] new_sizes)
public static opencv_core.CvMat cvReshape(opencv_core.CvArr arr, opencv_core.CvMat header, int new_cn, int new_rows)
public static opencv_core.CvMat cvReshape(opencv_core.CvArr arr, opencv_core.CvMat header, int new_cn)
public static void cvRepeat(opencv_core.CvArr src, opencv_core.CvArr dst)
public static void cvCreateData(opencv_core.CvArr arr)
public static void cvReleaseData(opencv_core.CvArr arr)
public static void cvSetData(opencv_core.CvArr arr, Pointer data, int step)
public static void cvGetRawData(opencv_core.CvArr arr, PointerPointer data, IntPointer step, opencv_core.CvSize roi_size)
public static void cvGetRawData(opencv_core.CvArr arr, BytePointer data)
public static void cvGetRawData(opencv_core.CvArr arr, BytePointer data, IntPointer step, opencv_core.CvSize roi_size)
public static void cvGetRawData(opencv_core.CvArr arr, ByteBuffer data, IntBuffer step, opencv_core.CvSize roi_size)
public static void cvGetRawData(opencv_core.CvArr arr, ByteBuffer data)
public static void cvGetRawData(opencv_core.CvArr arr, byte[] data, int[] step, opencv_core.CvSize roi_size)
public static void cvGetRawData(opencv_core.CvArr arr, byte[] data)
public static opencv_core.CvSize cvGetSize(opencv_core.CvArr arr)
public static void cvCopy(opencv_core.CvArr src, opencv_core.CvArr dst, opencv_core.CvArr mask)
public static void cvCopy(opencv_core.CvArr src, opencv_core.CvArr dst)
public static void cvSet(opencv_core.CvArr arr, opencv_core.CvScalar value, opencv_core.CvArr mask)
public static void cvSet(opencv_core.CvArr arr, opencv_core.CvScalar value)
public static void cvSetZero(opencv_core.CvArr arr)
public static void cvZero(opencv_core.CvArr arg1)
public static void cvSplit(opencv_core.CvArr src, opencv_core.CvArr dst0, opencv_core.CvArr dst1, opencv_core.CvArr dst2, opencv_core.CvArr dst3)
public static void cvMerge(opencv_core.CvArr src0, opencv_core.CvArr src1, opencv_core.CvArr src2, opencv_core.CvArr src3, opencv_core.CvArr dst)
public static void cvMixChannels(PointerPointer src, int src_count, PointerPointer dst, int dst_count, IntPointer from_to, int pair_count)
public static void cvMixChannels(opencv_core.CvArr src, int src_count, opencv_core.CvArr dst, int dst_count, IntPointer from_to, int pair_count)
public static void cvMixChannels(opencv_core.CvArr src, int src_count, opencv_core.CvArr dst, int dst_count, IntBuffer from_to, int pair_count)
public static void cvMixChannels(opencv_core.CvArr src, int src_count, opencv_core.CvArr dst, int dst_count, int[] from_to, int pair_count)
public static void cvConvertScale(opencv_core.CvArr src, opencv_core.CvArr dst, double scale, double shift)
public static void cvConvertScale(opencv_core.CvArr src, opencv_core.CvArr dst)
public static void cvCvtScale(opencv_core.CvArr arg1, opencv_core.CvArr arg2, double arg3, double arg4)
public static void cvScale(opencv_core.CvArr arg1, opencv_core.CvArr arg2, double arg3, double arg4)
public static void cvConvert(opencv_core.CvArr src, opencv_core.CvArr dst)
public static void cvConvertScaleAbs(opencv_core.CvArr src, opencv_core.CvArr dst, double scale, double shift)
public static void cvConvertScaleAbs(opencv_core.CvArr src, opencv_core.CvArr dst)
public static void cvCvtScaleAbs(opencv_core.CvArr arg1, opencv_core.CvArr arg2, double arg3, double arg4)
public static opencv_core.CvTermCriteria cvCheckTermCriteria(opencv_core.CvTermCriteria criteria, double default_eps, int default_max_iters)
public static void cvAdd(opencv_core.CvArr src1, opencv_core.CvArr src2, opencv_core.CvArr dst, opencv_core.CvArr mask)
public static void cvAdd(opencv_core.CvArr src1, opencv_core.CvArr src2, opencv_core.CvArr dst)
public static void cvAddS(opencv_core.CvArr src, opencv_core.CvScalar value, opencv_core.CvArr dst, opencv_core.CvArr mask)
public static void cvAddS(opencv_core.CvArr src, opencv_core.CvScalar value, opencv_core.CvArr dst)
public static void cvSub(opencv_core.CvArr src1, opencv_core.CvArr src2, opencv_core.CvArr dst, opencv_core.CvArr mask)
public static void cvSub(opencv_core.CvArr src1, opencv_core.CvArr src2, opencv_core.CvArr dst)
public static void cvSubS(opencv_core.CvArr src, opencv_core.CvScalar value, opencv_core.CvArr dst, opencv_core.CvArr mask)
public static void cvSubS(opencv_core.CvArr src, opencv_core.CvScalar value, opencv_core.CvArr dst)
public static void cvSubRS(opencv_core.CvArr src, opencv_core.CvScalar value, opencv_core.CvArr dst, opencv_core.CvArr mask)
public static void cvSubRS(opencv_core.CvArr src, opencv_core.CvScalar value, opencv_core.CvArr dst)
public static void cvMul(opencv_core.CvArr src1, opencv_core.CvArr src2, opencv_core.CvArr dst, double scale)
public static void cvMul(opencv_core.CvArr src1, opencv_core.CvArr src2, opencv_core.CvArr dst)
public static void cvDiv(opencv_core.CvArr src1, opencv_core.CvArr src2, opencv_core.CvArr dst, double scale)
public static void cvDiv(opencv_core.CvArr src1, opencv_core.CvArr src2, opencv_core.CvArr dst)
public static void cvScaleAdd(opencv_core.CvArr src1, opencv_core.CvScalar scale, opencv_core.CvArr src2, opencv_core.CvArr dst)
public static void cvAddWeighted(opencv_core.CvArr src1, double alpha, opencv_core.CvArr src2, double beta, double gamma, opencv_core.CvArr dst)
public static double cvDotProduct(opencv_core.CvArr src1, opencv_core.CvArr src2)
public static void cvAnd(opencv_core.CvArr src1, opencv_core.CvArr src2, opencv_core.CvArr dst, opencv_core.CvArr mask)
public static void cvAnd(opencv_core.CvArr src1, opencv_core.CvArr src2, opencv_core.CvArr dst)
public static void cvAndS(opencv_core.CvArr src, opencv_core.CvScalar value, opencv_core.CvArr dst, opencv_core.CvArr mask)
public static void cvAndS(opencv_core.CvArr src, opencv_core.CvScalar value, opencv_core.CvArr dst)
public static void cvOr(opencv_core.CvArr src1, opencv_core.CvArr src2, opencv_core.CvArr dst, opencv_core.CvArr mask)
public static void cvOr(opencv_core.CvArr src1, opencv_core.CvArr src2, opencv_core.CvArr dst)
public static void cvOrS(opencv_core.CvArr src, opencv_core.CvScalar value, opencv_core.CvArr dst, opencv_core.CvArr mask)
public static void cvOrS(opencv_core.CvArr src, opencv_core.CvScalar value, opencv_core.CvArr dst)
public static void cvXor(opencv_core.CvArr src1, opencv_core.CvArr src2, opencv_core.CvArr dst, opencv_core.CvArr mask)
public static void cvXor(opencv_core.CvArr src1, opencv_core.CvArr src2, opencv_core.CvArr dst)
public static void cvXorS(opencv_core.CvArr src, opencv_core.CvScalar value, opencv_core.CvArr dst, opencv_core.CvArr mask)
public static void cvXorS(opencv_core.CvArr src, opencv_core.CvScalar value, opencv_core.CvArr dst)
public static void cvNot(opencv_core.CvArr src, opencv_core.CvArr dst)
public static void cvInRange(opencv_core.CvArr src, opencv_core.CvArr lower, opencv_core.CvArr upper, opencv_core.CvArr dst)
public static void cvInRangeS(opencv_core.CvArr src, opencv_core.CvScalar lower, opencv_core.CvScalar upper, opencv_core.CvArr dst)
public static void cvCmp(opencv_core.CvArr src1, opencv_core.CvArr src2, opencv_core.CvArr dst, int cmp_op)
public static void cvCmpS(opencv_core.CvArr src, double value, opencv_core.CvArr dst, int cmp_op)
public static void cvMin(opencv_core.CvArr src1, opencv_core.CvArr src2, opencv_core.CvArr dst)
public static void cvMax(opencv_core.CvArr src1, opencv_core.CvArr src2, opencv_core.CvArr dst)
public static void cvMinS(opencv_core.CvArr src, double value, opencv_core.CvArr dst)
public static void cvMaxS(opencv_core.CvArr src, double value, opencv_core.CvArr dst)
public static void cvAbsDiff(opencv_core.CvArr src1, opencv_core.CvArr src2, opencv_core.CvArr dst)
public static void cvAbsDiffS(opencv_core.CvArr src, opencv_core.CvArr dst, opencv_core.CvScalar value)
public static void cvCartToPolar(opencv_core.CvArr x, opencv_core.CvArr y, opencv_core.CvArr magnitude, opencv_core.CvArr angle, int angle_in_degrees)
public static void cvCartToPolar(opencv_core.CvArr x, opencv_core.CvArr y, opencv_core.CvArr magnitude)
public static void cvPolarToCart(opencv_core.CvArr magnitude, opencv_core.CvArr angle, opencv_core.CvArr x, opencv_core.CvArr y, int angle_in_degrees)
public static void cvPolarToCart(opencv_core.CvArr magnitude, opencv_core.CvArr angle, opencv_core.CvArr x, opencv_core.CvArr y)
public static void cvPow(opencv_core.CvArr src, opencv_core.CvArr dst, double power)
public static void cvExp(opencv_core.CvArr src, opencv_core.CvArr dst)
public static void cvLog(opencv_core.CvArr src, opencv_core.CvArr dst)
public static float cvFastArctan(float y,
float x)
public static float cvCbrt(float value)
public static int cvCheckArr(opencv_core.CvArr arr, int flags, double min_val, double max_val)
public static int cvCheckArr(opencv_core.CvArr arr)
public static int cvCheckArray(opencv_core.CvArr arg1, int arg2, double arg3, double arg4)
public static void cvRandArr(LongPointer rng, opencv_core.CvArr arr, int dist_type, opencv_core.CvScalar param1, opencv_core.CvScalar param2)
public static void cvRandArr(LongBuffer rng, opencv_core.CvArr arr, int dist_type, opencv_core.CvScalar param1, opencv_core.CvScalar param2)
public static void cvRandArr(long[] rng,
opencv_core.CvArr arr,
int dist_type,
opencv_core.CvScalar param1,
opencv_core.CvScalar param2)
public static void cvRandShuffle(opencv_core.CvArr mat, LongPointer rng, double iter_factor)
public static void cvRandShuffle(opencv_core.CvArr mat, LongPointer rng)
public static void cvRandShuffle(opencv_core.CvArr mat, LongBuffer rng, double iter_factor)
public static void cvRandShuffle(opencv_core.CvArr mat, LongBuffer rng)
public static void cvRandShuffle(opencv_core.CvArr mat, long[] rng, double iter_factor)
public static void cvRandShuffle(opencv_core.CvArr mat, long[] rng)
public static void cvSort(opencv_core.CvArr src, opencv_core.CvArr dst, opencv_core.CvArr idxmat, int flags)
public static void cvSort(opencv_core.CvArr src)
public static int cvSolveCubic(opencv_core.CvMat coeffs, opencv_core.CvMat roots)
public static void cvSolvePoly(opencv_core.CvMat coeffs, opencv_core.CvMat roots2, int maxiter, int fig)
public static void cvSolvePoly(opencv_core.CvMat coeffs, opencv_core.CvMat roots2)
public static void cvCrossProduct(opencv_core.CvArr src1, opencv_core.CvArr src2, opencv_core.CvArr dst)
public static void cvMatMulAdd(opencv_core.CvArr src1, opencv_core.CvArr src2, opencv_core.CvArr src3, opencv_core.CvArr dst)
public static void cvMatMul(opencv_core.CvArr src1, opencv_core.CvArr src2, opencv_core.CvArr dst)
public static void cvGEMM(opencv_core.CvArr src1, opencv_core.CvArr src2, double alpha, opencv_core.CvArr src3, double beta, opencv_core.CvArr dst, int tABC)
public static void cvGEMM(opencv_core.CvArr src1, opencv_core.CvArr src2, double alpha, opencv_core.CvArr src3, double beta, opencv_core.CvArr dst)
public static void cvMatMulAddEx(opencv_core.CvArr arg1, opencv_core.CvArr arg2, double arg3, opencv_core.CvArr arg4, double arg5, opencv_core.CvArr arg6, int arg7)
public static void cvTransform(opencv_core.CvArr src, opencv_core.CvArr dst, opencv_core.CvMat transmat, opencv_core.CvMat shiftvec)
public static void cvTransform(opencv_core.CvArr src, opencv_core.CvArr dst, opencv_core.CvMat transmat)
public static void cvMatMulAddS(opencv_core.CvArr arg1, opencv_core.CvArr arg2, opencv_core.CvMat arg3, opencv_core.CvMat arg4)
public static void cvPerspectiveTransform(opencv_core.CvArr src, opencv_core.CvArr dst, opencv_core.CvMat mat)
public static void cvMulTransposed(opencv_core.CvArr src, opencv_core.CvArr dst, int order, opencv_core.CvArr delta, double scale)
public static void cvMulTransposed(opencv_core.CvArr src, opencv_core.CvArr dst, int order)
public static void cvTranspose(opencv_core.CvArr src, opencv_core.CvArr dst)
public static void cvT(opencv_core.CvArr arg1, opencv_core.CvArr arg2)
public static void cvCompleteSymm(opencv_core.CvMat matrix, int LtoR)
public static void cvCompleteSymm(opencv_core.CvMat matrix)
public static void cvFlip(opencv_core.CvArr src, opencv_core.CvArr dst, int flip_mode)
public static void cvFlip(opencv_core.CvArr src)
public static void cvMirror(opencv_core.CvArr arg1, opencv_core.CvArr arg2, int arg3)
public static void cvSVD(opencv_core.CvArr A, opencv_core.CvArr W, opencv_core.CvArr U, opencv_core.CvArr V, int flags)
public static void cvSVD(opencv_core.CvArr A, opencv_core.CvArr W)
public static void cvSVBkSb(opencv_core.CvArr W, opencv_core.CvArr U, opencv_core.CvArr V, opencv_core.CvArr B, opencv_core.CvArr X, int flags)
public static double cvInvert(opencv_core.CvArr src, opencv_core.CvArr dst, int method)
public static double cvInvert(opencv_core.CvArr src, opencv_core.CvArr dst)
public static void cvInv(opencv_core.CvArr arg1, opencv_core.CvArr arg2, int arg3)
public static int cvSolve(opencv_core.CvArr src1, opencv_core.CvArr src2, opencv_core.CvArr dst, int method)
public static int cvSolve(opencv_core.CvArr src1, opencv_core.CvArr src2, opencv_core.CvArr dst)
public static double cvDet(opencv_core.CvArr mat)
public static opencv_core.CvScalar cvTrace(opencv_core.CvArr mat)
public static void cvEigenVV(opencv_core.CvArr mat, opencv_core.CvArr evects, opencv_core.CvArr evals, double eps, int lowindex, int highindex)
public static void cvEigenVV(opencv_core.CvArr mat, opencv_core.CvArr evects, opencv_core.CvArr evals)
public static void cvSetIdentity(opencv_core.CvArr mat, opencv_core.CvScalar value)
public static void cvSetIdentity(opencv_core.CvArr mat)
public static opencv_core.CvArr cvRange(opencv_core.CvArr mat, double start, double end)
public static void cvCalcCovarMatrix(PointerPointer vects, int count, opencv_core.CvArr cov_mat, opencv_core.CvArr avg, int flags)
public static void cvCalcCovarMatrix(opencv_core.CvArr vects, int count, opencv_core.CvArr cov_mat, opencv_core.CvArr avg, int flags)
public static void cvCalcPCA(opencv_core.CvArr data, opencv_core.CvArr mean, opencv_core.CvArr eigenvals, opencv_core.CvArr eigenvects, int flags)
public static void cvProjectPCA(opencv_core.CvArr data, opencv_core.CvArr mean, opencv_core.CvArr eigenvects, opencv_core.CvArr result)
public static void cvBackProjectPCA(opencv_core.CvArr proj, opencv_core.CvArr mean, opencv_core.CvArr eigenvects, opencv_core.CvArr result)
public static double cvMahalanobis(opencv_core.CvArr vec1, opencv_core.CvArr vec2, opencv_core.CvArr mat)
public static double cvMahalonobis(opencv_core.CvArr arg1, opencv_core.CvArr arg2, opencv_core.CvArr arg3)
public static opencv_core.CvScalar cvSum(opencv_core.CvArr arr)
public static int cvCountNonZero(opencv_core.CvArr arr)
public static opencv_core.CvScalar cvAvg(opencv_core.CvArr arr, opencv_core.CvArr mask)
public static opencv_core.CvScalar cvAvg(opencv_core.CvArr arr)
public static void cvAvgSdv(opencv_core.CvArr arr, opencv_core.CvScalar mean, opencv_core.CvScalar std_dev, opencv_core.CvArr mask)
public static void cvAvgSdv(opencv_core.CvArr arr, opencv_core.CvScalar mean, opencv_core.CvScalar std_dev)
public static void cvMinMaxLoc(opencv_core.CvArr arr, DoublePointer min_val, DoublePointer max_val, opencv_core.CvPoint min_loc, opencv_core.CvPoint max_loc, opencv_core.CvArr mask)
public static void cvMinMaxLoc(opencv_core.CvArr arr, DoublePointer min_val, DoublePointer max_val)
public static void cvMinMaxLoc(opencv_core.CvArr arr, DoubleBuffer min_val, DoubleBuffer max_val, IntBuffer min_loc, IntBuffer max_loc, opencv_core.CvArr mask)
public static void cvMinMaxLoc(opencv_core.CvArr arr, DoubleBuffer min_val, DoubleBuffer max_val)
public static void cvMinMaxLoc(opencv_core.CvArr arr, double[] min_val, double[] max_val, int[] min_loc, int[] max_loc, opencv_core.CvArr mask)
public static void cvMinMaxLoc(opencv_core.CvArr arr, double[] min_val, double[] max_val)
public static double cvNorm(opencv_core.CvArr arr1, opencv_core.CvArr arr2, int norm_type, opencv_core.CvArr mask)
public static double cvNorm(opencv_core.CvArr arr1)
public static void cvNormalize(opencv_core.CvArr src, opencv_core.CvArr dst, double a, double b, int norm_type, opencv_core.CvArr mask)
public static void cvNormalize(opencv_core.CvArr src, opencv_core.CvArr dst)
public static void cvReduce(opencv_core.CvArr src, opencv_core.CvArr dst, int dim, int op)
public static void cvReduce(opencv_core.CvArr src, opencv_core.CvArr dst)
public static void cvDFT(opencv_core.CvArr src, opencv_core.CvArr dst, int flags, int nonzero_rows)
public static void cvDFT(opencv_core.CvArr src, opencv_core.CvArr dst, int flags)
public static void cvFFT(opencv_core.CvArr arg1, opencv_core.CvArr arg2, int arg3, int arg4)
public static void cvMulSpectrums(opencv_core.CvArr src1, opencv_core.CvArr src2, opencv_core.CvArr dst, int flags)
public static int cvGetOptimalDFTSize(int size0)
public static void cvDCT(opencv_core.CvArr src, opencv_core.CvArr dst, int flags)
public static int cvSliceLength(opencv_core.CvSlice slice, opencv_core.CvSeq seq)
public static opencv_core.CvMemStorage cvCreateMemStorage(int block_size)
public static opencv_core.CvMemStorage cvCreateMemStorage()
public static opencv_core.CvMemStorage cvCreateChildMemStorage(opencv_core.CvMemStorage parent)
public static void cvReleaseMemStorage(PointerPointer storage)
public static void cvReleaseMemStorage(opencv_core.CvMemStorage storage)
public static void cvClearMemStorage(opencv_core.CvMemStorage storage)
public static void cvSaveMemStoragePos(opencv_core.CvMemStorage storage, opencv_core.CvMemStoragePos pos)
public static void cvRestoreMemStoragePos(opencv_core.CvMemStorage storage, opencv_core.CvMemStoragePos pos)
public static Pointer cvMemStorageAlloc(opencv_core.CvMemStorage storage, long size)
public static opencv_core.CvString cvMemStorageAllocString(opencv_core.CvMemStorage storage, BytePointer ptr, int len)
public static opencv_core.CvString cvMemStorageAllocString(opencv_core.CvMemStorage storage, BytePointer ptr)
public static opencv_core.CvString cvMemStorageAllocString(opencv_core.CvMemStorage storage, String ptr, int len)
public static opencv_core.CvString cvMemStorageAllocString(opencv_core.CvMemStorage storage, String ptr)
public static opencv_core.CvSeq cvCreateSeq(int seq_flags, long header_size, long elem_size, opencv_core.CvMemStorage storage)
public static void cvSetSeqBlockSize(opencv_core.CvSeq seq, int delta_elems)
public static BytePointer cvSeqPush(opencv_core.CvSeq seq, Pointer element)
public static BytePointer cvSeqPush(opencv_core.CvSeq seq)
public static BytePointer cvSeqPushFront(opencv_core.CvSeq seq, Pointer element)
public static BytePointer cvSeqPushFront(opencv_core.CvSeq seq)
public static void cvSeqPop(opencv_core.CvSeq seq, Pointer element)
public static void cvSeqPop(opencv_core.CvSeq seq)
public static void cvSeqPopFront(opencv_core.CvSeq seq, Pointer element)
public static void cvSeqPopFront(opencv_core.CvSeq seq)
public static void cvSeqPushMulti(opencv_core.CvSeq seq, Pointer elements, int count, int in_front)
public static void cvSeqPushMulti(opencv_core.CvSeq seq, Pointer elements, int count)
public static void cvSeqPopMulti(opencv_core.CvSeq seq, Pointer elements, int count, int in_front)
public static void cvSeqPopMulti(opencv_core.CvSeq seq, Pointer elements, int count)
public static BytePointer cvSeqInsert(opencv_core.CvSeq seq, int before_index, Pointer element)
public static BytePointer cvSeqInsert(opencv_core.CvSeq seq, int before_index)
public static void cvSeqRemove(opencv_core.CvSeq seq, int index)
public static void cvClearSeq(opencv_core.CvSeq seq)
public static BytePointer cvGetSeqElem(opencv_core.CvSeq seq, int index)
public static int cvSeqElemIdx(opencv_core.CvSeq seq, Pointer element, PointerPointer block)
public static int cvSeqElemIdx(opencv_core.CvSeq seq, Pointer element)
public static int cvSeqElemIdx(opencv_core.CvSeq seq, Pointer element, opencv_core.CvSeqBlock block)
public static void cvStartAppendToSeq(opencv_core.CvSeq seq, opencv_core.CvSeqWriter writer)
public static void cvStartWriteSeq(int seq_flags,
int header_size,
int elem_size,
opencv_core.CvMemStorage storage,
opencv_core.CvSeqWriter writer)
public static opencv_core.CvSeq cvEndWriteSeq(opencv_core.CvSeqWriter writer)
public static void cvFlushSeqWriter(opencv_core.CvSeqWriter writer)
public static void cvStartReadSeq(opencv_core.CvSeq seq, opencv_core.CvSeqReader reader, int reverse)
public static void cvStartReadSeq(opencv_core.CvSeq seq, opencv_core.CvSeqReader reader)
public static int cvGetSeqReaderPos(opencv_core.CvSeqReader reader)
public static void cvSetSeqReaderPos(opencv_core.CvSeqReader reader, int index, int is_relative)
public static void cvSetSeqReaderPos(opencv_core.CvSeqReader reader, int index)
public static Pointer cvCvtSeqToArray(opencv_core.CvSeq seq, Pointer elements, opencv_core.CvSlice slice)
public static Pointer cvCvtSeqToArray(opencv_core.CvSeq seq, Pointer elements)
public static opencv_core.CvSeq cvMakeSeqHeaderForArray(int seq_type, int header_size, int elem_size, Pointer elements, int total, opencv_core.CvSeq seq, opencv_core.CvSeqBlock block)
public static opencv_core.CvSeq cvSeqSlice(opencv_core.CvSeq seq, opencv_core.CvSlice slice, opencv_core.CvMemStorage storage, int copy_data)
public static opencv_core.CvSeq cvSeqSlice(opencv_core.CvSeq seq, opencv_core.CvSlice slice)
public static opencv_core.CvSeq cvCloneSeq(opencv_core.CvSeq seq, opencv_core.CvMemStorage storage)
public static opencv_core.CvSeq cvCloneSeq(opencv_core.CvSeq seq)
public static void cvSeqRemoveSlice(opencv_core.CvSeq seq, opencv_core.CvSlice slice)
public static void cvSeqInsertSlice(opencv_core.CvSeq seq, int before_index, opencv_core.CvArr from_arr)
public static void cvSeqSort(opencv_core.CvSeq seq, opencv_core.CvCmpFunc func, Pointer userdata)
public static void cvSeqSort(opencv_core.CvSeq seq, opencv_core.CvCmpFunc func)
public static BytePointer cvSeqSearch(opencv_core.CvSeq seq, Pointer elem, opencv_core.CvCmpFunc func, int is_sorted, IntPointer elem_idx, Pointer userdata)
public static BytePointer cvSeqSearch(opencv_core.CvSeq seq, Pointer elem, opencv_core.CvCmpFunc func, int is_sorted, IntPointer elem_idx)
public static ByteBuffer cvSeqSearch(opencv_core.CvSeq seq, Pointer elem, opencv_core.CvCmpFunc func, int is_sorted, IntBuffer elem_idx, Pointer userdata)
public static ByteBuffer cvSeqSearch(opencv_core.CvSeq seq, Pointer elem, opencv_core.CvCmpFunc func, int is_sorted, IntBuffer elem_idx)
public static byte[] cvSeqSearch(opencv_core.CvSeq seq, Pointer elem, opencv_core.CvCmpFunc func, int is_sorted, int[] elem_idx, Pointer userdata)
public static byte[] cvSeqSearch(opencv_core.CvSeq seq, Pointer elem, opencv_core.CvCmpFunc func, int is_sorted, int[] elem_idx)
public static void cvSeqInvert(opencv_core.CvSeq seq)
public static int cvSeqPartition(opencv_core.CvSeq seq, opencv_core.CvMemStorage storage, PointerPointer labels, opencv_core.CvCmpFunc is_equal, Pointer userdata)
public static int cvSeqPartition(opencv_core.CvSeq seq, opencv_core.CvMemStorage storage, opencv_core.CvSeq labels, opencv_core.CvCmpFunc is_equal, Pointer userdata)
public static void cvChangeSeqBlock(Pointer reader, int direction)
public static void cvCreateSeqBlock(opencv_core.CvSeqWriter writer)
public static opencv_core.CvSet cvCreateSet(int set_flags, int header_size, int elem_size, opencv_core.CvMemStorage storage)
public static int cvSetAdd(opencv_core.CvSet set_header, opencv_core.CvSetElem elem, PointerPointer inserted_elem)
public static int cvSetAdd(opencv_core.CvSet set_header)
public static int cvSetAdd(opencv_core.CvSet set_header, opencv_core.CvSetElem elem, opencv_core.CvSetElem inserted_elem)
public static opencv_core.CvSetElem cvSetNew(opencv_core.CvSet set_header)
public static void cvSetRemoveByPtr(opencv_core.CvSet set_header, Pointer elem)
public static void cvSetRemove(opencv_core.CvSet set_header, int index)
public static opencv_core.CvSetElem cvGetSetElem(opencv_core.CvSet set_header, int idx)
public static void cvClearSet(opencv_core.CvSet set_header)
public static opencv_core.CvGraph cvCreateGraph(int graph_flags, int header_size, int vtx_size, int edge_size, opencv_core.CvMemStorage storage)
public static int cvGraphAddVtx(opencv_core.CvGraph graph, opencv_core.CvGraphVtx vtx, PointerPointer inserted_vtx)
public static int cvGraphAddVtx(opencv_core.CvGraph graph)
public static int cvGraphAddVtx(opencv_core.CvGraph graph, opencv_core.CvGraphVtx vtx, opencv_core.CvGraphVtx inserted_vtx)
public static int cvGraphRemoveVtx(opencv_core.CvGraph graph, int index)
public static int cvGraphRemoveVtxByPtr(opencv_core.CvGraph graph, opencv_core.CvGraphVtx vtx)
public static int cvGraphAddEdge(opencv_core.CvGraph graph, int start_idx, int end_idx, opencv_core.CvGraphEdge edge, PointerPointer inserted_edge)
public static int cvGraphAddEdge(opencv_core.CvGraph graph, int start_idx, int end_idx)
public static int cvGraphAddEdge(opencv_core.CvGraph graph, int start_idx, int end_idx, opencv_core.CvGraphEdge edge, opencv_core.CvGraphEdge inserted_edge)
public static int cvGraphAddEdgeByPtr(opencv_core.CvGraph graph, opencv_core.CvGraphVtx start_vtx, opencv_core.CvGraphVtx end_vtx, opencv_core.CvGraphEdge edge, PointerPointer inserted_edge)
public static int cvGraphAddEdgeByPtr(opencv_core.CvGraph graph, opencv_core.CvGraphVtx start_vtx, opencv_core.CvGraphVtx end_vtx)
public static int cvGraphAddEdgeByPtr(opencv_core.CvGraph graph, opencv_core.CvGraphVtx start_vtx, opencv_core.CvGraphVtx end_vtx, opencv_core.CvGraphEdge edge, opencv_core.CvGraphEdge inserted_edge)
public static void cvGraphRemoveEdge(opencv_core.CvGraph graph, int start_idx, int end_idx)
public static void cvGraphRemoveEdgeByPtr(opencv_core.CvGraph graph, opencv_core.CvGraphVtx start_vtx, opencv_core.CvGraphVtx end_vtx)
public static opencv_core.CvGraphEdge cvFindGraphEdge(opencv_core.CvGraph graph, int start_idx, int end_idx)
public static opencv_core.CvGraphEdge cvFindGraphEdgeByPtr(opencv_core.CvGraph graph, opencv_core.CvGraphVtx start_vtx, opencv_core.CvGraphVtx end_vtx)
public static opencv_core.CvGraphEdge cvGraphFindEdge(opencv_core.CvGraph arg1, int arg2, int arg3)
public static opencv_core.CvGraphEdge cvGraphFindEdgeByPtr(opencv_core.CvGraph arg1, opencv_core.CvGraphVtx arg2, opencv_core.CvGraphVtx arg3)
public static void cvClearGraph(opencv_core.CvGraph graph)
public static int cvGraphVtxDegree(opencv_core.CvGraph graph, int vtx_idx)
public static int cvGraphVtxDegreeByPtr(opencv_core.CvGraph graph, opencv_core.CvGraphVtx vtx)
public static opencv_core.CvGraphScanner cvCreateGraphScanner(opencv_core.CvGraph graph, opencv_core.CvGraphVtx vtx, int mask)
public static opencv_core.CvGraphScanner cvCreateGraphScanner(opencv_core.CvGraph graph)
public static void cvReleaseGraphScanner(PointerPointer scanner)
public static void cvReleaseGraphScanner(opencv_core.CvGraphScanner scanner)
public static int cvNextGraphItem(opencv_core.CvGraphScanner scanner)
public static opencv_core.CvGraph cvCloneGraph(opencv_core.CvGraph graph, opencv_core.CvMemStorage storage)
public static void cvLine(opencv_core.CvArr img, opencv_core.CvPoint pt1, opencv_core.CvPoint pt2, opencv_core.CvScalar color, int thickness, int line_type, int shift)
public static void cvLine(opencv_core.CvArr img, opencv_core.CvPoint pt1, opencv_core.CvPoint pt2, opencv_core.CvScalar color)
public static void cvLine(opencv_core.CvArr img, IntBuffer pt1, IntBuffer pt2, opencv_core.CvScalar color, int thickness, int line_type, int shift)
public static void cvLine(opencv_core.CvArr img, IntBuffer pt1, IntBuffer pt2, opencv_core.CvScalar color)
public static void cvLine(opencv_core.CvArr img, int[] pt1, int[] pt2, opencv_core.CvScalar color, int thickness, int line_type, int shift)
public static void cvLine(opencv_core.CvArr img, int[] pt1, int[] pt2, opencv_core.CvScalar color)
public static void cvRectangle(opencv_core.CvArr img, opencv_core.CvPoint pt1, opencv_core.CvPoint pt2, opencv_core.CvScalar color, int thickness, int line_type, int shift)
public static void cvRectangle(opencv_core.CvArr img, opencv_core.CvPoint pt1, opencv_core.CvPoint pt2, opencv_core.CvScalar color)
public static void cvRectangle(opencv_core.CvArr img, IntBuffer pt1, IntBuffer pt2, opencv_core.CvScalar color, int thickness, int line_type, int shift)
public static void cvRectangle(opencv_core.CvArr img, IntBuffer pt1, IntBuffer pt2, opencv_core.CvScalar color)
public static void cvRectangle(opencv_core.CvArr img, int[] pt1, int[] pt2, opencv_core.CvScalar color, int thickness, int line_type, int shift)
public static void cvRectangle(opencv_core.CvArr img, int[] pt1, int[] pt2, opencv_core.CvScalar color)
public static void cvRectangleR(opencv_core.CvArr img, opencv_core.CvRect r, opencv_core.CvScalar color, int thickness, int line_type, int shift)
public static void cvRectangleR(opencv_core.CvArr img, opencv_core.CvRect r, opencv_core.CvScalar color)
public static void cvCircle(opencv_core.CvArr img, opencv_core.CvPoint center, int radius, opencv_core.CvScalar color, int thickness, int line_type, int shift)
public static void cvCircle(opencv_core.CvArr img, opencv_core.CvPoint center, int radius, opencv_core.CvScalar color)
public static void cvCircle(opencv_core.CvArr img, IntBuffer center, int radius, opencv_core.CvScalar color, int thickness, int line_type, int shift)
public static void cvCircle(opencv_core.CvArr img, IntBuffer center, int radius, opencv_core.CvScalar color)
public static void cvCircle(opencv_core.CvArr img, int[] center, int radius, opencv_core.CvScalar color, int thickness, int line_type, int shift)
public static void cvCircle(opencv_core.CvArr img, int[] center, int radius, opencv_core.CvScalar color)
public static void cvEllipse(opencv_core.CvArr img, opencv_core.CvPoint center, opencv_core.CvSize axes, double angle, double start_angle, double end_angle, opencv_core.CvScalar color, int thickness, int line_type, int shift)
public static void cvEllipse(opencv_core.CvArr img, opencv_core.CvPoint center, opencv_core.CvSize axes, double angle, double start_angle, double end_angle, opencv_core.CvScalar color)
public static void cvEllipse(opencv_core.CvArr img, IntBuffer center, opencv_core.CvSize axes, double angle, double start_angle, double end_angle, opencv_core.CvScalar color, int thickness, int line_type, int shift)
public static void cvEllipse(opencv_core.CvArr img, IntBuffer center, opencv_core.CvSize axes, double angle, double start_angle, double end_angle, opencv_core.CvScalar color)
public static void cvEllipse(opencv_core.CvArr img, int[] center, opencv_core.CvSize axes, double angle, double start_angle, double end_angle, opencv_core.CvScalar color, int thickness, int line_type, int shift)
public static void cvEllipse(opencv_core.CvArr img, int[] center, opencv_core.CvSize axes, double angle, double start_angle, double end_angle, opencv_core.CvScalar color)
public static void cvEllipseBox(opencv_core.CvArr img, opencv_core.CvBox2D box, opencv_core.CvScalar color, int thickness, int line_type, int shift)
public static void cvEllipseBox(opencv_core.CvArr img, opencv_core.CvBox2D box, opencv_core.CvScalar color)
public static void cvFillConvexPoly(opencv_core.CvArr img, opencv_core.CvPoint pts, int npts, opencv_core.CvScalar color, int line_type, int shift)
public static void cvFillConvexPoly(opencv_core.CvArr img, opencv_core.CvPoint pts, int npts, opencv_core.CvScalar color)
public static void cvFillConvexPoly(opencv_core.CvArr img, IntBuffer pts, int npts, opencv_core.CvScalar color, int line_type, int shift)
public static void cvFillConvexPoly(opencv_core.CvArr img, IntBuffer pts, int npts, opencv_core.CvScalar color)
public static void cvFillConvexPoly(opencv_core.CvArr img, int[] pts, int npts, opencv_core.CvScalar color, int line_type, int shift)
public static void cvFillConvexPoly(opencv_core.CvArr img, int[] pts, int npts, opencv_core.CvScalar color)
public static void cvFillPoly(opencv_core.CvArr img, PointerPointer pts, IntPointer npts, int contours, opencv_core.CvScalar color, int line_type, int shift)
public static void cvFillPoly(opencv_core.CvArr img, opencv_core.CvPoint pts, IntPointer npts, int contours, opencv_core.CvScalar color)
public static void cvFillPoly(opencv_core.CvArr img, opencv_core.CvPoint pts, IntPointer npts, int contours, opencv_core.CvScalar color, int line_type, int shift)
public static void cvFillPoly(opencv_core.CvArr img, IntBuffer pts, IntBuffer npts, int contours, opencv_core.CvScalar color, int line_type, int shift)
public static void cvFillPoly(opencv_core.CvArr img, IntBuffer pts, IntBuffer npts, int contours, opencv_core.CvScalar color)
public static void cvFillPoly(opencv_core.CvArr img, int[] pts, int[] npts, int contours, opencv_core.CvScalar color, int line_type, int shift)
public static void cvFillPoly(opencv_core.CvArr img, int[] pts, int[] npts, int contours, opencv_core.CvScalar color)
public static void cvPolyLine(opencv_core.CvArr img, PointerPointer pts, IntPointer npts, int contours, int is_closed, opencv_core.CvScalar color, int thickness, int line_type, int shift)
public static void cvPolyLine(opencv_core.CvArr img, opencv_core.CvPoint pts, IntPointer npts, int contours, int is_closed, opencv_core.CvScalar color)
public static void cvPolyLine(opencv_core.CvArr img, opencv_core.CvPoint pts, IntPointer npts, int contours, int is_closed, opencv_core.CvScalar color, int thickness, int line_type, int shift)
public static void cvPolyLine(opencv_core.CvArr img, IntBuffer pts, IntBuffer npts, int contours, int is_closed, opencv_core.CvScalar color, int thickness, int line_type, int shift)
public static void cvPolyLine(opencv_core.CvArr img, IntBuffer pts, IntBuffer npts, int contours, int is_closed, opencv_core.CvScalar color)
public static void cvPolyLine(opencv_core.CvArr img, int[] pts, int[] npts, int contours, int is_closed, opencv_core.CvScalar color, int thickness, int line_type, int shift)
public static void cvPolyLine(opencv_core.CvArr img, int[] pts, int[] npts, int contours, int is_closed, opencv_core.CvScalar color)
public static void cvDrawRect(opencv_core.CvArr arg1, opencv_core.CvPoint arg2, opencv_core.CvPoint arg3, opencv_core.CvScalar arg4, int arg5, int arg6, int arg7)
public static void cvDrawRect(opencv_core.CvArr arg1, IntBuffer arg2, IntBuffer arg3, opencv_core.CvScalar arg4, int arg5, int arg6, int arg7)
public static void cvDrawRect(opencv_core.CvArr arg1, int[] arg2, int[] arg3, opencv_core.CvScalar arg4, int arg5, int arg6, int arg7)
public static void cvDrawLine(opencv_core.CvArr arg1, opencv_core.CvPoint arg2, opencv_core.CvPoint arg3, opencv_core.CvScalar arg4, int arg5, int arg6, int arg7)
public static void cvDrawLine(opencv_core.CvArr arg1, IntBuffer arg2, IntBuffer arg3, opencv_core.CvScalar arg4, int arg5, int arg6, int arg7)
public static void cvDrawLine(opencv_core.CvArr arg1, int[] arg2, int[] arg3, opencv_core.CvScalar arg4, int arg5, int arg6, int arg7)
public static void cvDrawCircle(opencv_core.CvArr arg1, opencv_core.CvPoint arg2, int arg3, opencv_core.CvScalar arg4, int arg5, int arg6, int arg7)
public static void cvDrawCircle(opencv_core.CvArr arg1, IntBuffer arg2, int arg3, opencv_core.CvScalar arg4, int arg5, int arg6, int arg7)
public static void cvDrawCircle(opencv_core.CvArr arg1, int[] arg2, int arg3, opencv_core.CvScalar arg4, int arg5, int arg6, int arg7)
public static void cvDrawEllipse(opencv_core.CvArr arg1, opencv_core.CvPoint arg2, opencv_core.CvSize arg3, double arg4, double arg5, double arg6, opencv_core.CvScalar arg7, int arg8, int arg9, int arg10)
public static void cvDrawEllipse(opencv_core.CvArr arg1, IntBuffer arg2, opencv_core.CvSize arg3, double arg4, double arg5, double arg6, opencv_core.CvScalar arg7, int arg8, int arg9, int arg10)
public static void cvDrawEllipse(opencv_core.CvArr arg1, int[] arg2, opencv_core.CvSize arg3, double arg4, double arg5, double arg6, opencv_core.CvScalar arg7, int arg8, int arg9, int arg10)
public static void cvDrawPolyLine(opencv_core.CvArr arg1, PointerPointer arg2, IntPointer arg3, int arg4, int arg5, opencv_core.CvScalar arg6, int arg7, int arg8, int arg9)
public static void cvDrawPolyLine(opencv_core.CvArr arg1, opencv_core.CvPoint arg2, IntPointer arg3, int arg4, int arg5, opencv_core.CvScalar arg6, int arg7, int arg8, int arg9)
public static void cvDrawPolyLine(opencv_core.CvArr arg1, IntBuffer arg2, IntBuffer arg3, int arg4, int arg5, opencv_core.CvScalar arg6, int arg7, int arg8, int arg9)
public static void cvDrawPolyLine(opencv_core.CvArr arg1, int[] arg2, int[] arg3, int arg4, int arg5, opencv_core.CvScalar arg6, int arg7, int arg8, int arg9)
public static int cvClipLine(opencv_core.CvSize img_size, opencv_core.CvPoint pt1, opencv_core.CvPoint pt2)
public static int cvClipLine(opencv_core.CvSize img_size, IntBuffer pt1, IntBuffer pt2)
public static int cvClipLine(opencv_core.CvSize img_size, int[] pt1, int[] pt2)
public static int cvInitLineIterator(opencv_core.CvArr image, opencv_core.CvPoint pt1, opencv_core.CvPoint pt2, opencv_core.CvLineIterator line_iterator, int connectivity, int left_to_right)
public static int cvInitLineIterator(opencv_core.CvArr image, opencv_core.CvPoint pt1, opencv_core.CvPoint pt2, opencv_core.CvLineIterator line_iterator)
public static int cvInitLineIterator(opencv_core.CvArr image, IntBuffer pt1, IntBuffer pt2, opencv_core.CvLineIterator line_iterator, int connectivity, int left_to_right)
public static int cvInitLineIterator(opencv_core.CvArr image, IntBuffer pt1, IntBuffer pt2, opencv_core.CvLineIterator line_iterator)
public static int cvInitLineIterator(opencv_core.CvArr image, int[] pt1, int[] pt2, opencv_core.CvLineIterator line_iterator, int connectivity, int left_to_right)
public static int cvInitLineIterator(opencv_core.CvArr image, int[] pt1, int[] pt2, opencv_core.CvLineIterator line_iterator)
public static void cvInitFont(opencv_core.CvFont font, int font_face, double hscale, double vscale, double shear, int thickness, int line_type)
public static void cvInitFont(opencv_core.CvFont font, int font_face, double hscale, double vscale)
public static opencv_core.CvFont cvFont(double scale, int thickness)
public static opencv_core.CvFont cvFont(double scale)
public static void cvPutText(opencv_core.CvArr img, BytePointer text, opencv_core.CvPoint org, opencv_core.CvFont font, opencv_core.CvScalar color)
public static void cvPutText(opencv_core.CvArr img, String text, IntBuffer org, opencv_core.CvFont font, opencv_core.CvScalar color)
public static void cvPutText(opencv_core.CvArr img, BytePointer text, int[] org, opencv_core.CvFont font, opencv_core.CvScalar color)
public static void cvPutText(opencv_core.CvArr img, String text, opencv_core.CvPoint org, opencv_core.CvFont font, opencv_core.CvScalar color)
public static void cvPutText(opencv_core.CvArr img, BytePointer text, IntBuffer org, opencv_core.CvFont font, opencv_core.CvScalar color)
public static void cvPutText(opencv_core.CvArr img, String text, int[] org, opencv_core.CvFont font, opencv_core.CvScalar color)
public static void cvGetTextSize(BytePointer text_string, opencv_core.CvFont font, opencv_core.CvSize text_size, IntPointer baseline)
public static void cvGetTextSize(String text_string, opencv_core.CvFont font, opencv_core.CvSize text_size, IntBuffer baseline)
public static void cvGetTextSize(BytePointer text_string, opencv_core.CvFont font, opencv_core.CvSize text_size, int[] baseline)
public static void cvGetTextSize(String text_string, opencv_core.CvFont font, opencv_core.CvSize text_size, IntPointer baseline)
public static void cvGetTextSize(BytePointer text_string, opencv_core.CvFont font, opencv_core.CvSize text_size, IntBuffer baseline)
public static void cvGetTextSize(String text_string, opencv_core.CvFont font, opencv_core.CvSize text_size, int[] baseline)
public static opencv_core.CvScalar cvColorToScalar(double packed_color, int arrtype)
public static int cvEllipse2Poly(opencv_core.CvPoint center, opencv_core.CvSize axes, int angle, int arc_start, int arc_end, opencv_core.CvPoint pts, int delta)
public static int cvEllipse2Poly(IntBuffer center, opencv_core.CvSize axes, int angle, int arc_start, int arc_end, IntBuffer pts, int delta)
public static int cvEllipse2Poly(int[] center,
opencv_core.CvSize axes,
int angle,
int arc_start,
int arc_end,
int[] pts,
int delta)
public static void cvDrawContours(opencv_core.CvArr img, opencv_core.CvSeq contour, opencv_core.CvScalar external_color, opencv_core.CvScalar hole_color, int max_level, int thickness, int line_type, opencv_core.CvPoint offset)
public static void cvDrawContours(opencv_core.CvArr img, opencv_core.CvSeq contour, opencv_core.CvScalar external_color, opencv_core.CvScalar hole_color, int max_level)
public static void cvDrawContours(opencv_core.CvArr img, opencv_core.CvSeq contour, opencv_core.CvScalar external_color, opencv_core.CvScalar hole_color, int max_level, int thickness, int line_type, IntBuffer offset)
public static void cvDrawContours(opencv_core.CvArr img, opencv_core.CvSeq contour, opencv_core.CvScalar external_color, opencv_core.CvScalar hole_color, int max_level, int thickness, int line_type, int[] offset)
public static void cvLUT(opencv_core.CvArr src, opencv_core.CvArr dst, opencv_core.CvArr lut)
public static void cvInitTreeNodeIterator(opencv_core.CvTreeNodeIterator tree_iterator, Pointer first, int max_level)
public static Pointer cvNextTreeNode(opencv_core.CvTreeNodeIterator tree_iterator)
public static Pointer cvPrevTreeNode(opencv_core.CvTreeNodeIterator tree_iterator)
public static void cvInsertNodeIntoTree(Pointer node, Pointer parent, Pointer frame)
public static opencv_core.CvSeq cvTreeToNodeSeq(Pointer first, int header_size, opencv_core.CvMemStorage storage)
public static int cvKMeans2(opencv_core.CvArr samples, int cluster_count, opencv_core.CvArr labels, opencv_core.CvTermCriteria termcrit, int attempts, LongPointer rng, int flags, opencv_core.CvArr _centers, DoublePointer compactness)
public static int cvKMeans2(opencv_core.CvArr samples, int cluster_count, opencv_core.CvArr labels, opencv_core.CvTermCriteria termcrit)
public static int cvKMeans2(opencv_core.CvArr samples, int cluster_count, opencv_core.CvArr labels, opencv_core.CvTermCriteria termcrit, int attempts, LongBuffer rng, int flags, opencv_core.CvArr _centers, DoubleBuffer compactness)
public static int cvKMeans2(opencv_core.CvArr samples, int cluster_count, opencv_core.CvArr labels, opencv_core.CvTermCriteria termcrit, int attempts, long[] rng, int flags, opencv_core.CvArr _centers, double[] compactness)
public static int cvRegisterModule(opencv_core.CvModuleInfo module_info)
public static int cvUseOptimized(int on_off)
public static void cvGetModuleInfo(BytePointer module_name, PointerPointer version, PointerPointer loaded_addon_plugins)
public static void cvGetModuleInfo(BytePointer module_name, BytePointer version, BytePointer loaded_addon_plugins)
public static void cvGetModuleInfo(String module_name, ByteBuffer version, ByteBuffer loaded_addon_plugins)
public static void cvGetModuleInfo(BytePointer module_name, byte[] version, byte[] loaded_addon_plugins)
public static void cvGetModuleInfo(String module_name, BytePointer version, BytePointer loaded_addon_plugins)
public static void cvGetModuleInfo(BytePointer module_name, ByteBuffer version, ByteBuffer loaded_addon_plugins)
public static void cvGetModuleInfo(String module_name, byte[] version, byte[] loaded_addon_plugins)
public static void cvSetMemoryManager(opencv_core.CvAllocFunc alloc_func, opencv_core.CvFreeFunc free_func, Pointer userdata)
public static void cvSetMemoryManager()
public static void cvSetIPLAllocators(opencv_core.Cv_iplCreateImageHeader create_header, opencv_core.Cv_iplAllocateImageData allocate_data, opencv_core.Cv_iplDeallocate deallocate, opencv_core.Cv_iplCreateROI create_roi, opencv_core.Cv_iplCloneImage clone_image)
public static opencv_core.CvFileStorage cvOpenFileStorage(BytePointer filename, opencv_core.CvMemStorage memstorage, int flags, BytePointer encoding)
public static opencv_core.CvFileStorage cvOpenFileStorage(BytePointer filename, opencv_core.CvMemStorage memstorage, int flags)
public static opencv_core.CvFileStorage cvOpenFileStorage(String filename, opencv_core.CvMemStorage memstorage, int flags, String encoding)
public static opencv_core.CvFileStorage cvOpenFileStorage(String filename, opencv_core.CvMemStorage memstorage, int flags)
public static void cvReleaseFileStorage(PointerPointer fs)
public static void cvReleaseFileStorage(opencv_core.CvFileStorage fs)
public static BytePointer cvAttrValue(opencv_core.CvAttrList attr, BytePointer attr_name)
public static String cvAttrValue(opencv_core.CvAttrList attr, String attr_name)
public static void cvStartWriteStruct(opencv_core.CvFileStorage fs, BytePointer name, int struct_flags, BytePointer type_name, opencv_core.CvAttrList attributes)
public static void cvStartWriteStruct(opencv_core.CvFileStorage fs, BytePointer name, int struct_flags)
public static void cvStartWriteStruct(opencv_core.CvFileStorage fs, String name, int struct_flags, String type_name, opencv_core.CvAttrList attributes)
public static void cvStartWriteStruct(opencv_core.CvFileStorage fs, String name, int struct_flags)
public static void cvEndWriteStruct(opencv_core.CvFileStorage fs)
public static void cvWriteInt(opencv_core.CvFileStorage fs, BytePointer name, int value)
public static void cvWriteInt(opencv_core.CvFileStorage fs, String name, int value)
public static void cvWriteReal(opencv_core.CvFileStorage fs, BytePointer name, double value)
public static void cvWriteReal(opencv_core.CvFileStorage fs, String name, double value)
public static void cvWriteString(opencv_core.CvFileStorage fs, BytePointer name, BytePointer str, int quote)
public static void cvWriteString(opencv_core.CvFileStorage fs, BytePointer name, BytePointer str)
public static void cvWriteString(opencv_core.CvFileStorage fs, String name, String str, int quote)
public static void cvWriteString(opencv_core.CvFileStorage fs, String name, String str)
public static void cvWriteComment(opencv_core.CvFileStorage fs, BytePointer comment, int eol_comment)
public static void cvWriteComment(opencv_core.CvFileStorage fs, String comment, int eol_comment)
public static void cvWrite(opencv_core.CvFileStorage fs, BytePointer name, Pointer ptr, opencv_core.CvAttrList attributes)
public static void cvWrite(opencv_core.CvFileStorage fs, BytePointer name, Pointer ptr)
public static void cvWrite(opencv_core.CvFileStorage fs, String name, Pointer ptr, opencv_core.CvAttrList attributes)
public static void cvWrite(opencv_core.CvFileStorage fs, String name, Pointer ptr)
public static void cvStartNextStream(opencv_core.CvFileStorage fs)
public static void cvWriteRawData(opencv_core.CvFileStorage fs, Pointer src, int len, BytePointer dt)
public static void cvWriteRawData(opencv_core.CvFileStorage fs, Pointer src, int len, String dt)
public static opencv_core.CvStringHashNode cvGetHashedKey(opencv_core.CvFileStorage fs, BytePointer name, int len, int create_missing)
public static opencv_core.CvStringHashNode cvGetHashedKey(opencv_core.CvFileStorage fs, BytePointer name)
public static opencv_core.CvStringHashNode cvGetHashedKey(opencv_core.CvFileStorage fs, String name, int len, int create_missing)
public static opencv_core.CvStringHashNode cvGetHashedKey(opencv_core.CvFileStorage fs, String name)
public static opencv_core.CvFileNode cvGetRootFileNode(opencv_core.CvFileStorage fs, int stream_index)
public static opencv_core.CvFileNode cvGetRootFileNode(opencv_core.CvFileStorage fs)
public static opencv_core.CvFileNode cvGetFileNode(opencv_core.CvFileStorage fs, opencv_core.CvFileNode map, opencv_core.CvStringHashNode key, int create_missing)
public static opencv_core.CvFileNode cvGetFileNode(opencv_core.CvFileStorage fs, opencv_core.CvFileNode map, opencv_core.CvStringHashNode key)
public static opencv_core.CvFileNode cvGetFileNodeByName(opencv_core.CvFileStorage fs, opencv_core.CvFileNode map, BytePointer name)
public static opencv_core.CvFileNode cvGetFileNodeByName(opencv_core.CvFileStorage fs, opencv_core.CvFileNode map, String name)
public static int cvReadInt(opencv_core.CvFileNode node, int default_value)
public static int cvReadInt(opencv_core.CvFileNode node)
public static int cvReadIntByName(opencv_core.CvFileStorage fs, opencv_core.CvFileNode map, BytePointer name, int default_value)
public static int cvReadIntByName(opencv_core.CvFileStorage fs, opencv_core.CvFileNode map, BytePointer name)
public static int cvReadIntByName(opencv_core.CvFileStorage fs, opencv_core.CvFileNode map, String name, int default_value)
public static int cvReadIntByName(opencv_core.CvFileStorage fs, opencv_core.CvFileNode map, String name)
public static double cvReadReal(opencv_core.CvFileNode node, double default_value)
public static double cvReadReal(opencv_core.CvFileNode node)
public static double cvReadRealByName(opencv_core.CvFileStorage fs, opencv_core.CvFileNode map, BytePointer name, double default_value)
public static double cvReadRealByName(opencv_core.CvFileStorage fs, opencv_core.CvFileNode map, BytePointer name)
public static double cvReadRealByName(opencv_core.CvFileStorage fs, opencv_core.CvFileNode map, String name, double default_value)
public static double cvReadRealByName(opencv_core.CvFileStorage fs, opencv_core.CvFileNode map, String name)
public static BytePointer cvReadString(opencv_core.CvFileNode node, BytePointer default_value)
public static BytePointer cvReadString(opencv_core.CvFileNode node)
public static String cvReadString(opencv_core.CvFileNode node, String default_value)
public static BytePointer cvReadStringByName(opencv_core.CvFileStorage fs, opencv_core.CvFileNode map, BytePointer name, BytePointer default_value)
public static BytePointer cvReadStringByName(opencv_core.CvFileStorage fs, opencv_core.CvFileNode map, BytePointer name)
public static String cvReadStringByName(opencv_core.CvFileStorage fs, opencv_core.CvFileNode map, String name, String default_value)
public static String cvReadStringByName(opencv_core.CvFileStorage fs, opencv_core.CvFileNode map, String name)
public static Pointer cvRead(opencv_core.CvFileStorage fs, opencv_core.CvFileNode node, opencv_core.CvAttrList attributes)
public static Pointer cvRead(opencv_core.CvFileStorage fs, opencv_core.CvFileNode node)
public static Pointer cvReadByName(opencv_core.CvFileStorage fs, opencv_core.CvFileNode map, BytePointer name, opencv_core.CvAttrList attributes)
public static Pointer cvReadByName(opencv_core.CvFileStorage fs, opencv_core.CvFileNode map, BytePointer name)
public static Pointer cvReadByName(opencv_core.CvFileStorage fs, opencv_core.CvFileNode map, String name, opencv_core.CvAttrList attributes)
public static Pointer cvReadByName(opencv_core.CvFileStorage fs, opencv_core.CvFileNode map, String name)
public static void cvStartReadRawData(opencv_core.CvFileStorage fs, opencv_core.CvFileNode src, opencv_core.CvSeqReader reader)
public static void cvReadRawDataSlice(opencv_core.CvFileStorage fs, opencv_core.CvSeqReader reader, int count, Pointer dst, BytePointer dt)
public static void cvReadRawDataSlice(opencv_core.CvFileStorage fs, opencv_core.CvSeqReader reader, int count, Pointer dst, String dt)
public static void cvReadRawData(opencv_core.CvFileStorage fs, opencv_core.CvFileNode src, Pointer dst, BytePointer dt)
public static void cvReadRawData(opencv_core.CvFileStorage fs, opencv_core.CvFileNode src, Pointer dst, String dt)
public static void cvWriteFileNode(opencv_core.CvFileStorage fs, BytePointer new_node_name, opencv_core.CvFileNode node, int embed)
public static void cvWriteFileNode(opencv_core.CvFileStorage fs, String new_node_name, opencv_core.CvFileNode node, int embed)
public static BytePointer cvGetFileNodeName(opencv_core.CvFileNode node)
public static void cvRegisterType(opencv_core.CvTypeInfo info)
public static void cvUnregisterType(BytePointer type_name)
public static void cvUnregisterType(String type_name)
public static opencv_core.CvTypeInfo cvFirstType()
public static opencv_core.CvTypeInfo cvFindType(BytePointer type_name)
public static opencv_core.CvTypeInfo cvFindType(String type_name)
public static opencv_core.CvTypeInfo cvTypeOf(Pointer struct_ptr)
public static void cvRelease(PointerPointer struct_ptr)
public static void cvRelease(Pointer struct_ptr)
public static void cvSave(BytePointer filename, Pointer struct_ptr, BytePointer name, BytePointer comment, opencv_core.CvAttrList attributes)
public static void cvSave(BytePointer filename, Pointer struct_ptr)
public static void cvSave(String filename, Pointer struct_ptr, String name, String comment, opencv_core.CvAttrList attributes)
public static Pointer cvLoad(BytePointer filename, opencv_core.CvMemStorage memstorage, BytePointer name, PointerPointer real_name)
public static Pointer cvLoad(BytePointer filename)
public static Pointer cvLoad(BytePointer filename, opencv_core.CvMemStorage memstorage, BytePointer name, BytePointer real_name)
public static Pointer cvLoad(String filename, opencv_core.CvMemStorage memstorage, String name, ByteBuffer real_name)
public static Pointer cvLoad(BytePointer filename, opencv_core.CvMemStorage memstorage, BytePointer name, byte[] real_name)
public static Pointer cvLoad(String filename, opencv_core.CvMemStorage memstorage, String name, BytePointer real_name)
public static Pointer cvLoad(BytePointer filename, opencv_core.CvMemStorage memstorage, BytePointer name, ByteBuffer real_name)
public static Pointer cvLoad(String filename, opencv_core.CvMemStorage memstorage, String name, byte[] real_name)
public static long cvGetTickCount()
public static double cvGetTickFrequency()
public static int cvCheckHardwareSupport(int feature)
public static int cvGetNumThreads()
public static void cvSetNumThreads(int threads)
public static void cvSetNumThreads()
public static int cvGetThreadNum()
public static int cvGetErrStatus()
public static void cvSetErrStatus(int status)
public static int cvGetErrMode()
public static int cvSetErrMode(int mode)
public static void cvError(int status,
BytePointer func_name,
BytePointer err_msg,
BytePointer file_name,
int line)
public static void cvError(int status,
String func_name,
String err_msg,
String file_name,
int line)
public static BytePointer cvErrorStr(int status)
public static int cvGetErrInfo(PointerPointer errcode_desc, PointerPointer description, PointerPointer filename, IntPointer line)
public static int cvGetErrInfo(BytePointer errcode_desc, BytePointer description, BytePointer filename, IntPointer line)
public static int cvGetErrInfo(ByteBuffer errcode_desc, ByteBuffer description, ByteBuffer filename, IntBuffer line)
public static int cvGetErrInfo(byte[] errcode_desc,
byte[] description,
byte[] filename,
int[] line)
public static int cvErrorFromIppStatus(int ipp_status)
public static opencv_core.CvErrorCallback cvRedirectError(opencv_core.CvErrorCallback error_handler, Pointer userdata, PointerPointer prev_userdata)
public static opencv_core.CvErrorCallback cvRedirectError(opencv_core.CvErrorCallback error_handler)
public static opencv_core.CvErrorCallback cvRedirectError(opencv_core.CvErrorCallback error_handler, Pointer userdata, Pointer prev_userdata)
public static int cvNulDevReport(int status,
BytePointer func_name,
BytePointer err_msg,
BytePointer file_name,
int line,
Pointer userdata)
public static int cvNulDevReport(int status,
String func_name,
String err_msg,
String file_name,
int line,
Pointer userdata)
public static int cvStdErrReport(int status,
BytePointer func_name,
BytePointer err_msg,
BytePointer file_name,
int line,
Pointer userdata)
public static int cvStdErrReport(int status,
String func_name,
String err_msg,
String file_name,
int line,
Pointer userdata)
public static int cvGuiBoxReport(int status,
BytePointer func_name,
BytePointer err_msg,
BytePointer file_name,
int line,
Pointer userdata)
public static int cvGuiBoxReport(int status,
String func_name,
String err_msg,
String file_name,
int line,
Pointer userdata)
public static BytePointer format(BytePointer fmt)
public static BytePointer tempfile(BytePointer suffix)
public static BytePointer tempfile()
public static boolean setBreakOnError(boolean flag)
public static opencv_core.ErrorCallback redirectError(opencv_core.ErrorCallback errCallback, Pointer userdata, PointerPointer prevUserdata)
public static opencv_core.ErrorCallback redirectError(opencv_core.ErrorCallback errCallback)
public static opencv_core.ErrorCallback redirectError(opencv_core.ErrorCallback errCallback, Pointer userdata, Pointer prevUserdata)
public static void glob(BytePointer pattern, opencv_core.StringVector result, boolean recursive)
public static void glob(BytePointer pattern, opencv_core.StringVector result)
public static void glob(String pattern, opencv_core.StringVector result, boolean recursive)
public static void glob(String pattern, opencv_core.StringVector result)
public static void setNumThreads(int nthreads)
public static int getNumThreads()
public static int getThreadNum()
public static BytePointer getBuildInformation()
public static long getTickCount()
public static double getTickFrequency()
public static long getCPUTickCount()
public static boolean checkHardwareSupport(int feature)
public static int getNumberOfCPUs()
public static Pointer fastMalloc(long bufSize)
public static void fastFree(Pointer ptr)
public static long alignSize(long sz,
int n)
public static void setUseOptimized(boolean onoff)
public static boolean useOptimized()
public static void scalarToRawData(opencv_core.Scalar s, Pointer buf, int type, int unroll_to)
public static void scalarToRawData(opencv_core.Scalar s, Pointer buf, int type)
public static long getElemSize(int type)
public static opencv_core.BinaryFunc getConvertFunc(int sdepth, int ddepth)
public static opencv_core.BinaryFunc getConvertScaleFunc(int sdepth, int ddepth)
public static opencv_core.BinaryFunc getCopyMaskFunc(long esz)
public static void swap(opencv_core.Mat a, opencv_core.Mat b)
public static opencv_core.Mat cvarrToMat(opencv_core.CvArr arr, boolean copyData, boolean allowND, int coiMode)
public static opencv_core.Mat cvarrToMat(opencv_core.CvArr arr)
public static void extractImageCOI(opencv_core.CvArr arr, opencv_core.Mat coiimg, int coi)
public static void extractImageCOI(opencv_core.CvArr arr, opencv_core.Mat coiimg)
public static void insertImageCOI(opencv_core.Mat coiimg, opencv_core.CvArr arr, int coi)
public static void insertImageCOI(opencv_core.Mat coiimg, opencv_core.CvArr arr)
public static void add(opencv_core.Mat src1, opencv_core.Mat src2, opencv_core.Mat dst, opencv_core.Mat mask, int dtype)
public static void add(opencv_core.Mat src1, opencv_core.Mat src2, opencv_core.Mat dst)
public static void subtract(opencv_core.Mat src1, opencv_core.Mat src2, opencv_core.Mat dst, opencv_core.Mat mask, int dtype)
public static void subtract(opencv_core.Mat src1, opencv_core.Mat src2, opencv_core.Mat dst)
public static void multiply(opencv_core.Mat src1, opencv_core.Mat src2, opencv_core.Mat dst, double scale, int dtype)
public static void multiply(opencv_core.Mat src1, opencv_core.Mat src2, opencv_core.Mat dst)
public static void divide(opencv_core.Mat src1, opencv_core.Mat src2, opencv_core.Mat dst, double scale, int dtype)
public static void divide(opencv_core.Mat src1, opencv_core.Mat src2, opencv_core.Mat dst)
public static void divide(double scale,
opencv_core.Mat src2,
opencv_core.Mat dst,
int dtype)
public static void divide(double scale,
opencv_core.Mat src2,
opencv_core.Mat dst)
public static void scaleAdd(opencv_core.Mat src1, double alpha, opencv_core.Mat src2, opencv_core.Mat dst)
public static void addWeighted(opencv_core.Mat src1, double alpha, opencv_core.Mat src2, double beta, double gamma, opencv_core.Mat dst, int dtype)
public static void addWeighted(opencv_core.Mat src1, double alpha, opencv_core.Mat src2, double beta, double gamma, opencv_core.Mat dst)
public static void convertScaleAbs(opencv_core.Mat src, opencv_core.Mat dst, double alpha, double beta)
public static void convertScaleAbs(opencv_core.Mat src, opencv_core.Mat dst)
public static void LUT(opencv_core.Mat src, opencv_core.Mat lut, opencv_core.Mat dst, int interpolation)
public static void LUT(opencv_core.Mat src, opencv_core.Mat lut, opencv_core.Mat dst)
public static opencv_core.Scalar sumElems(opencv_core.Mat src)
public static int countNonZero(opencv_core.Mat src)
public static void findNonZero(opencv_core.Mat src, opencv_core.Mat idx)
public static opencv_core.Scalar mean(opencv_core.Mat src, opencv_core.Mat mask)
public static opencv_core.Scalar mean(opencv_core.Mat src)
public static void meanStdDev(opencv_core.Mat src, opencv_core.Mat mean, opencv_core.Mat stddev, opencv_core.Mat mask)
public static void meanStdDev(opencv_core.Mat src, opencv_core.Mat mean, opencv_core.Mat stddev)
public static double norm(opencv_core.Mat src1, int normType, opencv_core.Mat mask)
public static double norm(opencv_core.Mat src1)
public static double norm(opencv_core.Mat src1, opencv_core.Mat src2, int normType, opencv_core.Mat mask)
public static double norm(opencv_core.Mat src1, opencv_core.Mat src2)
public static void batchDistance(opencv_core.Mat src1, opencv_core.Mat src2, opencv_core.Mat dist, int dtype, opencv_core.Mat nidx, int normType, int K, opencv_core.Mat mask, int update, boolean crosscheck)
public static void batchDistance(opencv_core.Mat src1, opencv_core.Mat src2, opencv_core.Mat dist, int dtype, opencv_core.Mat nidx)
public static void normalize(opencv_core.Mat src, opencv_core.Mat dst, double alpha, double beta, int norm_type, int dtype, opencv_core.Mat mask)
public static void normalize(opencv_core.Mat src, opencv_core.Mat dst)
public static void minMaxLoc(opencv_core.Mat src, DoublePointer minVal, DoublePointer maxVal, opencv_core.Point minLoc, opencv_core.Point maxLoc, opencv_core.Mat mask)
public static void minMaxLoc(opencv_core.Mat src, DoublePointer minVal)
public static void minMaxLoc(opencv_core.Mat src, DoubleBuffer minVal, DoubleBuffer maxVal, opencv_core.Point minLoc, opencv_core.Point maxLoc, opencv_core.Mat mask)
public static void minMaxLoc(opencv_core.Mat src, DoubleBuffer minVal)
public static void minMaxLoc(opencv_core.Mat src, double[] minVal, double[] maxVal, opencv_core.Point minLoc, opencv_core.Point maxLoc, opencv_core.Mat mask)
public static void minMaxLoc(opencv_core.Mat src, double[] minVal)
public static void minMaxIdx(opencv_core.Mat src, DoublePointer minVal, DoublePointer maxVal, IntPointer minIdx, IntPointer maxIdx, opencv_core.Mat mask)
public static void minMaxIdx(opencv_core.Mat src, DoublePointer minVal, DoublePointer maxVal)
public static void minMaxIdx(opencv_core.Mat src, DoubleBuffer minVal, DoubleBuffer maxVal, IntBuffer minIdx, IntBuffer maxIdx, opencv_core.Mat mask)
public static void minMaxIdx(opencv_core.Mat src, DoubleBuffer minVal, DoubleBuffer maxVal)
public static void minMaxIdx(opencv_core.Mat src, double[] minVal, double[] maxVal, int[] minIdx, int[] maxIdx, opencv_core.Mat mask)
public static void minMaxIdx(opencv_core.Mat src, double[] minVal, double[] maxVal)
public static void reduce(opencv_core.Mat src, opencv_core.Mat dst, int dim, int rtype, int dtype)
public static void reduce(opencv_core.Mat src, opencv_core.Mat dst, int dim, int rtype)
public static void merge(opencv_core.Mat mv, long count, opencv_core.Mat dst)
public static void merge(opencv_core.MatVector mv, opencv_core.Mat dst)
public static void split(opencv_core.Mat src, opencv_core.Mat mvbegin)
public static void split(opencv_core.Mat m, opencv_core.MatVector mv)
public static void mixChannels(opencv_core.Mat src, long nsrcs, opencv_core.Mat dst, long ndsts, IntPointer fromTo, long npairs)
public static void mixChannels(opencv_core.Mat src, long nsrcs, opencv_core.Mat dst, long ndsts, IntBuffer fromTo, long npairs)
public static void mixChannels(opencv_core.Mat src, long nsrcs, opencv_core.Mat dst, long ndsts, int[] fromTo, long npairs)
public static void mixChannels(opencv_core.MatVector src, opencv_core.MatVector dst, IntPointer fromTo, long npairs)
public static void mixChannels(opencv_core.MatVector src, opencv_core.MatVector dst, IntBuffer fromTo, long npairs)
public static void mixChannels(opencv_core.MatVector src, opencv_core.MatVector dst, int[] fromTo, long npairs)
public static void mixChannels(opencv_core.MatVector src, opencv_core.MatVector dst, IntPointer fromTo)
public static void mixChannels(opencv_core.MatVector src, opencv_core.MatVector dst, IntBuffer fromTo)
public static void mixChannels(opencv_core.MatVector src, opencv_core.MatVector dst, int[] fromTo)
public static void extractChannel(opencv_core.Mat src, opencv_core.Mat dst, int coi)
public static void insertChannel(opencv_core.Mat src, opencv_core.Mat dst, int coi)
public static void flip(opencv_core.Mat src, opencv_core.Mat dst, int flipCode)
public static void repeat(opencv_core.Mat src, int ny, int nx, opencv_core.Mat dst)
public static opencv_core.Mat repeat(opencv_core.Mat src, int ny, int nx)
public static void hconcat(opencv_core.Mat src, long nsrc, opencv_core.Mat dst)
public static void hconcat(opencv_core.Mat src1, opencv_core.Mat src2, opencv_core.Mat dst)
public static void hconcat(opencv_core.MatVector src, opencv_core.Mat dst)
public static void vconcat(opencv_core.Mat src, long nsrc, opencv_core.Mat dst)
public static void vconcat(opencv_core.Mat src1, opencv_core.Mat src2, opencv_core.Mat dst)
public static void vconcat(opencv_core.MatVector src, opencv_core.Mat dst)
public static void bitwise_and(opencv_core.Mat src1, opencv_core.Mat src2, opencv_core.Mat dst, opencv_core.Mat mask)
public static void bitwise_and(opencv_core.Mat src1, opencv_core.Mat src2, opencv_core.Mat dst)
public static void bitwise_or(opencv_core.Mat src1, opencv_core.Mat src2, opencv_core.Mat dst, opencv_core.Mat mask)
public static void bitwise_or(opencv_core.Mat src1, opencv_core.Mat src2, opencv_core.Mat dst)
public static void bitwise_xor(opencv_core.Mat src1, opencv_core.Mat src2, opencv_core.Mat dst, opencv_core.Mat mask)
public static void bitwise_xor(opencv_core.Mat src1, opencv_core.Mat src2, opencv_core.Mat dst)
public static void bitwise_not(opencv_core.Mat src, opencv_core.Mat dst, opencv_core.Mat mask)
public static void bitwise_not(opencv_core.Mat src, opencv_core.Mat dst)
public static void absdiff(opencv_core.Mat src1, opencv_core.Mat src2, opencv_core.Mat dst)
public static void inRange(opencv_core.Mat src, opencv_core.Mat lowerb, opencv_core.Mat upperb, opencv_core.Mat dst)
public static void compare(opencv_core.Mat src1, opencv_core.Mat src2, opencv_core.Mat dst, int cmpop)
public static void min(opencv_core.Mat src1, opencv_core.Mat src2, opencv_core.Mat dst)
public static void max(opencv_core.Mat src1, opencv_core.Mat src2, opencv_core.Mat dst)
public static void min(opencv_core.Mat src1, double src2, opencv_core.Mat dst)
public static void max(opencv_core.Mat src1, double src2, opencv_core.Mat dst)
public static void sqrt(opencv_core.Mat src, opencv_core.Mat dst)
public static void pow(opencv_core.Mat src, double power, opencv_core.Mat dst)
public static void exp(opencv_core.Mat src, opencv_core.Mat dst)
public static void log(opencv_core.Mat src, opencv_core.Mat dst)
public static float cubeRoot(float val)
public static float fastAtan2(float y,
float x)
public static void exp(FloatPointer src, FloatPointer dst, int n)
public static void exp(FloatBuffer src, FloatBuffer dst, int n)
public static void exp(float[] src,
float[] dst,
int n)
public static void log(FloatPointer src, FloatPointer dst, int n)
public static void log(FloatBuffer src, FloatBuffer dst, int n)
public static void log(float[] src,
float[] dst,
int n)
public static void fastAtan2(FloatPointer y, FloatPointer x, FloatPointer dst, int n, boolean angleInDegrees)
public static void fastAtan2(FloatBuffer y, FloatBuffer x, FloatBuffer dst, int n, boolean angleInDegrees)
public static void fastAtan2(float[] y,
float[] x,
float[] dst,
int n,
boolean angleInDegrees)
public static void magnitude(FloatPointer x, FloatPointer y, FloatPointer dst, int n)
public static void magnitude(FloatBuffer x, FloatBuffer y, FloatBuffer dst, int n)
public static void magnitude(float[] x,
float[] y,
float[] dst,
int n)
public static void polarToCart(opencv_core.Mat magnitude, opencv_core.Mat angle, opencv_core.Mat x, opencv_core.Mat y, boolean angleInDegrees)
public static void polarToCart(opencv_core.Mat magnitude, opencv_core.Mat angle, opencv_core.Mat x, opencv_core.Mat y)
public static void cartToPolar(opencv_core.Mat x, opencv_core.Mat y, opencv_core.Mat magnitude, opencv_core.Mat angle, boolean angleInDegrees)
public static void cartToPolar(opencv_core.Mat x, opencv_core.Mat y, opencv_core.Mat magnitude, opencv_core.Mat angle)
public static void phase(opencv_core.Mat x, opencv_core.Mat y, opencv_core.Mat angle, boolean angleInDegrees)
public static void phase(opencv_core.Mat x, opencv_core.Mat y, opencv_core.Mat angle)
public static void magnitude(opencv_core.Mat x, opencv_core.Mat y, opencv_core.Mat magnitude)
public static boolean checkRange(opencv_core.Mat a, boolean quiet, opencv_core.Point pos, double minVal, double maxVal)
public static boolean checkRange(opencv_core.Mat a)
public static void patchNaNs(opencv_core.Mat a, double val)
public static void patchNaNs(opencv_core.Mat a)
public static void gemm(opencv_core.Mat src1, opencv_core.Mat src2, double alpha, opencv_core.Mat src3, double gamma, opencv_core.Mat dst, int flags)
public static void gemm(opencv_core.Mat src1, opencv_core.Mat src2, double alpha, opencv_core.Mat src3, double gamma, opencv_core.Mat dst)
public static void mulTransposed(opencv_core.Mat src, opencv_core.Mat dst, boolean aTa, opencv_core.Mat delta, double scale, int dtype)
public static void mulTransposed(opencv_core.Mat src, opencv_core.Mat dst, boolean aTa)
public static void transpose(opencv_core.Mat src, opencv_core.Mat dst)
public static void transform(opencv_core.Mat src, opencv_core.Mat dst, opencv_core.Mat m)
public static void perspectiveTransform(opencv_core.Mat src, opencv_core.Mat dst, opencv_core.Mat m)
public static void completeSymm(opencv_core.Mat mtx, boolean lowerToUpper)
public static void completeSymm(opencv_core.Mat mtx)
public static void setIdentity(opencv_core.Mat mtx, opencv_core.Scalar s)
public static void setIdentity(opencv_core.Mat mtx)
public static double determinant(opencv_core.Mat mtx)
public static opencv_core.Scalar trace(opencv_core.Mat mtx)
public static double invert(opencv_core.Mat src, opencv_core.Mat dst, int flags)
public static double invert(opencv_core.Mat src, opencv_core.Mat dst)
public static boolean solve(opencv_core.Mat src1, opencv_core.Mat src2, opencv_core.Mat dst, int flags)
public static boolean solve(opencv_core.Mat src1, opencv_core.Mat src2, opencv_core.Mat dst)
public static void sort(opencv_core.Mat src, opencv_core.Mat dst, int flags)
public static void sortIdx(opencv_core.Mat src, opencv_core.Mat dst, int flags)
public static int solveCubic(opencv_core.Mat coeffs, opencv_core.Mat roots)
public static double solvePoly(opencv_core.Mat coeffs, opencv_core.Mat roots, int maxIters)
public static double solvePoly(opencv_core.Mat coeffs, opencv_core.Mat roots)
public static boolean eigen(opencv_core.Mat src, opencv_core.Mat eigenvalues, int lowindex, int highindex)
public static boolean eigen(opencv_core.Mat src, opencv_core.Mat eigenvalues)
public static boolean eigen(opencv_core.Mat src, opencv_core.Mat eigenvalues, opencv_core.Mat eigenvectors, int lowindex, int highindex)
public static boolean eigen(opencv_core.Mat src, opencv_core.Mat eigenvalues, opencv_core.Mat eigenvectors)
public static boolean eigen(opencv_core.Mat src, boolean computeEigenvectors, opencv_core.Mat eigenvalues, opencv_core.Mat eigenvectors)
public static void calcCovarMatrix(opencv_core.Mat samples, int nsamples, opencv_core.Mat covar, opencv_core.Mat mean, int flags, int ctype)
public static void calcCovarMatrix(opencv_core.Mat samples, int nsamples, opencv_core.Mat covar, opencv_core.Mat mean, int flags)
public static void calcCovarMatrix(opencv_core.Mat samples, opencv_core.Mat covar, opencv_core.Mat mean, int flags, int ctype)
public static void calcCovarMatrix(opencv_core.Mat samples, opencv_core.Mat covar, opencv_core.Mat mean, int flags)
public static void PCACompute(opencv_core.Mat data, opencv_core.Mat mean, opencv_core.Mat eigenvectors, int maxComponents)
public static void PCACompute(opencv_core.Mat data, opencv_core.Mat mean, opencv_core.Mat eigenvectors)
public static void PCAComputeVar(opencv_core.Mat data, opencv_core.Mat mean, opencv_core.Mat eigenvectors, double retainedVariance)
public static void PCAProject(opencv_core.Mat data, opencv_core.Mat mean, opencv_core.Mat eigenvectors, opencv_core.Mat result)
public static void PCABackProject(opencv_core.Mat data, opencv_core.Mat mean, opencv_core.Mat eigenvectors, opencv_core.Mat result)
public static void SVDecomp(opencv_core.Mat src, opencv_core.Mat w, opencv_core.Mat u, opencv_core.Mat vt, int flags)
public static void SVDecomp(opencv_core.Mat src, opencv_core.Mat w, opencv_core.Mat u, opencv_core.Mat vt)
public static void SVBackSubst(opencv_core.Mat w, opencv_core.Mat u, opencv_core.Mat vt, opencv_core.Mat rhs, opencv_core.Mat dst)
public static double Mahalanobis(opencv_core.Mat v1, opencv_core.Mat v2, opencv_core.Mat icovar)
public static double Mahalonobis(opencv_core.Mat v1, opencv_core.Mat v2, opencv_core.Mat icovar)
public static void dft(opencv_core.Mat src, opencv_core.Mat dst, int flags, int nonzeroRows)
public static void dft(opencv_core.Mat src, opencv_core.Mat dst)
public static void idft(opencv_core.Mat src, opencv_core.Mat dst, int flags, int nonzeroRows)
public static void idft(opencv_core.Mat src, opencv_core.Mat dst)
public static void dct(opencv_core.Mat src, opencv_core.Mat dst, int flags)
public static void dct(opencv_core.Mat src, opencv_core.Mat dst)
public static void idct(opencv_core.Mat src, opencv_core.Mat dst, int flags)
public static void idct(opencv_core.Mat src, opencv_core.Mat dst)
public static void mulSpectrums(opencv_core.Mat a, opencv_core.Mat b, opencv_core.Mat c, int flags, boolean conjB)
public static void mulSpectrums(opencv_core.Mat a, opencv_core.Mat b, opencv_core.Mat c, int flags)
public static int getOptimalDFTSize(int vecsize)
public static double kmeans(opencv_core.Mat data, int K, opencv_core.Mat bestLabels, opencv_core.TermCriteria criteria, int attempts, int flags, opencv_core.Mat centers)
public static double kmeans(opencv_core.Mat data, int K, opencv_core.Mat bestLabels, opencv_core.TermCriteria criteria, int attempts, int flags)
public static opencv_core.RNG theRNG()
public static int randInt()
public static float randFloat()
public static double randDouble()
public static void randu(opencv_core.Mat dst, opencv_core.Mat low, opencv_core.Mat high)
public static void randn(opencv_core.Mat dst, opencv_core.Mat mean, opencv_core.Mat stddev)
public static void randShuffle(opencv_core.Mat dst, double iterFactor, opencv_core.RNG rng)
public static void randShuffle(opencv_core.Mat dst)
public static void randShuffle(opencv_core.Mat dst, double iterFactor)
public static void line(opencv_core.Mat img, opencv_core.Point pt1, opencv_core.Point pt2, opencv_core.Scalar color, int thickness, int lineType, int shift)
public static void line(opencv_core.Mat img, opencv_core.Point pt1, opencv_core.Point pt2, opencv_core.Scalar color)
public static void rectangle(opencv_core.Mat img, opencv_core.Point pt1, opencv_core.Point pt2, opencv_core.Scalar color, int thickness, int lineType, int shift)
public static void rectangle(opencv_core.Mat img, opencv_core.Point pt1, opencv_core.Point pt2, opencv_core.Scalar color)
public static void rectangle(opencv_core.Mat img, opencv_core.Rect rec, opencv_core.Scalar color, int thickness, int lineType, int shift)
public static void rectangle(opencv_core.Mat img, opencv_core.Rect rec, opencv_core.Scalar color)
public static void circle(opencv_core.Mat img, opencv_core.Point center, int radius, opencv_core.Scalar color, int thickness, int lineType, int shift)
public static void circle(opencv_core.Mat img, opencv_core.Point center, int radius, opencv_core.Scalar color)
public static void ellipse(opencv_core.Mat img, opencv_core.Point center, opencv_core.Size axes, double angle, double startAngle, double endAngle, opencv_core.Scalar color, int thickness, int lineType, int shift)
public static void ellipse(opencv_core.Mat img, opencv_core.Point center, opencv_core.Size axes, double angle, double startAngle, double endAngle, opencv_core.Scalar color)
public static void ellipse(opencv_core.Mat img, opencv_core.RotatedRect box, opencv_core.Scalar color, int thickness, int lineType)
public static void ellipse(opencv_core.Mat img, opencv_core.RotatedRect box, opencv_core.Scalar color)
public static void fillConvexPoly(opencv_core.Mat img, opencv_core.Point pts, int npts, opencv_core.Scalar color, int lineType, int shift)
public static void fillConvexPoly(opencv_core.Mat img, opencv_core.Point pts, int npts, opencv_core.Scalar color)
public static void fillConvexPoly(opencv_core.Mat img, opencv_core.Mat points, opencv_core.Scalar color, int lineType, int shift)
public static void fillConvexPoly(opencv_core.Mat img, opencv_core.Mat points, opencv_core.Scalar color)
public static void fillPoly(opencv_core.Mat img, PointerPointer pts, IntPointer npts, int ncontours, opencv_core.Scalar color, int lineType, int shift, opencv_core.Point offset)
public static void fillPoly(opencv_core.Mat img, opencv_core.Point pts, IntPointer npts, int ncontours, opencv_core.Scalar color)
public static void fillPoly(opencv_core.Mat img, opencv_core.Point pts, IntPointer npts, int ncontours, opencv_core.Scalar color, int lineType, int shift, opencv_core.Point offset)
public static void fillPoly(opencv_core.Mat img, opencv_core.Point pts, IntBuffer npts, int ncontours, opencv_core.Scalar color, int lineType, int shift, opencv_core.Point offset)
public static void fillPoly(opencv_core.Mat img, opencv_core.Point pts, IntBuffer npts, int ncontours, opencv_core.Scalar color)
public static void fillPoly(opencv_core.Mat img, opencv_core.Point pts, int[] npts, int ncontours, opencv_core.Scalar color, int lineType, int shift, opencv_core.Point offset)
public static void fillPoly(opencv_core.Mat img, opencv_core.Point pts, int[] npts, int ncontours, opencv_core.Scalar color)
public static void fillPoly(opencv_core.Mat img, opencv_core.MatVector pts, opencv_core.Scalar color, int lineType, int shift, opencv_core.Point offset)
public static void fillPoly(opencv_core.Mat img, opencv_core.MatVector pts, opencv_core.Scalar color)
public static void polylines(opencv_core.Mat img, PointerPointer pts, IntPointer npts, int ncontours, boolean isClosed, opencv_core.Scalar color, int thickness, int lineType, int shift)
public static void polylines(opencv_core.Mat img, opencv_core.Point pts, IntPointer npts, int ncontours, boolean isClosed, opencv_core.Scalar color)
public static void polylines(opencv_core.Mat img, opencv_core.Point pts, IntPointer npts, int ncontours, boolean isClosed, opencv_core.Scalar color, int thickness, int lineType, int shift)
public static void polylines(opencv_core.Mat img, opencv_core.Point pts, IntBuffer npts, int ncontours, boolean isClosed, opencv_core.Scalar color, int thickness, int lineType, int shift)
public static void polylines(opencv_core.Mat img, opencv_core.Point pts, IntBuffer npts, int ncontours, boolean isClosed, opencv_core.Scalar color)
public static void polylines(opencv_core.Mat img, opencv_core.Point pts, int[] npts, int ncontours, boolean isClosed, opencv_core.Scalar color, int thickness, int lineType, int shift)
public static void polylines(opencv_core.Mat img, opencv_core.Point pts, int[] npts, int ncontours, boolean isClosed, opencv_core.Scalar color)
public static void polylines(opencv_core.Mat img, opencv_core.MatVector pts, boolean isClosed, opencv_core.Scalar color, int thickness, int lineType, int shift)
public static void polylines(opencv_core.Mat img, opencv_core.MatVector pts, boolean isClosed, opencv_core.Scalar color)
public static boolean clipLine(opencv_core.Size imgSize, opencv_core.Point pt1, opencv_core.Point pt2)
public static boolean clipLine(opencv_core.Rect imgRect, opencv_core.Point pt1, opencv_core.Point pt2)
public static void ellipse2Poly(opencv_core.Point center, opencv_core.Size axes, int angle, int arcStart, int arcEnd, int delta, opencv_core.Point pts)
public static void putText(opencv_core.Mat img, BytePointer text, opencv_core.Point org, int fontFace, double fontScale, opencv_core.Scalar color, int thickness, int lineType, boolean bottomLeftOrigin)
public static void putText(opencv_core.Mat img, BytePointer text, opencv_core.Point org, int fontFace, double fontScale, opencv_core.Scalar color)
public static void putText(opencv_core.Mat img, String text, opencv_core.Point org, int fontFace, double fontScale, opencv_core.Scalar color, int thickness, int lineType, boolean bottomLeftOrigin)
public static void putText(opencv_core.Mat img, String text, opencv_core.Point org, int fontFace, double fontScale, opencv_core.Scalar color)
public static opencv_core.Size getTextSize(BytePointer text, int fontFace, double fontScale, int thickness, IntPointer baseLine)
public static opencv_core.Size getTextSize(String text, int fontFace, double fontScale, int thickness, IntBuffer baseLine)
public static opencv_core.Size getTextSize(BytePointer text, int fontFace, double fontScale, int thickness, int[] baseLine)
public static opencv_core.Size getTextSize(String text, int fontFace, double fontScale, int thickness, IntPointer baseLine)
public static opencv_core.Size getTextSize(BytePointer text, int fontFace, double fontScale, int thickness, IntBuffer baseLine)
public static opencv_core.Size getTextSize(String text, int fontFace, double fontScale, int thickness, int[] baseLine)
public static opencv_core.ConvertData getConvertElem(int fromType, int toType)
public static opencv_core.ConvertScaleData getConvertScaleElem(int fromType, int toType)
public static void minMaxLoc(opencv_core.SparseMat a, DoublePointer minVal, DoublePointer maxVal, IntPointer minIdx, IntPointer maxIdx)
public static void minMaxLoc(opencv_core.SparseMat a, DoublePointer minVal, DoublePointer maxVal)
public static void minMaxLoc(opencv_core.SparseMat a, DoubleBuffer minVal, DoubleBuffer maxVal, IntBuffer minIdx, IntBuffer maxIdx)
public static void minMaxLoc(opencv_core.SparseMat a, DoubleBuffer minVal, DoubleBuffer maxVal)
public static void minMaxLoc(opencv_core.SparseMat a, double[] minVal, double[] maxVal, int[] minIdx, int[] maxIdx)
public static void minMaxLoc(opencv_core.SparseMat a, double[] minVal, double[] maxVal)
public static double norm(opencv_core.SparseMat src, int normType)
public static void normalize(opencv_core.SparseMat src, opencv_core.SparseMat dst, double alpha, int normType)
public static void parallel_for_(opencv_core.Range range, opencv_core.ParallelLoopBody body, double nstripes)
public static void parallel_for_(opencv_core.Range range, opencv_core.ParallelLoopBody body)
Copyright © 2014. All Rights Reserved.