Tagged Questions
The rasterizing tag has no wiki summary.
6
votes
1answer
2k views
Rasterizing a GDAL layer
Edit
Here is the proper way to do it, and the documentation:
import random
from osgeo import gdal, ogr
RASTERIZE_COLOR_FIELD = "__color__"
def rasterize(pixel_size=25)
# Open the data ...
6
votes
4answers
1k views
Are there any rendering alternatives to rasterisation or ray tracing?
Rasterisation (triangles) and ray tracing are the only methods I've ever come across to render a 3D scene. Are there any others? Also, I'd love to know of any other really "out there" ways of doing ...
5
votes
3answers
1k views
Perspective correct texture mapping; z distance calculation might be wrong
I'm making a software rasterizer, and I've run into a bit of a snag: I can't seem to get perspective-correct texture mapping to work.
My algorithm is to first sort the coordinates to plot by y. This ...
5
votes
3answers
881 views
Drawing triangles with CUDA
I'm writing my own graphics library (yep, its homework:) and use cuda to do all rendering and calculations fast.
I have problem with drawing filled triangles. I wrote it such a way that one process ...
4
votes
2answers
316 views
Qt round rectangle, why corners are different?
I try to draw a round rectangle with drawRoundedRect method directly in a QPixmap (no render engine involve here exept pure Qt one ...), I double check the size of the rectangle versus the size of my ...
4
votes
1answer
166 views
Is there a good integer only line rasterization algorithm?
I've been working on building a simple 3d graphic engine and I'm trying to find a good integer based line rasterization algorithm. ( I'm not trying to re-invent the wheel, I'm trying to get a deeper ...
4
votes
3answers
4k views
Turn a MATLAB plot into image
I have generated a plot like
figure; hold;
axis([0 10 0 10]);
fill([ 1 1 5 5], [5 1 1 5],'b')
and now I want to have this plot as an matrix so that I can i.e. filter the blog with a gaussian. ...
4
votes
4answers
3k views
Rasterizing PDF documents programatically
I'm currently working on a project where I've been tasked with implementing a feature that will allow users to flip through a book in PDF format. I've tried searching for existing software and ...
2
votes
1answer
71 views
Why Bresenham's line algorithm more efficent then Naive algorithim
For my graphics course we were taught the Naive line rasterizing algorithm then Bresenham's line drawing algorithm. We were told computers are integer machines which is why we should use the latter.
...
2
votes
7answers
3k views
Projecting a 3d sphere into a 2d circle on the screen
What are some rasterization algorithms that can just project a 3d sphere into a pixel grid? I want to avoid ray casting. Essentially, given a 3d coordinate and a radius, is there a quick way to just ...
1
vote
1answer
27 views
Rasterizing a triangle in Java
Is there a Java graphics library that will rasterize a triangle given the coordinates of the vertices?
I'm trying to analyse the pixel values of an image for the triangular region defined by three ...
1
vote
0answers
36 views
General algorithm for rastering vector image
What is the general algorithm of rasterizing vector image? I've found a lot of algorithms of rasterizing primitives such as lines, circles, Bezier curves etc. But for general, what should I do? ...
1
vote
2answers
106 views
How to rasterize a 3d mesh?
I have a 3d mesh (a set of triangles) that defines a closed watertight surface. I want to rasterize this mesh, that is divide the space occupied by the mesh to even, little cubes (the 3d equivalent of ...
1
vote
1answer
84 views
Rasterizing a Cubic Polynomial
Given a cubic polynomial estimated using least-squares regression, I am interested in a simple algorithm that rasterizes the curve to display in an image. My initial intuition is to sample the curve ...
1
vote
3answers
459 views
use batik-rasterizer without GTK [closed]
i'm using the Apache Batik SVG Rasterizer Library in python, but when i try to convert a svg into png i get this error Gtk-WARNING **: cannot open display:
How can i do to don't use GTK to convert ...
1
vote
1answer
493 views
OpenGL or Rasterizer for playing SVG
I am planning to write a SVG player. To have the animation run at 20 frames/second I want to generate images at that rate and throw it at the screen.
Now to do this what would be a better option, ...
1
vote
1answer
829 views
BitmapData cut-off
I am writing a MovieClip rasterizer which rasterizes all the frames in the specified movieclip. Here's the code for rasterizing:
for ( var i:int = start; i <= end; i++ )
{
//goto the next frame
...
1
vote
1answer
480 views
Get graphics information from font file. How to develop font parser similar to PDFView's font parsers?
I am trying to convert text into graphics using c#.
My input is character string and output is bitmap with the input text.
After lot of search I found some ways to do it, I found some techiques ...
1
vote
3answers
886 views
Rasterizing a 2D polygon
I need to create a binary bitmap from a closed 2D polygon represented as a list of points. Could you please point me to efficient and sufficiently simple algorithms to do that, or, even better, some ...
0
votes
2answers
41 views
Rasterizing an ellipse
Is there a efficient algorithm out there to find the indicies of pixels in a general ellipse?
Essentially, what I want to do is to find the indicies in a two dimensional array that corresponds to a ...
0
votes
2answers
30 views
Getting scan lines of arbitrary 2d triangle
How would one go about retrieving scan lines for all the lines in a 2D triangle?
I'm attempting to implement the most basic feature of a 2D software renderer, that of texture mapping triangles. I've ...
0
votes
0answers
101 views
How to rotate WMF and save preserving vector format
I have a WMF image file, which I have to rotate with a specific angle and save in vector format. If I create metafile graphics and draw the image after setting the rotate transform, the generated ...
0
votes
1answer
143 views
All points crossed by a line
I need to find all points that are on a line. I tried Bresenham's algorithm but it doesn't work on the following case:
(0, 0)
.-----------+-----------+-----------.
|...........| | ...
0
votes
3answers
352 views
C# import of Adobe Illustrator (.AI) files render to Bitmap?
Anyone knows how to load a .AI file (Adobe Illustrator) and then rasterize/render the vectors into a Bitmap so I could generate eg. a JPG or PNG from it?
I would like to produce thumbnails + render ...
0
votes
0answers
35 views
4connected line rasterisation with float coordinates
I have linesegments which pass through a grid and i want to know which cells of the grid they intersect.
I found this algorithm for 4connected rasterisation which is pretty much what I need:
...
0
votes
1answer
59 views
Line of Sight blockage using bitmaps
I'm building a simulation model for a vehicle. I must determine if the vehicle's line of sight is being blocked by other vehicles in the sim.
(There is no visual display for our sim, it's purely for ...
0
votes
1answer
243 views
C++ and wxWidgets - Rasterisation - line width and filling
Is there a modification of Bresenhman (or any) algorithm to draw line with defined line width? I can only use DrawPoint(x,y) function. And second question: how to implement filling a figure (for ...
0
votes
1answer
223 views
How do I rasterize an image in Matlab?
I need to rasterize an image in matlab.
I have a b/w image and want to chunk it up in 8x8 blocks and get a mean value from every block. Then I want to replace the block with a new block that is made ...
0
votes
1answer
93 views
Cross-platform library for separating and converting PDFs to images?
I'm currently planning an application which involves manipulating PDFs. My goal is to have a program that i can pass in a PDF as an input which then saves separated grayscale images of the colour ...
0
votes
2answers
573 views
MKPolygon performance problem
I have created a whole heap of overlays using MKPolygon and created into a MKPolygonView. This works fine but one of the overlays has a butt load of points (about 800 points) and this causes memory ...
0
votes
1answer
188 views
Ghostscript compatibility question between 8.15 and 8.70
I was using ghostscript 8.15 for pdf rasterization on a x86_64 system. Now because of new features I want to switch to version 8.70. However, I noticed that Ghostscript made a note about supporting ...