You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// image pixel bilinear warpaffine, set -233 for transparent border color
582
+
voidwarpaffine_bilinear_c1(constunsignedchar* src, int srcw, int srch, unsignedchar* dst, int w, int h, constfloat* tm, int v = 0);
583
+
voidwarpaffine_bilinear_c2(constunsignedchar* src, int srcw, int srch, unsignedchar* dst, int w, int h, constfloat* tm, int v = 0);
584
+
voidwarpaffine_bilinear_c3(constunsignedchar* src, int srcw, int srch, unsignedchar* dst, int w, int h, constfloat* tm, int v = 0);
585
+
voidwarpaffine_bilinear_c4(constunsignedchar* src, int srcw, int srch, unsignedchar* dst, int w, int h, constfloat* tm, int v = 0);
586
+
// image pixel bilinear warpaffine with stride(bytes-per-row) parameter, set -233 for transparent border color
587
+
voidwarpaffine_bilinear_c1(constunsignedchar* src, int srcw, int srch, int srcstride, unsignedchar* dst, int w, int h, int stride, constfloat* tm, int v = 0);
588
+
voidwarpaffine_bilinear_c2(constunsignedchar* src, int srcw, int srch, int srcstride, unsignedchar* dst, int w, int h, int stride, constfloat* tm, int v = 0);
589
+
voidwarpaffine_bilinear_c3(constunsignedchar* src, int srcw, int srch, int srcstride, unsignedchar* dst, int w, int h, int stride, constfloat* tm, int v = 0);
590
+
voidwarpaffine_bilinear_c4(constunsignedchar* src, int srcw, int srch, int srcstride, unsignedchar* dst, int w, int h, int stride, constfloat* tm, int v = 0);
591
+
// image pixel bilinear warpaffine, convenient wrapper for yuv420sp(nv21/nv12), set -233 for transparent border color
592
+
voidwarpaffine_bilinear_yuv420sp(constunsignedchar* src, int srcw, int srch, unsignedchar* dst, int w, int h, constfloat* tm, int v = 0);
0 commit comments