The technique of minimizing the distortion artifacts when representing a high-resolution image at a lower resolution

learn more… | top users | synonyms

0
votes
0answers
18 views

OpenGL ES blending with custom antialiasing

I'm completely new to OpenGL. I need to make new drawing type in iOS app looking beautiful but as far as I try I fail with blending. This answer shows a way a line is constructed during drawing. My ...
0
votes
0answers
9 views

How to compute anti-aliased color?

I am drawing a line by repeating a solid circle, but how can I calculate the anti-aliased colors? I've done a search, but I am overwhelmed with the results .. Only if some one tell me how to ...
0
votes
0answers
10 views

How to double the height of a bitmap font with automatic anti-aliasing?

I am working on an embedded system that uses 8 pixel high bitmap fonts. In order to save memory I want to do double height fonts without storing an entire extra font. The font width will be the same ...
1
vote
0answers
56 views

Triggering antialiasing for webfonts in chrome and firefox

So we all know how crappy webfonts look with antialiasing disabled... I just found out that, if you're using Chrome, you trigger antialiasing at 49px or higher, however, with firefox it's set at 257px ...
-1
votes
0answers
23 views

XNA3.1 Texture scaling

I just decided to build a simple 2d tile-based game using XNA.size of each tile is 32 X 32.And that looks really small,So i was thinking to draw all stuff onto a RenderTarget2D and scale it(2:1 ...
0
votes
0answers
34 views

Improve WPF 3D Quality

I'm using some basic geometric figures in a viewport. Somehow the quality of the edges is very bad on my laptop (no antialiasing, very pixelated). It is much better on my home computer. My laptop runs ...
0
votes
0answers
42 views

Android - drawline with hardware acceleration and antialiasing causes artifacts

I am working on an Android custom graph view that uses Canvas#drawLines and a paint object that has antialiasing turned on. My view has hardware acceleration turned on. Occasionally when I pinch zoom ...
1
vote
1answer
88 views

Rotating a circle image shifts it's position

I am trying to rotate a circle image using jquery rotate plugin. But, I observe that the circle image appears to be oscillating about it's center while rotating. Something like a linear movement. In ...
0
votes
2answers
56 views

Antialias height map edge using Java 2D

I'm using Java 2D to render a terrain map. Terrain Map looks like this: You can see how the edges are rather jagged. I want to render the edge of the terrain smoothly, but turning on antialiasing ...
0
votes
0answers
31 views

DrawingContext anti-aliasing during clip

I need to piece together a quadrilateral from two different triangles that are clipped from their source image. I can not get rid of the seam between the triangles. The seam appears because during the ...
0
votes
1answer
38 views

Change font rendering (non-antialiased) with pango

How do I render a string with pango using custom antialiasing and hinting settings? I tried PangoCairo.set_antialias(cairo.ANTIALIAS_NONE) (in pygtk), but it had no effect. I'd like to be able to ...
0
votes
1answer
25 views

Compiling Graphin for windows

I am trying to compile Graphin for windows present here svn checkout http://graphin.googlecode.com/svn/trunk/ graphin-read-only But with VS 2005 it fails with 1>------ Build started: Project: ...
0
votes
0answers
100 views

Android grainy background full size image by pressing and holding screen device

I'm developing an application with phonegap(css3 + html5 + javascript) for iOS and Android 4.x. On Android 4.0.3 device, I use with css a background image as button with this code: .mycssClass { ...
0
votes
0answers
128 views

Unity 3D anti aliasing not working?

Anti aliasing does not seem to be working with the free version of Unity. I've created a very simple project with a cube, camera and light to demonstrate this. Anti aliasing is set in the settings: ...
2
votes
4answers
266 views

Change background colour of an anti-aliased image using C# with anti-aliasing

I have an image where I need to change the background colour (E.g. changing the background of the example image below to blue). However, the image is anti-aliased so I cannot simply do a replace of ...
0
votes
0answers
84 views

GDI+ Bug: Anti-Aliasing White On Transparency

The following code will create a transparent bitmap and then draw a white ellipse on it with anti-aliasing. using(var background = new Bitmap(500, 500)) using (var graphics = ...
2
votes
1answer
34 views

Anti alias mode differences?

Is there a difference between these two Anti Alias modes? e.Graphics.SmoothingMode = Drawing2D.SmoothingMode.AntiAlias e.Graphics.SmoothingMode = Drawing2D.SmoothingMode.HighQuality I've tested ...
1
vote
0answers
79 views

Python, PIL; Text to Image and insertion into MS Excel

I'm using Python and PIL to create "Text to Image" figures and place these into MS Excel documents. I'm having issues with image quality - So far I'm able to create images from given text, though ...
3
votes
2answers
121 views

projecting image with opengl and Antialiasing

In my work I overlap a part of a captured frame with an image. I open my webcam with openCV and then I transform the captured frame in a texture and display it in a GLUT window. Also, I overlap a part ...
0
votes
1answer
102 views

How to achieve supersampling / anti-aliasing in pixel shaders?

I am trying to write a couple pixel shaders to apply to images similar to Photoshop effects. For example this effect: ...
4
votes
1answer
311 views

Drawing perfectly circular arcs with HTML5 Canvas + KineticJS

I'm currently trying to draw arcs using the KineticJS canvas framework. The issue I'm having is that these arcs are not nearly as "perfectly" circular as required. They're being drawn out as follows: ...
0
votes
0answers
24 views

Antialiased JWindow (Shape)

I have a JWindow in my application, it pops up at the upper right corner. I have set the shape to RoundRectangle2D, but the border of thw JWindow is not antialiased and therefore looks horrible. So my ...
1
vote
1answer
306 views

Maintaining fixed-thickness lines in WPF with Viewbox scaling/stretching

I have a <Grid> which contains some vertical and horizontal <Line>s. I want the grid to be scalable with the window size, and retain its aspect ratio, so it's contained in a <Viewbox ...
0
votes
0answers
58 views

Weird strips with quads in OpenGL

Everything is on the screenshot I just took... Basically, It does that even when there's no lighting enabled... Is it antialias related? Screenshot : http://i.imgur.com/Lrr29cL.png @Axel, Here my ...
0
votes
1answer
92 views

Avoid antialiasing in canvas element

I know that to avoid antialiasing effect in lines, I have to translate 0.5 px in the x and y coordinates.But this does not function in quadratic curves. I need to draw a quadratic curve without having ...
0
votes
0answers
87 views

Is it possible to use TextRenderingHint to get anti-aliasing on a RichTextBox?

I've been experimenting with enabling anti-aliasing of text in various controls in a Windows Forms Application. I did a bit of research and it seems like the solution is to create a custom control ...
0
votes
1answer
77 views

CSS translate(0,5px) is making things wiggle on the X axis

I have a css translate happening on hover. It only affects the Y axis but it is jumping around. This makes the hover effect look wonky. -webkit-transform: translate(0,5px); The effect is on the ...
0
votes
0answers
110 views

OpenCV remap() gives pixelated result

I'm applying a warp using OpenCV's remap() function, but the result looks quite blocky. I'm using bicubic sampling using a float matrix to shift the x & y like this: remap(src, dst, mapx, mapy, ...
-1
votes
1answer
36 views

stopping anti-aliasing of textures in JOGL

I'm fairly new to JOGL and i was trying to make all of my textures have antialiasing disabled. though for some reason it only works on a texture of the Letter 'S'. here are all of my classes: Main: ...
0
votes
0answers
48 views

Scroll Bar Affecting SVG Rendering

I've tried to do as much research into this before asking here and looked at similar issues people have had on stackoverflow. However no one seems to have the exact same issue as I'm having. I'm in ...
0
votes
0answers
20 views

Multiline hypertext in WindowsForms

I'm trying to design an WindowsForms based hypertext story (an artistic project) and I need to have an area with text looking like standard Windows text (i.e. MS Sans serif 8pt without antialiasing) ...
0
votes
0answers
92 views

SFML2 render to texture anti-aliasing not working

Im trying to render an anti-aliased opengl scene to texture using the lastest sfml 2. But it wont anti-alias. I came across this post http://en.sfml-dev.org/forums/index.php?topic=3622.0 and it made ...
3
votes
2answers
193 views

How to have CATextLayer smooth its text?

According to the documentation, it is possible to enable font smoothing inside CATextLayer: Text can only be drawn using sub-pixel antialiasing when it is composited into an existing opaque ...
3
votes
1answer
233 views

Node-Canvas image anti-aliasing doesn't seem to work

I'm trying to produce animation file using node.js and the node-canvas package, extracting frame by frame. Part of the animation includes scaling and moving images. My problem is that no anti-aliasing ...
0
votes
1answer
105 views

iOS - CAShapeLayer anti-aliasing?

I have two rhombus shapes next to each other, and I'd like the edges of them to fit together seamlessly. At the moment, due to anti-aliasing, the background bleeds through even though the edges are ...
0
votes
0answers
67 views

Metafile: calling ConvertToEmfPlus drops the linejoin style

With Gdiplus in C++, I create a new Metafile from an EMF file, then I call ConvertToEmfPlus on it, passing a graphics with the SmoothingMode set to SmoothingModeAntiAlias. When I do this, drawing the ...
1
vote
0answers
222 views

Make fonts on Windows render like Mac/Linux: disabling font-hinting and/or deal with anti-alias on client side

Is it possible to turn off "font-hinting" on Windows via javascript or any other client side code? I want browsers on Windows to mimic fonts the way they look on Mac - because I'm using an ...
0
votes
1answer
125 views

Poor anti aliasing of 3D model using XNA in Silverlight, how to fix?

In Silverlight, I am embedding a 3D model using XNA. The model is rendered in a DrawingSurface control. The issue I am having is that the model render is quite poor in quality. The model has jagged ...
0
votes
1answer
90 views

Is there a faked antialiasing algorithm using the depth buffer?

Lately I implemented the FXAA algorithm into my OpenGL application. I haven't understand this algorithm completely by now but I know that it uses contrast data of the final image to selectively apply ...
0
votes
0answers
93 views

HTML Canvas scaling down = Aliasing

I've tried to scale down a geometrical image with a canvas using the scale() method but the result is highly aliased. For testing purpose I took an image from the internet and made a basic 25% ...
2
votes
2answers
164 views

Smoothing image edges in WPF

I have a few 256x256 images I am using with Image controls in a WPF application. Although they are all 256x256, I changed some of the controls to 64x64, etc. When I resize it down (using fill as my ...
1
vote
1answer
137 views

In 3D graphics, why is antialiasing not more often achieved using textures?

Commonly, techniques such as supersampling or multisampling are used to produce high fidelity images. I've been messing around on mobile devices with CSS3 3D lately and this trick does a fantastic ...
1
vote
1answer
543 views

Anti-aliasing while rendering to texture in OpenGL ES 2.0

I am rendering my scene into a texture so that I can apply post-processing before displaying the final result. However, when I added this feature, MSAA/CSAA stopped working. Is there a way (other ...
3
votes
2answers
252 views

Anti-alias lines vs markers in MATLAB

Hi I have a image in MATLAB and I want the line to be smooth - look at the line from 0.4 to 0.8... it's horrible. When using 'LineSmoothing','on' operator in plot I get this I does a good job ...
1
vote
1answer
306 views

How to antialias SVG text in Firefox

Does anyone know the best way to anti-alias svg text that will work in Firefox? I tried text-antialias:true but this has no effect, and also I tried using a stroke paint but this just thickens up the ...
1
vote
1answer
151 views

is there antialiasing method for python PIL

For line and ellipse in PIL, images are rough. I found antialiasing only in resize and thumbnail. Is there any way to do antialiasing when drawing a line or ellipse?
0
votes
2answers
414 views

Custom font not appearing correctly on Chrome

I am trying to use a custom font for my website, but it appears wrong in Chrome (latest) and Opera browsers although it appears correctly (smooth) on other browsers. I tried couple of different fonts, ...
1
vote
1answer
232 views

Jagged Edges in Cocos2D - Antialiasing Issue?

We're currently developing a game involving graphs (nodes connected by edges), and we want to be able to move the nodes around. We have the nodes moving (responding to touch), but when the edges ...
2
votes
1answer
337 views

WebGL Jagged Edges (Anti-Aliasing)

So I'm currently rendering my terrain using vertices and color data only (no indices, no textures), and maybe when I add textures in later the problem will fix itself. Both at a distance and close up, ...
1
vote
1answer
204 views

Enable Anti-Aliasing for WPF shapes

It seems that many people are trying to turn OFF anti-aliasing in WPF, but I seem to have the opposite problem. I am drawing shapes in WPF, and the edges are all aliased and ugly. The worst part is ...

1 2 3 4 5 8