| Package | Description |
|---|---|
| org.bytedeco.javacpp |
| Modifier and Type | Method and Description |
|---|---|
opencv_core.SparseMat |
opencv_core.SparseMat.clone()
creates full copy of the matrix
|
opencv_core.SparseMat |
opencv_core.SparseMat.flags(int flags) |
opencv_core.SparseMat |
opencv_core.SparseMat.hdr(opencv_core.SparseMat.Hdr hdr) |
opencv_core.SparseMat |
opencv_core.SparseMatConstIterator.m() |
opencv_core.SparseMat |
opencv_core.SparseMat.position(int position) |
opencv_core.SparseMat |
opencv_core.SparseMat.put(opencv_core.Mat m)
equivalent to the corresponding constructor
|
opencv_core.SparseMat |
opencv_core.SparseMat.put(opencv_core.SparseMat m)
assignment operator.
|
| Modifier and Type | Method and Description |
|---|---|
void |
opencv_core.SparseMat.assignTo(opencv_core.SparseMat m) |
void |
opencv_core.SparseMat.assignTo(opencv_core.SparseMat m,
int type) |
static void |
opencv_imgproc.calcBackProject(opencv_core.Mat images,
int nimages,
int[] channels,
opencv_core.SparseMat hist,
opencv_core.Mat backProject,
float[] ranges) |
static void |
opencv_imgproc.calcBackProject(opencv_core.Mat images,
int nimages,
int[] channels,
opencv_core.SparseMat hist,
opencv_core.Mat backProject,
float[] ranges,
double scale,
boolean uniform) |
static void |
opencv_imgproc.calcBackProject(opencv_core.Mat images,
int nimages,
IntBuffer channels,
opencv_core.SparseMat hist,
opencv_core.Mat backProject,
FloatBuffer ranges) |
static void |
opencv_imgproc.calcBackProject(opencv_core.Mat images,
int nimages,
IntBuffer channels,
opencv_core.SparseMat hist,
opencv_core.Mat backProject,
FloatBuffer ranges,
double scale,
boolean uniform) |
static void |
opencv_imgproc.calcBackProject(opencv_core.Mat images,
int nimages,
IntPointer channels,
opencv_core.SparseMat hist,
opencv_core.Mat backProject,
FloatPointer ranges) |
static void |
opencv_imgproc.calcBackProject(opencv_core.Mat images,
int nimages,
IntPointer channels,
opencv_core.SparseMat hist,
opencv_core.Mat backProject,
FloatPointer ranges,
double scale,
boolean uniform) |
static void |
opencv_imgproc.calcBackProject(opencv_core.Mat images,
int nimages,
IntPointer channels,
opencv_core.SparseMat hist,
opencv_core.Mat backProject,
PointerPointer ranges,
double scale,
boolean uniform)
computes back projection for the set of images
|
static void |
opencv_imgproc.calcHist(opencv_core.Mat images,
int nimages,
int[] channels,
opencv_core.Mat mask,
opencv_core.SparseMat hist,
int dims,
int[] histSize,
float[] ranges) |
static void |
opencv_imgproc.calcHist(opencv_core.Mat images,
int nimages,
int[] channels,
opencv_core.Mat mask,
opencv_core.SparseMat hist,
int dims,
int[] histSize,
float[] ranges,
boolean uniform,
boolean accumulate) |
static void |
opencv_imgproc.calcHist(opencv_core.Mat images,
int nimages,
IntBuffer channels,
opencv_core.Mat mask,
opencv_core.SparseMat hist,
int dims,
IntBuffer histSize,
FloatBuffer ranges) |
static void |
opencv_imgproc.calcHist(opencv_core.Mat images,
int nimages,
IntBuffer channels,
opencv_core.Mat mask,
opencv_core.SparseMat hist,
int dims,
IntBuffer histSize,
FloatBuffer ranges,
boolean uniform,
boolean accumulate) |
static void |
opencv_imgproc.calcHist(opencv_core.Mat images,
int nimages,
IntPointer channels,
opencv_core.Mat mask,
opencv_core.SparseMat hist,
int dims,
IntPointer histSize,
FloatPointer ranges) |
static void |
opencv_imgproc.calcHist(opencv_core.Mat images,
int nimages,
IntPointer channels,
opencv_core.Mat mask,
opencv_core.SparseMat hist,
int dims,
IntPointer histSize,
FloatPointer ranges,
boolean uniform,
boolean accumulate) |
static void |
opencv_imgproc.calcHist(opencv_core.Mat images,
int nimages,
IntPointer channels,
opencv_core.Mat mask,
opencv_core.SparseMat hist,
int dims,
IntPointer histSize,
PointerPointer ranges,
boolean uniform,
boolean accumulate)
computes the joint sparse histogram for a set of images.
|
static double |
opencv_imgproc.compareHist(opencv_core.SparseMat H1,
opencv_core.SparseMat H2,
int method)
compares two histograms stored in sparse arrays
|
void |
opencv_core.SparseMat.convertTo(opencv_core.SparseMat m,
int rtype) |
void |
opencv_core.SparseMat.convertTo(opencv_core.SparseMat m,
int rtype,
double alpha)
multiplies all the matrix elements by the specified scale factor alpha and converts the results to the specified data type
|
void |
opencv_core.SparseMat.copyTo(opencv_core.SparseMat m)
copies all the data to the destination matrix.
|
static void |
opencv_core.minMaxLoc(opencv_core.SparseMat a,
double[] minVal,
double[] maxVal) |
static void |
opencv_core.minMaxLoc(opencv_core.SparseMat a,
double[] minVal,
double[] maxVal,
int[] minIdx,
int[] maxIdx) |
static void |
opencv_core.minMaxLoc(opencv_core.SparseMat a,
DoubleBuffer minVal,
DoubleBuffer maxVal) |
static void |
opencv_core.minMaxLoc(opencv_core.SparseMat a,
DoubleBuffer minVal,
DoubleBuffer maxVal,
IntBuffer minIdx,
IntBuffer maxIdx) |
static void |
opencv_core.minMaxLoc(opencv_core.SparseMat a,
DoublePointer minVal,
DoublePointer maxVal) |
static void |
opencv_core.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 double |
opencv_core.norm(opencv_core.SparseMat src,
int normType)
computes norm of a sparse matrix
|
static void |
opencv_core.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
|
opencv_core.SparseMat |
opencv_core.SparseMat.put(opencv_core.SparseMat m)
assignment operator.
|
| Constructor and Description |
|---|
opencv_core.SparseMat(opencv_core.SparseMat m)
copy constructor
|
opencv_core.SparseMatConstIterator(opencv_core.SparseMat _m)
the full constructor setting the iterator to the first sparse matrix element
|
opencv_core.SparseMatIterator(opencv_core.SparseMat _m)
the full constructor setting the iterator to the first sparse matrix element
|
Copyright © 2014. All Rights Reserved.