| Package | Description |
|---|---|
| org.bytedeco.javacpp | |
| org.bytedeco.javacpp.helper |
| Modifier and Type | Method and Description |
|---|---|
opencv_core.CvPoint2D32f |
opencv_core.CvBox2D.center()
Center of the box.
|
static opencv_core.CvPoint2D32f |
opencv_core.cvPoint2D32f(double x,
double y)
constructs CvPoint2D32f structure.
|
static opencv_core.CvPoint2D32f |
opencv_core.cvPointTo32f(opencv_core.CvPoint point)
converts CvPoint to CvPoint2D32f.
|
opencv_core.CvPoint2D32f |
opencv_core.CvPoint2D32f.position(long position) |
opencv_core.CvPoint2D32f |
opencv_core.CvGraphVtx2D.ptr() |
opencv_core.CvPoint2D32f |
opencv_core.CvPoint2D32f.x(float x) |
opencv_core.CvPoint2D32f |
opencv_core.CvPoint2D32f.y(float y) |
| Modifier and Type | Method and Description |
|---|---|
opencv_core.CvBox2D |
opencv_core.CvBox2D.center(opencv_core.CvPoint2D32f center) |
static opencv_core.CvMat |
opencv_imgproc.cv2DRotationMatrix(opencv_core.CvPoint2D32f center,
double angle,
double scale,
opencv_core.CvMat map_matrix)
\brief Computes rotation_matrix matrix
|
static void |
opencv_imgproc.cvBoxPoints(opencv_core.CvBox2D box,
opencv_core.CvPoint2D32f pt)
\brief Finds coordinates of the box vertices
|
static void |
opencv_video.cvCalcOpticalFlowPyrLK(opencv_core.CvArr prev,
opencv_core.CvArr curr,
opencv_core.CvArr prev_pyr,
opencv_core.CvArr curr_pyr,
opencv_core.CvPoint2D32f prev_features,
opencv_core.CvPoint2D32f curr_features,
int count,
opencv_core.CvSize win_size,
int level,
org.bytedeco.javacpp.BytePointer status,
org.bytedeco.javacpp.FloatPointer track_error,
opencv_core.CvTermCriteria criteria,
int flags) |
static void |
opencv_calib3d.cvDrawChessboardCorners(opencv_core.CvArr image,
opencv_core.CvSize pattern_size,
opencv_core.CvPoint2D32f corners,
int count,
int pattern_was_found) |
static int |
opencv_calib3d.cvFindChessboardCorners(org.bytedeco.javacpp.Pointer image,
opencv_core.CvSize pattern_size,
opencv_core.CvPoint2D32f corners) |
static int |
opencv_calib3d.cvFindChessboardCorners(org.bytedeco.javacpp.Pointer image,
opencv_core.CvSize pattern_size,
opencv_core.CvPoint2D32f corners,
org.bytedeco.javacpp.IntPointer corner_count,
int flags) |
static void |
opencv_imgproc.cvFindCornerSubPix(opencv_core.CvArr image,
opencv_core.CvPoint2D32f corners,
int count,
opencv_core.CvSize win,
opencv_core.CvSize zero_zone,
opencv_core.CvTermCriteria criteria)
\brief Adjust corner position using some sort of gradient search
|
static opencv_core.CvMat |
opencv_imgproc.cvGetAffineTransform(opencv_core.CvPoint2D32f src,
opencv_core.CvPoint2D32f dst,
opencv_core.CvMat map_matrix)
\brief Computes affine transform matrix for mapping src[i] to dst[i] (i=0,1,2)
|
static opencv_core.CvMat |
opencv_imgproc.cvGetPerspectiveTransform(opencv_core.CvPoint2D32f src,
opencv_core.CvPoint2D32f dst,
opencv_core.CvMat map_matrix)
\brief Computes perspective transform matrix for mapping src[i] to dst[i] (i=0,1,2,3)
|
static void |
opencv_imgproc.cvGetRectSubPix(opencv_core.CvArr src,
opencv_core.CvArr dst,
opencv_core.CvPoint2D32f center)
\brief Retrieves the rectangular image region with specified center from the input array.
|
static void |
opencv_imgproc.cvGoodFeaturesToTrack(opencv_core.CvArr image,
opencv_core.CvArr eig_image,
opencv_core.CvArr temp_image,
opencv_core.CvPoint2D32f corners,
org.bytedeco.javacpp.IntPointer corner_count,
double quality_level,
double min_distance) |
static void |
opencv_imgproc.cvGoodFeaturesToTrack(opencv_core.CvArr image,
opencv_core.CvArr eig_image,
opencv_core.CvArr temp_image,
opencv_core.CvPoint2D32f corners,
org.bytedeco.javacpp.IntPointer corner_count,
double quality_level,
double min_distance,
opencv_core.CvArr mask,
int block_size,
int use_harris,
double k)
\brief Finds a sparse set of points within the selected region
that seem to be easy to track
|
static void |
opencv_imgproc.cvLinearPolar(opencv_core.CvArr src,
opencv_core.CvArr dst,
opencv_core.CvPoint2D32f center,
double maxRadius) |
static void |
opencv_imgproc.cvLinearPolar(opencv_core.CvArr src,
opencv_core.CvArr dst,
opencv_core.CvPoint2D32f center,
double maxRadius,
int flags)
Performs forward or inverse linear-polar image transform
|
static void |
opencv_imgproc.cvLogPolar(opencv_core.CvArr src,
opencv_core.CvArr dst,
opencv_core.CvPoint2D32f center,
double M) |
static void |
opencv_imgproc.cvLogPolar(opencv_core.CvArr src,
opencv_core.CvArr dst,
opencv_core.CvPoint2D32f center,
double M,
int flags)
\brief Performs forward or inverse log-polar image transform
|
static int |
opencv_imgproc.cvMinEnclosingCircle(opencv_core.CvArr points,
opencv_core.CvPoint2D32f center,
org.bytedeco.javacpp.FloatPointer radius)
\brief Finds minimum enclosing circle for a set of points
|
static opencv_core.CvPoint |
opencv_core.cvPointFrom32f(opencv_core.CvPoint2D32f point)
converts CvPoint2D32f to CvPoint.
|
static double |
opencv_imgproc.cvPointPolygonTest(opencv_core.CvArr contour,
opencv_core.CvPoint2D32f pt,
int measure_dist)
\brief Checks whether the point is inside polygon, outside, on an edge (at a vertex).
|
static void |
opencv_calib3d.cvPOSIT(opencv_calib3d.CvPOSITObject posit_object,
opencv_core.CvPoint2D32f image_points,
double focal_length,
opencv_core.CvTermCriteria criteria,
org.bytedeco.javacpp.FloatPointer rotation_matrix,
org.bytedeco.javacpp.FloatPointer translation_vector) |
opencv_core.CvGraphVtx2D |
opencv_core.CvGraphVtx2D.ptr(opencv_core.CvPoint2D32f ptr) |
| Constructor and Description |
|---|
CvBox2D(opencv_core.CvPoint2D32f c,
opencv_core.CvSize2D32f s,
float a) |
| Modifier and Type | Method and Description |
|---|---|
abstract opencv_core.CvPoint2D32f |
opencv_core.AbstractCvBox2D.center() |
opencv_core.CvPoint2D32f |
opencv_core.AbstractCvPoint2D32f.get(double[] pts) |
opencv_core.CvPoint2D32f |
opencv_core.AbstractCvPoint2D32f.get(double[] pts,
int offset,
int length) |
opencv_core.CvPoint2D32f |
opencv_core.AbstractCvPoint2D32f.put(double... pts) |
opencv_core.CvPoint2D32f |
opencv_core.AbstractCvPoint2D32f.put(double[] pts,
int offset,
int length) |
opencv_core.CvPoint2D32f |
opencv_core.AbstractCvPoint2D32f.put(double x,
double y) |
opencv_core.CvPoint2D32f |
opencv_core.AbstractCvPoint2D32f.put(opencv_core.CvPoint o) |
opencv_core.CvPoint2D32f |
opencv_core.AbstractCvPoint2D32f.put(opencv_core.CvPoint2D32f o) |
opencv_core.CvPoint2D32f |
opencv_core.AbstractCvPoint2D32f.put(opencv_core.CvPoint2D64f o) |
abstract opencv_core.CvPoint2D32f |
opencv_core.AbstractCvPoint2D32f.x(float x) |
abstract opencv_core.CvPoint2D32f |
opencv_core.AbstractCvPoint2D32f.y(float y) |
| Modifier and Type | Method and Description |
|---|---|
abstract opencv_core.CvBox2D |
opencv_core.AbstractCvBox2D.center(opencv_core.CvPoint2D32f center) |
opencv_core.CvPoint |
opencv_core.AbstractCvPoint.put(byte shift,
opencv_core.CvPoint2D32f o) |
opencv_core.CvPoint2D32f |
opencv_core.AbstractCvPoint2D32f.put(opencv_core.CvPoint2D32f o) |
opencv_core.CvPoint3D32f |
opencv_core.AbstractCvPoint3D32f.put(opencv_core.CvPoint2D32f o) |
opencv_core.CvPoint2D64f |
opencv_core.AbstractCvPoint2D64f.put(opencv_core.CvPoint2D32f o) |
opencv_core.CvPoint3D64f |
opencv_core.AbstractCvPoint3D64f.put(opencv_core.CvPoint2D32f o) |
Copyright © 2018. All rights reserved.