The graphic tag has no wiki summary.
1
vote
0answers
16 views
Python Library Can Detect Graphic Card
I am trying finding a library of Python that could detect the model of a graphics card. For a better graphics card, there is a higher score associated with it, because I need to configure a game's ...
-4
votes
0answers
21 views
Create object of class `Image` containing a string [closed]
Is there a possibility of creating an object of class Image containing a string, the same which would be drawn when invoke g.drawString(...)? How to do it?
-1
votes
1answer
31 views
How can I control pixels in web?
I wanna create pixel-based graphic through scripts and any other methods in web; especially Internet Explorer.
I tried to make 1x1-size-elements and colored them, but it's too slow to render.
I heard ...
1
vote
1answer
58 views
Java Swing show progress in pie form
I want to show a progress in pie format. Can anyone help?
I have the data to show, but how to show it in this format. Something like progress shown in Google Chrome when we download files.
0
votes
1answer
43 views
Is there an alternative to a scenegraph?
Scene graphs give you the possibility to reason about their position -> if one node doesn't need to be rendered, the children of that node also don't need to be rendered.
But it seems that it might ...
0
votes
0answers
38 views
XY Graphic in C# When clicking marking point A, then B, then C and get the angle between this vectors
I have this code:
int x = 0, y = 0;
protected override void OnMouseMove(MouseEventArgs e)
{
base.OnMouseMove(e);
Graphics g = CreateGraphics();
Pen p = new ...
0
votes
1answer
34 views
Measure how many times iOS can draw per frame
I am trying to benchmark how many times iOS natively can draw between frame refresh compared to HTML5/JavaScript.
Using this JavaScript I get a number for how may times the browser can draw during ...
1
vote
0answers
27 views
Tools for game animation frames generation
For any game development the most important thing needed is good animation to attract users. Animation consists of various frames (individual pictures played in sequence). I had been using Photoshop ...
4
votes
1answer
118 views
Attractive 3D plot in R
I am writing a proposal and need a 3D plot something like this:
but preferably more attractive. I need the size of each point to reflect the abundance of the species and an outline of the volume ...
0
votes
1answer
26 views
Star field won't appear, Can this be because of my Graphic Card
I am working in a WebGL project with THREE.js, and in this project I have to make an Solar system.
But there is only a problem, the Star Field won't show up in the screen.... I tried many codes that ...
0
votes
1answer
53 views
Storing alot of graphic data in memory (principle)
I'm developing simple application for 2D drawing with ability to use layers. I tried different platforms (.NET, Java, QT...) and I always run into the same problem. I can't understand how to store all ...
0
votes
0answers
25 views
Android decrease size of graphic in application
I use bitmaps in application and work with .bmp or .png formats. I try to comply with standards from developer android page - Supporting Different Densities
But if I use bitmaps on background and ...
0
votes
0answers
46 views
Website graphic design [closed]
I'm a web developer specially works in front end developing. My main fields are HTML5-CSS3 and Flash AS 3.0
Here in Iran Team Work means nothing for most of the people, but I think it's the most ...
0
votes
0answers
123 views
Android convert from Corel Draw .cdr file to draw calls
Is it possible to convert .cdr files to simple android draw commands ? Let's say graphic designer make simple 2D vector graphic in corel. Now it could be perfect to convert dwg file directly to draw ...
0
votes
1answer
56 views
HTML5 Video Triggered by a graphic elswere on the page
I am trying to figure out a way to have a static image appear were the video will be when a visitor first comes to my webpage. I would like to have a graphic button that if clicked will trigger the ...
-1
votes
1answer
24 views
Virtualbox window cutoof [closed]
In the image, the More Options are clearly cuut off from windows. There is no scrolling bar for me to access those options. I tried to change the resolutions. This picture is taken in Seamless mode, ...
2
votes
1answer
29 views
Making a graphic of a trained dataset python
y1 = []
y2 = []
x = []
for i in range(40):
#fer dos llistes (error y epoch) y despres fer un plot
trainer.trainEpochs( 1 )
trnresult = percentError( ...
0
votes
1answer
132 views
How To Use SetConsoleCursorPosition Func
I just wrote the code for tower of hanoi in c and I wanted to show the solution in graphical mode using characters.
I want to use windows.h and SetConsoleCursorPosition function to move cursor in ...
3
votes
2answers
196 views
convert RGB to grayscale in C
I used many formulas to convert from RGB to grayscale, but didn't get good results compared to GIMP.
I already tested the following formulas:
gray = (int)(0.299 * r + 0.587 * g + 0.144 * b);
gray = ...
0
votes
1answer
48 views
Graphic card models on devices with 2 or more cards?
How can I find the models of all graphic cards on device?
I'm using GetAdapterIdentifier() with GetAdapterCount() but it gets only the integrated grahpic card. Have you a better idea?
0
votes
0answers
66 views
Graphical Password Authentication
I have to make a project that can implement graphical password authentication. For that, I first need to build a database of images that have been divided into grids. Unfortunately, i couldn't find ...
-4
votes
1answer
81 views
Graphics in c++ coded inefficiently
I am coding for the nds using Devkit pro in c++, and there is a graphic that is being displayed at the top. Each graphic is loaded with a value (Which is what part of an image it is loaded from), and ...
0
votes
2answers
81 views
Mathematica : Add text to imported image / graphic as a label
Ive searched for hours ... but Im at a loss !
I have imported an image int Mathematica -> dimensions 2x2cm at 72DPI.
I am trying to "label" the image with a text string that:
- has font color ...
1
vote
1answer
196 views
Finding coordinates of Koch Curve
Sorry for my language since English is my second language.
I am trying to convert a straight line into a fractal known as Koch curve.
The 2 points of the straight line are given and then I need to ...
2
votes
2answers
112 views
C++ graphic interface frameworks/libraries
I need to program a game, it's a card game actually, and I must make it with graphic interface, but I don´t know about C++ graphic interface libraries.
Is there something for C++ similar to Python's ...
-1
votes
1answer
103 views
Why wont this code, almost identical to one from MSDN, won't work?
I have left some //Comments to help you navigate through the issue
I have Main.cpp
int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrevInst, LPSTR lpCmdLine, int nShowCmd)
{
Game game;
...
0
votes
1answer
30 views
Drawing a polygon by a lot of dots
My desired output is moving a lot of dots to visualize some words.
The effect is similar to this video http://www.youtube.com/watch?v=Le13by2WM70 .
I think this problem could be split into two ...
1
vote
1answer
86 views
Fill A Graphic With Text Using RectangleF and DrawString
I've been asked to generate placeholder graphics for some items in a database but with one caveat - the font size needs to be dynamic so that the text fills the entire graphic.
The first iteration ...
0
votes
0answers
61 views
Can't get graphics working with my game of hangman
im using the acm package and can't work out why my graphics on my game won't work. Here's the code I've made so far.
public static void setup(){
canvas = new HangmanCanvas();
canvas.setup();
...
0
votes
1answer
139 views
C# Windows Forms graphical component for Lee Algorithm
I have a task of programming a simple program-demonstration of the Lee Algorithm for pathfinding in a maze. I want to make it somewhat graphically interactive: create a 2D table with a variable amount ...
3
votes
2answers
212 views
I am trying to make ball gradually move
I am trying to make a ball gradually move when you press one of the arrow keys, right now it kind of just teleports. I want it so that you can see it move. Based on this example, I am using key ...
0
votes
2answers
30 views
Android load graphic
I have a problem. I have a large graphic for my main menu/start screen. This causes an out of memory exception on some older devices. It is a PNG file with the resoluton 1920*1080 and I use the ...
0
votes
3answers
80 views
Blending with Direct3D SpriteBatch
I'm trying to achieve a simple effect: drawing an image on the screen with a transparent background. I'm using SpriteBatches to do this.
Here is my code for creating the blend state:
...
1
vote
3answers
182 views
How can I create a simple graphic display of an array in Java?
Over the past few days, I've coded a (horribly patched together) text RPG game in Java. The positioning in the world is pretty much controlled by a simple 100x100 2D array of Strings. I then convert ...
-1
votes
1answer
27 views
Advice on shadows
I'd like to use div's with a shadow around them. Problem is: I want the divs to be a percentage width, and I'm afraid to use the CSS3 property, because of the large numbers of browsers not being ...
0
votes
1answer
41 views
Android layout with dynamically generated picture
I know it's possible to have a layout with mixture of non graphic elements (like Buttons) and graphic elements (Images), but is there a way of having a layout that combines non graphic elements with ...
-1
votes
1answer
91 views
Android: Draw a rectangle with text and a graphic that is movable by the user [closed]
In an Android app, how can I create a rectangle that contains text and a graphic, and can be dragged into place by the user's finger, and then resized with the pinch/zoom gesture? The text and graphic ...
0
votes
1answer
73 views
Transparency in Progressive Photon Mapping in cuda
I am working on a project, which is based on optix. I need to use progressive photon mapping, hence I am trying to use the Progressive Photon Mapping from the samples, but the transparency material is ...
0
votes
0answers
99 views
how to save a vector map data in pdf [closed]
I have a vector map such ESRI shp file or autocad dxf file or other self defined vector map, as a result, I know every element's coordinate info., for example, thousands of lines, circles, segline, ...
0
votes
0answers
41 views
How to expand contour similar to dilation of contour?
I want to expand contour similar to dilation of contour but when I expand the contour the new contour points from original contour for each peer to peer point is not equal.
How can the problem be ...
0
votes
1answer
103 views
Register Application programatically for Graphic card
I am trying to write a Setup for an application with Inno Setup, which is pretty neat by the way ;) , but now i am stuck with a problem regarding the graphiccard.
I am installing a 3D application and ...
3
votes
2answers
235 views
How to go about creating a pie-chart like countdown with jQuery?
I'm trying to code something like this -
I'd love to add my coding attempt, only I don't really have a clue. When googling stuff like "jQuery countdown", "pie chart" etc. I find only plugins, where ...
-1
votes
1answer
62 views
Highlight Rectangle Object [duplicate]
Possible Duplicate:
Find the JTable cell and paint it
This is my Rectangle class object.
Rectangle cell = table.getCellRect(row, column, false);
Now I want to highlight it on mouse ...
0
votes
1answer
120 views
GIF Understanding Image Decoding - Lempel-Ziv-Welch
I'm trying to build some code I can use to convert a GIF file to another file format (which I already know how to create. [I am trying to streamline conversion from GIF to GRF - a printer graphic file ...
2
votes
1answer
57 views
Why the results are different by using TextureObj.Sample and SampleLevel to sample texture with only 1 mipmap level?
I implemented a GBuffer normal storing optimization algorithm called best fit normal according this paper from Crytek: ...
1
vote
0answers
76 views
how to use icomoon font in photoshop?
i want to know how to use icoMoon font in photoshop please send me the complete list of documentation about that what icon will be displayed if i press 'a' or 'b' and i want to write a 'go' button.
...
0
votes
0answers
36 views
To what extent can computer programs decipher images?
I've been playing with an idea for an image-based captcha alternative, but I'm unable to find sufficient information on the precise mechanics by which computer programs are able to decipher images, ...
0
votes
1answer
135 views
Only add graphic of the clicked datagrid line
Right now the map adds graphics of each found result in the datagrid. But I want to only add the graphic of the selected in the datagrid, and then set the extent(zoom) to the selected feature. Does ...
0
votes
1answer
115 views
Plot and annotate random points
I have tried hard but cannot find a way to plot a number of random points and put a text annotation on each of the point.
My plot is very simple. Here are the points {(1,5),(1,10),(2,3), ...
0
votes
1answer
19 views
Alternative to this flash vid. Any suggestions for where to start
I'd like to create something like the interactive flash graphic on this page http://www.brandpassion.co.uk/how-we-work/ but not sure at all where to start. Thinking perhaps something like Raphael.js ...