@Namespace(value="cv::text")
public static class opencv_text.TextDetector
extends org.bytedeco.javacpp.Pointer
/** \brief An abstract class providing interface for text detection algorithms
| Constructor and Description |
|---|
TextDetector(org.bytedeco.javacpp.Pointer p)
Pointer cast constructor.
|
| Modifier and Type | Method and Description |
|---|---|
void |
detect(opencv_core.GpuMat inputImage,
opencv_core.RectVector Bbox,
float[] confidence) |
void |
detect(opencv_core.GpuMat inputImage,
opencv_core.RectVector Bbox,
FloatBuffer confidence) |
void |
detect(opencv_core.GpuMat inputImage,
opencv_core.RectVector Bbox,
org.bytedeco.javacpp.FloatPointer confidence) |
void |
detect(opencv_core.Mat inputImage,
opencv_core.RectVector Bbox,
float[] confidence) |
void |
detect(opencv_core.Mat inputImage,
opencv_core.RectVector Bbox,
FloatBuffer confidence) |
void |
detect(opencv_core.Mat inputImage,
opencv_core.RectVector Bbox,
org.bytedeco.javacpp.FloatPointer confidence)
\brief Method that provides a quick and simple interface to detect text inside an image
|
void |
detect(opencv_core.UMat inputImage,
opencv_core.RectVector Bbox,
float[] confidence) |
void |
detect(opencv_core.UMat inputImage,
opencv_core.RectVector Bbox,
FloatBuffer confidence) |
void |
detect(opencv_core.UMat inputImage,
opencv_core.RectVector Bbox,
org.bytedeco.javacpp.FloatPointer confidence) |
address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, hashCode, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetof, parseBytes, physicalBytes, position, position, put, realloc, setNull, sizeof, toString, totalBytes, totalPhysicalBytes, withDeallocator, zeropublic TextDetector(org.bytedeco.javacpp.Pointer p)
Pointer.Pointer(Pointer).public void detect(@ByVal
opencv_core.Mat inputImage,
@ByRef
opencv_core.RectVector Bbox,
@StdVector
org.bytedeco.javacpp.FloatPointer confidence)
inputImage - an image to processBbox - a vector of Rect that will store the detected word bounding boxconfidence - a vector of float that will be updated with the confidence the classifier has for the selected bounding boxpublic void detect(@ByVal
opencv_core.Mat inputImage,
@ByRef
opencv_core.RectVector Bbox,
@StdVector
FloatBuffer confidence)
public void detect(@ByVal
opencv_core.Mat inputImage,
@ByRef
opencv_core.RectVector Bbox,
@StdVector
float[] confidence)
public void detect(@ByVal
opencv_core.UMat inputImage,
@ByRef
opencv_core.RectVector Bbox,
@StdVector
org.bytedeco.javacpp.FloatPointer confidence)
public void detect(@ByVal
opencv_core.UMat inputImage,
@ByRef
opencv_core.RectVector Bbox,
@StdVector
FloatBuffer confidence)
public void detect(@ByVal
opencv_core.UMat inputImage,
@ByRef
opencv_core.RectVector Bbox,
@StdVector
float[] confidence)
public void detect(@ByVal
opencv_core.GpuMat inputImage,
@ByRef
opencv_core.RectVector Bbox,
@StdVector
org.bytedeco.javacpp.FloatPointer confidence)
public void detect(@ByVal
opencv_core.GpuMat inputImage,
@ByRef
opencv_core.RectVector Bbox,
@StdVector
FloatBuffer confidence)
public void detect(@ByVal
opencv_core.GpuMat inputImage,
@ByRef
opencv_core.RectVector Bbox,
@StdVector
float[] confidence)
Copyright © 2018. All rights reserved.