HomeSort by relevance Sort by last modified time
    Searched full:colorspace (Results 1 - 25 of 1229) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/media/mca/filterfw/java/android/filterfw/format/
ImageFormat.java 29 public static final String COLORSPACE_KEY = "colorspace";
38 int colorspace,
44 result.setMetaValue(COLORSPACE_KEY, colorspace);
53 int colorspace,
57 colorspace,
58 bytesPerSampleForColorspace(colorspace),
62 public static MutableFrameFormat create(int colorspace, int target) {
65 colorspace,
66 bytesPerSampleForColorspace(colorspace),
70 public static MutableFrameFormat create(int colorspace) {
    [all...]
  /external/ImageMagick/MagickCore/
colorspace-private.h 16 MagickCore image colorspace private methods.
51 if (pixel->colorspace != sRGBColorspace)
81 pixel->colorspace=CMYKColorspace;
89 const ColorspaceType colorspace)
91 if (colorspace == CMYKColorspace)
97 const ColorspaceType colorspace)
99 if (colorspace == GRAYColorspace)
104 static inline MagickBooleanType IsRGBColorspace(const ColorspaceType colorspace)
106 if ((colorspace == RGBColorspace) || (colorspace == scRGBColorspace)
    [all...]
colorspace.h 16 MagickCore image colorspace methods.
28 CMYColorspace, /* negated linear RGB colorspace */
48 RGBColorspace, /* Linear RGB colorspace */
50 sRGBColorspace, /* Default: non-linear sRGB colorspace */
53 XYZColorspace, /* IEEE Color Reference colorspace */
  /external/skia/src/gpu/effects/
GrYUVEffect.h 23 SkYUVColorSpace colorSpace);
31 SkYUVColorSpace colorSpace);
39 SkYUVColorSpace colorSpace);
45 const GrFragmentProcessor* CreateRGBToY(const GrFragmentProcessor*, SkYUVColorSpace colorSpace);
46 const GrFragmentProcessor* CreateRGBToU(const GrFragmentProcessor*, SkYUVColorSpace colorSpace);
47 const GrFragmentProcessor* CreateRGBToV(const GrFragmentProcessor*, SkYUVColorSpace colorSpace);
GrYUVEffect.cpp 67 SkYUVColorSpace colorSpace) {
89 colorSpace);
146 SkYUVColorSpace colorSpace)
153 , fColorSpace(colorSpace) {
209 RGBToYUVEffect(const GrFragmentProcessor* rgbFP, SkYUVColorSpace colorSpace,
211 : fColorSpace(colorSpace)
355 const SkISize sizes[3], SkYUVColorSpace colorSpace) {
357 return YUVtoRGBEffect::Create(yTexture, uTexture, vTexture, sizes, colorSpace);
361 GrYUVEffect::CreateRGBToYUV(const GrFragmentProcessor* rgbFP, SkYUVColorSpace colorSpace) {
363 return new RGBToYUVEffect(rgbFP, colorSpace, RGBToYUVEffect::kYUV_OutputChannels)
    [all...]
  /external/opencv3/doc/tutorials/ios/image_manipulation/
image_manipulation.markdown 19 CGColorSpaceRef colorSpace = CGImageGetColorSpace(image.CGImage);
30 colorSpace, // Colorspace
43 CGColorSpaceRef colorSpace = CGImageGetColorSpace(image.CGImage);
54 colorSpace, // Colorspace
75 CGColorSpaceRef colorSpace;
78 colorSpace = CGColorSpaceCreateDeviceGray();
80 colorSpace = CGColorSpaceCreateDeviceRGB();
91 colorSpace, //colorspac
    [all...]
  /external/opencv3/modules/imgcodecs/src/
ios_conversions.mm 58 CGColorSpaceRef colorSpace;
61 colorSpace = CGColorSpaceCreateDeviceGray();
63 colorSpace = CGColorSpaceCreateDeviceRGB();
75 colorSpace,
89 CGColorSpaceRelease(colorSpace);
96 CGColorSpaceRef colorSpace = CGImageGetColorSpace(image.CGImage);
100 if (CGColorSpaceGetModel(colorSpace) == 0)
107 m.step[0], colorSpace,
117 m.step[0], colorSpace,
  /external/opencv/otherlibs/highgui/
grfmt_imageio.cpp 115 CGColorSpaceRef colorSpace = CGImageGetColorSpace( imageRef );
116 if( !colorSpace )
119 m_iscolor = ( CGColorSpaceGetNumberOfComponents( colorSpace ) > 1 );
137 CGColorSpaceRef colorSpace = NULL;
142 // appropriate colorspace is set
145 colorSpace = CGColorSpaceCreateDeviceGray();
151 colorSpace = CGColorSpaceCreateDeviceRGB();
155 if( !colorSpace )
161 CGColorSpaceRelease( colorSpace );
170 colorSpace, /* color space *
    [all...]
  /external/ImageMagick/ImageMagick/script/
color-management.html 58 <p>The first major change was to swap -colorspace RGB and -colorspace sRGB. In earlier versions, RGB really meant non-linear sRGB. With the completion of the changes, RGB now means linear color and sRGB means non-linear color in terms of their respective colorspaces.</p>
60 <p>ImageMagick supports color profiles, however, for images without a profile or a declaration of colorspace, ImageMagick assumes non-linear sRGB. Most image processing algorithms assume a linear colorspace, therefore it might be prudent to convert to linear color or remove the gamma function before certain image processing algorithms are applied. For example,</p>
63 convert myimage.jpg -colorspace RGB -resize 200% -colorspace sRGB mybigimage.jpg
69 convert myimage.png -set colorspace RGB myRGBimage.png
72 <p>Afterwards, the verbose information for the output file lists the colorspace as RGB. This only works on image types containing meta data that distinguishes between linear RGB and non-linear sRGB, such as PNG and GIF. Therefore, if the above command is run with a JPG or TIF output format, the verbose information for the colorspace still shows sRGB. In order to properly have the JPG output know that it is linear RGB, include an appropriate color profile.</p>
75 <p>The second major change treats any grayscale image as linear rather than non-linear, as it was previously. This change is appropriate, since many types of processing requires a linear colorspace. This means that the conversion of a color image to grayscale via <code>-colorspace gray</code> lo (…)
    [all...]
  /external/ImageMagick/www/
color-management.html 62 <p>The first major change was to swap -colorspace RGB and -colorspace sRGB. In earlier versions, RGB really meant non-linear sRGB. With the completion of the changes, RGB now means linear color and sRGB means non-linear color in terms of their respective colorspaces.</p>
64 <p>ImageMagick supports color profiles, however, for images without a profile or a declaration of colorspace, ImageMagick assumes non-linear sRGB. Most image processing algorithms assume a linear colorspace, therefore it might be prudent to convert to linear color or remove the gamma function before certain image processing algorithms are applied. For example,</p>
67 convert myimage.jpg -colorspace RGB -resize 200% -colorspace sRGB mybigimage.jpg
73 convert myimage.png -set colorspace RGB myRGBimage.png
76 <p>Afterwards, the verbose information for the output file lists the colorspace as RGB. This only works on image types containing meta data that distinguishes between linear RGB and non-linear sRGB, such as PNG and GIF. Therefore, if the above command is run with a JPG or TIF output format, the verbose information for the colorspace still shows sRGB. In order to properly have the JPG output know that it is linear RGB, include an appropriate color profile.</p>
79 <p>The second major change treats any grayscale image as linear rather than non-linear, as it was previously. This change is appropriate, since many types of processing requires a linear colorspace. This means that the conversion of a color image to grayscale via <code>-colorspace gray</code> lo (…)
    [all...]
  /external/pdfium/testing/resources/pixel/
bug_71.in 18 /ColorSpace <<
48 /ColorSpace 11 0 R
  /external/skia/tests/
ImageGeneratorTest.cpp 55 SkYUVColorSpace colorSpace;
58 ig.getYUV8Planes(sizes, nullptr, nullptr, &colorSpace);
63 ig.getYUV8Planes(sizes, planes, rowBytes, &colorSpace);
69 ig.getYUV8Planes(sizes, planes, rowBytes, &colorSpace);
  /external/libpng/
pngget.c 523 (info_ptr->colorspace.flags & PNG_COLORSPACE_HAVE_ENDPOINTS) != 0)
529 info_ptr->colorspace.end_points_xy.whitex, "cHRM white X");
532 info_ptr->colorspace.end_points_xy.whitey, "cHRM white Y");
534 *red_x = png_float(png_ptr, info_ptr->colorspace.end_points_xy.redx,
537 *red_y = png_float(png_ptr, info_ptr->colorspace.end_points_xy.redy,
541 info_ptr->colorspace.end_points_xy.greenx, "cHRM green X");
544 info_ptr->colorspace.end_points_xy.greeny, "cHRM green Y");
546 *blue_x = png_float(png_ptr, info_ptr->colorspace.end_points_xy.bluex,
549 *blue_y = png_float(png_ptr, info_ptr->colorspace.end_points_xy.bluey,
564 (info_ptr->colorspace.flags & PNG_COLORSPACE_HAVE_ENDPOINTS) != 0
    [all...]
  /external/pdfium/third_party/lpng_v163/
pngget.c 490 (info_ptr->colorspace.flags & PNG_COLORSPACE_HAVE_ENDPOINTS))
496 info_ptr->colorspace.end_points_xy.whitex, "cHRM white X");
499 info_ptr->colorspace.end_points_xy.whitey, "cHRM white Y");
501 *red_x = png_float(png_ptr, info_ptr->colorspace.end_points_xy.redx,
504 *red_y = png_float(png_ptr, info_ptr->colorspace.end_points_xy.redy,
508 info_ptr->colorspace.end_points_xy.greenx, "cHRM green X");
511 info_ptr->colorspace.end_points_xy.greeny, "cHRM green Y");
513 *blue_x = png_float(png_ptr, info_ptr->colorspace.end_points_xy.bluex,
516 *blue_y = png_float(png_ptr, info_ptr->colorspace.end_points_xy.bluey,
531 (info_ptr->colorspace.flags & PNG_COLORSPACE_HAVE_ENDPOINTS))
    [all...]
  /external/ImageMagick/ImageMagick/api/
colorspace.html 55 <p class="text-center"><a href="colorspace.php#SetImageColorspace">SetImageColorspace</a> &bull; <a href="colorspace.php#SetImageGray">SetImageGray</a> &bull; <a href="colorspace.php#SetImageMonochrome">SetImageMonochrome</a> &bull; <a href="colorspace.php#TransformImageColorspace">TransformImageColorspace</a></p>
59 <p>SetImageColorspace() sets the colorspace member of the Image structure.</p>
65 const ColorspaceType colorspace,ExceptiionInfo *exception)
79 <dt>colorspace</dt>
80 <dd>the colorspace. </dd>
144 <p>TransformImageColorspace() transforms an image colorspace, changing the image data to reflect the new colorspace.</p
    [all...]
  /external/ImageMagick/www/api/
colorspace.php 55 <p class="text-center"><a href="colorspace.php#SetImageColorspace">SetImageColorspace</a> &bull; <a href="colorspace.php#SetImageGray">SetImageGray</a> &bull; <a href="colorspace.php#SetImageMonochrome">SetImageMonochrome</a> &bull; <a href="colorspace.php#TransformImageColorspace">TransformImageColorspace</a></p>
59 <p>SetImageColorspace() sets the colorspace member of the Image structure.</p>
65 const ColorspaceType colorspace,ExceptiionInfo *exception)
79 <dt>colorspace</dt>
80 <dd>the colorspace. </dd>
144 <p>TransformImageColorspace() transforms an image colorspace, changing the image data to reflect the new colorspace.</p
    [all...]
  /external/skia/src/core/
SkColorSpace.h 50 * Return a colorspace instance, given a 3x3 transform from linear_RGB to D50_XYZ
51 * and the src-gamma, return a ColorSpace
69 * Given a src and dst colorspace, return the 3x3 matrix that will convert src_linear_RGB
  /external/ImageMagick/PerlMagick/t/reference/read/
input_ico.miff 4 colorspace=sRGB
input_im1.miff 4 colorspace=sRGB
input_null_DarkOrange.miff 4 colorspace=sRGB
input_null_black.miff 4 colorspace=sRGB
input_null_white.miff 4 colorspace=sRGB
input_pbm_p1.miff 5 colorspace=Gray
input_pbm_p4.miff 5 colorspace=Gray
input_wbmp.miff 4 colorspace=sRGB

Completed in 831 milliseconds

1 2 3 4 5 6 7 8 91011>>