Upsamples an image and then blurs it.
            
 
    Namespace: 
   OpenCvSharp
    Assembly:
   OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
 Syntax
Syntaxpublic Mat PyrUp(
	Nullable<Size> dstSize = null,
	BorderTypes borderType = BorderTypes.Reflect101
)
Public Function PyrUp ( 
	Optional dstSize As Nullable(Of Size) = Nothing,
	Optional borderType As BorderTypes = BorderTypes.Reflect101
) As Mat
public:
Mat^ PyrUp(
	Nullable<Size> dstSize = nullptr, 
	BorderTypes borderType = BorderTypes::Reflect101
)
member PyrUp : 
        ?dstSize : Nullable<Size> * 
        ?borderType : BorderTypes 
(* Defaults:
        let _dstSize = defaultArg dstSize null
        let _borderType = defaultArg borderType BorderTypes.Reflect101
*)
-> Mat 
function PyrUp(dstSize, borderType);
Parameters
- dstSize (Optional)
- Type: SystemNullableSize
 size of the output image; by default, it is computed as Size(src.cols*2, (src.rows*2)
- borderType (Optional)
- Type: OpenCvSharpBorderTypes
 
Return Value
Type: 
Mat See Also
See Also