@Namespace(value="cv::ximgproc") public static class opencv_ximgproc.SparseMatchInterpolator extends opencv_core.Algorithm
/** \brief Main interface for all filters, that take sparse matches as an input and produce a dense per-pixel matching (optical flow) as an output.
| Constructor and Description |
|---|
SparseMatchInterpolator(org.bytedeco.javacpp.Pointer p)
Pointer cast constructor.
|
| Modifier and Type | Method and Description |
|---|---|
void |
interpolate(opencv_core.GpuMat from_image,
opencv_core.GpuMat from_points,
opencv_core.GpuMat to_image,
opencv_core.GpuMat to_points,
opencv_core.GpuMat dense_flow) |
void |
interpolate(opencv_core.Mat from_image,
opencv_core.Mat from_points,
opencv_core.Mat to_image,
opencv_core.Mat to_points,
opencv_core.Mat dense_flow)
\brief Interpolate input sparse matches.
|
void |
interpolate(opencv_core.UMat from_image,
opencv_core.UMat from_points,
opencv_core.UMat to_image,
opencv_core.UMat to_points,
opencv_core.UMat dense_flow) |
clear, empty, getDefaultName, position, read, save, save, write, write, writeaddress, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, hashCode, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetof, parseBytes, physicalBytes, position, put, realloc, setNull, sizeof, toString, totalBytes, totalPhysicalBytes, withDeallocator, zeropublic SparseMatchInterpolator(org.bytedeco.javacpp.Pointer p)
Pointer.Pointer(Pointer).public void interpolate(@ByVal
opencv_core.Mat from_image,
@ByVal
opencv_core.Mat from_points,
@ByVal
opencv_core.Mat to_image,
@ByVal
opencv_core.Mat to_points,
@ByVal
opencv_core.Mat dense_flow)
from_image - first of the two matched images, 8-bit single-channel or three-channel.
from_points - points of the from_image for which there are correspondences in the
to_image (Point2f vector, size shouldn't exceed 32767)
to_image - second of the two matched images, 8-bit single-channel or three-channel.
to_points - points in the to_image corresponding to from_points
(Point2f vector, size shouldn't exceed 32767)
dense_flow - output dense matching (two-channel CV_32F image)public void interpolate(@ByVal
opencv_core.UMat from_image,
@ByVal
opencv_core.UMat from_points,
@ByVal
opencv_core.UMat to_image,
@ByVal
opencv_core.UMat to_points,
@ByVal
opencv_core.UMat dense_flow)
public void interpolate(@ByVal
opencv_core.GpuMat from_image,
@ByVal
opencv_core.GpuMat from_points,
@ByVal
opencv_core.GpuMat to_image,
@ByVal
opencv_core.GpuMat to_points,
@ByVal
opencv_core.GpuMat dense_flow)
Copyright © 2018. All rights reserved.