Home
last modified time | relevance | path

Searched refs:greyscale (Results 1 – 25 of 1476) sorted by relevance

12345678910>>...60

/dports/graphics/jogamp-jogl/jogl/src/jogl/classes/jogamp/opengl/util/pngj/
H A DImageInfo.java47 public final boolean greyscale; field in ImageInfo
121 this.greyscale = grayscale; in ImageInfo()
122 if (greyscale && indexed) in ImageInfo()
138 if (!(this.indexed || this.greyscale)) in ImageInfo()
161 + ", greyscale=" + greyscale + ", indexed=" + indexed + ", packed=" + packed + "]";
172 result = prime * result + (greyscale ? 1231 : 1237);
195 if (greyscale != other.greyscale)
/dports/www/py-lesscpy/lesscpy-0.14.0/test/less/
H A Dcolors.less137 .greyscale {
138 color: greyscale(#000, 100%);
139 color: greyscale(#000, 0%);
140 color: greyscale(#fff, 100%);
141 color: greyscale(#fff, 0%);
142 color: greyscale(#29332f, 1%);
143 color: greyscale(#29332f, 10%);
144 color: greyscale(#29332f, 20%);
145 color: greyscale(#29332f, 40%);
146 color: greyscale(#29332f, 60%);
[all …]
/dports/games/supertux2/SuperTux-v0.6.3-Source/data/images/objects/torch/
H A Dflame_glow.sprite13 (name "greyscale")
16 (images "greyscale/flame_glow1.png"
17 "greyscale/flame_glow2.png"
18 "greyscale/flame_glow3.png"
19 "greyscale/flame_glow4.png"
H A Dflame.sprite13 (name "greyscale")
16 (images "greyscale/flame1.png"
17 "greyscale/flame2.png"
18 "greyscale/flame3.png"
19 "greyscale/flame4.png"
/dports/lang/python27/Python-2.7.18/Doc/library/
H A Dimageop.rst52 Convert an 8-bit deep greyscale image to a 1-bit deep image by thresholding all
59 Convert an 8-bit greyscale image to a 1-bit monochrome image using a
65 Convert a 1-bit monochrome image to an 8 bit greyscale or color image. All
68 image to greyscale pass the values ``0`` and ``255`` respectively.
73 Convert an 8-bit greyscale image to a 4-bit greyscale image without dithering.
78 Convert an 8-bit greyscale image to a 2-bit greyscale image without dithering.
83 Convert an 8-bit greyscale image to a 2-bit greyscale image with dithering. As
89 Convert a 4-bit greyscale image to an 8-bit greyscale image.
94 Convert a 2-bit greyscale image to an 8-bit greyscale image.
/dports/lang/python-legacy/Python-2.7.18/Doc/library/
H A Dimageop.rst52 Convert an 8-bit deep greyscale image to a 1-bit deep image by thresholding all
59 Convert an 8-bit greyscale image to a 1-bit monochrome image using a
65 Convert a 1-bit monochrome image to an 8 bit greyscale or color image. All
68 image to greyscale pass the values ``0`` and ``255`` respectively.
73 Convert an 8-bit greyscale image to a 4-bit greyscale image without dithering.
78 Convert an 8-bit greyscale image to a 2-bit greyscale image without dithering.
83 Convert an 8-bit greyscale image to a 2-bit greyscale image with dithering. As
89 Convert a 4-bit greyscale image to an 8-bit greyscale image.
94 Convert a 2-bit greyscale image to an 8-bit greyscale image.
/dports/graphics/jogamp-jogl/jogl/src/jogl/classes/jogamp/opengl/util/pngj/chunks/
H A DPngChunkSBIT.java32 int len = imgInfo.greyscale ? 1 : 3; in getLen()
42 if (imgInfo.greyscale) { in parseFromRaw()
59 if (imgInfo.greyscale) { in createRawChunk()
84 if (!imgInfo.greyscale) in setGraysb()
90 if (!imgInfo.greyscale) in getGraysb()
112 if (imgInfo.greyscale || imgInfo.indexed) in setRGB()
120 if (imgInfo.greyscale || imgInfo.indexed) in getRGB()
H A DPngChunkBKGD.java33 if (imgInfo.greyscale) { in createRawChunk()
50 if (imgInfo.greyscale) { in parseFromRaw()
77 if (!imgInfo.greyscale) in setGray()
83 if (!imgInfo.greyscale) in getGray()
109 if (imgInfo.greyscale || imgInfo.indexed) in setRGB()
117 if (imgInfo.greyscale || imgInfo.indexed) in getRGB()
H A DPngChunkTRNS.java36 if (imgInfo.greyscale) { in createRawChunk()
55 if (imgInfo.greyscale) { in parseFromRaw()
88 if (imgInfo.greyscale || imgInfo.indexed) in setRGB()
96 if (imgInfo.greyscale || imgInfo.indexed) in getRGB()
102 if (!imgInfo.greyscale) in setGray()
108 if (!imgInfo.greyscale) in getGray()
/dports/misc/vxl/vxl-3.3.2/contrib/brl/bseg/sbin/
H A Dgenerate_tiff_rset_from_arg_image.cxx73 … const unsigned nlevels, const unsigned greyscale, std::string& grey_outname) in generate_rset() argument
101 if(greyscale){ in generate_rset()
115 if(greyscale){//reload to access data in resc in generate_rset()
142 unsigned greyscale = 0; in main() local
144 greyscale = std::stoi(argv[4]); in main()
147 << nlevels << std::endl << greyscale << std::endl; in main()
154 if (!generate_rset(base_image_path, pyramids_dir, nlevels, greyscale, grey_outname)) in main()
159 if(greyscale) in main()
/dports/graphics/py-pyglet/pyglet-1.5.21/pyglet/image/codecs/
H A Dpng.py83 greyscale = len(image.format) < 3
85 if greyscale:
90 if greyscale:
97 writer = pypng.Writer(image.width, image.height, greyscale=greyscale, alpha=has_alpha)
/dports/graphics/py-pyglet150/pyglet-1.5.0/pyglet/image/codecs/
H A Dpng.py84 greyscale = len(image.format) < 3
86 if greyscale:
91 if greyscale:
98 …writer = pypng.Writer(image.width, image.height, bytes_per_sample=1, greyscale=greyscale, alpha=ha…
/dports/emulators/fuse-utils/fuse-utils-1.4.3/fmfconv_output/
H A Dfmfconv_ppm.c31 extern int greyscale;
36 fprintf( out, ( greyscale ? "P5\n" : "P6\n" ) ); in out_write_ppm()
41 if( fwrite( pix_rgb, frm_w * frm_h * ( greyscale ? 1 : 3 ), 1, out ) != 1 ) in out_write_ppm()
H A Dfmfconv_jpg.c39 extern int greyscale;
66 row_pointers[y] = &pix_rgb[ ( greyscale ? 1 : 3 ) * y * frm_w ]; in out_write_jpegheader()
72 cinfo.input_components = greyscale ? 1 : 3; in out_write_jpegheader()
73 cinfo.in_color_space = greyscale ? JCS_GRAYSCALE : JCS_RGB; in out_write_jpegheader()
84 if( greyscale ) /* override AVI YCbCr... */ in out_write_jpegheader()
/dports/multimedia/gstreamer1-libav/gst-libav-1.16.2/gst-libs/ext/libav/libavformat/
H A Dqtpalette.c33 int tmp, bit_depth, color_table_id, greyscale, i; in ff_get_qtpalette() local
40 greyscale = tmp & 0x20; in ff_get_qtpalette()
46 if (greyscale && codec_id == AV_CODEC_ID_CINEPAK) in ff_get_qtpalette()
56 if (greyscale && bit_depth > 1 && color_table_id) { in ff_get_qtpalette()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/ffmpeg/libavformat/
H A Dqtpalette.c33 int tmp, bit_depth, color_table_id, greyscale, i; in ff_get_qtpalette() local
40 greyscale = tmp & 0x20; in ff_get_qtpalette()
46 if (greyscale && codec_id == AV_CODEC_ID_CINEPAK) in ff_get_qtpalette()
56 if (greyscale && bit_depth > 1 && color_table_id) { in ff_get_qtpalette()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/ffmpeg/libavformat/
H A Dqtpalette.c33 int tmp, bit_depth, color_table_id, greyscale, i; in ff_get_qtpalette() local
40 greyscale = tmp & 0x20; in ff_get_qtpalette()
46 if (greyscale && codec_id == AV_CODEC_ID_CINEPAK) in ff_get_qtpalette()
56 if (greyscale && bit_depth > 1 && color_table_id) { in ff_get_qtpalette()
/dports/multimedia/ffmpeg/ffmpeg-4.4.1/libavformat/
H A Dqtpalette.c325 int tmp, bit_depth, color_table_id, greyscale, i; in ff_get_qtpalette() local
332 greyscale = tmp & 0x20; in ff_get_qtpalette()
338 if (greyscale && codec_id == AV_CODEC_ID_CINEPAK) in ff_get_qtpalette()
348 if (greyscale && bit_depth > 1 && color_table_id) { in ff_get_qtpalette()
/dports/multimedia/handbrake/ffmpeg-4.4/libavformat/
H A Dqtpalette.c325 int tmp, bit_depth, color_table_id, greyscale, i; in ff_get_qtpalette() local
332 greyscale = tmp & 0x20; in ff_get_qtpalette()
338 if (greyscale && codec_id == AV_CODEC_ID_CINEPAK) in ff_get_qtpalette()
348 if (greyscale && bit_depth > 1 && color_table_id) { in ff_get_qtpalette()
/dports/graphics/py-plotly/plotly-4.14.3/_plotly_utils/
H A Dpng.py311 if greyscale:
366 greyscale=Default, argument
572 greyscale = False
573 greyscale = bool(greyscale)
606 self.greyscale = greyscale
814 if self.greyscale:
822 if self.greyscale:
1041 if greyscale:
1047 if greyscale and not alpha:
1061 assert alpha or not greyscale
[all …]
/dports/graphics/py-pyglet/pyglet-1.5.21/pyglet/extlibs/
H A Dpng.py304 if greyscale:
359 greyscale=Default, argument
565 greyscale = False
566 greyscale = bool(greyscale)
600 self.greyscale = greyscale
801 if self.greyscale:
810 if self.greyscale:
1042 if greyscale:
1048 if greyscale and not alpha:
1062 assert alpha or not greyscale
[all …]
/dports/graphics/mandelbulber/mandelbulber2-2.26/mandelbulber2/src/
H A Dvoxel_export.cpp61 int maxIter, bool greyscale) in cVoxelExport() argument
71 this->greyscale = greyscale; in cVoxelExport()
182 if (greyscale) in ProcessVolume()
217 if (greyscale) in ProcessVolume()
257 if (greyscale) in StoreLayer()
/dports/www/xoops/XoopsCore25-2.5.10/htdocs/class/libraries/vendor/smottt/wideimage/lib/WideImage/Operation/
H A DGetMask.php52 $greyscale[$i] = ImageColorAllocate($mask->getHandle(), $i, $i, $i);
55 imagefilledrectangle($mask->getHandle(), 0, 0, $width, $height, $greyscale[255]);
70 …imagesetpixel($mask->getHandle(), $x, $y, $greyscale[255 - round($rgba['alpha'] * $alphaToGreyRati…
/dports/graphics/py-toyplot/toyplot-0.19.0/toyplot/
H A Dbitmap.py57 greyscale = data.shape[2] < 3
60 …writer = png.Writer(width=width, height=height, greyscale=greyscale, alpha=alpha, bitdepth=bitdept…
/dports/graphics/py-png/pypng-0.0.17/code/
H A Dpipcolours23 greyscale = planes in (1,2)
27 bitdepth=bitdepth, greyscale=greyscale, alpha=alpha)

12345678910>>...60