http://www.emgu.com
Performs up-sampling step of Gaussian pyramid decomposition. First it upsamples the source image by injecting even zero rows and columns and then convolves result with the specified filter multiplied by 4 for interpolation. So the destination image is four times larger than the source image.
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World.NetStandard (in Emgu.CV.World.NetStandard.dll) Version: 1.0.0
Syntaxpublic static void PyrUp(
IInputArray src,
IOutputArray dst,
BorderType borderType = 4
)
Public Shared Sub PyrUp (
src As IInputArray,
dst As IOutputArray,
Optional borderType As BorderType = 4
)
public:
static void PyrUp(
IInputArray^ src,
IOutputArray^ dst,
BorderType^ borderType = 4
)
static member PyrUp :
src : IInputArray *
dst : IOutputArray *
?borderType : BorderType
(* Defaults:
let _borderType = defaultArg borderType 4
*)
-> unit
Parameters
- src
- Type: Emgu.CVIInputArray
The source image. - dst
- Type: Emgu.CVIOutputArray
The destination image, should have 2x smaller width and height than the source. - borderType (Optional)
- Type: Emgu.CV.CvEnumBorderType
Border type
See Also