Home
last modified time | relevance | path

Searched refs:lrgb (Results 1 – 21 of 21) sorted by relevance

/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/jdk/java/awt/color/
H A DBuiltInDataVariation.java46 ICC_Profile lrgb = ICC_Profile.getInstance(CS_LINEAR_RGB); in testColorProfiles() local
51 test(srgb, lrgb, xyz, pycc, gray); in testColorProfiles()
52 test(Arrays.hashCode(srgb.getData()), Arrays.hashCode(lrgb.getData()), in testColorProfiles()
59 var lrgb = (ICC_ColorSpace) ColorSpace.getInstance(CS_LINEAR_RGB); in testColorSpaces() local
64 test(srgb, lrgb, xyz, pycc, gray); in testColorSpaces()
65 test(srgb.getProfile(), lrgb.getProfile(), xyz.getProfile(), in testColorSpaces()
68 Arrays.hashCode(lrgb.getProfile().getData()), in testColorSpaces()
74 private static void test(Object srgb, Object lrgb, Object xyz, in test() argument
76 Set.of(srgb, lrgb, xyz, pycc, gray); in test()
H A DCheckDefaultProperties.java46 ICC_Profile lrgb = ICC_Profile.getInstance(ColorSpace.CS_LINEAR_RGB); in main() local
53 test(lrgb, TYPE_RGB, 3, CLASS_DISPLAY); in main()
60 lrgb.getData(); in main()
67 test(lrgb, TYPE_RGB, 3, CLASS_DISPLAY); in main()
H A DMTICC_ColorSpaceToFrom.java48 ICC_Profile lrgb = ICC_Profile.getInstance(ColorSpace.CS_LINEAR_RGB); in main() local
59 test(new ICC_ColorSpace(lrgb), method); in main()
/dports/cad/meshlab/meshlab-Meshlab-2020.05/src/plugins_experimental/filter_multiscale_align/lib/Patate/common/gl_utils/
H A Dcolor.h30 inline Eigen::Vector3f srgbFromLinearRGB(const Eigen::Vector3f& lrgb) in srgbFromLinearRGB() argument
32 Eigen::Vector3f srgb = lrgb; in srgbFromLinearRGB()
34 srgb(i) = lrgb(i) > 0.0031308f? in srgbFromLinearRGB()
35 1.055f * std::pow(lrgb(i), 1.f/2.4f) - .055f: in srgbFromLinearRGB()
36 12.92f * lrgb(i); in srgbFromLinearRGB()
43 Eigen::Vector3f lrgb = srgb; in linearRGBFromSrgb() local
45 lrgb(i) = lrgb(i) > 0.04045f? in linearRGBFromSrgb()
46 std::pow((lrgb(i)+0.055f) / 1.055f, 2.4f): in linearRGBFromSrgb()
47 lrgb(i) / 12.92f; in linearRGBFromSrgb()
48 return lrgb; in linearRGBFromSrgb()
[all …]
/dports/graphics/pcl-pointclouds/pcl-pcl-1.12.0/tools/
H A Dopenni_image.cpp277 io::LZFYUV422ImageWriter lrgb; in writeToDisk() local
278lrgb.write (reinterpret_cast<const char*> (&frame->image->getMetaData ().Data ()[0]), frame->image… in writeToDisk()
283 io::LZFRGB24ImageWriter lrgb; in writeToDisk() local
284lrgb.write (reinterpret_cast<const char*> (&frame->image->getMetaData ().Data ()[0]), frame->image… in writeToDisk()
289 io::LZFBayer8ImageWriter lrgb; in writeToDisk() local
290lrgb.write (reinterpret_cast<const char*> (&frame->image->getMetaData ().Data ()[0]), frame->image… in writeToDisk()
304 io::LZFRGB24ImageWriter lrgb; in writeToDisk() local
305 lrgb.writeParameters (frame->parameters_rgb, xml_filename); in writeToDisk()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/jdk/java/awt/color/
H A DMTICC_ColorSpaceToFrom.java48 ICC_Profile lrgb = ICC_Profile.getInstance(ColorSpace.CS_LINEAR_RGB); in main() local
59 test(new ICC_ColorSpace(lrgb), method); in main()
/dports/graphics/argyllcms/Argyll_V1.9.2/spectro/
H A Ddispcal.c489 double lrgb[3]; in fwddev() local
509 double lrgb[3]; in invdev() local
520 lrgb[j] = x->dcvs[j]->inv_interp(x->dcvs[j], lrgb[j]); in invdev()
523 lrgb[j] = 0.0; in invdev()
527 lrgb[j] = 1.0; in invdev()
533 rgb[0] = lrgb[0]; in invdev()
534 rgb[1] = lrgb[1]; in invdev()
535 rgb[2] = lrgb[2]; in invdev()
543 double lrgb[3]; in invlindev() local
558 lrgb[j] = 0.0; in invlindev()
[all …]
/dports/cad/meshlab/meshlab-Meshlab-2020.05/src/plugins_experimental/filter_multiscale_align/lib/Patate/Vitelotte/Utils/vgMeshRendererShaders/
H A Dfrag_common.glsl109 vec3 cieXYZFromLinearRGB(const in vec3 lrgb) {
110 return transpose(rgbToxyz) * lrgb;
/dports/games/dxx-rebirth/dxx-rebirth_20211220-src/similar/main/
H A Dendlevel.cpp560 g3s_lrgb lrgb = { f1_0, f1_0, f1_0 }; in draw_exit_model() local
570 …ent, nullptr, mine_destroyed ? destroyed_exit_modelnum : exit_modelnum, 0, lrgb, nullptr, nullptr); in draw_exit_model()
584 g3s_lrgb lrgb = { f1_0, f1_0, f1_0 }; in render_external_scene() local
618 g3_draw_rod_tmap(canvas, *satellite_bitmap, p, SATELLITE_WIDTH, top_pnt, SATELLITE_WIDTH, lrgb); in render_external_scene()
H A Dpolyobj.cpp610 g3s_lrgb lrgb = { f1_0, f1_0, f1_0 }; in draw_model_picture() local
624 draw_polygon_model(canvas, temp_pos, temp_orient, nullptr, mn, 0, lrgb, nullptr, nullptr); in draw_model_picture()
/dports/biology/ncbi-toolkit/ncbi/vibrant/
H A Dncbidraw.c1227 #define COLOR_HASH(lrgb) (lrgb % 251) /* 251 is the largest prime less than 256 */ argument
1229 #define LRGB_RED(lrgb) ((lrgb) & 0xFF) argument
1230 #define LRGB_GREEN(lrgb) ((lrgb >> 8) & 0xFF) argument
1231 #define LRGB_BLUE(lrgb) (((lrgb >> 16) & 0xFF) argument
1235 Nlm_Uint4 lrgb; member
1285 Nlm_Uint4 lrgb; in Nlm_SelectColor() local
1289 lrgb = RGB_2_LRGB (red, green, blue); in Nlm_SelectColor()
1290 hash = COLOR_HASH (lrgb); in Nlm_SelectColor()
1294 if (CHBP->lrgb == lrgb) { in Nlm_SelectColor()
1313 tail->lrgb = lrgb; in Nlm_SelectColor()
/dports/textproc/htmltolatex/htmltolatex/
H A DCH2L.cpp828 const latex_rgb &lrgb = (*i).second; in _set_hyperlink_color() local
829 …cout << "\\definecolor{hyperlinkcolor}{rgb}{" << lrgb.r << "," << lrgb.g << "," << lrgb.b << "}" <… in _set_hyperlink_color()
/dports/graphics/pgplot/pgplot/drivers/
H A Dxwdriv.c989 long lrgb; /* Use to check output before casting to unsigned short */ local
1001 lrgb = rgb * COLORMULT + 0.5;
1002 return lrgb > COLORMULT ? COLORMULT : lrgb;
/dports/multimedia/zart/gmic-2.8.1/src/
H A Dgmic_stdlib.gmic7904 #@cli : { all | rgba | rgb | ryb | lrgb | ycbcr | lab | lch | hsv | hsi | hsl | cmy | cmyk | yiq }.
7917 lrgb,lrgb_r,lrgb_g,lrgb_b,\
8626 #@cli retinex : _value_offset>0,_colorspace={ hsi | hsv | lab | lrgb | rgb | ycbcr },\
8640 elif '$2'=='lrgb' mode=lrgb
9196 lrgb,lrgb_r,lrgb_g,lrgb_b,\
24983 #@cli x_mask_color : _colorspace={ all | rgb | lrgb | ycbcr | lab | lch | hsv | hsi | hsl | cmy | c…
24987 #@cli : one of { rgb | lrgb | ycbcr | lab | lch | hsv | hsi | hsl | cmy | cmyk | yiq }.
30989 colorspace=${"arg 1+$11,all,lrgb,ycbcr,ycbcr_y,ycbcr_cbcr,lab,lab_l,lab_ab"}
33134 cs=rgb,rgb_r,rgb_g,rgb_b,lrgb,lrgb_r,lrgb_g,lrgb_b,ycbcr_y,ycbcr_cbcr,ycbcr_cb,ycbcr_cr,ycbcr_cg,\
34107 +retinex $2,${"arg 1+$3,hsi,hsv,lab,lrgb,rgb,ycbcr"},$4,$5,${7--1}
[all …]
/dports/graphics/gmic-qt/gmic-qt-v.2.9.8/gmic/src/
H A Dgmic_stdlib.gmic10551 #@cli : { all | rgba | [s]rgb | ryb | lrgb | ycbcr | lab | lch | hsv | hsi | hsl | cmy | cmyk | yiq…
10580 lrgb,lrgb_r,lrgb_g,lrgb_b,\
11784 #@cli retinex : _value_offset>0,_colorspace={ hsi | hsv | lab | lrgb | rgb | ycbcr },\
11798 elif '$2'=='lrgb' mode=lrgb
29833 #@cli x_mask_color : _colorspace={ all | rgb | lrgb | ycbcr | lab | lch | hsv | hsi | hsl | cmy | c…
29837 #@cli : one of { rgb | lrgb | ycbcr | lab | lch | hsv | hsi | hsl | cmy | cmyk | yiq }.
35950 colorspace=${"arg 1+$11,all,lrgb,ycbcr,ycbcr,ycbcr_y,ycbcr_cbcr,lab,lab,lab_l,lab_ab"}
38390 cs=rgb,rgb_r,rgb_g,rgb_b,lrgb,lrgb_r,lrgb_g,lrgb_b,ycbcr_y,ycbcr_cbcr,ycbcr_cb,ycbcr_cr,ycbcr_cg,\
39353 +retinex $2,${"arg 1+$3,hsi,hsv,lab,lrgb,rgb,ycbcr"},$4,$5,${7--1}
49742 lrgb,lrgb_r,lrgb_g,lrgb_b,\
/dports/graphics/gmic/gmic-3.0.0/src/
H A Dgmic_stdlib.gmic11435 #@cli : { all | rgba | [s]rgb | ryb | lrgb | ycbcr | lab | lch | hsv | hsi | hsl | cmy | cmyk | yiq…
11464 lrgb,lrgb_r,lrgb_g,lrgb_b,\
12672 #@cli retinex : _value_offset>0,_colorspace={ hsi | hsv | lab | lrgb | rgb | ycbcr },\
12686 elif '$2'=='lrgb' mode=lrgb
31297 #@cli x_mask_color : _colorspace={ all | rgb | lrgb | ycbcr | lab | lch | hsv | hsi | hsl | cmy | c…
31301 #@cli : one of { rgb | lrgb | ycbcr | lab | lch | hsv | hsi | hsl | cmy | cmyk | yiq }.
37668 colorspace=${"arg 1+$11,all,lrgb,ycbcr,ycbcr,ycbcr_y,ycbcr_cbcr,lab,lab,lab_l,lab_ab"}
40105 cs=rgb,rgb_r,rgb_g,rgb_b,lrgb,lrgb_r,lrgb_g,lrgb_b,ycbcr_y,ycbcr_cbcr,ycbcr_cb,ycbcr_cr,ycbcr_cg,\
41069 +retinex $2,${"arg 1+$3,hsi,hsv,lab,lrgb,rgb,ycbcr"},$4,$5,${7--1}
51641 lrgb,lrgb_r,lrgb_g,lrgb_b,\
/dports/graphics/photoflow/PhotoFlow-8472024f/src/vips/gmic/gmic/src/
H A Dgmic_def.gmic4882 … refers to a colorspace, and can be basically one of { all | rgba | rgb | lrgb | ycbcr | lab | lch…
4894 lrgb,lrgb_r,lrgb_g,lrgb_b,\
5290 #@gmic retinex : _value_offset>0,_colorspace={ hsi | hsv | lab | lrgb | rgb | ycbcr },0<=_min_cut<=…
5301 -elif {;'$2'=='lrgb'} mode=lrgb
23435 --retinex $2,${"-arg 1+$3,hsi,hsv,lab,lrgb,rgb,ycbcr"},$4,$5,${7--1}
34688 mode=${-arg\ 1+$9,hsi_i,hsv_v,lab_l,lrgb,rgb,ycbcr_y}
41735 lrgb,lrgb_r,lrgb_g,lrgb_b,ycbcr,ycbcr_y,ycbcr_cbcr,ycbcr_cb,ycbcr_cr,ycbcr_cg,\
41785 …"rgba","rgba_r","rgba_g","rgba_b","rgba_a","rgb","rgb_r","rgb_g","rgb_b","lrgb","lrgb_r","lrgb_g",…
56247 lrgb,lrgb_r,lrgb_g,lrgb_b,\
/dports/chinese/ibus-table-chinese/ibus-table-chinese-1.8.3/tables/wubi-haifeng/
H A DCJKb.tab33502 33501 282DC ��. lrgb . . . 125111233155 .
H A Dwubi-haifeng86.UTF-865968 lrgb ��. 100
/dports/chinese/brise/brise-brise-0.35/supplement/
H A Dwubi86.dict.yaml64064 �� lrgb 0
/dports/chinese/rime-wubi/rime-wubi-f1876f08f1d4a9696395be0070c0e8e4353c44cb/
H A Dwubi86.dict.yaml64027 �� lrgb 0