Tagged Questions
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".
33
votes
10answers
59k views
Convert Pixels to Points
I have a need to convert Pixels to Points in C#. I've seen some complicated explanations about the topic, but can't seem to locate a simple formula. Let's assume a standard 96dpi, how do I calulate ...
18
votes
4answers
6k views
Draw a single pixel on Windows Forms
I'm stuck trying to turn on a single pixel on a Windows Form.
graphics.DrawLine(Pens.Black, 50, 50, 51, 50); // draws two pixels
graphics.DrawLine(Pens.Black, 50, 50, 50, 50); // draws no pixels
...
17
votes
7answers
562 views
Commonly used pixel sizes for webpages and their pros/cons
What are the most commonly used pixel sizes (primarily widths) and what are there advantages and disadvantages?
How can I best find a happy medium to give a good experience to people with a wide ...
15
votes
4answers
468 views
How to change a particular color in an image?
My question is if I have a Lion image just I want to change the color of the lion alone not the background color. For that I referred this SO question but it turns the color of whole image. Moreover ...
9
votes
2answers
81 views
My div does not exists after loading my pixel
I have a pixel and when I load it, it says:
a call to document.write() from an asynchronously-loaded external script was ignored
and then displays:
document.getElementById('gospixel') is null
...
8
votes
3answers
421 views
Javascript generate transparent 1X1 pixel in dataURL format
I would like to know a way to generate a single pixel in JavaScript converting it to base64. The ideal function would be:
function createPixel(hexColor, opacity){
//...Calculate
return ...
7
votes
2answers
29 views
php gd pixelate too sharp
i have this script for pixelize my images the script is working but i want more smooth edges:
$imgfile = 'batman.jpg';
$image = ImageCreateFromJPEG($imgfile);
$imagex = imagesx($image);
$imagey = ...
7
votes
3answers
466 views
Java fast pixel operations
I would like to know how I would handle pixel operations best in Java. I'm using swing and drawing a rectangle of 1 by 1 pixel is terribly slow. I need to get 60 fps at least, without using too much ...
6
votes
2answers
245 views
Pixel Collision Tracing
I have a character that's say, 20 by 10 pixels large and I have a collision map based on pixels (think worms).
What's the best way to trace collision for the character given a velocity greater than ...
6
votes
2answers
113 views
What's the best way to “round” a Color object to the nearest Color Constant?
I will be retrieving the exact color of a pixel and would like to relate that exact color to a constant like Color.blue. Is there an easy way to "round" to the nearest Color Constant? Additionally, ...
6
votes
1answer
586 views
Poor results with source-over alpha blending (HTML5 canvas)
Edit: I don't necessarily need a solution to this problem--rather I'd like to understand why it's occurring. I don't see why I should be getting the odd results below...
Although this question is ...
6
votes
5answers
914 views
C++ 2D pixel perfect collision detection libraries?
what are the libraries available to do this which integrate with SDL and QT4 . Are there any existing packages in SDL or QT which allow for easy implementation of this?. I am looking for for an easy ...
5
votes
2answers
266 views
How to find out whitePixelValue when person smile?
using CvRect i am able to detect faces coordinate
detectFace(IplImage * pImg, CvHaarClassifierCascade * pCascade, CvMemStorage * pStorage)
But my problem is How to find out whitePixelValue when ...
5
votes
2answers
282 views
Wrong widthPixels?
DisplayMetrics displaymetrics = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(displaymetrics);
int w = displaymetrics.widthPixels;
int h = ...
5
votes
1answer
507 views
Drawing aliased, pixel-perfect 1px splines (Catmull-Rom, specifically)
A brief background: I'm working on a web-based drawing application and need to draw 1px thick splines that pass through their control points.
The issue I'm struggling with is that I need to draw each ...
5
votes
2answers
328 views
Pixel fonts in Silverlight 4
Is there a way to render pixel fonts correctly in Silverlight 4? Without breaking text into paths or some sort of manual rendering because the text is dependent on data binding. Tweaks with ...
5
votes
5answers
191 views
Pretty Pixel-level Picture Painting, Programatically
My mac laptop has 1,024,000 pixels.
What's the simplest way to turn my display completely black and go nuts with writing little programs to twiddle pixels to my heart's delight?
To make it more ...
5
votes
8answers
11k views
Pixel to Centimeter?
I just want to know if the pixel unit is something that doesn't change, and if we can convert from pixels to let's say centimeters ?
5
votes
2answers
2k views
How to 'Flatten' multiple UIImageViews into ONE?
I have a feeling this is not an easy task but I need to combine or flatten a UIImageView with another UIImage view lying above it. For example: I have two UIImageViews. One of them has a UIImage of a ...
4
votes
3answers
178 views
C# Scanning an image for a certain block
I have a picture :
size of 1000x1000 white with random black dots. (It may contain a black square (size 50x50))
Is there an easy way to know if the picture contains a black square (size 50x50)? I ...
4
votes
2answers
97 views
How to erase an area delimited by a line segment and a block of colors?
Given the picture below:
The position of A and B is known, the rest of the picture is just raw pixel data (only red and white pixels). What algorithm can I use to erase the part to the right of AB?
...
4
votes
1answer
485 views
Image pixel manipulation: Use native APIs or 3rd party libraries?
I need to write an application in Java which need to be able to manipulate the pixels of an image regardless of the format of the image (JPEG, BitMap, Gif, ...).
It means I need to access the pixels ...
4
votes
1answer
474 views
Android 2.1 Native Lock Bitmap Pixels
I'm running a basic native function that modifies the pixels of a bitmap. To do this I am getting the pixels via the Bitmap_lockPixels() function. However, this isn't available for versions lower than ...
4
votes
1answer
346 views
How to read a pixel off of the screen?
I am trying to make a simple bot for a web game, so I would like to be able to read the color of a pixel on the screen. I've done this on Windows with GetPixel(), but I can't seem to figure it out on ...
4
votes
4answers
231 views
Line rasterisation: Cover all pixels, regardless of line gradient?
Basically, I want to use a line algo to determine which cells to check for collisions for my raycaster.
Bresenham isn't great for this as it uses a unified-thickness approach, meaning that it ignores ...
4
votes
2answers
449 views
Java - scan screen for color
I would like java to scan screen for particular color.
Any ideas if how to do that?
Thanks
4
votes
3answers
2k views
extracting a quadrilateral image to a rectangle
BOUNTY UPDATE
Following Denis's link, this is how to use the threeblindmiceandamonkey code:
// the destination rect is our 'in' quad
int dw = 300, dh = 250;
double in[4][4] = ...
4
votes
5answers
785 views
How do I make one pixel change its color in HTML?
let's say I have some given coordinates x and y for a pixel, how could I make it red (keeping everything else on the page just white) in HTML? Is it possible in HTML?
4
votes
4answers
1k views
Dynamically pixelate an html image element
I'm to take an image on a webpage, and then use javascript (or whatever would be best suited) to dynamically 'pixelate' it (e.g. into 20px squares). Then, as the user scrolls down the page, I need the ...
4
votes
1answer
896 views
Is there a way to get pixel data from Internet Explorer?
Excanvas.js allows IE to work with the canvas tag, but the getImageData method is not supported.
Is there any way at all to get the value of a specified pixel in IE (img or VML or whatever other ways ...
4
votes
2answers
4k views
Converting long/lat to pixel x/y, given a zoom-level
I'm trying to develop a page in ASP.NET that will act as a tile-server for a Google Map
It will pull a collection of latitude/longitude points from the database, then render them as small red dots on ...
4
votes
2answers
5k views
Measuring the pixel width of a string in Objective C
I need to measure the pixel width of a string in objective C can anyone point me to a link that explains how to do this? I haven't found anything that explains this well.
4
votes
10answers
461 views
What could cause the same browser on different PCs to render the same HTML differently?
I'm stumped. A client and I are both running Firefox 3.0.12 on XP machines. We view the same page in the same browser on different machines and have different results. Note: All IE browsers are ...
4
votes
3answers
1k views
How to get the color of a pixel in an UIView?
I am trying to develop a small application. In it, I need to detect the color of a pixel within an UIView. I have a CGPoint defining the pixel I need. The colors of the UIView are changed using ...
4
votes
8answers
1k views
Finding closest non-black pixel in an image fast
I have a 2D image randomly and sparsely scattered with pixels.
given a point on the image, I need to find the distance to the closest pixel that is not in the background color (black).
What is the ...
3
votes
1answer
52 views
how can I get information from every pixel from a CVImageBufferRef type?(OSX)
I'm trying to extract pixel data from individual frames of a QT Movie.
I think I need to use CV, because QTKit and NSImage would
be too slow...
I need to compare each pixel of the image in the ...
3
votes
3answers
594 views
How do I correctly translate pixel coordinates to canvas coordinates in Android?
I am capturing a MotionEvent for a long click in an Android SurfaceView using a GestureListener. I then need to translate the coordinates of the MotionEvent to canvas coordinates, from which I can ...
3
votes
2answers
283 views
Pixelart with OpenCL / OpenGL
I wan't to do some calculated pixelart with OpenCL and display this directly on the display without CPU roundtripping. I could use interoperability of OpenCL with OpenGL and write to the texture-banks ...
3
votes
1answer
145 views
setting DirectX9 surface pixels
I'm trying to set the individual pixels in a D3DSURFACE9 but they're going all over the place.
I think I've done this before but can't seem to get it right this time.
3DLOCKED_RECT lrt;
if(D3D_OK == ...
3
votes
2answers
466 views
convert cartesian coordinate to picturebox coordinates c#
The question I have is more of mathematics! I have some pair of values that reperesent points of a curve that I want to draw on a picturebox using fromImage(Bitmap). My picture box is sized at ...
3
votes
4answers
719 views
What's the best way to set a single pixel in an HTML5 canvas?
The HTML5 Canvas has no method for explicitly setting a single pixel.
It might be possible to set a pixel using a very short line, but then antialising and line caps might interfere.
Another way ...
3
votes
3answers
4k views
Pixel access in OpenCV 2.2
Hi I want to use opencv to tell me the pixel values of a blank and white image
so the output would look like this
10001
00040
11110
00100
Here is my current code but I'm not sure how to access ...
3
votes
3answers
423 views
Non integer offset positions in jQuery
jQuerys offset function sometimes returns rational numbers (like 12.645613) for top or left. I thought that top and left positions are in pixels and so should be integers (there are no half pixel, ...
3
votes
3answers
417 views
Dynamically Generate Transparent Tracking Pixel
I'm trying to generate a clear tracking pixel dynamically in Java, but running into some issues. I have no problem returning this to the user, but I can't seem to get the pixel right. What am I doing ...
3
votes
2answers
61 views
Attempting to optimize a pixel reading and outputing function
$img = imagecreatefrompng("img/".$image);
$w = imagesx($img);
$h = imagesy($img);
$pixelcount = 0;
echo "<div id='container' style='width: {$w}px; height: {$h}px;'>\r\n";
...
3
votes
2answers
1k views
Can you have multiple pixel (fragment) shaders in the same program?
Hopefully this is an easy question. I like things being organised, so I would like to have two pixel shaders; the first doing one thing, and then the next doing something else. Is this possible, or ...
3
votes
2answers
2k views
How can I get and set pixel data in XNA?
I have a texture2D where I want to get the color of a specified pixel. Do something with it and put a new color in an other texture2D.
I will need to do this with all the pixels in the texture. How ...
3
votes
3answers
611 views
Pixel chains from run length encoding
I've been banging my head for a long time on this one
I am doing imaging. So far I've binarized my images, meaning that from a grayscale image, every pixel under a certain value are dropped. This ...
3
votes
2answers
805 views
Haskell pixel drawing library linux
I wish to draw individual pixels on a screen in a window or something for real-time display in haskell.
I'm just getting started with haskell (but not functional programming, and not graphics), so ...
3
votes
5answers
2k views
How to measure the pixel width of a digit in a given font / size (C#)
I am trying to calculate the pixel width of Excel columns, as described in this post, using the official formula from the OpenXML specification. However, in order to apply this formula, I need to know ...