cvaffine.cpp.svn-base

来自「非结构化路识别」· SVN-BASE 代码 · 共 415 行 · 第 1/2 页

SVN-BASE
415
字号
#define process_bilinear_vert_c3( worktype, arrtype, scale_macro,       \
                                  descale_macro, cast_macro, shift_val) \
{                                                                       \
    int sx = x_ofs[x];                                                  \
    worktype t0;                                                        \
    arrtype t1, t2, t3;                                                 \
                                                                        \
    t0 = tsrc[sx];                                                      \
    t0 = descale_macro( scale_macro(t0,shift_val) +                     \
                        (tsrc2[sx] - t0)*y_alpha,shift_val);            \
    t1 = cast_macro(t0);                                                \
                                                                        \
    t0 = tsrc[sx+1];                                                    \
    t0 = descale_macro( scale_macro(t0,shift_val) +                     \
                        (tsrc2[sx+1] - t0)*y_alpha,shift_val);          \
    t2 = cast_macro(t0);                                                \
                                                                        \
    t0 = tsrc[sx+2];                                                    \
    t0 = descale_macro( scale_macro(t0,shift_val) +                     \
                        (tsrc2[sx+2] - t0)*y_alpha,shift_val);          \
    t3 = cast_macro(t0);                                                \
                                                                        \
    for( ; x <= dw; x++ )                                               \
    {                                                                   \
        dst[x*3] = t1;                                                  \
        dst[x*3+1] = t2;                                                \
        dst[x*3+2] = t3;                                                \
    }                                                                   \
}


#define process_bilinear_vert_c4( worktype, arrtype, scale_macro,       \
                                  descale_macro, cast_macro, shift_val) \
{                                                                       \
    int sx = x_ofs[x];                                                  \
    worktype t0;                                                        \
    arrtype t1, t2, t3, t4;                                             \
                                                                        \
    t0 = tsrc[sx];                                                      \
    t0 = descale_macro( scale_macro(t0,shift_val) +                     \
                        (tsrc2[sx] - t0)*y_alpha,shift_val);            \
    t1 = cast_macro(t0);                                                \
                                                                        \
    t0 = tsrc[sx+1];                                                    \
    t0 = descale_macro( scale_macro(t0,shift_val) +                     \
                        (tsrc2[sx+1] - t0)*y_alpha,shift_val);          \
    t2 = cast_macro(t0);                                                \
                                                                        \
    t0 = tsrc[sx+2];                                                    \
    t0 = descale_macro( scale_macro(t0,shift_val) +                     \
                        (tsrc2[sx+2] - t0)*y_alpha,shift_val);          \
    t3 = cast_macro(t0);                                                \
                                                                        \
    t0 = tsrc[sx+3];                                                    \
    t0 = descale_macro( scale_macro(t0,shift_val) +                     \
                        (tsrc2[sx+3] - t0)*y_alpha,shift_val);          \
    t4 = cast_macro(t0);                                                \
                                                                        \
    for( ; x <= dw; x++ )                                               \
    {                                                                   \
        dst[x*4] = t1;                                                  \
        dst[x*4+1] = t2;                                                \
        dst[x*4+2] = t3;                                                \
        dst[x*4+3] = t4;                                                \
    }                                                                   \
}


#define  ICV_DEF_RESIZE_BILINEAR_FUNC( flavor, cn, arrtype, worktype, prepare_alpha,    \
                                      scale_macro, descale_macro, cast_macro, shift_val)\
IPCVAPI_IMPL( CvStatus,                                                                 \
icvResize_Bilinear_##flavor##_C##cn##R, ( const uchar* src, int srcstep, CvSize srcsize,\
                                          uchar* dst, int dststep, CvSize dstsize ))    \
{                                                                                       \
    int* x_ofs = (int*)alloca( dstsize.width * sizeof(x_ofs[0]) );                      \
    worktype* x_alpha = (worktype*)alloca( dstsize.width * sizeof(x_alpha[0]) );        \
                                                                                        \
    int sw = srcsize.width - 1;                                                         \
    int sh = srcsize.height - 1;                                                        \
    int dw = dstsize.width - 1;                                                         \
    int dh = dstsize.height - 1;                                                        \
    int x, y, xmax = dw+1;                                                              \
                                                                                        \
    for( x = 0; x <= dw; x++ )                                                          \
    {                                                                                   \
        float fx = (float)(sw+1)*x/(dw+1);                                              \
        int ix = cvFloor(fx);                                                           \
        x_ofs[x] = ix*cn;                                                               \
        if( ix >= sw && xmax > dw )                                                     \
            xmax = x;                                                                   \
        x_alpha[x] = prepare_alpha(fx - ix, shift_val );                                \
    }                                                                                   \
                                                                                        \
    for( y = 0; y <= dh; y++, (char*&)dst += dststep )                                  \
    {                                                                                   \
        float fy = (float)(sh+1)*y/(dh+1);                                              \
        int iy = cvFloor(fy);                                                           \
        int y_alpha = prepare_alpha( fy - iy, shift_val );                              \
        assert( 0 <= iy && iy <= sh );                                                  \
                                                                                        \
        const arrtype* tsrc = (const arrtype*)((uchar*)src + iy*srcstep);               \
        const arrtype* tsrc2 = iy < sh ? (const arrtype*)((uchar*)tsrc+srcstep) : tsrc; \
                                                                                        \
        for( x = 0; x < xmax; x++ )                                                     \
        {                                                                               \
            int sx = x_ofs[x];                                                          \
            worktype alpha = x_alpha[x];                                                \
                                                                                        \
            process_bilinear_c##cn( sx, x, cn, worktype, scale_macro,                   \
                                    descale_macro, cast_macro, shift_val );             \
        }                                                                               \
                                                                                        \
        if( xmax < dw )                                                                 \
            process_bilinear_vert_c##cn( worktype, arrtype, scale_macro,                \
                                     descale_macro, cast_macro, shift_val);             \
    }                                                                                   \
                                                                                        \
    return CV_OK;                                                                       \
}


#define ICV_DEF_RESIZE_BILINEAR_FUNC_8U( cn )                                           \
    ICV_DEF_RESIZE_BILINEAR_FUNC( 8u, cn, uchar, int, prepare_alpha_8u,                 \
                                  scale_macro_8u, CV_DESCALE, cast_macro_8u, 8 )


ICV_DEF_RESIZE_BILINEAR_FUNC_8U( 1 )
ICV_DEF_RESIZE_BILINEAR_FUNC_8U( 2 )
ICV_DEF_RESIZE_BILINEAR_FUNC_8U( 3 )
ICV_DEF_RESIZE_BILINEAR_FUNC_8U( 4 )


#define ICV_DEF_INIT_GEOM_TABLE( FUNCNAME )                 \
static void                                                 \
icvInit##FUNCNAME##RTable( CvBigFuncTable* table )          \
{                                                           \
    table->fn_2d[CV_8UC1] = (void*)icv##FUNCNAME##_8u_C1R;  \
    table->fn_2d[CV_8UC2] = (void*)icv##FUNCNAME##_8u_C2R;  \
    table->fn_2d[CV_8UC3] = (void*)icv##FUNCNAME##_8u_C3R;  \
    table->fn_2d[CV_8UC4] = (void*)icv##FUNCNAME##_8u_C4R;  \
}

ICV_DEF_INIT_GEOM_TABLE( Resize_Bilinear )

typedef CvStatus (CV_STDCALL * CvGeomTransformFunc)
                            ( const void* src, int srcstep, CvSize srcsize,
                              void* dst, int dststep, CvSize dstsize );

CV_IMPL void
cvResize( const CvArr* srcarr, CvArr* dstarr, int method )
{
    static CvBigFuncTable bilintab;
    static int inittab = 0;

    CV_FUNCNAME( "cvResize" );

    __BEGIN__;
    
    CvMat srcstub, *src = (CvMat*)srcarr;
    CvMat dststub, *dst = (CvMat*)dstarr;
    CvSize srcsize, dstsize;
    
    CV_CALL( src = cvGetMat( srcarr, &srcstub ));
    CV_CALL( dst = cvGetMat( dstarr, &dststub ));
    
    if( !inittab )
    {
        icvInitResize_BilinearRTable( &bilintab );
        inittab = 1;
    }

    if( !CV_ARE_TYPES_EQ( src, dst ))
        CV_ERROR( CV_StsUnmatchedFormats, "" );

    srcsize = icvGetMatSize( src );
    dstsize = icvGetMatSize( dst );

    if( (unsigned)method > CV_INTER_LINEAR )
        CV_ERROR( CV_StsBadFlag, "Bad interpolation method value" );

    if( CV_ARE_SIZES_EQ( src, dst ))
        CV_CALL( cvCopy( src, dst ));

    if( method == CV_INTER_NN )
    {
        IPPI_CALL( icvResize_NN_8u_C1R( src->data.ptr, src->step, srcsize,
                                        dst->data.ptr, dst->step, dstsize,
                                        icvPixSize[CV_MAT_TYPE(src->type)]));
    }
    else
    {
        CvGeomTransformFunc func = (CvGeomTransformFunc)
            (bilintab.fn_2d[CV_MAT_TYPE(src->type)]);

        if( !func )
            CV_ERROR( CV_StsUnsupportedFormat, "" );

        IPPI_CALL( func( src->data.ptr, src->step, srcsize,
                         dst->data.ptr, dst->step, dstsize ));
    }

    __END__;
}

/* End of file. */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?