@Namespace(value="cv::ximgproc") @Properties(inherit=opencv_ximgproc.class) public class FastBilateralSolverFilter extends Algorithm
For more details about this solver see \cite BarronPoole2016 .
Pointer.CustomDeallocator, Pointer.Deallocator, Pointer.NativeDeallocator, Pointer.ReferenceCounter| Constructor and Description |
|---|
FastBilateralSolverFilter(Pointer p)
Pointer cast constructor.
|
| Modifier and Type | Method and Description |
|---|---|
void |
filter(GpuMat src,
GpuMat confidence,
GpuMat dst) |
void |
filter(Mat src,
Mat confidence,
Mat dst)
\brief Apply smoothing operation to the source image.
|
void |
filter(UMat src,
UMat confidence,
UMat dst) |
clear, empty, getDefaultName, getPointer, position, read, save, save, write, write, writeaddress, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, getPointer, getPointer, getPointer, hashCode, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetAddress, offsetof, offsetof, parseBytes, physicalBytes, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, sizeof, toString, totalBytes, totalCount, totalPhysicalBytes, withDeallocator, zeropublic FastBilateralSolverFilter(Pointer p)
Pointer(Pointer).public void filter(@ByVal Mat src, @ByVal Mat confidence, @ByVal Mat dst)
src - source image for filtering with unsigned 8-bit or signed 16-bit or floating-point 32-bit depth and up to 3 channels.
confidence - confidence image with unsigned 8-bit or floating-point 32-bit confidence and 1 channel.
dst - destination image.
\note Confidence images with CV_8U depth are expected to in [0, 255] and CV_32F in [0, 1] range.
Copyright © 2021. All rights reserved.