Package | Description |
---|---|
org.bytedeco.opencv.global | |
org.bytedeco.opencv.helper | |
org.bytedeco.opencv.opencv_core | |
org.bytedeco.opencv.opencv_imgproc |
Modifier and Type | Method and Description |
---|---|
static CvHistogram |
opencv_imgproc.cvCreateHist(int dims,
int[] sizes,
int type) |
static CvHistogram |
opencv_imgproc.cvCreateHist(int dims,
int[] sizes,
int type,
float[] ranges,
int uniform) |
static CvHistogram |
opencv_imgproc.cvCreateHist(int dims,
IntBuffer sizes,
int type) |
static CvHistogram |
opencv_imgproc.cvCreateHist(int dims,
IntBuffer sizes,
int type,
FloatBuffer ranges,
int uniform) |
static CvHistogram |
opencv_imgproc.cvCreateHist(int dims,
IntPointer sizes,
int type) |
static CvHistogram |
opencv_imgproc.cvCreateHist(int dims,
IntPointer sizes,
int type,
FloatPointer ranges,
int uniform) |
static CvHistogram |
opencv_imgproc.cvCreateHist(int dims,
IntPointer sizes,
int type,
PointerPointer ranges,
int uniform)
\brief Creates a histogram.
|
static CvHistogram |
opencv_imgproc.cvMakeHistHeaderForArray(int dims,
int[] sizes,
CvHistogram hist,
float[] data) |
static CvHistogram |
opencv_imgproc.cvMakeHistHeaderForArray(int dims,
int[] sizes,
CvHistogram hist,
float[] data,
float[] ranges,
int uniform) |
static CvHistogram |
opencv_imgproc.cvMakeHistHeaderForArray(int dims,
IntBuffer sizes,
CvHistogram hist,
FloatBuffer data) |
static CvHistogram |
opencv_imgproc.cvMakeHistHeaderForArray(int dims,
IntBuffer sizes,
CvHistogram hist,
FloatBuffer data,
FloatBuffer ranges,
int uniform) |
static CvHistogram |
opencv_imgproc.cvMakeHistHeaderForArray(int dims,
IntPointer sizes,
CvHistogram hist,
FloatPointer data) |
static CvHistogram |
opencv_imgproc.cvMakeHistHeaderForArray(int dims,
IntPointer sizes,
CvHistogram hist,
FloatPointer data,
FloatPointer ranges,
int uniform) |
static CvHistogram |
opencv_imgproc.cvMakeHistHeaderForArray(int dims,
IntPointer sizes,
CvHistogram hist,
FloatPointer data,
PointerPointer ranges,
int uniform)
\brief Makes a histogram out of an array.
|
Modifier and Type | Method and Description |
---|---|
static void |
opencv_imgproc.cvCalcArrBackProject(CvArr image,
CvArr dst,
CvHistogram hist) |
static void |
opencv_imgproc.cvCalcArrBackProject(PointerPointer image,
CvArr dst,
CvHistogram hist)
\brief Calculates back project
|
static void |
opencv_imgproc.cvCalcArrBackProjectPatch(CvArr image,
CvArr dst,
CvSize range,
CvHistogram hist,
int method,
double factor) |
static void |
opencv_imgproc.cvCalcArrBackProjectPatch(PointerPointer image,
CvArr dst,
CvSize range,
CvHistogram hist,
int method,
double factor)
\brief Locates a template within an image by using a histogram comparison.
|
static void |
opencv_imgproc.cvCalcArrHist(CvArr arr,
CvHistogram hist) |
static void |
opencv_imgproc.cvCalcArrHist(CvArr arr,
CvHistogram hist,
int accumulate,
CvArr mask) |
static void |
opencv_imgproc.cvCalcArrHist(PointerPointer arr,
CvHistogram hist,
int accumulate,
CvArr mask)
\brief Calculates array histogram
|
static void |
opencv_imgproc.cvCalcBackProject(IplImage image,
CvArr dst,
CvHistogram hist) |
static void |
opencv_imgproc.cvCalcBackProject(PointerPointer image,
CvArr dst,
CvHistogram hist) |
static void |
opencv_imgproc.cvCalcBackProjectPatch(IplImage image,
CvArr dst,
CvSize range,
CvHistogram hist,
int method,
double factor) |
static void |
opencv_imgproc.cvCalcBackProjectPatch(PointerPointer image,
CvArr dst,
CvSize range,
CvHistogram hist,
int method,
double factor) |
static void |
opencv_imgproc.cvCalcBayesianProb(CvHistogram src,
int number,
CvHistogram dst) |
static void |
opencv_imgproc.cvCalcHist(IplImage image,
CvHistogram hist) |
static void |
opencv_imgproc.cvCalcHist(IplImage image,
CvHistogram hist,
int accumulate,
CvArr mask) |
static void |
opencv_imgproc.cvCalcHist(PointerPointer image,
CvHistogram hist,
int accumulate,
CvArr mask)
\overload
|
static void |
opencv_imgproc.cvCalcProbDensity(CvHistogram hist1,
CvHistogram hist2,
CvHistogram dst_hist) |
static void |
opencv_imgproc.cvCalcProbDensity(CvHistogram hist1,
CvHistogram hist2,
CvHistogram dst_hist,
double scale)
\brief Divides one histogram by another.
|
static void |
opencv_imgproc.cvClearHist(CvHistogram hist)
\brief Clears the histogram.
|
static double |
opencv_imgproc.cvCompareHist(CvHistogram hist1,
CvHistogram hist2,
int method)
Compares two histogram
|
static void |
opencv_imgproc.cvCopyHist(CvHistogram src,
CvHistogram dst) |
static void |
opencv_imgproc.cvCopyHist(CvHistogram src,
PointerPointer dst)
\brief Copies a histogram.
|
static void |
opencv_imgproc.cvGetMinMaxHistValue(CvHistogram hist,
float[] min_value,
float[] max_value) |
static void |
opencv_imgproc.cvGetMinMaxHistValue(CvHistogram hist,
float[] min_value,
float[] max_value,
int[] min_idx,
int[] max_idx) |
static void |
opencv_imgproc.cvGetMinMaxHistValue(CvHistogram hist,
FloatBuffer min_value,
FloatBuffer max_value) |
static void |
opencv_imgproc.cvGetMinMaxHistValue(CvHistogram hist,
FloatBuffer min_value,
FloatBuffer max_value,
IntBuffer min_idx,
IntBuffer max_idx) |
static void |
opencv_imgproc.cvGetMinMaxHistValue(CvHistogram hist,
FloatPointer min_value,
FloatPointer max_value) |
static void |
opencv_imgproc.cvGetMinMaxHistValue(CvHistogram hist,
FloatPointer min_value,
FloatPointer max_value,
IntPointer min_idx,
IntPointer max_idx)
\brief Finds the minimum and maximum histogram bins.
|
static CvHistogram |
opencv_imgproc.cvMakeHistHeaderForArray(int dims,
int[] sizes,
CvHistogram hist,
float[] data) |
static CvHistogram |
opencv_imgproc.cvMakeHistHeaderForArray(int dims,
int[] sizes,
CvHistogram hist,
float[] data,
float[] ranges,
int uniform) |
static CvHistogram |
opencv_imgproc.cvMakeHistHeaderForArray(int dims,
IntBuffer sizes,
CvHistogram hist,
FloatBuffer data) |
static CvHistogram |
opencv_imgproc.cvMakeHistHeaderForArray(int dims,
IntBuffer sizes,
CvHistogram hist,
FloatBuffer data,
FloatBuffer ranges,
int uniform) |
static CvHistogram |
opencv_imgproc.cvMakeHistHeaderForArray(int dims,
IntPointer sizes,
CvHistogram hist,
FloatPointer data) |
static CvHistogram |
opencv_imgproc.cvMakeHistHeaderForArray(int dims,
IntPointer sizes,
CvHistogram hist,
FloatPointer data,
FloatPointer ranges,
int uniform) |
static CvHistogram |
opencv_imgproc.cvMakeHistHeaderForArray(int dims,
IntPointer sizes,
CvHistogram hist,
FloatPointer data,
PointerPointer ranges,
int uniform)
\brief Makes a histogram out of an array.
|
static void |
opencv_imgproc.cvNormalizeHist(CvHistogram hist,
double factor)
\brief Normalizes the histogram.
|
static void |
opencv_imgproc.cvReleaseHist(CvHistogram hist) |
static void |
opencv_imgproc.cvSetHistBinRanges(CvHistogram hist,
float[] ranges) |
static void |
opencv_imgproc.cvSetHistBinRanges(CvHistogram hist,
float[] ranges,
int uniform) |
static void |
opencv_imgproc.cvSetHistBinRanges(CvHistogram hist,
FloatBuffer ranges) |
static void |
opencv_imgproc.cvSetHistBinRanges(CvHistogram hist,
FloatBuffer ranges,
int uniform) |
static void |
opencv_imgproc.cvSetHistBinRanges(CvHistogram hist,
FloatPointer ranges) |
static void |
opencv_imgproc.cvSetHistBinRanges(CvHistogram hist,
FloatPointer ranges,
int uniform) |
static void |
opencv_imgproc.cvSetHistBinRanges(CvHistogram hist,
PointerPointer ranges,
int uniform)
\brief Sets the bounds of the histogram bins.
|
static void |
opencv_imgproc.cvThreshHist(CvHistogram hist,
double threshold)
\brief Thresholds the histogram.
|
Modifier and Type | Method and Description |
---|---|
static CvHistogram |
opencv_imgproc.cvCreateHist(int dims,
int[] sizes,
int type,
float[][] ranges,
int uniform) |
static CvHistogram |
opencv_imgproc.cvMakeHistHeaderForArray(int dims,
int[] sizes,
CvHistogram hist,
float[] data,
float[][] ranges,
int uniform) |
static CvHistogram |
opencv_imgproc.cvMakeHistHeaderForArray(int dims,
int[] sizes,
CvHistogram hist,
FloatPointer data,
float[][] ranges,
int uniform) |
Modifier and Type | Method and Description |
---|---|
static void |
opencv_imgproc.cvCalcArrBackProject(CvArr[] image,
CvArr dst,
CvHistogram hist) |
static void |
opencv_imgproc.cvCalcArrBackProjectPatch(CvArr[] image,
CvArr dst,
CvSize range,
CvHistogram hist,
int method,
double factor) |
static void |
opencv_imgproc.cvCalcArrHist(CvArr[] arr,
CvHistogram hist,
int accumulate,
CvArr mask) |
static void |
opencv_imgproc.cvCalcBackProject(IplImage[] image,
CvArr dst,
CvHistogram hist) |
static void |
opencv_imgproc.cvCalcBackProject(IplImageArray image,
CvArr dst,
CvHistogram hist) |
static void |
opencv_imgproc.cvCalcBackProjectPatch(IplImage[] image,
CvArr dst,
CvSize range,
CvHistogram hist,
int method,
double factor) |
static void |
opencv_imgproc.cvCalcBackProjectPatch(IplImageArray image,
CvArr dst,
CvSize range,
CvHistogram hist,
int method,
double factor) |
static void |
opencv_imgproc.cvCalcHist(IplImage[] arr,
CvHistogram hist,
int accumulate,
CvArr mask) |
static void |
opencv_imgproc.cvCalcHist(IplImageArray arr,
CvHistogram hist,
int accumulate,
CvArr mask) |
static CvHistogram |
opencv_imgproc.cvMakeHistHeaderForArray(int dims,
int[] sizes,
CvHistogram hist,
float[] data,
float[][] ranges,
int uniform) |
static CvHistogram |
opencv_imgproc.cvMakeHistHeaderForArray(int dims,
int[] sizes,
CvHistogram hist,
FloatPointer data,
float[][] ranges,
int uniform) |
static void |
opencv_imgproc.cvSetHistBinRanges(CvHistogram hist,
float[][] ranges,
int uniform) |
Modifier and Type | Method and Description |
---|---|
CvHistogram |
CvHistogram.bins(CvArr setter) |
CvHistogram |
CvHistogram.getPointer(long i) |
CvHistogram |
CvHistogram.mat(CvMatND setter) |
CvHistogram |
CvHistogram.position(long position) |
CvHistogram |
CvHistogram.thresh(int i,
int j,
float setter) |
CvHistogram |
CvHistogram.thresh2(int i,
FloatPointer setter) |
CvHistogram |
CvHistogram.thresh2(PointerPointer setter) |
CvHistogram |
CvHistogram.type(int setter) |
Modifier and Type | Method and Description |
---|---|
static CvHistogram |
AbstractCvHistogram.create(int dims,
int[] sizes,
int type,
float[][] ranges,
int uniform)
Calls cvCreateHist(), and registers a deallocator.
|
Copyright © 2024. All rights reserved.