ActionScript 3.0 :: Calculate What The Average Color Is By Retrieving The Color Of Each Pixel
Jun 19, 2009
I need a function that retrieves the average hexadecimal color values of a group of pixels in a square. Like a 4x4 area, and I want to be able to calculate what the average color is by retrieving the color of each pixel.
View 4 Replies
Similar Posts:
Sep 28, 2010
I'm currently making a color picker (pretty standard one, pretty much the same as photoshop with less options at the moment: still in early stage). Here's the picture of the actual thing : [URL] The problem is : to retrieve the color of the pixel that is under the color selector (the small one, the other is the mouse), I have this line that I thought would do it :
_currentColor = Convert.hsbToHex(new HSB(0,
((_colorSelector.x + _colorSelector.width/2)*100)/_largeur,
((_colorSelector.y + _colorSelector.height/2)*100)/_hauteur
));
Just to clarify the code, I simply use the coordinates of the selector in order to create a new HSB Color (saturation is represented on the X axis and brightness (value) on the Y axis of such a color picker). I then convert this HSB Color to Hexadecimal and assign it to a property. The hue is always set to 0 at the moment but this is irrelevant as I only work with pure red to test. It partially does what I wanted, but the returned color values are inversed for most of the corners:
[Code]...
View 3 Replies
Jan 10, 2010
So, I've got this [code]...
Is there a way to get, efficiently and quickly, the dominant color and/or the average color in pixels ByteArray.
noise is used for the example here. I'll be having something else drawn on that BitmapData instead.
I found some ways to extract the average color palate from a BitmapData, but this isn't enough for me since I want the average from a rect over that image.
View 2 Replies
Mar 21, 2009
Is there a way of finding out the color of a graphic? For example if i have an array of rectangles, each with a different color set using graphics.beginFill(), can I then do something like:
color = rectangleArray[i].getColor();
View 1 Replies
Feb 6, 2010
i have a button, with instance name lightblue_color. I am assigning a color to its color field like this: lightblue_color.transform.colorTransform.color = 0x65ffff; then i am adding an eventlistener to the button like this: lightblue_color.addEventListener(MouseEvent.CLICK, ChangeColor); Then, in the function: public function ChangeColor(evnt:MouseEvent):void {trace(evnt.target.transform.colorTransform.color);} It prints 0. Why is that? Shouldn't it print 0x65ffff or do i need to do some type conversions?
View 2 Replies
Nov 22, 2005
okay, so i have a basic drawing app based on
drawing = false;
data = '';
_global.linethickness = "2";
[code].....
View 2 Replies
Feb 13, 2010
I need a way to calculate lighter hex color(s) based on a provided one. I realize I could use a color transform, but I need the actual value in order to generate a gradient.
View 5 Replies
Oct 28, 2010
Grab the color of a vector item at a specific pixel without converting it to a bitmap object and then using getPixel?
View 8 Replies
Jun 8, 2011
Is there a way to retrieve the color of a generic pixel on the screen using the mouse pointer inside the Stage of Flash Player? With the getPixel method of the BitmapData class you can get the color of a pixel only if the mouse is over a bitmap image, but what if I need the color a generic pixel on the screen?
View 4 Replies
Mar 10, 2011
Say I have drawn a triangle with[code]...
When the user clicks a point inside the triangle, we will get the x and y coordinates, do some calculation with those values and get some (lots) of pixel coordiantes accordingly (all of those calculated points will be within the triangle). And finally, change the color of those points (something different than triangleShape fill color).
View 1 Replies
Dec 15, 2009
my concept was I have webcam. My webcam is able to catch an image. Whereby, the flash will calculate the overall color of the jepg. And it will resize and place it to the nearest color of the main background color.
View 1 Replies
Oct 15, 2008
Is there a way to get the color of a pixel that the mouse clicks on. I want to load text into a dynamic text box according to that color.
View 12 Replies
Jul 19, 2009
for example,graphics is an object from a movieclip ojbect.I want to get the pixel color at the x,y location in the movieclip.How to do?
View 5 Replies
Oct 6, 2011
I have a spinning sphere, built using the away3D engine, it is wrapped in a bitmap. I need to be able to check the color value of the pixels in the sphere, however BitmapData only plots the 2D image, not the 3D sphere. So, the values become wrong. If I try to apply it to the sphere I get nasty errors. I have literally been stuck on this for days.
View 1 Replies
Feb 10, 2011
is it possible to pick the color of a uni filled shape? If not, is it possible to retrieve the color at pixel x:0 y:0?Otherwise how do I pick that pixelcolor using bitmapdata.
View 2 Replies
Dec 7, 2010
I'm quite new to ActionScript and I was wondering is there a way to get the (pixel) color of the HTML layer under a flash movie? I have an idea of making a transparent flash movie covering a part of a website and then getting the color of underlying HTML layer, to make some realtime transformations or other stuff.
View 2 Replies
Feb 23, 2011
What is the best way to turn turn off (using PixelBender) colors that fall within a certain range. For example, turn off all colors between 0x0000FF and 0x00FFFF. This has to work in Flash.
View 2 Replies
Jul 29, 2011
I'm having trouble with this code
var imageMap:ImageSnapshot= ImageSnapshot.captureImage(object);
var pixelValue:uint = imageMap.bitmapData.getPixel(x, y);
View 1 Replies
Oct 5, 2011
I have a bitmap with many colors on it. When the user clicks each color needs to trigger a different method. However, I have no idea how to check the color value of the selected bitmap. I can create a new sprite and check the value of that fine through bitmapdata.getpixel() but when I need to actually check the actual bitmap I cannot get it to work.
View 2 Replies
Jul 11, 2009
Can I detect the color of a pixel or an area in a Display Object?
View 2 Replies
Nov 28, 2009
I have a vector movie-clip of a cat. Behind it, there is a picture of a park. The picture of the park takes up the entire stage, but the cat is only 32x16. How could I use BitmapData to sample all pixels (of everything, not just the park) within the cat's bounding box (but not including the cat itself in the samples (so like the cat is invisible); also 4 pixels wider in each direction, so it would effectively be 40x24) and then return the RGB average (in hexidecimal) so that I can set a masked transparent mc in front of the cat to that value?
Basically, so it looks like the color of the cat's surroundings affect its tint, to crudely simulate global illumination in 2d.
View 1 Replies
Mar 10, 2010
I know this is possible to be done using javascript, and I presume I could get the values to flash calling js, but I'm looking for any AS3 library/code that does the same.
js examples: [URL]
View 1 Replies
Feb 26, 2010
This can't be too difficult but its killing me. I want my user to be able to type 3 numbers into 3 different input boxes, capture those numbers, calculate and display their average in a fourth text box.
I am not sure how to capture input from a textbox in AS3 in order to do these calculoatilo.
View 1 Replies
May 27, 2011
So I've got an input box on the UI, where integers are entered and stored in an array. I want to find out the average of the integers, but how would I calculate the sum?
View 1 Replies
Nov 30, 2011
Keeping it simple for now but assuming i have a ByteArray full of sample data is it possible to calculate the average frequency (thus a pitch) from the entire recording? Is this along the right lines? p = 69 + 12 x log2(f/440hz) ...
View 1 Replies
Dec 15, 2006
If I've set a color for an MC with new Color(),how can I remove that color again?
Code:
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {[code]..........
View 3 Replies
Feb 18, 2009
i want to change a colors tint and store that color for later use to apply to dynamically created sprites, for some reason the code changes my place graphic as expect but when i draw a square using the Colortransform.color property the color always in gray scale?
Code:
package{
import flash.display.*;[code].....
View 2 Replies
Oct 6, 2010
I want to do as follows: * click a "red" button write in textarea with red color font click "blue" button
* write in textarea with blue color font Isn't this possible in flash 10 using AS3 I tried using setTextFormat but the problem is i have to have text before inserting format on that.
View 14 Replies
Oct 18, 2003
How would I make a dynamic text boxes border a certain color, along with background color.
View 1 Replies
Aug 5, 2004
i'm doing a school project of mine and i am having trouble doing the changing color objects. here is an axample of the script that i;m using:
on (rollOver) {
var colorful = new Color("_root.shapes");
colorful.setRGB(0x003366);
}
For this script it does change color, but how do i make it to stay the same color that user selected after going to another scene?
View 2 Replies