A pixel is the smallest unit that can be represented or controlled on a display. The word pixel is derived from the phrase "picture element".

learn more… | top users | synonyms

0
votes
1answer
11 views

Adapting pixels of the image depending files and rows

I have this function where I receive String[][], f (rows), and c (columns). I've got to adapt my labels occupying all of my frame (1270,750). For example, if I receive: f=3 and c=3, the images will ...
0
votes
0answers
14 views

Reporting tools for web visits to show clients

I have a web portal in which I create content for different clients. For example, I have articles about dentist A, or car mechanic A, with each targeting different keywords on these pages. Is there ...
1
vote
1answer
23 views

Getting pixel color from a full screen directx game in C

So I'm trying to get the pixel color of the mouse position from a game called "Gunz"... As far as I know, Gunz works on DirectX. I tried to make it work on window mode using GDI, I got the pixel ...
1
vote
6answers
43 views

How does a machine determine what is displayed on a screen (6502 specifically)? [closed]

I know this is an incredibly vague question, and it might not be a good question for programmers, since this is really a hardware related thing, but I guess some assembly/machinecode comes into play ...
0
votes
0answers
18 views

Error in Pixel-Pixel-Collision

I have got this pixel-pixel-collision code, but it gives me an error Index outside range of the array on if (((t1[i] & 0xff000000) > 0) && (t2[i] == 0xffC3C3C3)) Variables: int bHit; ...
0
votes
0answers
96 views

How to monitor single pixel color every 1ms [closed]

I need to make Delphi 2010 app that reads pixel color of the screen very fast, each 1 millisecond. If faster is possible - even better. How to make fast TTimer ? How to make screen capturing fast ? ...
0
votes
0answers
6 views

glsl set pixel color without check the coordinates of each pixel

How can I set the color of certain pixel without "if" for each pixel, if I know its coordinates. I have to check the coordinates of each pixel in the fragment shader and if the coordinates are the ...
0
votes
2answers
28 views

Align a div to the center and then move it left

I am using the following code to make a div... left:50%; top:0px; width:100%; margin-left:-50%; background:black; padding:20px; position:fixed; But the problem is there is a padding on the div ...
0
votes
0answers
14 views

custom view with objects on screens with different screensize and pixel density

I would like to draw a circle in my custom view and it should appear nearly the same size on any screenresolution and density. for example if I would draw the circle with a radius of 50 pixel, then ...
0
votes
1answer
10 views

Python Graphics GraphWin GetPixel [closed]

I am using the Python Graphics Library for a nice little AI project. In the project, we want the individual 'organisms' to be able to 'see' whats in front of them, and we're doing this by ...
0
votes
2answers
20 views

CSS Can only style elements with pixels, not percents

i'm having a bit of a brain melting problem. I have a master div thats pretty much the body (don't ask me why, i was getting desperate), and within that div is a head div, and within that div is the ...
-1
votes
0answers
14 views

XCode : How to get pixel value from other process [closed]

On mac, I'd like to read pixel values from a view of specific application. What technique should I study?
0
votes
1answer
17 views

Average color of bottom 30% of an image

I am trying to write a method to get the average color of the bottom 30% of an image. I'm trying to do this by going over each pixel individually, getting their colors, summing them op and dividing ...
-1
votes
2answers
51 views

c getting pixel width (tiff)? [closed]

i have a lot of tiff image files and i need to change their names ( by their width and height) at once. For example : asdasd.tiff (size 600 x 700 ) --> 600x700.tiff but there are some problems: i ...
0
votes
0answers
18 views

what's the best way to determine css pixel ratio for screen sizes, if it isn't listed?

what's the best way to determine css pixel ratio for screen sizes, if it isn't listed? Perhaps, you have these data: width = 480px, height = 800px, physical size = 4.3, ppi = 217. Is this obvious that ...
0
votes
0answers
45 views

Google AdWords conversion pixel on form submit

I'm submitting a form to an external site, and want to track submission as an AdWords conversion. I'm using the following code (adapted from jQuery .append() a pixel on form submit), and can see that ...
2
votes
1answer
27 views

GPUImage: Reducing color depth

I would like to reduce the color depth of input video and images (for example, to 16bit) when using GPUImage on iOS, and was just curious if there is a simple way to do this using existing filters. ...
0
votes
1answer
28 views

set alpha channel per pixel in QImage

I am using a QImage of the format _ARGB32. I have to set some of the pixels as transparent and some as opaque. So, I used this line: Image.setPixel(x,y,QColor(r,g,b,0).rgba()); to set the pixel as ...
0
votes
1answer
39 views

Are my solutions to printing an error due to file size and storing values right?

PART 1: What I need to do is print out an error if the file size exceeds the 500 by 500 measurements (defined at the top as max_width and height). I PART 2: The other part is that I have to read the ...
1
vote
2answers
18 views

Get the value of an individual pixel

I'm making Tetris and im trying to make a line clear function. I have a way to do this that is a bit complicated and im looking to simplify. My idea is to check some pixel RGB values and see if ...
0
votes
0answers
11 views

i want to get the number of pixels within the detected edge in emguCV

I have done the edge detection using canny and now i want to get the pixel count inside the detected edges, Please help me if any one have any idea of what can be done in emguCV
-1
votes
0answers
17 views

compare the css of an html page with my site

I want to take a screen capture of a whole page and compare it with what I have to have the same pixel and margins,I installed pixel perfect but I don't know how it works.thanks
-1
votes
1answer
55 views

how to calculate pixel density of a sampled binary image [closed]

This may be a very simple matter, but I have conflict with that. I have split a particular binary image (28 x 28) into (4 x 4) samples. Now I want to calculate the pixel densities of each sample (I ...
2
votes
1answer
31 views

PHP - Find the closest RGB to predefined RGB from list

My goal is to find the closest match of RGB compared to the RGB from the array. I have already created a function that loops trough every pixel in a picture. The only thing I need now is to find ...
0
votes
2answers
40 views

What's wrong with my program to decode an image?

I'm given an image file and the real image is hidden behind random pixels. I have to decode the image by multiplying the red value by 10 and by setting the green/blue values equal to that new red ...
1
vote
1answer
59 views

How to get one pixel of Image in Windows Store App (C#)

I am writing a game for Windows 8 in C#. I have an Image and I need to check the color of some given pixel. I know coordinates (x, y) of the pixel in Image, but I can not find any class that can do ...
0
votes
1answer
36 views

Getting co-ordinates of bitmap on mouseDown in NSImageView

I am working on an app where I display unsupported (by XCode) file format). So I've subclassed NSBitmapImageRep to display it in a subclass of NSImaageView. I've set it up to be proportionally ...
1
vote
1answer
66 views

GPUImage: How to determine average pixel value for given rectangle in processed image

I am using GPUImage to process incoming video and I would like to then consider a given square subregion of the image and determine the average pixel value of the pixels in that region. Can anyone ...
0
votes
1answer
33 views

“mouse_event” function - sending cursor to (slightly) wrong coordinates

The mouse_event function sends the cursor to slightly wrong coordinates (1-20 pixels off). The degree of how much it is "off" is based on a pattern I can't quite figure out. Here is my code int ...
1
vote
1answer
23 views

Image Pixel Data Reading and Printing

Boo Hoo. I had this awesome code that output-ed the data of all the pixels of an image into a csv/txt file. And now it is not showing anything in the files. The file comes up completely blank. What am ...
1
vote
1answer
45 views

How to find white/ black pixels between 2 points javacv

How can I find white/black pixels between 2 points in javacv? I have tried with cvInitLineIterator but I don't know if I am on the right way.. Many thanks for considering my request.
0
votes
1answer
15 views

Save Texture format in 655

Bonjour, Simple, but not easy question -I think- for you, guys. On the video game I'm making my first remake of, I've encountered textures of the format 16 bbp RGB655 ( no, NOT 565, 655! ). I ...
0
votes
0answers
65 views

TTF font doesn't work on iPad mini

I am using a ttf font in my project. It works well on iPhone and ipad.The problem is; I have custom popup which is a subclass of UIView and i add this popup to uiwindow with this code: int ...
0
votes
0answers
41 views

how to convert canvas given dataurl format in javascript

We have worked image processing in the javascript. We stuck in trouble with canvas dataURL. Below sources is our source that had coded. Please see and find out our problem. plz. Description : ...
0
votes
0answers
40 views

Java, drawing all pixels on the screen with different colours with maximum performance

I'm trying to draw a self-created 'image'(most likely a bufferedImage I reckon) using an array containing the colours in the format of hexadecimal numbers. And I'm talking about fullscreen, meaning ...
0
votes
3answers
36 views

Accessing image pixel value

I want to return the value from a black and white image in opencv that has been rectified. I used .type() to see how to address image.at<>(point()). It gave back 0 so I put in ...
0
votes
1answer
45 views

Why does iOS scale images up?

Why does iOS scale images up? I am building a site and want it to be mobile friendly, when I look at it on iOS my pixel-based images are getting scaled up for some reason. Shouldn't the browser keep ...
5
votes
2answers
88 views

Thresholding a range of colors from an image

The plan My project is able to capture the bitmap of a target window and convert it into an IplImage, and then display that image in a cvNamedWindow, where further processing can take place. For the ...
0
votes
1answer
42 views

how to display a byte array as image

I converted image into grayscale then read the pixels like this for (int i = 0; i < image.getHeight(); i++) { for (int j = 0; j < image.getWidth(); j++) ...
0
votes
1answer
69 views

how to change the pixel values in a rgb image in matlab

I have a rgb image, I want to change the pixel values greater than (r:175,g:255,b:55) to Nan in matlab, How can I do that. Please let me know
0
votes
1answer
14 views

Getting RGB of a pixel in touchesMoved delegate

I have created a page that picks RGB values of a pixel. It allows user to move his finger and choose the pixel color of the selected image. Also setting the RGB hence obtained, to the small image view ...
0
votes
1answer
61 views

Rotating a 2D pixel array by 90 degrees

I have an array of pixel data for an image. The image I am getting is already rotated to 270 degrees. So I am trying to rotate it again by 90 degrees to have the correct image. I've tried a transpose ...
0
votes
1answer
30 views

javascript ImageData typed array read whole pixel?

So there is are a lot of examples on how to write an entire pixel from a Uint32Array view of the ImageData object. But is it possible to read an entire pixel without incrementing the counter 4 times? ...
0
votes
2answers
41 views

Mapping pixels of two matrices

Say that I have two matrices of the following sizes: matrix_1 = 30090x2 matrix_2 = 170x177 Assume here that the number of rows n matrix_1 represents the number of pixels. You can see that the size ...
0
votes
0answers
28 views

Prevent half pixels position when apply a percentage based 2D transform in Webkit

When applying in webkit a 2D transform using a percentage, in this case translateY(-50%) it seems that if the object size isn't even, the result will be blurry edges. Does anybody know how to ...
0
votes
1answer
32 views

How to display image after using setRGB(x,y,0) in Java?

for(int x=0;x<20;x++) { for(int y=0;y<20;y++) { img.setRGB(x, y,0); } } I'm trying to convert all pixels in a 20*20 region to black colour. But this is not working with the ...
-1
votes
0answers
20 views

bootstrap resize just some elements every pixel when window is resizing pixel per pixel

I don't know why bootstrap resize all the elements every two pixels (some elements at the first pixel and the other at the second). You can see that resizing horizontally the navigation window pixel ...
0
votes
0answers
18 views

setRGB(x,y,0) not working

for(int x=0;x<200;x++){ for(int y=0;y<200;y++){ img.setRGB(x, y, 000000); } } This code is not working.I want to set the 200*200 ...
1
vote
2answers
65 views

1 Byte Alignment vs 4 Byte Alignment (Pixel Packing)

I am reading the OpenGL SuperBible for OpenGL 3.x. I am having a hard time understanding the whole "pixel packing concept." I get that typically a 199px wide image would require 597 bytes [(199 * 3)3 ...
-1
votes
1answer
35 views

Advice on first steps to starting a simulator that uses pixels to represent atoms

My apologies for the length of the question - I tend to do that when I'm unsure of the terminology to use, or where to start. I've been using C# for some time now, but mostly within the context of ...

1 2 3 4 5 20