active questions tagged graphics - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T15:05:28Z http://stackoverflow.com/feeds/tag/graphics http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1866371/api-to-get-the-graphics-or-video-memory 1 API to get the graphics or video memory amritad 2009-12-08T11:27:22Z 2009-12-08T11:47:57Z <p>Hi,</p> <p>I want to get the adpater RAM or graphics RAM which you can see in Display settings or Device manager using API. I am in C++ application.</p> <p>I have tried seraching on net and as per my RnD I have come to conclusion that we can get the graphics memory info from 1. DirectX SDK structure called DXGI_ADAPTER_DESC. But what if I dont want to use DirectX API. 2. Win32_videocontroller : But this class does not always give you adapterRAM info if availability of video controller is offline. I have checked it on vista.</p> <p>Is there any other way to get the graphics RAM?</p> http://stackoverflow.com/questions/1817442/how-to-recognize-rectangles-in-this-image 5 How to recognize rectangles in this image? Phil 2009-11-30T01:23:54Z 2009-12-07T22:54:34Z <p>Hi,</p> <p>I have a image with horizontal and vertical lines. In fact, this image is the BBC website converted to horizontal and vertical lines. My problem is that I want to be able to find all the rectangles in the image. I want to write a computer program to find all the rectangles. Does anyone know how to do this or suggest ideas on how to get started? This task is easy for me as a person to find the visual rectangles, but I am not sure how to describe it as a program.</p> <p>Image at <a href="http://www.ironnine.com/rectangles.png" rel="nofollow">http://www.ironnine.com/rectangles.png</a> is the BBC website here <a href="http://www.bbc.co.uk/" rel="nofollow">http://www.bbc.co.uk/</a></p> <p>Thanks, Philip</p> <p><hr></p> <p>Update to this, I wrote the code which converts the BBC website image to the horizontal and vertical line, the problem is these lines do not completely meet at the corners and sometimes they do not completely form a rectangle. Thanks!</p> <p><img src="http://www.ironnine.com/rectangles.png" alt="alt text"></p> http://stackoverflow.com/questions/1861399/is-this-image-segmentation 1 Is this image segmentation? unknown (google) 2009-12-07T17:11:39Z 2009-12-07T17:17:23Z <p>I've been writing a Java program that aides in cutting and working with sprites, such as CSS sprites. The main idea is that the image is segmented into subregions, so the software understands the "spritesheet" is composed of multiple sprites.</p> <p>The algorithm I developed works by scanning horizontal (x) and vertical (y) axes for breaks, based on transparency/color mask. This doesn't detect each subpart, but applying it recursively may. The 1D axes are transformed into rectangles of where parts are in the image.</p> <p><a href="http://en.wikipedia.org/wiki/Image%5Fsegmentation" rel="nofollow">http://en.wikipedia.org/wiki/Image%5Fsegmentation</a></p> <p>The Wikipedia article (above) has information on many different techniques. One important thing is that I'm not doing recognition, such as detecting foreground objects. Technically using the color mask is separation of a background and foreground though.</p> http://stackoverflow.com/questions/1857075/haskell-pixel-drawing-library-linux 1 Haskell pixel drawing library linux solinent 2009-12-06T23:55:45Z 2009-12-07T15:23:23Z <p>I wish to draw individual pixels on a screen in a window or something for real-time display in haskell.</p> <p>I'm just getting started with haskell (but not functional programming, and not graphics), so I'm trying to create some rudimentary graphics things with it.</p> <p>I have tried to use SDL, but the following code gives me a blank screen:</p> <pre><code>import Prelude import Graphics.UI.SDL as SDL createColor screen r g b = SDL.mapRGB (SDL.surfaceGetPixelFormat screen) r g b drawGrad screen = SDL.setColors screen [SDL.Color x y 255 | x &lt;- [0..255], y &lt;- [0..255]] 800 main = do SDL.init [InitEverything] setVideoMode 256 256 32 [] screen &lt;- getVideoSurface drawGrad screen SDL.flip screen quitHandler quitHandler :: IO () quitHandler = do e &lt;- waitEvent case e of Quit -&gt; return () otherwise -&gt; quitHandler </code></pre> http://stackoverflow.com/questions/1854146/what-is-the-idea-behind-scaling-an-image-using-lanczos 0 what is the idea behind scaling an image using lanczos? banister 2009-12-06T02:27:06Z 2009-12-07T09:55:44Z <p>Hi,</p> <p>I'm interested in image scaling algorithms and have implemented the bilinear and bicubic methods. However, I have heard of the lanczos and other more sophisticated methods for even higher quality image scaling and I am very curious how they work. </p> <p>Could someone here explain the basic idea behind scaling an image using lanczos (both upscaling and downscaling) and why it results in higher quality?</p> <p>I do have a background in fourier analysis and have done some signal processing stuff in the past, but not with relation to image processing, so don't be afraid to use terms like "frequency response" and such in your answer :)</p> <p>EDIT: I guess what i really want to know is the concept and theory behind using a convolution filter for interpolation.</p> <p>(Note: i have already read the wikipedia article on lanczos resampling but it didn't have nearly enough detail for me)</p> <p>thanks alot!</p> http://stackoverflow.com/questions/1855967/how-do-i-find-good-graphic-designers-for-my-web-application-projects 3 How Do I Find Good Graphic Designers for my Web Application Projects? Nick 2009-12-06T17:32:57Z 2009-12-07T09:17:22Z <p>While this isn't strictly programming related, it's something I've run into as a web developer on several occasions, and I imagine others have run into as well. For that reason, I hope this question can remain open.</p> <p>As web developers, we know how to make our applications work. But clients/customers/visitors aren't necessarily happy with a system that just works, they want a site with some graphic personality. Something that "looks pretty".</p> <p>Whether it's "trendy", "professional", "cool", or "grungy", there's always a feeling that a web site needs to give it's audience, in conjunction with the functionality of the site itself.</p> <p>Unfortunately, a Google search for "web designer", returns a list of everybody in the world who owns a copy of MS FrontPage and/or PhotoShop.</p> <p>So the questions are:</p> <p>Where do you turn when you need a (talented) designer on your project?</p> <p>What criteria do you use to determine if a designer candidate has skills, or is qualified? </p> http://stackoverflow.com/questions/1129599/planning-a-2d-tile-engine-performance-concerns 1 Planning a 2D tile engine - Performance concerns Sukasa 2009-07-15T05:45:57Z 2009-12-07T02:55:15Z <p>As the title says, I'm fleshing out a design for a 2D platformer engine. It's still in the design stage, but I'm worried that I'll be running into issues with the renderer, and I want to avoid them if they will be a concern.</p> <p>I'm using SDL for my base library, and the game will be set up to use a single large array of <code>Uint16</code> to hold the tiles. These index into a second array of "tile definitions" that are used by all parts of the engine, from collision handling to the graphics routine, which is my biggest concern.</p> <p>The graphics engine is designed to run at a 640x480 resolution, with 32x32 tiles. There are 21x16 tiles drawn per layer per frame (to handle the extra tile that shows up when scrolling), and there are up to four layers that can be drawn. Layers are simply separate tile arrays, but the tile definition array is common to all four layers.</p> <p>What I'm worried about is that I want to be able to take advantage of transparencies and animated tiles with this engine, and as I'm not too familiar with designs I'm worried that my current solution is going to be too inefficient to work well.</p> <p>My target FPS is a flat 60 frames per second, and with all four layers being drawn, I'm looking at 21x16x4x60 = 80,640 separate 32x32px tiles needing to be drawn every second, plus however many odd-sized blits are needed for sprites, and this seems just a little excessive. So, is there a better way to approach rendering the tilemap setup I have? I'm looking towards possibilities of using hardware acceleration to draw the tilemaps, if it will help to improve performance much. I also want to hopefully be able to run this game well on slightly older computers as well.</p> <p>If I'm looking for too much, then I don't think that reducing the engine's capabilities is out of the question.</p> http://stackoverflow.com/questions/1837897/output-w3c-compliant-xhtml-from-image-slices 0 Output W3C compliant XHTML from image slices Josamoto 2009-12-03T05:45:23Z 2009-12-06T08:40:30Z <p>When slicing and saving for web in Photoshop CS4, the HTML layout output by Photoshop is done using tags, which is not what we want. Is there a way to get Photoshop to output W3C compliant tableless XHTML with CSS?</p> <p>Alternatively, is there another application that I can use to slice to W3C XHTML?</p> http://stackoverflow.com/questions/1853111/algorithms-to-eliminate-or-display-outliers-in-a-dataset 2 Algorithms to eliminate or display outliers in a dataset. Steve 2009-12-05T19:06:10Z 2009-12-05T23:10:26Z <p>I am trying to visualize a large multi-dimensional dataset. Each dimension has a different range. Values in one column may range between 0-100 while values in another could range from a few hundred thousand to a few hundred million. Therefore it is really hard to show a graph with a reasonable scale. I would like to visualize them using a parallel coordinate chart or series of point charts.</p> <p>I have come up with three different approaches; any outlier outside of the standard deviation will be removed, any outlier outside of the standard deviation will show up at the edge of the standard deviation, or I will adjust the scale of each dimension so that all are scaled to be seen at once.</p> <p>Does anyone have any recommendations regarding which method would retain the integrity of the data? Also, does anyone have good examples of outlier removal algorithms?</p> http://stackoverflow.com/questions/1522051/silverlight-graphics-pixel-side-position 1 Silverlight graphics pixel side position? Tuukka 2009-10-05T19:54:53Z 2009-12-05T13:00:01Z <p>I try to port simple game to silverlight (SameGame). The problem is that my old source code used pixel sizes to allight game marks to board. I draw simple grid using lines and game mark (using rectangle). How i can set rentacle position correctly? Example 20 20 pixels to upper left corner).</p> <pre><code> private void DrawGrid() { LayoutRoot.Children.Clear(); Rectangle r = new Rectangle(); r.Width = 20; r.Height = 20; r.Fill = new SolidColorBrush(Color.FromArgb(255, 0, 255, 0)); r.Stroke = new SolidColorBrush(Color.FromArgb(255, 0, 255, 0)); r.SetValue(Canvas.LeftProperty, (double)0); r.SetValue(Canvas.TopProperty, (double)0); LayoutRoot.Children.Add(r); Color GridColor = Color.FromArgb(0xFF, 0x00, 0x00, 0x00); for (int y = 0; y &lt; 11; y++) { Line l = new Line(); l.X1 = 0; l.Y1 = 30 * y - 1; l.X2 = 20 * 30; l.Y2 = 30 * y - 1; l.Stroke = new SolidColorBrush(GridColor); l.StrokeThickness = 1; LayoutRoot.Children.Add(l); } for (int x = 0; x &lt; 21; x++) { Line l = new Line(); l.X1 = 30 * x; l.Y1 = 0; l.X2 = 30 * x; l.Y2 = 10 * 30; l.Stroke = new SolidColorBrush(GridColor); l.StrokeThickness = 1; LayoutRoot.Children.Add(l); } } </code></pre> http://stackoverflow.com/questions/1832414/2d-graphics-illusions-useful-function -2 2D graphics illusions, useful function Hitesh Chavda 2009-12-02T11:42:48Z 2009-12-05T08:11:07Z <p>Is there any site that would help me to understand some 2D graphics with Illustrations?</p> http://stackoverflow.com/questions/1800138/given-a-start-and-end-point-and-a-distance-calculate-a-point-along-a-line 2 Given a start and end point, and a distance, calculate a point along a line amanda 2009-11-25T21:38:11Z 2009-12-05T02:01:59Z <p>Looking for the quickest way to calculate a point that lies on a line a given distance away from the end point of the line: </p> <pre><code>void calculate_line_point(int x1, int y1, int x2, int y2, int distance, int *px, int *py) { //calculate a point on the line x1-y1 to x2-y2 that is distance from x2-y2 *px = ??? *py = ??? } </code></pre> <p>Thanks for the responses, no this is not homework, just some hacking out of my normal area of expertise.</p> <p>This is the function suggested below. It's not close to working. If I calculate points every 5 degrees on the upper right 90 degree portion of a circle as starting points and call the function below with the center of the circle as x2,y2 with a distance of 4 the end points are totally wrong. They lie below and to the right of the center and the length is as long as the center point. Anyone have any suggestions?</p> <pre><code>void calculate_line_point(int x1, int y1, int x2, int y2, int distance) { //calculate a point on the line x1-y1 to x2-y2 that is distance from x2-y2 double vx = x2 - x1; // x vector double vy = y2 - y1; // y vector double mag = sqrt(vx*vx + vy*vy); // length vx /= mag; vy /= mag; // calculate the new vector, which is x2y2 + vxvy * (mag + distance). px = (int) ( (double) x2 + vx * (mag + (double)distance) ); py = (int) ( (double) y2 + vy * (mag + (double)distance) ); </code></pre> <p>}</p> <p>I've found <a href="http://stackoverflow.com/questions/1250419/finding-points-on-a-line-with-a-given-distance">this</a> solution on stackoverflow but don't understand it completely, can anyone clarify?</p> http://stackoverflow.com/questions/1446554/clutter-does-not-update-screen-outside-of-breakpoints 0 Clutter does not update screen outside of breakpoints Elliot Hughes 2009-09-18T20:01:49Z 2009-12-05T00:36:11Z <p>Hi,</p> <p>I have some code:</p> <pre><code>l1 = clutter.Label() l1.set_position(100,100) for i in range(0,10): l1.set_text(str(i)) time.sleep(1) </code></pre> <p>That is designed to show a count from 1 to 10 seconds on the screen in clutter, but I'm getting a strange error. When I run the script normally the screen runs as it should do, but there is no text displayed until 10 seconds are up. However, When I run with breakpoints in pdb the text shows up just fine.</p> <p>I'm also getting a strange error at the start of the program:</p> <pre><code>do_wait: drmWaitVBlank returned -1, IRQs don't seem to be working correctly. Try adjusting the vlank_mode configuration parameter. </code></pre> <p>But I don't see why that would affect the code out of break points but not in breakpoints.</p> <p>Any help would be greatly appreciated.</p> http://stackoverflow.com/questions/1816049/introduction-to-java-graphics-libraries 3 Introduction to Java Graphics Libraries Steve 2009-11-29T16:59:32Z 2009-12-04T23:46:39Z <p>I just got into information-visualization and scientific-visualization and have been using Piccolo and a little with JFreeChart. I am trying to find a few new libraries that I can start using. I am looking specifically for libraries that involve multi-dimensional visualization and map overlaying (something like open-layers), but would be open to get exposure to any graphics libraries.</p> http://stackoverflow.com/questions/1808562/manage-rotated-moving-raster-map 1 Manage rotated moving raster map unknown (google) 2009-11-27T12:43:55Z 2009-12-04T20:55:48Z <p>Hi, My application present a (raster) moving map. I need to be able to show the map rotated base on any given angle. The program is currently in VC++/MFC but the problem is generic. I have a source bitmap (CBitmap or HBITMAP) and draw it to the device context (CDC) using StretchBlt. While this works fast and smooth for angle=0 (and the user can grab the map smoothly with the mouse), this is not the case if I try to rotate the bitmap and then present it (the rotation of the bitmap using SetWorldTransform() or so takes hundreds of miliseconds and this is too slow).</p> <p>I think that the solution is to be able to relate only to the pixels that currently on the screen and not rotating the original source bitmap - and this is the key.</p> <p>If someone has experience with similar implementation then it might save me lots of trial and error efforts. Thanks! Avi.</p> http://stackoverflow.com/questions/1842253/multi-dimensional-graphing-in-java 1 Multi-Dimensional Graphing in Java macneil 2009-12-03T19:18:43Z 2009-12-03T20:05:37Z <p>I have been working on projects that deal with 2-Dimensional graphing, UML diagramming and relational graphing (node-link diagrams). I am interested in moving to projects that deal more with 3-Dimensional graphing of scatter plots and 3-Dimensional navigation. Could someone suggest a few books, or libraries that would help me get started?</p> <p><strong>EDIT:</strong> I don't think I was very clear in my question. The focus of my work is information and scientific visualization so I need something that is not only good for drawing but also for visualizing data.</p> http://stackoverflow.com/questions/1321304/compact-framework-picture-box-image-problem 0 Compact Framework Picture Box Image Problem Barry 2009-08-24T09:19:01Z 2009-12-03T17:00:09Z <p>I have two picture boxes on a .net compact framework form.</p> <p>Both picture boxes have their image set to a .png.</p> <p>My problem is that when I compile or run the application, one of the images appears "greyed-out" or like a shadow of the actual image.</p> <p>What might be causing this?</p> http://stackoverflow.com/questions/309150/pcl-raster-color-graphics-distorted-code-included-what-am-i-missing 0 PCL raster color graphics distorted. Code included: what am I missing? clintp 2008-11-21T15:43:14Z 2009-12-03T16:22:46Z <p>The function below prints a color raster image to a PCL-5 printer. The function was adapted from a 2-color (1bpp) printing function we had that worked perfectly, except for the grainy 2-color printing. The problem is that the image comes out with a large black bar extending from the right of the image to the edge of the page like this:</p> <pre><code> IMAGE######################################### IMAGE#########AREA COMPLETELY BLACK########### IMAGE######################################### </code></pre> <p>The image itself looks perfect, otherwise. </p> <p>Various PCL-to-PDF tools don't show the image at all, which leads me to believe I've forgotten do to something. Appropriate resets (\u001bE\u001b%-12345X) were sent before, and page-feeds after.</p> <p>Any PCL experts out there? I've got the PCL 5 Color Technical Reference Manual, and it's gotten me this far. This last thing is driving me crazy though.</p> <p>*Edit: I now know what command is causing the problem, but I don't know why:</p> <pre><code> stream("\u001b*r0F"); </code></pre> <p>This should keep the image rotated along with the page (portrait, landscape). If I remove this, the problem goes away. I can compensate by rotating the bitmap beforehand, but I really want to know what caused this!</p> <pre><code> static void PrintImage() { // Get an image into memory Image original = Image.FromFile("c:\\temp\\test.jpg"); Bitmap newBitmap = new Bitmap(original, original.Width, original.Height); stream(String.Format("\u001b*p{0:d}x*p{1:d}Y", 1000, 1000));// Set cursor. stream("\u001b*t300R"); // 300 DPI stream(String.Format("\u001b*r{0:d}T", original.Height)); // Height stream(String.Format("\u001b*r{0:d}S", original.Width)); // Width stream("\u001b*r3U"); // 8-bit color palette stream("\u001b*r0F"); // Follow logical page layout (landscape, portrait, etc..) // Set palette depth, 3 bytes per pixel RGB stream("\u001b*v6W\u0000\u0003\u0000\u0008\u0008\u0008"); stream("\u001b*r1A"); // Start raster graphics stream("\u001b*b0M"); // Compression 0 = None, 1 = Run Length Encoding // Not fast, but fast enough. List&lt;byte&gt; colors = new List&lt;byte&gt;(); for (int y2 = 0; y2 &lt; original.Height; y2++) { colors.Clear(); for (int x2 = 0; x2 &lt; original.Width; x2++) { Color c = newBitmap.GetPixel(x2, y2); colors.Add(c.R); colors.Add(c.G); colors.Add(c.B); } stream(String.Format("\u001b*b{0}W", colors.Count)); // Length of data to send streamBytes(colors.ToArray()); // Binary data } stream("\u001b*rB"); // End raster graphics (also tried *rC -- no effect) } </code></pre> http://stackoverflow.com/questions/1831148/blackberry-app-how-to-add-an-image-on-top-of-another-image-file 0 Blackberry app, how to add an image on top of another image file? unknown (yahoo) 2009-12-02T07:10:54Z 2009-12-03T13:56:44Z <p>Hello all,</p> <p>I'm trying to develop a small map-like application for blackberry. I need to know how can I position a small image onto another much larger image.</p> <p>The larger image is like a map, I'll need to use the small the image to pin point a specific position on the map. So the smaller image should overlay on top of the larger image. At the same time, I'll need to move the map around, and the smaller image should follow that position on the map.</p> <p>Does anyone know if there is a specific API for this problem?</p> http://stackoverflow.com/questions/1834648/world-coordinate-issues-with-gluunproject 0 World-Coordinate Issues with gluUnProject() Dalin Seivewright 2009-12-02T17:52:11Z 2009-12-03T13:47:49Z <p>I'm currently calling Trace (method below) from a game loop. Right now all I'm trying to do is get the world coordinates from the screen mouse so I can move objects around in the world space. The values I'm getting from gluUnProject are however; puzzling me.</p> <p>I was using glReadPixel(...) to get the Z value but that produced little to no movement in the object I was drawing and the resulting vector ended up being the same as my cameras location (except for the tiny decimal changes due to mouse movement), so I decided to get rid of the call and replace the Z value with 1.</p> <p>My question is: Does the following code look right to you? Every example I've seen thusfar is either identical or -very- similar but I can't seem to produce correct results, even if I lock down the Y axis. If the code is correct, then I'm guessing that I'm just not using the resulting vector properly. Should I not be able to draw an object or point directly with the resulting vector or do I have to do something else with it, like normalize?</p> <p>The current render mode is GL_RENDER and I am using glFrustum with a NearZ value of 1 and FarZ value of 2048, to create a perspective. There is also a series of viewports created along with scissors, with a size and width of 512x768 and positioned in each corner of a 1024x768 window. Trace(...) is called in between rendering of the upper left viewport and is the only perspective projection, while the other viewports are orthographic. FOV is set to 45.</p> <pre><code>void VideoWindow::Trace(int cursorX, int cursorY) { double objX, objY, objZ;//holder for world coordinates GLint view[4];//viewport dimensions+pos GLdouble p[16];//projection matrix GLdouble m[16];//modelview matrix GLdouble z;//Z-Buffer Value? glGetDoublev (GL_MODELVIEW_MATRIX, m); glGetDoublev (GL_PROJECTION_MATRIX,p); glGetIntegerv( GL_VIEWPORT, view ); //view[3]-cursorY = conversion from upper left (0,0) to lower left (0,0) //Unproject 2D Screen coordinates into wonderful world coordinates gluUnProject(cursorX, view[3]-cursorY, 1, m, p, view, &amp;objX, &amp;objY, &amp;objZ); //Do something useful here??? } </code></pre> <p>Any ideas?</p> <p>Edit: I've changed the winZ value to 0.5 instead of 1 which gives a vector thats more reasonable but drawing a point still wasn't matching the mouse. I found out that the value of view[3] was 384 which is correct for the viewport I'm using but I replaced it with 768 (the actual window size) and the point followed the mouse 100%. Further experimentation reveals that I can't use the coordinates to move around a 3D object in the perspective world space using this these coordinates however moving around 3D object in Orthographic space works fine.</p> http://stackoverflow.com/questions/1839128/why-is-my-glutwirecube-not-placed-in-origin 0 Why is my glutWireCube not placed in origin? jmoeller 2009-12-03T10:43:04Z 2009-12-03T12:34:49Z <p>I have the following OpenGL code in the display function:</p> <pre><code>glLoadIdentity(); gluLookAt(eyex, eyey, eyez, atx, aty, atz, upx, upy, upz); // called as: gluLookAt(20, 5, 5, -20, 5, 5, 0, 1, 0); axis(); glutWireCube (1.); glFlush (); </code></pre> <p><code>axis()</code> draws lines from (0,0,0) to (10,0,0), (0,10,0) and (0,10,0), plus a line from (1,0,0) to (1,3,0).</p> <p>My reshape function contains the following:</p> <pre><code>glViewport (0, 0, (GLsizei) w, (GLsizei) h); glMatrixMode (GL_PROJECTION); glLoadIdentity (); gluPerspective(45.0, (GLsizei) w / (GLsizei) h, 1.0, 100.0); glMatrixMode (GL_MODELVIEW); </code></pre> <p>This image shows the result of running the program with <code>1.</code> as the argument to <code>glutWireCube</code>:</p> <p><img src="http://i.imgur.com/91wdN.png" alt="glutWireCube(1.)"></p> <p>As you can see, the cube isn't centered around (0,0,0) as the documentation says it should be:</p> <blockquote> <p>The cube is centered at the modeling coordinates origin (...) <a href="http://www.opengl.org/resources/libraries/glut/spec3/node82.html" rel="nofollow">(source)</a></p> </blockquote> <p>If I run the program with <code>5.</code> as the argument, the cube is displaced even further:</p> <p><img src="http://i.imgur.com/igkHk.png" alt="glutWireCube(5.)"></p> <p>Why is that, and how do I place the cubes around (0,0,0)?</p> <p><strong>FURTHER INFORMATION</strong></p> <p>It doesn't matter if I switch the order of <code>axis()</code> and <code>glutWireCube</code>. Surrounding <code>axis()</code> with <code>glPushMatrix()</code> and <code>glPopMatrix()</code> doesn't fix it either.</p> <p><strong>SOLUTION</strong></p> <p>I modified <code>gluPerspective</code> to start looking further away from the camera, and now the Z-buffering works properly, so it is clear that the cubes are placed around the origin.</p> http://stackoverflow.com/questions/1822752/uiimageview-rotated-and-scaled-how-do-i-save-the-results 0 UIImageView: Rotated and Scaled. How do I save the results ?? Alan Aherne 2009-11-30T22:10:29Z 2009-12-02T15:53:21Z <p>Hi All, I am trying to save a rotated and scaled UIImageView as an UIImage in the position and with the zoom scale that the user edited too. But I can only manage to save the original image as it was before editing. How can I save the image as it is shown in the UIImageView with the same scaling and rotation? I have read that I need to use UIGraphicsGetCurrentContext() but I get the same original image saved ( but flipped ) and not the rotated one!! Suggestions and hints would be really helpfull. Thank You in advance. Al</p> <pre><code>(UIImage *)getImage { CGSize size = CGSizeMake(250, 250); UIGraphicsBeginImageContext(size); CGContextRef context = UIGraphicsGetCurrentContext(); CGMutablePathRef path = CGPathCreateMutable(); // Add circle to path CGPathAddEllipseInRect(path, NULL, CGRectMake(0, 0, 250, 250)); CGContextAddPath(context, path); // ****************** touchImageView is my UIImageView ****************// CGContextDrawImage(context, CGRectMake(0, 0, 250, 250), [touchImageView image].CGImage); UIImage *scaledImage = UIGraphicsGetImageFromCurrentImageContext(); // Clip to the circle and draw the logo CGContextClip(context); UIGraphicsEndImageContext(); return scaledImage; </code></pre> <p>}</p> http://stackoverflow.com/questions/1830603/drawing-text-within-a-jpanel 0 drawing text within a JPanel danwoods 2009-12-02T04:12:03Z 2009-12-02T08:10:33Z <p>Hello all, I'm looking for the most basic description of how to draw text within a JPanel. I know there are a billion tutorials out there but none of them are clicking with me and I have some specific questions which may help others who are confused. As a setup (a testing app) I have a single class which has a JLabel, a JTextField, a JButton, and a JPanel. The application reads in ints from an external file and should display their average in the panel when the JButton is pressed. I have all the underlying programing sorted out (that is, the button responds and prints the average to the command line) but I just cannot seem to sort out how to print the average to the panel. I guess my biggest question is how to incorporate the paint() or paintComponet() method in along with the rest of the code. Should it be it's own class? Should the JPanel be it's own class? It seems like that's what most of the tutorials are telling me, I'm just not sure what the first step is exactly. The code looks like:</p> <pre><code>import javax.swing.*; import java.awt.*; import java.awt.event.*; import java.io.*; public class Main extends JFrame implements ActionListener { private int[] intArray = new int[10000]; private int numOfInts = 0; private int avg = 0; protected JButton avgBtn; protected JTextField indexEntry; protected JLabel instructions; protected JPanel resultsPanel; public Main(){ //create main frame this.setTitle("Section V, question 2"); this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); this.setSize(350, 250); this.setLayout(new GridLayout(4, 1)); //create instruction label and add to frame instructions = new JLabel("Follow the instructions on the exam to use this program"); this.add(instructions); //create textfield for index entry and add to frame indexEntry = new JTextField(); this.add(indexEntry); //create button for average and add to frame avgBtn = new JButton("Click for Average"); this.add(avgBtn); avgBtn.addActionListener(this); //create panel to display results and add to frame resultsPanel = new JPanel(); resultsPanel.setBackground(Color.BLUE); this.add(resultsPanel); //read in from file readFromFile(); //compute average computeAverage(); } private void readFromFile() { try { // Open the file FileInputStream fstream = new FileInputStream("numbers.dat"); // Get the object of DataInputStream DataInputStream in = new DataInputStream(fstream); BufferedReader br = new BufferedReader(new InputStreamReader(in)); //create placeholder for read in ints String strLine; //Read File Line By Line int i = 0; while ((strLine = br.readLine()) != null) { //place ints in array and increament the count of ints System.out.println (strLine); intArray[i] = Integer.parseInt(strLine); numOfInts++; i++; } //Close the input stream in.close(); System.out.println ("numOfInts = " + numOfInts); } catch (Exception e) { //Catch exception if any System.err.println("Error: " + e.getMessage()); } } //compute averaage private void computeAverage() { int sum = 0; for (int i = 0; i &lt; numOfInts; i++) sum += intArray[i]; avg = sum/numOfInts; System.out.println("avg = " + avg); } //event handling public void actionPerformed(ActionEvent e) { if(e.getSource() == avgBtn) { computeAverage(); } } //"main" function public static void main(String[] args) { Main m = new Main(); m.setVisible(true); } //paint public void paintComponent(Graphics g){ g.drawString(avg, 75, 75); } } </code></pre> <p>Any and all help/direction is appreciated. I know I've used this code recently for other questions, I just want to know it all! Ideally the panel would display the average of the read in ints when the button was clicked, and display whatever was entered into the textfeild when the focus was on it and enter was pressed, but I'm taking baby steps, and like I said, I'd like for this thread to be a general tutorial for others with similar questions who aren't finding answers from sun docs or other sites. Thanks so much in advance. Dan :) </p> http://stackoverflow.com/questions/1670304/what-is-the-proper-way-to-use-gfx-rotozoomsurface-with-sdl-for-drawing-transparen 0 What is the proper way to use GFX rotozoomSurface with SDL for drawing transparent sprites? amanda 2009-11-03T21:38:09Z 2009-12-02T06:56:59Z <p>I'm using the latest SDL/GFX libs on Fedora 10 and I'm trying to render a PNG or GIF image onto the screen surface. I could not get transparent PNG's to display at all so I replaced the transparent parts or my sprite with all white (and tried Magenta 255,0,255). The white-transparent PNG displays fine using this code:</p> <pre><code>SDL_Surface *image = load_image("sprite-white.png"); SDL_Surface *roto = SDL_DisplayFormat(image); SDL_SetColorKey(roto, SDL_SRCCOLORKEY, SDL_MapRGB( roto-&gt;format, 255,255,255 )); SDL_BlitSurface( roto, NULL, surface, &amp;offset ); </code></pre> <p>But when I try to rotate the sprite it does not drop all the white pixels. I replace the above code with this to rotate:</p> <pre><code>SDL_Surface *image = load_image("sprite-white.png"); SDL_Surface *roto = rotozoomSurface(image, rotation_degrees, 1, 1); SDL_Surface *roto2 = SDL_DisplayFormat(roto); SDL_SetColorKey(roto2, SDL_SRCCOLORKEY, SDL_MapRGB( roto2-&gt;format, 255,255,255 )); SDL_BlitSurface( roto2, NULL, surface, &amp;offset ); </code></pre> <p>I end up with a white outline around some of the good pixels. GIF images give the same results. </p> <p>When trying with transparent PNG/GIF files the code was the same except I did not call SDL_SetColorKey. Then the PNG did not display properly at all. One strange thing I found was the transparent PNG looked the same in MS Paint as it did in SDL, but GIMP/Photoshop programs opened it correctly. </p> <p>Is there something I'm missing setting up the destination surface?</p> <p>Google did not turn up much, a working example would be great. </p> http://stackoverflow.com/questions/1829877/sudden-graphic-card-change-from-nvidia-8600gt-to-nvidia-7050-nvidia-nforce-610i 0 Sudden graphic card change? from Nvidia 8600GT to Nvidia 7050/Nvidia nForce 610i [closed] Ken 2009-12-02T00:16:10Z 2009-12-02T00:16:10Z <p>Yesterday I got a virus and I had the Nvidia 8600 gt, as I have had throughout the whole time I had this computer. So I decided to fully format my pc to get rid of the virus.</p> <p>When it was finished, It came up with Nvidia 7050/ Nvidia nForce 610i in my systems and all my games have significantly gone down by fps.</p> <p>Note the driver update that came with the PC that works for Nvidia 8600gt doesnt work anymore, I have tried to download it but it comes with an error message saying that the PC has an incompatible graphics card.</p> <p>Can anyone explain this sudden change? I know for sure I have bought an Nvidia 8600 gt, and not the current one I have.</p> http://stackoverflow.com/questions/1829365/delaunay-tessellation-in-python 2 Delaunay tessellation in Python? Archagon 2009-12-01T22:23:06Z 2009-12-01T23:27:13Z <p>I need to find the Delaunay tessellation of a polygon in Python, and the only libraries I could find (Delny, scikits) triangulate point clouds, not polygons. Any suggestions?</p> http://stackoverflow.com/questions/1137690/smallest-set-of-rectangles-describing-a-set-of-integer-points 0 Smallest set of rectangles describing a set of integer points Chris 2009-07-16T13:42:10Z 2009-12-01T22:48:05Z <p>Given a set of N-dimensional integer points how do I find the smallest set of N-dimensional cuboids (rectangles in the 2-d case), such that an integer point is in the set of integer points if and only if it's contained in one or more of the cuboids/rectangles. Integer point means a point with integer coordinates.</p> <p>e.g. given the points (1,0), (2, 0) and (3,1), (4,1) the smallest set of rectangles is (1,0-2,0),(3,1-4,1), see diagram below:</p> <pre>2 ..... 1 ...## 0 .##.. 01234</pre> <p>Obviously I could do a brute force search, but I'm looking for a more efficient algorithm, even if it still has high complexity.</p> http://stackoverflow.com/questions/1810098/prototype-graphic-shell -2 Prototype graphic shell megatux 2009-11-27T18:23:25Z 2009-12-01T19:30:42Z <p>Hi, I want to prototype some ideas of a new graphic shell, like a new Windows Explorer, Gnome Nautilus or the new GnomeShell.</p> <p>I need good capabilities to manage icons, custom widgets, events, animations, maybe sounds. Some things I can think of are Flash, Clutter, some OpenGL wrapper like pyglet, but is there something more 'high level'?</p> <p>There is no OS to target, only to explore ui/feel ideas. Maybe some uml use cases &amp; some animations made with a vector animation program is enough but I want something more interactive.</p> http://stackoverflow.com/questions/1827610/finding-a-wave-graphic-inside-an-image 1 Finding a wave graphic inside an image Alaor 2009-12-01T17:14:02Z 2009-12-01T17:34:19Z <p>Hi guyz,</p> <p>I need some help with a algorithm I'm working with for my college course. The idea is use an artificial neural network to read a electrocardiogram and try to recognize some disturbs in the waves, that's ok, I've the neural network and I can test it, no problem, but I'd like to give the function to the user to open a eletrocardiogram (import a jpeg) and the program find the waves and convert it in to the arrays that will feed my ANN, but there's the problem. I did some code that read the image and transform it in a binary image, but I can't find a nice way for the program to locate the waves, since the exact position can vary from hospital to hospital, I need some suggestions of approachs I should use.</p> <p>Thankz!!</p> http://stackoverflow.com/questions/1823873/validating-form-data-and-displaying-graphics-with-javascript 0 Validating Form Data and Displaying Graphics with JavaScript Josh Curren 2009-12-01T03:48:27Z 2009-12-01T04:41:18Z <p>I have not really used JavaScript before but I am trying to validate form elements as they are being filled out. I have an X and a Check mark that I am trying to display next to the field to show if it is valid or not. I know that this is partially right because I can use an alert but I am not sure how to alter the fields of the graphics.</p> <p>The JavaScript:</p> <pre><code>function validate_field(field) { var value = document.newAccount.fname; if (value==null||value=="") { document.fnameX.visibility = visible; document.fnameOK.visibility = hidden; //alert("FAIL"); return false; } else { document.fnameX.visibility = hidden; document.fnameOK.visibility = visible; //alert("TRUE"); return true; } } </code></pre> <p>Some of the HTML:</p> <pre><code> &lt;form action="XXXXX" method="post" name="newAccount"&gt; &lt;table width="78%" border="0" align="center"&gt; &lt;tr&gt; &lt;td colspan="2"&gt;&lt;strong&gt;Personal Info:&lt;/strong&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td width="24%"&gt;&lt;div align="right"&gt;First Name: &lt;/div&gt;&lt;/td&gt; &lt;td width="76%"&gt; &lt;input type="text" onchange="return validate_field(this)" onfocus="return validate_field(this)" name="fname" tabindex="1" size="50"/&gt; &lt;img name="fnameX" src="redx.jpg" style="visibility:hidden" alt="X" width="18" height="18" /&gt;&lt;img name="fnameOK" src="checkmark.jpg" style="visibility:hidden" alt="Ok" width="18" height="18" /&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;&lt;div align="right"&gt;Last Name: &lt;/div&gt;&lt;/td&gt; &lt;td&gt;&lt;input type="text" name="lname" tabindex="2" size="50"/&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/form&gt; </code></pre>