The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
18 views

gamma correction formula : .^(gamma) or .^(1/gamma)?

I'm looking for a simple gamma correction formula for grayscale images with values between 0 and 255. Let's say that the gamma of my screen is 2.2 (it's a LCD screen so i would probably need to ...
0
votes
0answers
55 views

Adding Gamma noise to an image without using imnoise function in matlab?

I have added 6 different type of noise to an image without using imnoise but still there is one type that i couldn't find anywhere, The Gamma noise!!! how could i add Gamma noise to an image without ...
0
votes
0answers
40 views

What to do if tgamma() function is not defined?

I am trying to use tgamma() from the standard library. When I try to compile, I get the error message: Call to undefined function tgamma I have the directive #include <cmath>. I use ...
0
votes
1answer
48 views

GL_FRAMEBUFFER_SRGB_EXT banding problems (gamma correction)

Consider the following code. imageDataf is a float*. In fact, as the code shows it consist of float4 values created by a ray tracer. Of course, the color values are in linear space and I need them ...
2
votes
3answers
216 views

gamma or log gamma function in C or C

I am seeking a C or C++ version of gamma and log gamma functions. Are there any code pieces or libraries recommended? If possible, I want to know the principle of the implementations. Thank you!!!
0
votes
0answers
48 views

R: 'coef0' and 'gamma' hyperparameters?

I am doing model comparison using SVM in R. What is the meaning of the coef0 and gamma hyperparameters? I am familiar with the concept of the cost hyperparameter, but these other two are new to me. ...
0
votes
0answers
150 views

gamma/log gamma function in php [closed]

Is some in-built gamma/lgamma function available in PHP,(like it is available in C,C++ and other languages)? If someone has pointers regarding it, please share! -If it is not in-built in PHP, can ...
3
votes
2answers
238 views

What exactly is the need for gamma correction?

I have problems to fully understand the need for gamma correction. I hope you guys can help me. Let’s assume we want to display 256 neighboring pixels. These pixels should be a smooth gradient from ...
0
votes
0answers
52 views

How to decide input and output value of php imagegammacorrect function

From my understanding of image processing/manipulation, gamma changes the contrast and brightness in unison. So, does imagegammacorrect function in php gd used for the changes in contrast in ...
3
votes
1answer
251 views

Gamma Correction on an Image in android

I am building an android app which provides the user with some image processing functionalities. But before applying any image transformation function I would like to do gamma correction to improve ...
1
vote
0answers
119 views

Linear and Gamma Correction - Posterized

I am writing an image processing application focused on astro pictures. The pecularity of these kind of images is that they come out from calibrating tools with a very narrow histogram that needs to ...
1
vote
1answer
88 views

How to get gamma of image in HSI color space

I am required to change Gamma of a photo using HSI color space. I changed RGB to HSI color space and know that I need to change the intensity with Gamma value. But I don't know how to find gamma value ...
0
votes
0answers
212 views

How to adjust gamma / white point on Android? [closed]

I want to calibrate my Android, but I was only able to adjust brightness. How can I adjust gamma and white point?
1
vote
1answer
115 views

OpenGL Automatic sRGB Conversion vs Manual sRGB Conversion

I've recently been reading up about sRGB conversion and some of the benefits that come with it. A read a very useful article in GPU Gems 3 which is now available for free which covers some automatic ...
4
votes
3answers
279 views

Should WebGL shader output be adjusted for gamma?

Should a WebGL fragment shader output gl_FragColor RGB values which are linear, or to some 1⁄γ power in order to correct for display gamma? If the latter, is there a specific value to use or must a ...
1
vote
1answer
64 views

Can a script convert website colours to be consistent across multiple devices?

I've noticed when checking my site across multiple devices, the colour yellow on the desktop looks orange on another device. Is there a conversion standard or technique, script or method to convert ...
1
vote
1answer
327 views

Where do all the numbers come from in the standard 2.2 gamma correction for RGB?

Here is the standard fwd Gamma 2.22 (1 / 0.45) correction formula: for R,G,B < 0.018 R´ = 4.5 * R G´ = 4.5 * G B´ = 4.5 * B for R,G,B ≥ 0.018 R´ = 1.099 * R^0.45 - 0.099 G´ = 1.099 * G^0.45 - ...
0
votes
1answer
618 views

How to calculate gamma correction value from camera captured display test test image?

I want to develop an instrument device which can calculate a display system's gamma correction value, the idea is used a calibrated camera (e.g. raw output from DSLR through PTP over USB)to capture a ...
0
votes
1answer
141 views

How can I make this Bitmap gamma function in Android run faster?

I have written the following function to change the gamma of a Bitmap, but it's kind of slow, even on small (300 by 300) bitmaps. How can I make this function run faster? For example, is there a ...
1
vote
1answer
223 views

Is there a standard sequence for gamma, brightness & contrast corrections?

In my application I'm doing gamma, brightness and contrast corrections defined by the user. Now I was wondering whether there is a standard order of doing this or not. It may sound trivial but I ...
0
votes
1answer
232 views

How to create gamma (midtone) changes with help Pixel Bender?

I'd like to create Level correction with help Pixel Bender. I made correction for each channel (r, g, b), it works. But I don't know how to make correction for midtone for each one. Is there some ...
0
votes
1answer
309 views

Sigma Formula for image C++

I'm trying to make a certain tone curve which is known as Sigma. Unfortunately, I do not know the formula for Sigma, i somehow cant find the formula for it. Can anyone help me? Thanks Based on a ...
1
vote
1answer
190 views

Implementing gamma incomplete in java

I'm having trouble implementing the gammainc of MATLAB in Java. I tried doing it part by part. I used these function that uses Lanczos approximation which I got on the web for solving Γ(a): private ...
0
votes
1answer
366 views

How to convert decimal to Variable Byte code & gamma code

How do you convert the decimal number 777 to the equivalent VB & gamma codes? I've been reading up on gamma codes. I see where they get the unary codes from the decimal but not where the length ...
1
vote
1answer
277 views

Gamut / Color space problems when using CGContextDrawPDFPage

I'm rendering a PDF file on iPad using core graphics. The colors however look different to the PDF when opening it using OS X preview or acrobat. Here is a picture with the left being from Acrobat, ...
1
vote
1answer
244 views

Gamma correction in Y'CbCr space

I need to do gamma correction on images in Y'CbCr space so I can bring out details in saturated and starved areas in an image and I'm wondering if I need to adjust the chroma sub channels? I know ...
3
votes
0answers
369 views

Correct usage of SetDeviceGammaRamp

I'd like to add the ability to adjust screen gamma at application startup and reset it at exit. While it's debatable whether one should tamper with gamma at all (personal I find it useless and ...
1
vote
0answers
94 views

How do you manually create a color profile?

I'm trying to create a color profile for a white-label LCD display, for internal testing. All I have is a technical document with these values: Brightness of White: 300 Brightness Uniformity: 70 ...
4
votes
1answer
534 views

Gamma-curve experiment — convert 2.2 to opposite of 1.8?

The Motorola Photon is infamous for exhibiting what others have called "black crush" -- when viewing pictures, most of the detail in dark parts of the image is flattened out to black. Up to now, ...
1
vote
1answer
339 views

Apply a Gamma of 1.8 to an NSImage

I'm trying to convert an NSImage to have a a gamma of 1.8 and I'm not having much luck. I've found some code but nothing that's working. I've got a method that returns an NSBitmapImageRep on an ...
2
votes
2answers
677 views

(DirectX9) Gamma correction applied implicitely

UPDATE: Thank you all very much for your answers. As Jesse Hall suggested, it looks like it is a driver (or hardware) problem. I tried the same app on other configurations and it worked as expected. ...
2
votes
1answer
232 views

(DirectX9) sRGB conversion after blending

I recently came across this blog post Yet another post about gamma correction which taught me the availability of the D3DPMISCCAPS_POSTBLENDSRGBCONVERT capability flag. This should allow for proper ...
0
votes
1answer
97 views

What is the name of a algorithm implemented in gamma_curve of dcraw?

Dcraw contains a following algorithm to process image colors: https://gist.github.com/1047302. Is it a formal (named) image processing algorithm? If not, what should I read to understand reasoning ...
6
votes
3answers
2k views

Color spaces, gamma and image enhancement

Color space. Well, everybody knows about RGB: three values normalized in the range [0.0,1.0], which have the meaning of the intensity of the color components Red Green Blue; this intensity is meant as ...
1
vote
1answer
223 views

Tone Curve - Lightroom

Does anybody know if the tone curve tool in Lightroom 3.4 is patented? I would like to implement the similar functionality in a image processing software.
2
votes
2answers
625 views

How Do I Remove Gamma Information From A PNG

I am trying to produce images without gamma information so that IE8 can display them correctly. Used the following code but the result is a distorted image that looks nothing like the original image. ...
0
votes
2answers
47 views

Does anything special need to be done to linear-intensity images before displaying them on a DICOM calibrated display?

I have some code which renders RGB images from a physical simulation. Those images have a linear intensity scale, so must be gamma corrected before display on a normal PC monitor and it's easy enough ...
1
vote
1answer
298 views

Why is this PNG mis-colored on Linux?

My site uses a PNG for a transitional background. Here is the site on Firefox on Mac, and here is the same site on Firefox on Linux. As you can see, the PNG background displays in a duller green on ...
5
votes
2answers
3k views

PHP GD2: how to maintain alpha channel transparency and correct gamma

I was intrigued by this discussion of image scaling and subsequently found out that the PHP code I'm using to create thumbnails from uploaded images suffers from the same problem. I decided to try the ...
3
votes
2answers
605 views

How to calibrate a Mac Monitor for iPhone development

How to calibrate a Mac monitor to match the iPhone's colours? What is the iPhone's gamma? Thank you.
0
votes
1answer
313 views

GetDeviceGammaRamp to adjust colors

I overlay an OpenGL application (c++), this openGL application uses SetDeviceGammaRamp to set the brightness of the desktop to very high (dont know why). This application is fullscreen and looks good, ...
5
votes
2answers
389 views

Antialiasing and gamma compensation

The luminence of pixels on a computer screen is not usually linearly related to the digital RGB triplet values of a pixel. The nonlinear response of early CRTs required a compensating nonlinear ...
8
votes
1answer
1k views

How can I get image data from QTKit without color or gamma correction in Snow Leopard?

Since Snow Leopard, QTKit is now returning color corrected image data from functions like QTMovies frameImageAtTime:withAttributes:error:. Given an uncompressed AVI file, the same image data is ...
3
votes
1answer
1k views

How to scale pixels in an image to adjust brightness?

I have a grayscale image from a photograph. I've determined that certain parts of the image are underilluminated, and that a pixel with luminance Y = 0.8 should actually be adjusted to 90% grey, ...
2
votes
2answers
3k views

Tweak the brightness/gamma of the whole scene in OpenGL

Does anyone know how I can achieve the following effect in OpenGL: Change the brightness of the rendered scene Or implementing a Gamma setting in OpenGL I have tried by changing the ambient ...
12
votes
4answers
2k views

How can I make Internet Explorer not change the colors in my PNG images

When using PNG files (made with Paint.NET) as background images on my web site, IE7 is changing the colors and actually displaying a darker version of my images, as seen here. In this image, the dark ...