0
votes
1answer
29 views

Pygame drawing doesn't work correctly

I have a problem with drawing a simple rectangle on the screen. I've no clue why it fails to draw, I've tried several things: drawing it on the background surface, changing the order of the function ...
1
vote
2answers
76 views

draw a circle over image opencv

Im usign python and opencv to get a image from the webcam, and I want to know how to draw a circle over my image, just a simple green circle with transparent fill my code: import cv2 import numpy ...
0
votes
1answer
36 views

make matplotlib draw() only show new point

So I have a 3D graph that is a scatterplot updating a point by going through a dataframe. I have it add a new point ever .1 seconds. Here is my code: ion() fig = figure() ax = fig.add_subplot(111, ...
0
votes
0answers
23 views

How to display calculation results in the title of the drawing window (Python)

Lets say I have randomly dropped a number a balls in the drawing window and some of them hit holes. How do I display the results in the drawing window? Something=float(num_balls)/Online screentitle ...
1
vote
1answer
26 views

Canvas with selectable region of interest, negative coordinates

I'd like to draw filled polygons (squares and hexagons) onto a canvas and, later, be able to zoom in or out of the canvas on regions of interest. I've drafted the following demo program based on ...
-1
votes
2answers
599 views

Drawing diagonal lines on an image

Hi im trying to draw diagonal lines across an image top right to bottom left here is my code so far. width = getWidth(picture) height = getHeight(picture) for x in range(0, width): for y in ...
2
votes
2answers
98 views

Draw a dynamic graph in python

I have a hard time finding a python code example that draws a graph structure (like a tree / state machine) and which you can feed/stream data to, so that it plots the most recent data.
2
votes
1answer
239 views

Draw on top of the screen using xlib

I want to draw some primitives on top of all windows on the screen. I've found some code in C and tried to port it to use python's xlib: from Xlib.display import Display from Xlib import X from Xlib ...
1
vote
0answers
96 views

Drawing pixels on top of Gstreamer

I'm trying to build an application in Python that can draw things on top of video. I have not found a way to do this using gstreamer + Tkinter; I don't think tk lets you do transparent Canvases. So ...
0
votes
0answers
31 views

About PyOpengl installation and Execution Process

we are planned to develop 3d drawing application so that we are installed opengl Package but when we compile & execute the basic program got an error messages, we dont know how to proceed the ...
0
votes
1answer
159 views

Drawing a circle on a Pygame Window using Tkinter using Python 2.7

using bits of code from another question, I embedded a pygame window in a tkinter window, I'm trying to make a tkbutton that draws a circle on the pygame window, been experimenting for a while and ...
1
vote
1answer
147 views

Can not display plot with matplotlib under eclipse

I have a strange problem with matplotlib under Eclipse I've tested this code and this works fine in the command line: import matplotlib.pyplot as plt import matplotlib.pylab as pylab ...
1
vote
1answer
298 views

Drawing a line consisting of multiple points using PyQt

I want to draw a line consisting of multiple points via mouse click in a Python script using PyQt. I need all coordinates of the ponts and I want to be able to delete the line. Here's my script doing ...
1
vote
1answer
70 views

Can I draw on top of a canvas inside of another canvas?

I am creating a Solitaire clone using Python's Tkinter window toolkit. My window contains a main canvas, and within the main canvas a series of widgets that inherit from Canvas that hold the cards. I ...
0
votes
2answers
108 views

Pygame draw not drawing what it should

Ok, so I am using pygame.draw to make a stick figure in the class called Entity: class Entity: #Used with default arguments blited on a 600 by 600 pixel screen def __init__(self, pos=[300, 300]): ...
0
votes
3answers
1k views

Draw rectangle on mouse click [Python]

def xaxis(event): x1, y1 = (event.x - 1), (event.y - 1) def yaxis(event): x2, y2 = (event.x + 1), (event.y + 1) def create(event): w.create_rectangle(x1,y1,x2,y2,fill='Black') w = ...
0
votes
1answer
354 views

python draw multigraph

I try to draw multigraph in Python using graphviz. For now I can draw usual graphs in Python somehow like: import pygraphviz as pgv G=pgv.AGraph() G.add_node('a') G.add_node('b') G.layout() ...
0
votes
0answers
23 views

calormap range with wx.MemoryDC in python

I draw a line with wx.MemoryDC. How could i set the color of the line so that it will start from a color and end with another one? regards
1
vote
2answers
195 views

Drawing cubic lattice in Python

So I want to draw a simple cubic lattice in Python using visual package. I have a simple way of making a lattice with small spheres which all have the same color, but I want the colors to alternate: ...
1
vote
2answers
615 views

What does the python interface to opencv2.fillPoly want as input?

I'm trying to draw a polygon using the python interface to opencv, cv2. I've created an empty image, just a 640x480 numpy array. I have a list of polygons (four point quadrilaterals) that I want to ...
1
vote
1answer
86 views

Accessing all elements in an iterated list under a loop in Python [duplicate]

Possible Duplicate: Python & Pygame: Updating all elements in a list under a loop during iteration i am working on a program in Python and using Pygame. this is what the basic code ...
0
votes
1answer
171 views

How to turn a hand drawn curve (vector drawing or paint etc..) into a function?

I would like to be able to draw a curve like this sample, and then turn that into a function that approximates the curve. Some pseudo python code might look like >> drawing = ...
1
vote
0answers
350 views

How to markup a transparent pygtk pycairo window and save the combined image?

I am trying to develop a transparent window on which I can markup ANYTHING that is on my screen (including dynamic). My final goal is to overlay graphs in online scientific publications, click and ...
4
votes
2answers
1k views

How to draw a line with animation in PyQt4

I have a list of points. For example, points = [[160, 75], [115, 567]]. How to draw a line in PyQt4, so it would be something like this: Thanks in advance. EDIT: For the record, I'm trying to ...
0
votes
1answer
317 views

draw usning wxPython, how fast fill alll pixels?

I am learning how to do gui using Python and in particularly wxPython. I want to write next program to draw fuzzy balls on blue background. I assign weights to points around the click coordinates from ...
5
votes
6answers
667 views

Positioning of classes in UML diagram

I'm creating a tool for displaying Python project as an UML diagram (+ displaying some code error detection using GUI) I scan some project using Pyreverse and I have all data I need for drawing UML ...
1
vote
0answers
207 views

Python PIL cuts off text on Windows 7

I wrote a script which draws a simple text and saves it using PIL. import Image, ImageDraw, ImageFont def get_text(text, size): img = Image.new('RGBA', (250, 80)) font = ...
0
votes
1answer
386 views

wxPython basic Cairo drawing by mouse drag

I have never code in Python and trying to switch from Javascrpt/SVG. Being confused by variable scope in Python and process flow, I will appreciate any correction to those basic code to make it draw ...
1
vote
2answers
261 views

Peano Curve in python tkinter recursive

I'm trying to find out how to draw a peano curve in tkinter. Should I use create_line? My second question is how to start writing peano_curve function recursively: where to start drawing, setting ...
2
votes
1answer
884 views

pyqt drawing on an exsiting widget of GUI

I am new to pyqt. I am doing a program that allows you clicks on the picture and remember the coordinates of points you clicks and draw a stickfigure on a widget of the GUI. My code right now can ...
1
vote
2answers
252 views

How to draw directly on the screen with wxpython?

I'm using Linux and e17 with composition disabled, and I would like to create a program capable of drawing simple geometrical shapes and text directly onto the screen. My first thought was to do: ...
4
votes
1answer
1k views

How can I make the xtick labels of a plot be simple drawings using matplotlib?

Instead of words or numbers being the tick labels of the x axis, I want to draw a simple drawing (made of lines and circles) as the label for each x tick. Is this possible? If so, what is the best way ...
1
vote
1answer
2k views

draw an image to gtk.DrawingArea?

I'm writing a PyGtk paint program based on the basic tutorial found here. Is there any way to add an image to the drawing area so that you can still draw over the image? Like a stamp, or an imported ...
1
vote
1answer
2k views

Python Imaging Library (PIL) Drawing--Rounded rectangle with gradient

I am trying to use PIL to draw a rectangle with rounded corners and a gradient fill for the color. I found a cool web site ( ...
0
votes
1answer
376 views

How does one draw a tilted ellipse in ImageDraw?

I am trying to draw a tilted ellipse in image draw. However, I am not sure how to define it, since while the scheme below would move the points, I think this would just squish the ellipse, not rotate ...
3
votes
3answers
674 views

Creating an arc with a given thickness using PIL's Imagedraw

I am trying to create a segmented arc using PIL and Imagedraw. The arc function allows me to draw an arc easily, but it is just a line. I need to be able to place an arc of given radius and ...
0
votes
2answers
247 views

Native PyGame method for automatically scaling inputs to a surface resolution?

This question is related to this other one. In my program (which uses pygame to draw objects on the video) I have two representation of my world: A physical one that I use to make all the ...
1
vote
2answers
278 views

Draw lines with settings for line cap and line join

I need a library in Python which can draw lines with an option to choose line cap (e.g. round) and line join (e.g. round). I am looking for something what works like HTML5 Canvas Drawing ...
-1
votes
1answer
204 views

Advanced command line module in Python [closed]

I am looking for a python module to do some command line programming, e.g. I'm want something to set the cursor in the command line (so I can draw at a specific coordinate), capture input without ...
3
votes
1answer
191 views

Why does Tkinter wipe previous rectangles when drawing?

When I draw a rectangle at global scope: c = Canvas(width=IMAGE_WIDTH, height=IMAGE_HEIGHT, bg='black') c.create_rectangle([100, 100, 110, 110], fill='white') c.pack() root = Tk() and follow this ...
0
votes
0answers
169 views

Layout geometry for tree structures / laying out nodes attractively

I have a tree-like data structure and I'd like to draw it on an SVG canvas (using jQuery SVG.) I'd like to render the nodes spreading out from top to bottom in an attractively-spaced manner. Ideally ...
0
votes
1answer
412 views

Automatic DrawingArea scaling on resize with (Py)GTK

How can i scale the gtk.DrawingArea on window resize? I'm writing a code that will draw some colors in DrawingArea that will be added to an gtk.Table cell. I just need, that the image will be ...
2
votes
2answers
1k views

Force repaint in wxPython Canvas

I've got a Canvas which manipulates objects in the mouse event handler. After modifying the objects, I want to trigger the OnPaint() event for the same Canvas to show (rerender) the changes. What is ...
1
vote
1answer
148 views

Eliminate unnecessary drawing of an image when using dc?

I have three questions that I could really use some help on. Hope I'm not asking too much. 1) I am designing a simple GUI that contains one frame and one panel. Let's say I have two images that I ...
0
votes
2answers
615 views

Cairo (w/ Python): Is it possible to fill a Polygon with a transparent line?

Here's the code I'm using right now: surface = cairo.ImageSurface(cairo.FORMAT_ARGB32, *image.size) context = cairo.Context(surface) context.set_source_rgba(1, 1, 1, 1) context.new_path() for i in ...
0
votes
2answers
1k views

(Py)GTK: How can I force my window to be repainted / call expose-event?

Currently I'm drawing some things in a subclass of DrawingArea, where I get a cairo context inside an expose-event and call a draw method from there. (according to some PyGTK tutorial I found) I'm ...
0
votes
1answer
603 views

mouseMoveEvent not working in QGraphicsScene

I am trying to implement a paint program in PyQt4. In the QGraphicsScene, I use the mouseMoveEvent to draw lines connecting the consecutive mouse co-ordinates. The code is as follows: def ...
3
votes
3answers
761 views

GUI-embeddable Python drawing widget with anti-aliasing

I am writing a small diagram drawing application (similar to Graphviz in spirit), and need a GUI library that would allow me to embed a canvas capable of drawing anti-aliased lines and text. I want to ...
0
votes
3answers
525 views

Matplotlib draw boxes

I have a set of data, where each value has a (x, y) coordinate. Different values can have the same coordinate. And I want to draw them in a rectangular collection of boxes. For example, if I have the ...
2
votes
1answer
782 views

pixelwise drawing in pyglet (python)

OK. I'm tired of googling and reading throught lots of documentation with no results. My aim is simple: get pyglet to draw an image pixel by pixel. I've been searching for hours with no results. Can ...

1 2