public class ImplIntegralImageFeatureIntensity
extends java.lang.Object
Routines for computing the intensity of the fast hessian features in an image.
DO NOT MODIFY: Generated by GenerateImplIntegralImageFeatureIntensity.
| Constructor and Description |
|---|
ImplIntegralImageFeatureIntensity() |
| Modifier and Type | Method and Description |
|---|---|
static void |
hessianBorder(boofcv.struct.image.ImageFloat32 integral,
int skip,
int size,
boofcv.struct.image.ImageFloat32 intensity)
Only computes the fast hessian along the border using a brute force approach
|
static void |
hessianBorder(boofcv.struct.image.ImageSInt32 integral,
int skip,
int size,
boofcv.struct.image.ImageFloat32 intensity)
Only computes the fast hessian along the border using a brute force approach
|
static void |
hessianInner(boofcv.struct.image.ImageFloat32 integral,
int skip,
int size,
boofcv.struct.image.ImageFloat32 intensity)
Optimizes intensity for the inner image.
|
static void |
hessianInner(boofcv.struct.image.ImageSInt32 integral,
int skip,
int size,
boofcv.struct.image.ImageFloat32 intensity)
Optimizes intensity for the inner image.
|
static void |
hessianNaive(boofcv.struct.image.ImageFloat32 integral,
int skip,
int size,
boofcv.struct.image.ImageFloat32 intensity)
Brute force approach which is easy to validate through visual inspection.
|
static void |
hessianNaive(boofcv.struct.image.ImageSInt32 integral,
int skip,
int size,
boofcv.struct.image.ImageFloat32 intensity)
Brute force approach which is easy to validate through visual inspection.
|
public static void hessianNaive(boofcv.struct.image.ImageFloat32 integral,
int skip,
int size,
boofcv.struct.image.ImageFloat32 intensity)
public static void hessianBorder(boofcv.struct.image.ImageFloat32 integral,
int skip,
int size,
boofcv.struct.image.ImageFloat32 intensity)
public static void hessianInner(boofcv.struct.image.ImageFloat32 integral,
int skip,
int size,
boofcv.struct.image.ImageFloat32 intensity)
public static void hessianNaive(boofcv.struct.image.ImageSInt32 integral,
int skip,
int size,
boofcv.struct.image.ImageFloat32 intensity)
public static void hessianBorder(boofcv.struct.image.ImageSInt32 integral,
int skip,
int size,
boofcv.struct.image.ImageFloat32 intensity)
public static void hessianInner(boofcv.struct.image.ImageSInt32 integral,
int skip,
int size,
boofcv.struct.image.ImageFloat32 intensity)