Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
4answers
1k views

Brightness Screen Filter

Does anyone have an idea how to implement an Brightness Screen Filter like the one here: http://www.appbrain.com/app/screen-filter/com.haxor I need a starting point and I can't figure out how to do ...
9
votes
2answers
322 views

Clean way to implement gradual fading of brightness in Android?

At the moment I have code to fade brightness adjustments which looks something like this: new Thread() { public void run() { for (int i = initial; i < target; i++) { final ...
7
votes
6answers
378 views

Javascript Calculate brighter colour

I have a colour value in JS as a string #ff0000 How would i go about calculating a brighter/lighter version of this colour; for example #ff4848 but programatically and be able to calculate the ...
7
votes
5answers
372 views

How to use JavaScript to measure how bright a users monitor is?

I've noticed that the brightness of computer monitors drastically varies between computers. As such, this changes the look of web pages greatly. Is there a way to use JavaScript to automatically ...
5
votes
1answer
240 views

IOS5 setBrightness didn't work with applicationWillResignActive

I use [[UIScreen mainScreen]setBrightness: ] (in sdk 5.0) to change the system background light in my app. The following steps work with my app Active the app, get the system brightness as default, ...
5
votes
6answers
368 views

How to make colours on one screen look the same as another

Given two seperate computers, how could one ensure that colours are being projected roughly the same on each screen? IE, one screen might have 50% brightness more than another, so colours appear ...
5
votes
4answers
1k views

Hex Code Brightness PHP?

I want users on my website to be able to pick a hex colour, and I just want to display white text for dark colours and black text for light colours. Can you work out the brightness from a hex code ...
4
votes
2answers
473 views

Get preferred screen brightness in Android

How do you get the preferred screen brightness in Android? To change the screen brightness I use WindowManager.LayoutParams.screenBrightness. According to the documentation: This can be used to ...
3
votes
1answer
153 views

Trying to set screen brightness on android phone

I am trying to set the screen brightness but when I try and get the current window with this.getWindow() I get null. Why is this? I will post all of my code in my setBrightness() method. ...
3
votes
1answer
74 views

How to get colors with the same perceived brightness?

Is there a tool / program / color system that enables you to get colors of the same luminance (perceived brightness)? Say I pick a color (determine RGB values) and the program gives me all the colors ...
3
votes
1answer
347 views

Normalize histogram (brightness and contrast) of a set of images using Python Image Library (PIL)

I have a script which uses Google Maps API to download a sequence of equal-sized square satellite images and generates a PDF. The images need to be rotated beforehand, and I already do so using PIL. ...
3
votes
1answer
255 views

How can I make changes to android screen brightness persistent?

I've managed to change screen brightness within an activity (and by extension the entire app) using the following code: ...
3
votes
3answers
2k views

Can't apply screen brightness settings programmatically in Android

I'm using the following to set the auto brightness mode and level: android.provider.Settings.System.putInt(y.getContentResolver(),Settings.System.SCREEN_BRIGHTNESS_MODE, 0); ...
3
votes
1answer
987 views

iPhone brightness private API not working properly

I am trying to set the brightness of the backlight, but it's acting very strangely. I am using the private API: [(id)[UIApplication sharedApplication] setBacklightLevel:1.0f]; However, when I call ...
3
votes
3answers
575 views

When I load an image in OpenCV it is always darker than the original. Why?

So I load a color .png file that has been taken with an iphone using cvLoadImage. And after it's been loaded, when I immediately display it in my X11 terminal, the image is definitely darker than the ...
3
votes
2answers
685 views

Programmatically change Mac display brightness

How to change Mac display brightness from cocoa application?
3
votes
2answers
2k views

Brightness/exposure function with vb .net

I'm making a simple image editor in vb .net, and one of the functions is brightness/ exposure. this is how I'm doing it: For i = 0 To img.Width - 1 For j = 0 To img.Height - 1 ...
3
votes
1answer
1k views

WPF image manipulation

I have some idea of changing brightness in contrast, but i was wondering had a simple solution for changing brightness and contrast
2
votes
2answers
171 views

Generic algorithm to get and set the brightness of a pixel?

I've been looking around for a simple algorithm to get and set the brightness of a pixel, but can't find anything - only research papers and complex libraries. So does anyone know what is the formula ...
2
votes
1answer
353 views

How to detect the brightness programmatically

I am creating an application for iPad which can change the images by detecting the brightness of the room. So I want to know is there a way to detect the brightness of the room ?
2
votes
1answer
418 views

Increase Brightness and Contrast of image after capturing from camera in android

I am making a one application in which I capture an image from camera and make the pdf out of it .. But the quality of image is poor. So I want to set the brightness and contrast of the image..... ...
2
votes
2answers
247 views

How do you stop the screen from dimming in WP7?

I'm creating a simple flash light app. Whenever I turn the screen all white, the screen dims a little, even if I turn off auto brightness and set the brightness to high. Does anyone know why this is ...
2
votes
3answers
558 views

iphone - Change the screen brightness, like iBook does

In iBook, user can adjust the screen brightness via a slider, right? What should I do to implement that? Which class or function I should use to control the screen brightness? Thanks
2
votes
1answer
197 views

Replicate photo booth screen flash in cocoa

I am trying to replicate a screen flash effect in a mac cocoa application similar to that of the Photo Booth. A white layer is overlayed on the screen and the brightness of the screen fades really ...
2
votes
4answers
1k views

How to Make an Image Uniform Brightness (using Python/PIL)

I want to take an image of a document that was photographed and make it look like it was scanned. Since a scanner will put a constant light source over the whole document, I want to achieve that ...
1
vote
2answers
157 views

applicationWillResignActive and setBrightness not working?

I use [[UIScreen mainScreen]setBrightness: ] (in sdk 5.0) to change the system background light in my app. The following steps work with my app: Active the app, get the system brightness as ...
1
vote
3answers
433 views

How to change brightness in iOS 5 app?

How would I program the ability to change brightness in-app? I know that its possible as I have seen at least three apps that can do it. This would be very useful for my app. I know that it's only ...
1
vote
1answer
230 views

How to change contrast with Pixastic jquery?

I try to change the contrast of my picture using Pixastic but it gives me an error telling me that *Error: uncaught exception: [Exception... "Security error" code: "1000" nsresult: "0x805303e8 ...
1
vote
1answer
56 views

How to access the Window when not an activity?

I want to access the Window class so I can set the screen brightness on my phone. The problem is that the class I want to do this from is not an activity. Is it possible to do this without being an ...
1
vote
1answer
254 views

How to change the brightness on iPhone (using private APIs)

I want to make an app similar to SBSettings (a quick settings application on Cydia) because developers can't jailbreak their devices. Can someone tell me how to change the screen brightness? It doesnt ...
1
vote
1answer
168 views

OpenGL: glTexEnvi, glBlendFunc and On Screen Text Messages

I'm developing a movie player and I'm using OpenGL to draw frames and On Screen Messages. To draw the frame I use: glBegin(GL_QUADS); // Draw the quads glTexCoord2f(0.0f, 0.0f); glVertex2f ...
1
vote
1answer
362 views

Android Development: Changing Screen Brightness in Service

Now i do try again. I want to change the screen brightness. I've Tried: WindowManager.LayoutParams layoutParams = getWindow().getAttributes(); layoutParams.screenBrightness = 0.5F; // set 50% ...
1
vote
1answer
160 views

Alter system brightness within a service

Although I am able to set the system brightness within an Activity successfully, it would seem that services don't fair too well. The brightness setting IS being set (I read it back and printed it to ...
1
vote
1answer
63 views

Technique for correcting colour/brightness/exposure levels between two images?

I've got some code for stitching images together, but as you can see from my results my colours and lighting are different between the two pictures. Is there some well known technique for doing ...
1
vote
3answers
495 views

How to adjust the brightness of the device from our app in iPad

I am developing a eBook reader app for iPad and i want to add a feature where in the user can adjust the brightness of the device from the app. Is there anyway in which i can implement this in my ...
1
vote
1answer
111 views

wxOGL wx.ShapeCanvas images

I am making a small photo editing application using wxPython ogl.ShapeCanvas. I can load images on the canvas. I just want to know how will I adjust the brightness/contrast of an image inside the ...
1
vote
1answer
602 views

Determining Image Luminance/Brightness

My iphone application captures the realtime data from camera using AVFoundation's AVCaptureSession. I'm able to access that data in it's delegate method in runtime and create an image out of it. It ...
1
vote
2answers
910 views

How to change brightness of an image in android?

I am developing an Image manipulation software in android.i want to change the brightness of an particular image.how it can be done in code?
1
vote
5answers
1k views

Android: detect brightness (amount of light) in phone's surroundings using the camera?

The following applies to the Android operating system. I am trying to estimate how dark (or light) it is in the room where the phone is located using the camera. The idea is that the camera can ...
1
vote
2answers
2k views

Android 2.2: Adjusting screen brightness

public void SetBright(float value) { Window mywindow = getWindow(); WindowManager.LayoutParams lp = mywindow.getAttributes(); lp.screenBrightness = value; ...
1
vote
1answer
726 views

setting brightness via Settings.System.putInt() isn't working

I'm trying to change the brightness mode and value on my phone, and found a great thread here at SO that I thought answered my question, but on my froyo Dell Streak this code simply does nothing. ...
1
vote
3answers
468 views

Generate a value to reflect the average brightness of an image

I need to determine if an image is above a certain brightness. Using a scale of 0 - 255 I want to generate a value within this range to reflect the image brightness. i.e. a white image is 255 and a ...
1
vote
3answers
2k views

Brightness and Contrast for a canvas image with javascript

I have an image in a tag var img = new Image(); ctx.drawImage(img,0,0,img.width,img.height); ecc... How is possible to change the Brightness and Contrast of this image with javascript? Tnx
1
vote
2answers
241 views

Screen brightness in J2ME

Do you know of any means for changing the screen brightness in J2ME. That is using a vendor-specific API, like Samsung's, etc. Thanks!
1
vote
4answers
1k views

Linux/Xorg: setting color brightness

Is there any command (or API) to set X.Org/Linux color brightness? In other words, I need something as handy as the xgamma command but for changing RGB brightness real-time. Is this possibile? ...
1
vote
2answers
3k views

Changing Backlight Level, iPhone

I searched around for a way to set the backlight level within an app on the iPhone. I found a solution here: http://www.iphonedevsdk.com/forum/29097-post3.html The problem I have is, when I add this ...
1
vote
3answers
677 views

WPF change brightness

Well i have a application that is black and white and i need a function to lower the brightness how can i do this? all the white comes from a SolidColorBrush that is saved in a ...
1
vote
3answers
368 views

Is there a way to query the current brightness level of a the MacBook LCD?

The idea being that, once the brightness passes a certain level, one could switch to a different visual scheme to give greater visibility. Also, if it could be some sort of listener type thing, that ...
0
votes
0answers
54 views

Is it possible to set the Torch light brightness high?

I am using Torch light mode in iPhone app. This app only show the Torch light not to take video/photos. It seems the torch light brightness is dim. I want to show the torch light in high brightness. ...
0
votes
0answers
64 views

Set LED Torch light high brightness in iphone?

I have used Torch light option in iphone app. When the torch light opens, it looks very dim. I want to know what are the types of flash light in iphone? I want to show the torch light very bright. How ...

1 2