HOGDescriptor class
- Inheritance
- Available extensions
Constructors
- HOGDescriptor.empty()
-
factory
- HOGDescriptor.fromFile(String filename)
-
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
factory
- HOGDescriptor.fromPointer(HOGDescriptorPtr ptr, [bool attach = true])
-
factory
Properties
Methods
-
compute(
Mat img, {(int, int) winStride = (0, 0), (int, int) padding = (0, 0)}) → (VecF32, VecPoint) - Computes HOG descriptors of given image.
-
computeGradient(
InputArray img, {(int, int) paddingTL = (0, 0), (int, int) paddingBR = (0, 0)}) → (Mat, Mat) - Computes gradients and quantized gradient orientations.
-
detect(
InputArray img, {double hitThreshold = 0, (int, int) winStride = (0, 0), (int, int) padding = (0, 0)}) → (VecPoint, VecPoint) - Performs object detection without a multi-scale window.
-
detect2(
InputArray img, {double hitThreshold = 0, (int, int) winStride = (0, 0), (int, int) padding = (0, 0)}) → (VecPoint, VecF64, VecPoint) - Performs object detection without a multi-scale window.
-
detectMultiScale(
InputArray image, {double hitThreshold = 0, int minNeighbors = 3, (int, int) winStride = (0, 0), (int, int) padding = (0, 0), double scale = 1.05, double groupThreshold = 2.0, bool useMeanshiftGrouping = false}) → VecRect - DetectMultiScale calls DetectMultiScale but allows setting parameters The detected objects are returned as a slice of image.Rectangle structs.
-
dispose(
) → void -
getDescriptorSize(
) → int -
getWinSigma(
) → double - Returns winSigma value.
-
groupRectangles(
VecRect rectList, VecF64 weights, int groupThreshold, double eps) → (VecRect, VecF64) - Groups the object candidate rectangles.
-
load(
String name) → bool -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
setSVMDetector(
VecF32 det) → void - SetSVMDetector sets the data for the HOGDescriptor.
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Properties
- finalizer → NativeFinalizer
-
final
Static Methods
-
getDaimlerPeopleDetector(
) → VecF32 -
getDefaultPeopleDetector(
) → VecF32 - HOGDefaultPeopleDetector returns a new Mat with the HOG DefaultPeopleDetector.