ManagedCuda.NPP.NPPImage_8uC3.GetAffineBound C# (CSharp) Method

GetAffineBound() public method

Calculates bounding box of the affine transform projection of the given source rectangular ROI
public GetAffineBound ( double coeffs ) : ].double[
coeffs double Affine transform coefficients [2,3]
return ].double[
        public double[,] GetAffineBound(double[,] coeffs)
        {
            double[,] bound = new double[2, 2];
            NppiRect rect = new NppiRect(_pointRoi, _sizeRoi);
            status = NPPNativeMethods.NPPi.AffinTransforms.nppiGetAffineBound(rect, bound, coeffs);
            Debug.WriteLine(String.Format("{0:G}, {1}: {2}", DateTime.Now, "nppiGetAffineBound", status));
            NPPException.CheckNppStatus(status, this);
            return bound;
        }
NPPImage_8uC3