public class ImplSurfDescribeOps
extends java.lang.Object
| Constructor and Description |
|---|
ImplSurfDescribeOps() |
| Modifier and Type | Method and Description |
|---|---|
static void |
gradientInner(boofcv.struct.image.GrayF32 ii,
double tl_x,
double tl_y,
double samplePeriod,
int regionSize,
double kernelSize,
float[] derivX,
float[] derivY)
Computes the gradient for a using the derivX kernel found in
DerivativeIntegralImage. |
static void |
gradientInner(boofcv.struct.image.GrayS32 ii,
double tl_x,
double tl_y,
double samplePeriod,
int regionSize,
double kernelSize,
int[] derivX,
int[] derivY)
Computes the gradient for a using the derivX kernel found in
DerivativeIntegralImage. |
static <T extends boofcv.struct.image.ImageGray> |
naiveGradient(T ii,
double tl_x,
double tl_y,
double samplePeriod,
int regionSize,
double kernelSize,
boolean useHaar,
double[] derivX,
double[] derivY)
Simple algorithm for computing the gradient of a region.
|
public static void gradientInner(boofcv.struct.image.GrayF32 ii,
double tl_x,
double tl_y,
double samplePeriod,
int regionSize,
double kernelSize,
float[] derivX,
float[] derivY)
DerivativeIntegralImage.
Assumes that the entire region, including the surrounding pixels, are inside the image.public static void gradientInner(boofcv.struct.image.GrayS32 ii,
double tl_x,
double tl_y,
double samplePeriod,
int regionSize,
double kernelSize,
int[] derivX,
int[] derivY)
DerivativeIntegralImage.
Assumes that the entire region, including the surrounding pixels, are inside the image.public static <T extends boofcv.struct.image.ImageGray> void naiveGradient(T ii,
double tl_x,
double tl_y,
double samplePeriod,
int regionSize,
double kernelSize,
boolean useHaar,
double[] derivX,
double[] derivY)