use of boofcv.struct.image.ImageType in project BoofCV by lessthanoptimal.
the class CompareHessianToConvolution method setKernel.
public void setKernel(int which, Kernel1D kernel, boolean isHorizontal) {
ImageType _inputType = ImageType.single(inputType);
outputFilters[which] = FactoryConvolve.convolve(kernel, _inputType, _inputType, BorderType.EXTENDED, isHorizontal);
if (borderSize < kernel.getRadius())
borderSize = kernel.getRadius();
}
Aggregations