| Package | Description |
|---|---|
| org.bytedeco.javacpp | |
| org.bytedeco.javacpp.helper |
| Modifier and Type | Method and Description |
|---|---|
static opencv_core.Scalar |
opencv_core.Scalar.all(double v0)
returns a scalar with all elements set to v0
|
opencv_core.Scalar |
opencv_highgui.QtFont.color()
Color of the font.
|
opencv_core.Scalar |
opencv_core.Scalar.conj() |
static opencv_core.Scalar |
opencv_core.mean(opencv_core.Mat src) |
static opencv_core.Scalar |
opencv_core.mean(opencv_core.Mat src,
opencv_core.Mat mask)
\brief Calculates an average (mean) of array elements.
|
static opencv_core.Scalar |
opencv_core.mean(opencv_core.UMat src) |
static opencv_core.Scalar |
opencv_core.mean(opencv_core.UMat src,
opencv_core.UMat mask) |
static opencv_core.Scalar |
opencv_imgproc.morphologyDefaultBorderValue()
returns "magic" border value for erosion and dilation.
|
opencv_core.Scalar |
opencv_core.Scalar.mul(opencv_core.Scalar a) |
opencv_core.Scalar |
opencv_core.Scalar.mul(opencv_core.Scalar a,
double scale)
per-element product
|
opencv_core.Scalar |
opencv_core.Scalar.position(long position) |
opencv_core.Scalar |
opencv_core.MatExpr.s() |
static opencv_core.Scalar |
opencv_core.sumElems(opencv_core.Mat src)
\brief Calculates the sum of array elements.
|
static opencv_core.Scalar |
opencv_core.sumElems(opencv_core.UMat src) |
static opencv_core.Scalar |
opencv_core.trace(opencv_core.Mat mtx)
\brief Returns the trace of a matrix.
|
static opencv_core.Scalar |
opencv_core.trace(opencv_core.UMat mtx) |
| Modifier and Type | Method and Description |
|---|---|
static opencv_core.MatExpr |
opencv_core.add(opencv_core.MatExpr e,
opencv_core.Scalar s) |
void |
opencv_core.MatOp.add(opencv_core.MatExpr expr1,
opencv_core.Scalar s,
opencv_core.MatExpr res) |
static opencv_core.MatExpr |
opencv_core.add(opencv_core.Mat a,
opencv_core.Scalar s) |
static opencv_core.MatExpr |
opencv_core.add(opencv_core.Scalar s,
opencv_core.Mat a) |
static opencv_core.MatExpr |
opencv_core.add(opencv_core.Scalar s,
opencv_core.MatExpr e) |
static opencv_core.Mat |
opencv_core.addPut(opencv_core.Mat a,
opencv_core.Scalar b) |
static void |
opencv_highgui.addText(opencv_core.Mat img,
BytePointer text,
opencv_core.Point org,
BytePointer nameFont,
int pointSize,
opencv_core.Scalar color,
int weight,
int style,
int spacing)
\brief Draws a text on the image.
|
static void |
opencv_highgui.addText(opencv_core.Mat img,
String text,
opencv_core.Point org,
String nameFont,
int pointSize,
opencv_core.Scalar color,
int weight,
int style,
int spacing) |
static opencv_core.MatExpr |
opencv_core.and(opencv_core.Mat a,
opencv_core.Scalar s) |
static opencv_core.MatExpr |
opencv_core.and(opencv_core.Scalar s,
opencv_core.Mat a) |
static opencv_core.Mat |
opencv_core.andPut(opencv_core.Mat a,
opencv_core.Scalar b) |
static void |
opencv_imgproc.arrowedLine(opencv_core.Mat img,
opencv_core.Point pt1,
opencv_core.Point pt2,
opencv_core.Scalar color) |
static void |
opencv_imgproc.arrowedLine(opencv_core.Mat img,
opencv_core.Point pt1,
opencv_core.Point pt2,
opencv_core.Scalar color,
int thickness,
int line_type,
int shift,
double tipLength)
\brief Draws a arrow segment pointing from the first point to the second one.
|
static void |
opencv_imgproc.arrowedLine(opencv_core.UMat img,
opencv_core.Point pt1,
opencv_core.Point pt2,
opencv_core.Scalar color) |
static void |
opencv_imgproc.arrowedLine(opencv_core.UMat img,
opencv_core.Point pt1,
opencv_core.Point pt2,
opencv_core.Scalar color,
int thickness,
int line_type,
int shift,
double tipLength) |
static void |
opencv_imgproc.circle(opencv_core.Mat img,
opencv_core.Point center,
int radius,
opencv_core.Scalar color) |
static void |
opencv_imgproc.circle(opencv_core.Mat img,
opencv_core.Point center,
int radius,
opencv_core.Scalar color,
int thickness,
int lineType,
int shift)
\brief Draws a circle.
|
static void |
opencv_imgproc.circle(opencv_core.UMat img,
opencv_core.Point center,
int radius,
opencv_core.Scalar color) |
static void |
opencv_imgproc.circle(opencv_core.UMat img,
opencv_core.Point center,
int radius,
opencv_core.Scalar color,
int thickness,
int lineType,
int shift) |
opencv_highgui.QtFont |
opencv_highgui.QtFont.color(opencv_core.Scalar color) |
static void |
opencv_core.copyMakeBorder(opencv_core.Mat src,
opencv_core.Mat dst,
int top,
int bottom,
int left,
int right,
int borderType,
opencv_core.Scalar value)
\brief Forms a border around an image.
|
static void |
opencv_core.copyMakeBorder(opencv_core.UMat src,
opencv_core.UMat dst,
int top,
int bottom,
int left,
int right,
int borderType,
opencv_core.Scalar value) |
static void |
opencv_imgproc.dilate(opencv_core.Mat src,
opencv_core.Mat dst,
opencv_core.Mat kernel,
opencv_core.Point anchor,
int iterations,
int borderType,
opencv_core.Scalar borderValue)
\brief Dilates an image by using a specific structuring element.
|
static void |
opencv_imgproc.dilate(opencv_core.UMat src,
opencv_core.UMat dst,
opencv_core.UMat kernel,
opencv_core.Point anchor,
int iterations,
int borderType,
opencv_core.Scalar borderValue) |
static void |
opencv_imgproc.drawContours(opencv_core.Mat image,
opencv_core.MatVector contours,
int contourIdx,
opencv_core.Scalar color) |
static void |
opencv_imgproc.drawContours(opencv_core.Mat image,
opencv_core.MatVector contours,
int contourIdx,
opencv_core.Scalar color,
int thickness,
int lineType,
opencv_core.Mat hierarchy,
int maxLevel,
opencv_core.Point offset)
\brief Draws contours outlines or filled contours.
|
static void |
opencv_imgproc.drawContours(opencv_core.Mat image,
opencv_core.UMatVector contours,
int contourIdx,
opencv_core.Scalar color) |
static void |
opencv_imgproc.drawContours(opencv_core.Mat image,
opencv_core.UMatVector contours,
int contourIdx,
opencv_core.Scalar color,
int thickness,
int lineType,
opencv_core.Mat hierarchy,
int maxLevel,
opencv_core.Point offset) |
static void |
opencv_imgproc.drawContours(opencv_core.UMat image,
opencv_core.MatVector contours,
int contourIdx,
opencv_core.Scalar color) |
static void |
opencv_imgproc.drawContours(opencv_core.UMat image,
opencv_core.MatVector contours,
int contourIdx,
opencv_core.Scalar color,
int thickness,
int lineType,
opencv_core.UMat hierarchy,
int maxLevel,
opencv_core.Point offset) |
static void |
opencv_imgproc.drawContours(opencv_core.UMat image,
opencv_core.UMatVector contours,
int contourIdx,
opencv_core.Scalar color) |
static void |
opencv_imgproc.drawContours(opencv_core.UMat image,
opencv_core.UMatVector contours,
int contourIdx,
opencv_core.Scalar color,
int thickness,
int lineType,
opencv_core.UMat hierarchy,
int maxLevel,
opencv_core.Point offset) |
static void |
opencv_features2d.drawKeypoints(opencv_core.Mat image,
opencv_core.KeyPointVector keypoints,
opencv_core.Mat outImage,
opencv_core.Scalar color,
int flags)
\brief Draws keypoints.
|
static void |
opencv_features2d.drawKeypoints(opencv_core.UMat image,
opencv_core.KeyPointVector keypoints,
opencv_core.UMat outImage,
opencv_core.Scalar color,
int flags) |
static void |
opencv_imgproc.drawMarker(opencv_core.Mat img,
opencv_core.Point position,
opencv_core.Scalar color) |
static void |
opencv_imgproc.drawMarker(opencv_core.Mat img,
opencv_core.Point position,
opencv_core.Scalar color,
int markerType,
int markerSize,
int thickness,
int line_type)
\brief Draws a marker on a predefined position in an image.
|
static void |
opencv_features2d.drawMatches(opencv_core.Mat img1,
opencv_core.KeyPointVector keypoints1,
opencv_core.Mat img2,
opencv_core.KeyPointVector keypoints2,
opencv_core.DMatchVector matches1to2,
opencv_core.Mat outImg,
opencv_core.Scalar matchColor,
opencv_core.Scalar singlePointColor,
ByteBuffer matchesMask,
int flags) |
static void |
opencv_features2d.drawMatches(opencv_core.Mat img1,
opencv_core.KeyPointVector keypoints1,
opencv_core.Mat img2,
opencv_core.KeyPointVector keypoints2,
opencv_core.DMatchVector matches1to2,
opencv_core.Mat outImg,
opencv_core.Scalar matchColor,
opencv_core.Scalar singlePointColor,
BytePointer matchesMask,
int flags)
\brief Draws the found matches of keypoints from two images.
|
static void |
opencv_features2d.drawMatches(opencv_core.UMat img1,
opencv_core.KeyPointVector keypoints1,
opencv_core.UMat img2,
opencv_core.KeyPointVector keypoints2,
opencv_core.DMatchVector matches1to2,
opencv_core.UMat outImg,
opencv_core.Scalar matchColor,
opencv_core.Scalar singlePointColor,
byte[] matchesMask,
int flags) |
static void |
opencv_features2d.drawMatches(opencv_core.UMat img1,
opencv_core.KeyPointVector keypoints1,
opencv_core.UMat img2,
opencv_core.KeyPointVector keypoints2,
opencv_core.DMatchVector matches1to2,
opencv_core.UMat outImg,
opencv_core.Scalar matchColor,
opencv_core.Scalar singlePointColor,
BytePointer matchesMask,
int flags) |
static void |
opencv_features2d.drawMatchesKnn(opencv_core.Mat img1,
opencv_core.KeyPointVector keypoints1,
opencv_core.Mat img2,
opencv_core.KeyPointVector keypoints2,
opencv_core.DMatchVectorVector matches1to2,
opencv_core.Mat outImg,
opencv_core.Scalar matchColor,
opencv_core.Scalar singlePointColor,
opencv_core.ByteVectorVector matchesMask,
int flags)
\overload
|
static void |
opencv_features2d.drawMatchesKnn(opencv_core.UMat img1,
opencv_core.KeyPointVector keypoints1,
opencv_core.UMat img2,
opencv_core.KeyPointVector keypoints2,
opencv_core.DMatchVectorVector matches1to2,
opencv_core.UMat outImg,
opencv_core.Scalar matchColor,
opencv_core.Scalar singlePointColor,
opencv_core.ByteVectorVector matchesMask,
int flags) |
static void |
opencv_imgproc.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 |
opencv_imgproc.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)
\brief Draws a simple or thick elliptic arc or fills an ellipse sector.
|
static void |
opencv_imgproc.ellipse(opencv_core.Mat img,
opencv_core.RotatedRect box,
opencv_core.Scalar color) |
static void |
opencv_imgproc.ellipse(opencv_core.Mat img,
opencv_core.RotatedRect box,
opencv_core.Scalar color,
int thickness,
int lineType)
\overload
|
static void |
opencv_imgproc.ellipse(opencv_core.UMat img,
opencv_core.Point center,
opencv_core.Size axes,
double angle,
double startAngle,
double endAngle,
opencv_core.Scalar color) |
static void |
opencv_imgproc.ellipse(opencv_core.UMat 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) |
static void |
opencv_imgproc.ellipse(opencv_core.UMat img,
opencv_core.RotatedRect box,
opencv_core.Scalar color) |
static void |
opencv_imgproc.ellipse(opencv_core.UMat img,
opencv_core.RotatedRect box,
opencv_core.Scalar color,
int thickness,
int lineType) |
static void |
opencv_imgproc.erode(opencv_core.Mat src,
opencv_core.Mat dst,
opencv_core.Mat kernel,
opencv_core.Point anchor,
int iterations,
int borderType,
opencv_core.Scalar borderValue)
\brief Erodes an image by using a specific structuring element.
|
static void |
opencv_imgproc.erode(opencv_core.UMat src,
opencv_core.UMat dst,
opencv_core.UMat kernel,
opencv_core.Point anchor,
int iterations,
int borderType,
opencv_core.Scalar borderValue) |
static void |
opencv_imgproc.fillConvexPoly(opencv_core.Mat img,
opencv_core.Mat points,
opencv_core.Scalar color) |
static void |
opencv_imgproc.fillConvexPoly(opencv_core.Mat img,
opencv_core.Mat points,
opencv_core.Scalar color,
int lineType,
int shift)
\brief Fills a convex polygon.
|
static void |
opencv_imgproc.fillConvexPoly(opencv_core.Mat img,
opencv_core.Point pts,
int npts,
opencv_core.Scalar color) |
static void |
opencv_imgproc.fillConvexPoly(opencv_core.Mat img,
opencv_core.Point pts,
int npts,
opencv_core.Scalar color,
int lineType,
int shift)
\overload
|
static void |
opencv_imgproc.fillConvexPoly(opencv_core.UMat img,
opencv_core.UMat points,
opencv_core.Scalar color) |
static void |
opencv_imgproc.fillConvexPoly(opencv_core.UMat img,
opencv_core.UMat points,
opencv_core.Scalar color,
int lineType,
int shift) |
static void |
opencv_imgproc.fillPoly(opencv_core.Mat img,
opencv_core.MatVector pts,
opencv_core.Scalar color) |
static void |
opencv_imgproc.fillPoly(opencv_core.Mat img,
opencv_core.MatVector pts,
opencv_core.Scalar color,
int lineType,
int shift,
opencv_core.Point offset)
\brief Fills the area bounded by one or more polygons.
|
static void |
opencv_imgproc.fillPoly(opencv_core.Mat img,
opencv_core.Point pts,
int[] npts,
int ncontours,
opencv_core.Scalar color) |
static void |
opencv_imgproc.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 |
opencv_imgproc.fillPoly(opencv_core.Mat img,
opencv_core.Point pts,
IntBuffer npts,
int ncontours,
opencv_core.Scalar color) |
static void |
opencv_imgproc.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 |
opencv_imgproc.fillPoly(opencv_core.Mat img,
opencv_core.Point pts,
IntPointer npts,
int ncontours,
opencv_core.Scalar color) |
static void |
opencv_imgproc.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 |
opencv_imgproc.fillPoly(opencv_core.Mat img,
opencv_core.UMatVector pts,
opencv_core.Scalar color) |
static void |
opencv_imgproc.fillPoly(opencv_core.Mat img,
opencv_core.UMatVector pts,
opencv_core.Scalar color,
int lineType,
int shift,
opencv_core.Point offset) |
static void |
opencv_imgproc.fillPoly(opencv_core.Mat img,
PointerPointer pts,
IntPointer npts,
int ncontours,
opencv_core.Scalar color,
int lineType,
int shift,
opencv_core.Point offset)
\overload
|
static void |
opencv_imgproc.fillPoly(opencv_core.UMat img,
opencv_core.MatVector pts,
opencv_core.Scalar color) |
static void |
opencv_imgproc.fillPoly(opencv_core.UMat img,
opencv_core.MatVector pts,
opencv_core.Scalar color,
int lineType,
int shift,
opencv_core.Point offset) |
static void |
opencv_imgproc.fillPoly(opencv_core.UMat img,
opencv_core.UMatVector pts,
opencv_core.Scalar color) |
static void |
opencv_imgproc.fillPoly(opencv_core.UMat img,
opencv_core.UMatVector pts,
opencv_core.Scalar color,
int lineType,
int shift,
opencv_core.Point offset) |
static int |
opencv_imgproc.floodFill(opencv_core.Mat image,
opencv_core.Mat mask,
opencv_core.Point seedPoint,
opencv_core.Scalar newVal) |
static int |
opencv_imgproc.floodFill(opencv_core.Mat image,
opencv_core.Mat mask,
opencv_core.Point seedPoint,
opencv_core.Scalar newVal,
opencv_core.Rect rect,
opencv_core.Scalar loDiff,
opencv_core.Scalar upDiff,
int flags)
\brief Fills a connected component with the given color.
|
static int |
opencv_imgproc.floodFill(opencv_core.Mat image,
opencv_core.Point seedPoint,
opencv_core.Scalar newVal) |
static int |
opencv_imgproc.floodFill(opencv_core.Mat image,
opencv_core.Point seedPoint,
opencv_core.Scalar newVal,
opencv_core.Rect rect,
opencv_core.Scalar loDiff,
opencv_core.Scalar upDiff,
int flags)
\overload
|
static int |
opencv_imgproc.floodFill(opencv_core.UMat image,
opencv_core.Point seedPoint,
opencv_core.Scalar newVal) |
static int |
opencv_imgproc.floodFill(opencv_core.UMat image,
opencv_core.Point seedPoint,
opencv_core.Scalar newVal,
opencv_core.Rect rect,
opencv_core.Scalar loDiff,
opencv_core.Scalar upDiff,
int flags) |
static int |
opencv_imgproc.floodFill(opencv_core.UMat image,
opencv_core.UMat mask,
opencv_core.Point seedPoint,
opencv_core.Scalar newVal) |
static int |
opencv_imgproc.floodFill(opencv_core.UMat image,
opencv_core.UMat mask,
opencv_core.Point seedPoint,
opencv_core.Scalar newVal,
opencv_core.Rect rect,
opencv_core.Scalar loDiff,
opencv_core.Scalar upDiff,
int flags) |
static opencv_highgui.QtFont |
opencv_highgui.fontQt(BytePointer nameFont,
int pointSize,
opencv_core.Scalar color,
int weight,
int style,
int spacing)
\brief Creates the font to draw a text on an image.
|
static opencv_highgui.QtFont |
opencv_highgui.fontQt(String nameFont,
int pointSize,
opencv_core.Scalar color,
int weight,
int style,
int spacing) |
static void |
opencv_imgproc.line(opencv_core.Mat img,
opencv_core.Point pt1,
opencv_core.Point pt2,
opencv_core.Scalar color) |
static void |
opencv_imgproc.line(opencv_core.Mat img,
opencv_core.Point pt1,
opencv_core.Point pt2,
opencv_core.Scalar color,
int thickness,
int lineType,
int shift)
\} imgproc_colormap
|
static void |
opencv_imgproc.line(opencv_core.UMat img,
opencv_core.Point pt1,
opencv_core.Point pt2,
opencv_core.Scalar color) |
static void |
opencv_imgproc.line(opencv_core.UMat img,
opencv_core.Point pt1,
opencv_core.Point pt2,
opencv_core.Scalar color,
int thickness,
int lineType,
int shift) |
static void |
opencv_imgproc.morphologyEx(opencv_core.Mat src,
opencv_core.Mat dst,
int op,
opencv_core.Mat kernel,
opencv_core.Point anchor,
int iterations,
int borderType,
opencv_core.Scalar borderValue)
\brief Performs advanced morphological transformations.
|
static void |
opencv_imgproc.morphologyEx(opencv_core.UMat src,
opencv_core.UMat dst,
int op,
opencv_core.UMat kernel,
opencv_core.Point anchor,
int iterations,
int borderType,
opencv_core.Scalar borderValue) |
opencv_core.Scalar |
opencv_core.Scalar.mul(opencv_core.Scalar a) |
opencv_core.Scalar |
opencv_core.Scalar.mul(opencv_core.Scalar a,
double scale)
per-element product
|
static opencv_core.MatExpr |
opencv_core.or(opencv_core.Mat a,
opencv_core.Scalar s) |
static opencv_core.MatExpr |
opencv_core.or(opencv_core.Scalar s,
opencv_core.Mat a) |
static opencv_core.Mat |
opencv_core.orPut(opencv_core.Mat a,
opencv_core.Scalar b) |
static void |
opencv_imgproc.polylines(opencv_core.Mat img,
opencv_core.MatVector pts,
boolean isClosed,
opencv_core.Scalar color) |
static void |
opencv_imgproc.polylines(opencv_core.Mat img,
opencv_core.MatVector pts,
boolean isClosed,
opencv_core.Scalar color,
int thickness,
int lineType,
int shift)
\brief Draws several polygonal curves.
|
static void |
opencv_imgproc.polylines(opencv_core.Mat img,
opencv_core.Point pts,
int[] npts,
int ncontours,
boolean isClosed,
opencv_core.Scalar color) |
static void |
opencv_imgproc.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 |
opencv_imgproc.polylines(opencv_core.Mat img,
opencv_core.Point pts,
IntBuffer npts,
int ncontours,
boolean isClosed,
opencv_core.Scalar color) |
static void |
opencv_imgproc.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 |
opencv_imgproc.polylines(opencv_core.Mat img,
opencv_core.Point pts,
IntPointer npts,
int ncontours,
boolean isClosed,
opencv_core.Scalar color) |
static void |
opencv_imgproc.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 |
opencv_imgproc.polylines(opencv_core.Mat img,
opencv_core.UMatVector pts,
boolean isClosed,
opencv_core.Scalar color) |
static void |
opencv_imgproc.polylines(opencv_core.Mat img,
opencv_core.UMatVector pts,
boolean isClosed,
opencv_core.Scalar color,
int thickness,
int lineType,
int shift) |
static void |
opencv_imgproc.polylines(opencv_core.Mat img,
PointerPointer pts,
IntPointer npts,
int ncontours,
boolean isClosed,
opencv_core.Scalar color,
int thickness,
int lineType,
int shift)
\overload
|
static void |
opencv_imgproc.polylines(opencv_core.UMat img,
opencv_core.MatVector pts,
boolean isClosed,
opencv_core.Scalar color) |
static void |
opencv_imgproc.polylines(opencv_core.UMat img,
opencv_core.MatVector pts,
boolean isClosed,
opencv_core.Scalar color,
int thickness,
int lineType,
int shift) |
static void |
opencv_imgproc.polylines(opencv_core.UMat img,
opencv_core.UMatVector pts,
boolean isClosed,
opencv_core.Scalar color) |
static void |
opencv_imgproc.polylines(opencv_core.UMat img,
opencv_core.UMatVector pts,
boolean isClosed,
opencv_core.Scalar color,
int thickness,
int lineType,
int shift) |
opencv_core.Mat |
opencv_core.Mat.put(opencv_core.Scalar s)
\brief Sets all or some of the array elements to the specified value.
|
opencv_core.UMat |
opencv_core.UMat.put(opencv_core.Scalar s)
sets every matrix element to s
|
static void |
opencv_imgproc.putText(opencv_core.Mat img,
BytePointer text,
opencv_core.Point org,
int fontFace,
double fontScale,
opencv_core.Scalar color) |
static void |
opencv_imgproc.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)
\brief Draws a text string.
|
static void |
opencv_imgproc.putText(opencv_core.Mat img,
String text,
opencv_core.Point org,
int fontFace,
double fontScale,
opencv_core.Scalar color) |
static void |
opencv_imgproc.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 void |
opencv_imgproc.putText(opencv_core.UMat img,
BytePointer text,
opencv_core.Point org,
int fontFace,
double fontScale,
opencv_core.Scalar color) |
static void |
opencv_imgproc.putText(opencv_core.UMat img,
BytePointer text,
opencv_core.Point org,
int fontFace,
double fontScale,
opencv_core.Scalar color,
int thickness,
int lineType,
boolean bottomLeftOrigin) |
static void |
opencv_imgproc.putText(opencv_core.UMat img,
String text,
opencv_core.Point org,
int fontFace,
double fontScale,
opencv_core.Scalar color) |
static void |
opencv_imgproc.putText(opencv_core.UMat img,
String text,
opencv_core.Point org,
int fontFace,
double fontScale,
opencv_core.Scalar color,
int thickness,
int lineType,
boolean bottomLeftOrigin) |
static void |
opencv_imgproc.rectangle(opencv_core.Mat img,
opencv_core.Point pt1,
opencv_core.Point pt2,
opencv_core.Scalar color) |
static void |
opencv_imgproc.rectangle(opencv_core.Mat img,
opencv_core.Point pt1,
opencv_core.Point pt2,
opencv_core.Scalar color,
int thickness,
int lineType,
int shift)
\brief Draws a simple, thick, or filled up-right rectangle.
|
static void |
opencv_imgproc.rectangle(opencv_core.Mat img,
opencv_core.Rect rec,
opencv_core.Scalar color) |
static void |
opencv_imgproc.rectangle(opencv_core.Mat img,
opencv_core.Rect rec,
opencv_core.Scalar color,
int thickness,
int lineType,
int shift)
\overload
|
static void |
opencv_imgproc.rectangle(opencv_core.UMat img,
opencv_core.Point pt1,
opencv_core.Point pt2,
opencv_core.Scalar color) |
static void |
opencv_imgproc.rectangle(opencv_core.UMat img,
opencv_core.Point pt1,
opencv_core.Point pt2,
opencv_core.Scalar color,
int thickness,
int lineType,
int shift) |
static void |
opencv_imgproc.remap(opencv_core.Mat src,
opencv_core.Mat dst,
opencv_core.Mat map1,
opencv_core.Mat map2,
int interpolation,
int borderMode,
opencv_core.Scalar borderValue)
\brief Applies a generic geometrical transformation to an image.
|
static void |
opencv_imgproc.remap(opencv_core.UMat src,
opencv_core.UMat dst,
opencv_core.UMat map1,
opencv_core.UMat map2,
int interpolation,
int borderMode,
opencv_core.Scalar borderValue) |
void |
opencv_core.Mat.resize(long sz,
opencv_core.Scalar s)
\overload
|
opencv_core.MatExpr |
opencv_core.MatExpr.s(opencv_core.Scalar s) |
static void |
opencv_core.setIdentity(opencv_core.Mat mtx,
opencv_core.Scalar s)
\brief Initializes a scaled identity matrix.
|
static void |
opencv_core.setIdentity(opencv_core.UMat mtx,
opencv_core.Scalar s) |
static opencv_core.MatExpr |
opencv_core.subtract(opencv_core.MatExpr e,
opencv_core.Scalar s) |
static opencv_core.MatExpr |
opencv_core.subtract(opencv_core.Mat a,
opencv_core.Scalar s) |
static opencv_core.MatExpr |
opencv_core.subtract(opencv_core.Scalar s,
opencv_core.Mat a) |
static opencv_core.MatExpr |
opencv_core.subtract(opencv_core.Scalar s,
opencv_core.MatExpr e) |
void |
opencv_core.MatOp.subtract(opencv_core.Scalar s,
opencv_core.MatExpr expr,
opencv_core.MatExpr res) |
static opencv_core.Mat |
opencv_core.subtractPut(opencv_core.Mat a,
opencv_core.Scalar b) |
static void |
opencv_imgproc.warpAffine(opencv_core.Mat src,
opencv_core.Mat dst,
opencv_core.Mat M,
opencv_core.Size dsize,
int flags,
int borderMode,
opencv_core.Scalar borderValue)
\brief Applies an affine transformation to an image.
|
static void |
opencv_imgproc.warpAffine(opencv_core.UMat src,
opencv_core.UMat dst,
opencv_core.UMat M,
opencv_core.Size dsize,
int flags,
int borderMode,
opencv_core.Scalar borderValue) |
void |
opencv_shape.ShapeTransformer.warpImage(opencv_core.Mat transformingImage,
opencv_core.Mat output,
int flags,
int borderMode,
opencv_core.Scalar borderValue)
\brief Apply a transformation, given a pre-estimated transformation parameters, to an Image.
|
void |
opencv_shape.ShapeTransformer.warpImage(opencv_core.UMat transformingImage,
opencv_core.UMat output,
int flags,
int borderMode,
opencv_core.Scalar borderValue) |
static void |
opencv_imgproc.warpPerspective(opencv_core.Mat src,
opencv_core.Mat dst,
opencv_core.Mat M,
opencv_core.Size dsize,
int flags,
int borderMode,
opencv_core.Scalar borderValue)
\brief Applies a perspective transformation to an image.
|
static void |
opencv_imgproc.warpPerspective(opencv_core.UMat src,
opencv_core.UMat dst,
opencv_core.UMat M,
opencv_core.Size dsize,
int flags,
int borderMode,
opencv_core.Scalar borderValue) |
static opencv_core.MatExpr |
opencv_core.xor(opencv_core.Mat a,
opencv_core.Scalar s) |
static opencv_core.MatExpr |
opencv_core.xor(opencv_core.Scalar s,
opencv_core.Mat a) |
static opencv_core.Mat |
opencv_core.xorPut(opencv_core.Mat a,
opencv_core.Scalar b) |
| Constructor and Description |
|---|
Mat(int[] sizes,
int type,
opencv_core.Scalar s) |
Mat(IntBuffer sizes,
int type,
opencv_core.Scalar s) |
Mat(int ndims,
int[] sizes,
int type,
opencv_core.Scalar s) |
Mat(int ndims,
IntBuffer sizes,
int type,
opencv_core.Scalar s) |
Mat(int rows,
int cols,
int type,
opencv_core.Scalar s)
\overload
|
Mat(int ndims,
IntPointer sizes,
int type,
opencv_core.Scalar s)
\overload
|
Mat(IntPointer sizes,
int type,
opencv_core.Scalar s)
\overload
|
Mat(opencv_core.Size size,
int type,
opencv_core.Scalar s)
\overload
|
MatExpr(opencv_core.MatOp _op,
int _flags,
opencv_core.Mat _a,
opencv_core.Mat _b,
opencv_core.Mat _c,
double _alpha,
double _beta,
opencv_core.Scalar _s) |
UMat(int ndims,
int[] sizes,
int type,
opencv_core.Scalar s) |
UMat(int ndims,
int[] sizes,
int type,
opencv_core.Scalar s,
int usageFlags) |
UMat(int ndims,
IntBuffer sizes,
int type,
opencv_core.Scalar s) |
UMat(int ndims,
IntBuffer sizes,
int type,
opencv_core.Scalar s,
int usageFlags) |
UMat(int rows,
int cols,
int type,
opencv_core.Scalar s) |
UMat(int rows,
int cols,
int type,
opencv_core.Scalar s,
int usageFlags)
constucts 2D matrix and fills it with the specified value _s.
|
UMat(int ndims,
IntPointer sizes,
int type,
opencv_core.Scalar s) |
UMat(int ndims,
IntPointer sizes,
int type,
opencv_core.Scalar s,
int usageFlags) |
UMat(opencv_core.Size size,
int type,
opencv_core.Scalar s) |
UMat(opencv_core.Size size,
int type,
opencv_core.Scalar s,
int usageFlags) |
| Modifier and Type | Field and Description |
|---|---|
static opencv_core.Scalar |
opencv_core.AbstractScalar.ALPHA1 |
static opencv_core.Scalar |
opencv_core.AbstractScalar.ALPHA255 |
static opencv_core.Scalar |
opencv_core.AbstractScalar.BLACK |
static opencv_core.Scalar |
opencv_core.AbstractScalar.BLUE |
static opencv_core.Scalar |
opencv_core.AbstractScalar.CYAN |
static opencv_core.Scalar |
opencv_core.AbstractScalar.GRAY |
static opencv_core.Scalar |
opencv_core.AbstractScalar.GREEN |
static opencv_core.Scalar |
opencv_core.AbstractScalar.MAGENTA |
static opencv_core.Scalar |
opencv_core.AbstractScalar.ONE |
static opencv_core.Scalar |
opencv_core.AbstractScalar.ONEHALF |
static opencv_core.Scalar |
opencv_core.AbstractScalar.RED |
static opencv_core.Scalar |
opencv_core.AbstractScalar.WHITE |
static opencv_core.Scalar |
opencv_core.AbstractScalar.YELLOW |
static opencv_core.Scalar |
opencv_core.AbstractScalar.ZERO |
| Modifier and Type | Method and Description |
|---|---|
opencv_core.Scalar |
opencv_core.AbstractScalar.blue(double b) |
opencv_core.Scalar |
opencv_core.AbstractScalar.green(double g) |
opencv_core.Scalar |
opencv_core.AbstractScalar.red(double r) |
static opencv_core.Scalar |
opencv_core.RGB(double r,
double g,
double b) |
Copyright © 2017. All rights reserved.