/external/libvpx/libvpx/vpx_scale/generic/ |
D | vpx_scale.c | 249 unsigned int hscale, in Scale2D() argument 289 switch (hratio * 10 / hscale) { in Scale2D() 393 if (hscale == 2 && hratio == 1) in Scale2D() 406 Scale1Dh(source, 1, hscale, source_width + 1, dest, 1, hratio, dest_width); in Scale2D() 423 Scale1Dh(source, 1, hscale, source_width + 1, temp_area, 1, hratio, dest_width); in Scale2D() 432 Scale1Dh(source + i * source_pitch, 1, hscale, source_width + 1, in Scale2D() 485 unsigned int hscale, in vpx_scale_frame() argument 492 int dw = (hscale - 1 + src->y_width * hratio) / hscale; in vpx_scale_frame() 498 temp_area, temp_height, hscale, hratio, vscale, vratio, interlaced); in vpx_scale_frame() 510 temp_area, temp_height, hscale, hratio, vscale, vratio, interlaced); in vpx_scale_frame() [all …]
|
/external/libvpx/libvpx/vpx_scale/ |
D | vpx_scale.h | 21 unsigned int hscale,
|
/external/opencv3/modules/cudev/include/opencv2/cudev/functional/detail/ |
D | color_cvt.hpp | 658 const float hscale = hr * (1.f / 360.f); in operator ()() local 684 dst.x = h * hscale; in operator ()() 703 const float hscale = 6.f / hr; in operator ()() local 710 h *= hscale; in operator ()() 782 const float hscale = hr * (1.f / 360.f); in operator ()() local 814 dst.x = h * hscale; in operator ()() 857 const float hscale = 6.0f / hr; in operator ()() local 868 h *= hscale; in operator ()()
|
/external/opencv/cxcore/src/ |
D | cxdrawing.cpp | 2203 int hscale, vscale, default_shear, italic_shear; in cvPutText() local 2226 hscale = cvRound(font->hscale*XY_ONE); in cvPutText() 2278 dx = p.y*hscale; in cvPutText() 2279 view_x -= p.x*hscale; in cvPutText() 2297 pt[count].x = p.x*hscale - p.y*shear + view_x; in cvPutText() 2308 cvInitFont( CvFont *font, int font_face, double hscale, double vscale, in cvInitFont() argument 2320 if( hscale <= 0 || vscale <= 0 || thickness < 0 ) in cvInitFont() 2354 font->hscale = (float)hscale; in cvInitFont() 2399 view_x += (p.y - p.x)*font->hscale; in cvGetTextSize()
|
/external/opencv3/modules/imgproc/src/ |
D | drawing.cpp | 2100 int hscale = cvRound(fontScale*XY_ONE), vscale = hscale; in putText() local 2124 int dx = p.y*hscale; in putText() 2125 view_x -= p.x*hscale; in putText() 2143 pts.push_back(Point(p.x*hscale + view_x, p.y*vscale + view_y)); in putText() 2660 cv::putText( img, text, org, _font->font_face, (_font->hscale+_font->vscale)*0.5, in cvPutText() 2667 cvInitFont( CvFont *font, int font_face, double hscale, double vscale, in cvInitFont() argument 2670 CV_Assert( font != 0 && hscale > 0 && vscale > 0 && thickness >= 0 ); in cvInitFont() 2674 font->hscale = (float)hscale; in cvInitFont() 2686 cv::Size size = cv::getTextSize( text, _font->font_face, (_font->hscale + _font->vscale)*0.5, in cvGetTextSize()
|
D | color.cpp | 4198 float hscale = hrange*(1.f/360.f); in operator ()() local 4226 dst[i] = h*hscale; in operator ()() 4242 : dstcn(_dstcn), blueIdx(_blueIdx), hscale(6.f/_hrange) {} in HSV2RGB_f() 4247 float _hscale = hscale; in operator ()() 4296 float hscale; member 4514 float hscale = hrange*(1.f/360.f); in operator ()() local 4547 dst[i] = h*hscale; in operator ()() 4751 : dstcn(_dstcn), blueIdx(_blueIdx), hscale(6.f/_hrange) {} in HLS2RGB_f() 4756 float _hscale = hscale; in operator ()() 4806 float hscale; member
|
/external/opencv3/modules/highgui/include/opencv2/ |
D | highgui.hpp | 558 float hscale, vscale; member
|
/external/opencv3/modules/highgui/src/ |
D | window_gtk.cpp | 1435 GtkWidget* hscale = gtk_hscale_new_with_range( 0, count, 1 ); in icvCreateTrackbar() local 1436 gtk_scale_set_digits( GTK_SCALE(hscale), 0 ); in icvCreateTrackbar() 1438 gtk_scale_set_draw_value( GTK_SCALE(hscale), TRUE ); in icvCreateTrackbar() 1440 trackbar->widget = hscale; in icvCreateTrackbar() 1443 gtk_box_pack_start( GTK_BOX(hscale_box), hscale, TRUE, TRUE, 5 ); in icvCreateTrackbar() 1444 gtk_widget_show( hscale ); in icvCreateTrackbar()
|
/external/opencv3/modules/core/include/opencv2/core/cuda/detail/ |
D | color_detail.hpp | 1016 const float hscale = hr * (1.f / 360.f); in RGB2HSVConvert() local 1038 dst.x = h * hscale; in RGB2HSVConvert() 1109 const float hscale = 6.f / hr; in HSV2RGBConvert() local 1116 h *= hscale; in HSV2RGBConvert() 1249 const float hscale = hr * (1.f / 360.f); in RGB2HLSConvert() local 1277 dst.x = h * hscale; in RGB2HLSConvert() 1382 const float hscale = 6.0f / hr; in HLS2RGBConvert() local 1393 h *= hscale; in HLS2RGBConvert()
|
/external/opencv3/modules/imgproc/include/opencv2/imgproc/ |
D | imgproc_c.h | 1126 float hscale, vscale; member 1152 double hscale, double vscale,
|
/external/opencv3/modules/imgproc/src/opencl/ |
D | cvtcolor.cl | 90 #ifndef hscale 91 #define hscale 0 1111 h *= hscale; 1198 dst[0] = h*hscale; 1239 h *= hscale; 1333 dst[dst_index] = convert_uchar_sat_rte(h*hscale); 1374 h *= hscale; 1461 dst[0] = h*hscale; 1505 h *= hscale;
|
/external/opencv/cxcore/include/ |
D | cxcore.h | 1388 float hscale, vscale; member 1398 double hscale, double vscale,
|