Tagged Questions
The smoothing tag has no wiki summary.
11
votes
4answers
2k views
Font smoothing in Delphi
I had cause to need a label with a large font on a Delphi form and noticed that
its curves were still slightly jagged. I compared this with the same size
and font in MSWord which was much smoother. ...
8
votes
1answer
199 views
Why can't DirectX/DirectWrite/Direct2D text rendering be as sharp as GDI?
I already know that sub-pixel positioning causes DirectWrite text rendering to be blurry compared to GDI.
However, my question is a bit more fundamental: Why can't DirectWrite (and related methods) ...
8
votes
5answers
13k views
How to smoothen a plot in MATLAB?
I have some 9000 points that are plotted on a graph:
[Full resolution]
Actually, the plot is not as smooth as I wanted it to be. Is there some way I can smoothen the graph to a required degree?
...
6
votes
5answers
4k views
Smooth gps data
I'm working with gps data, getting values every second and displaying current position on a map. The problem is that sometimes (specially when accuracy is low) the values vary a lot, making the ...
5
votes
2answers
378 views
Implementing Double Exponential Smoothing, aka Double Exponential Moving Average (DEMA)
If I have time series data -- a list of {x,y} pairs -- and want to smooth it, I can use an Exponential Moving Average like so:
EMA[data_, alpha_:.1] :=
Transpose @ {#1, ...
5
votes
4answers
1k views
Smoothing a hand-drawn curve
I've got a program that allows users to draw curves. But these curves don't look nice - they look wobbly and hand-drawn.
So I want an algorithm that will automatically smooth them. I know there are ...
5
votes
2answers
2k views
Math: Ease In, ease Out a displacement using Hermite curve with time constraint
I'm trying to write a method that interpolates from 0 to x (position of an object in one dimension) over time using acceleration at the beginning and deceleration at the end (ease out / ease in) with ...
4
votes
2answers
142 views
Numpy Root-Mean-Squared (RMS) smoothing of a signal
I have a signal of electromyographical data that I am supposed (scientific papers' explicit recommendation) to smooth using RMS.
I have the following working code, producing the desired output, but ...
4
votes
2answers
199 views
How do I plot the first derivative of the smoothing function?
I have the following script that emulates the type of data structure I have and analysis that I want to do on it,
library(ggplot2)
library(reshape2)
n <- 10
df <- data.frame(t=seq(n)*0.1, a ...
4
votes
2answers
497 views
Smooth edges of non-rectangular form in .NET
I've created a form with rounded corners using Form.Region. It works, but unfortunately the rounding appears rough. Are there any tricks for smoothing such shaped form corners? I know many ...
3
votes
4answers
322 views
Image smoothing
I need to do an image smoothing, I have an low quality image and I need to convert it to a little higher quality just making soft edges or something like that. does anyone know how can I do it ? or ...
3
votes
2answers
1k views
Smoothing a rounded stroke in Core Graphics
I am creating my own UITableViewCells with a gradient background. I have all the logic and drawing worked out, but one thing I want to fix is the "chunkiness" around the corners of my custom cell:
...
2
votes
2answers
72 views
Edge smoothing while keeping features such as corners
I am trying to smooth the edges of a polygon. This is for a mapping application that allows a user to zoom in and out. At a high zoom I don't need all the detail so I smooth the polygon to reduce the ...
2
votes
1answer
71 views
How to apply smoothing on speech segments concatenation using NAudio?
I'm doing speech segments concatenation to produce final speech (Test to speech task), I want apply smoothing on these segments to make the final result more natural.
What is the best smoothing ...
2
votes
1answer
51 views
Smoothing of data with unequal number of observations for plotting?
I have two data-frame with unequal number of rows. But i need to smooth the data in both the data frames and plot them together. I can smooth each dataframe with lowess/loess. However, when i try ...
2
votes
5answers
398 views
Algorithms for downscaling bitmapped fonts
This is a follow-up to this question.
I am working on a low level C app where I have to draw text. I have decided to store the font I want to use as an array (black and white, each char 128x256, ...
2
votes
1answer
852 views
OpenGL Heightmap
I am working on a project for school and part of it was making a height map.
I managed to create the height map as requested, but was hoping to go for a little extra credit and smooth the entire ...
2
votes
3answers
1k views
Smooth polyline with minimal deformation
I've got a 2D closed polyline, which is reasonably smooth. The vertices that define the polyline however are not spaced equally. Sometimes two will be very close, sometimes as many as four will be ...
2
votes
8answers
745 views
smoothing irregularly sampled time data
Given a table where the first column is seconds past a certain reference point and the second one is an arbitrary measurement:
6 0.738158581
21 0.801697222
39 1.797224596
49 2.77920469
54 2.839757536
...
1
vote
1answer
46 views
Convert time series into Bezier-smoothed chart, output chart bitmap to 2D array
I'm trying to Bezier-smooth a time series and convert it into a greyscale bitmap of its chart. To clarify, I essentially want C# to take a time series of data, virtually plot a smoothed chart a la ...
1
vote
2answers
176 views
Low Pass Filter Matlab
Is there a way in matlab to create a low pass filter, I know i can use the filter function but not sure how to use it, I've been given the following formula for my low pass H(z) = 1 (1 - z^-4)^2 / 16 ...
1
vote
2answers
148 views
Smoothing Data in Contour Plot with Matlibplot
I am working on creating a contour plot using Matlibplot and pyplot. I have all of the data in an array that is multidimensional. It is 12 long about 2000 wide. So it is basically a list of 12 lists ...
1
vote
0answers
32 views
What is the smoothest parameters for texturing with multi-sampling mode?
what is the smoothest parameters for texturing with multi-sampling mode.
I mean to say I am using GL_LINEAR, GL_CLAMP, and GL_MODULATE. What should I choose here to get smoothest texture.
...
1
vote
2answers
147 views
Smoothing with lowess
I'm trying to convert a matlab script to R, and am having some trouble with smoothing.
The matlab code I want to convert is the following:
for i = 1:size(spike_sum,2)
...
1
vote
1answer
284 views
How do i smooth the curves(contours) in OpenCV?
I am working on a black&white image just like the first one from the link :
http://imageshack.us/g/33/firstwm.png/
It has a lot of "noise" so I applied a Median filter over it to smooth it, thus ...
1
vote
1answer
219 views
Smooth Coloring Algorithm for the Mandelbrot set on Delphi
I have problems using the smoot coloring algorithm. I just don't get them implemented in my Code.
This is the main code which causes an error after some calculated pixel rows:
...
1
vote
2answers
397 views
Smoothing of histogram with a low-pass filter in MATLAB
I have an image and my aim is to binarize the image. I have filtered the image with a low pass Gaussian filter and have computed the intensity histogram of the image.
I now want to perform smoothing ...
1
vote
1answer
205 views
smoothing image in Matlab
I need to perform image smoothing. I've searched the web but I didn't find anything - every thing I tried doesn't preform like I want.
for example:
as you see there are bumps or something like ...
1
vote
1answer
99 views
smooth gradients in web browser
im trying to make a smooth gradient, a simple image in photoshop/illustrator or any other software.. in some monitors/graphics card i get a really smooth image but in computers with onboard cards or ...
1
vote
3answers
251 views
Problem tweening MC slow movement with Tweener, even with smoothing
I think that Tweener is not using fractions of pixels on x,y movement, but that exactly what I need. I read about rounded parameter (default:false), that would round pixels, to reduce problems with ...
1
vote
0answers
151 views
Java not smoothing custom fonts
Me and my group are creating a web applet (entirely applet). However, I created a custom font to use for a banner but it won't use anti aliasing/font smoothing on it.
All the other normal fonts used ...
1
vote
1answer
389 views
Text anti aliasing and font smoothing
Is there a difference between text anti aliasing and font smoothing in flex? If so, what is the difference? Could you provide links or examples?
1
vote
1answer
122 views
Smoothing data received from CoreLocation
I'm trying to develop an app which allows you to walk around, and where you walked will be drawn on a map. I have this all working fine, but I'm finding that even with a reasonably accurate GPS ...
1
vote
1answer
1k views
Spline smoothing algorithm in C
I work in Engineering in an industrial plant, for some of our online modeling we look at high frequency output data from thermocouples, sensors etc by nature this data is subject to a 'noise' effect, ...
1
vote
3answers
381 views
Smooth MultiPlayer movement
i am developing a multiplayer roleplaying game, (No, its not a mmorpg. ;)
My current setup is like this.
Client tells the server "I want to move forward"/"I want to move backwards", the server then ...
1
vote
2answers
482 views
Ho Can I Smooth Audio Level Metering for a More Realistic Analog VU Meter?
I have built an emulated Analog VU Meter for a recording app and have everything hooked up properly and working the way I expect except for one aspect. If you watch this 13-second video of the VU ...
1
vote
3answers
848 views
how to use Savitzky-Golay smooth coefficient to calculate derivatives
Savitzky-Golay smoothing filter can be used to calculate the coefficients so as to calculate the smoothed y-values by applying the coefficients to the adjacent values. The smoothed curve looks great.
...
1
vote
3answers
807 views
Scale and move a text smoothly with javascript
I'm having a text scaled and moved via JavaScript / jQuery. I can't use jQuerys animate() because it has to fade in and out and has to be repeated and with more elements (end result: "flying" from the ...
1
vote
1answer
379 views
help: how to smooth a mesh generated by Marching Cubes in real-time?
I'm now using the marching cubes algorithm for a project (real-time rendering of human teeth from CT images). Here is the rendering result:
http://www.freeimagehosting.net/uploads/4c2e2c94be.jpg
You ...
1
vote
1answer
221 views
IE smoothing a map pan when dragging
I've trying to smooth out the performance of a map application i've been building using javascript. I initially implemented a dragging pan using
onmousedown
onmousemove
onmouseup
However in IE it ...
1
vote
3answers
2k views
Image scaling and smoothing
I'm importing some images dynamically into a SWF from an external site using AS2.
It works perfectly when I load my images from my computer, but when I try to load them from the external server the ...
1
vote
3answers
2k views
Techniques to smooth face edges in OpenGL
When I light my human model in OpenGL using face normals it is very apparent where each face is on the model. The lighting becomes considerably smoother using vertex normals but still noticeable. Is ...
1
vote
2answers
373 views
How to: Font smoothing test
The real question is this:
I am trying to figure out the effect of font smoothing in my web page. On my LCD panel the text looks the same with font smoothing on/off.
Are there are any particular ...
0
votes
1answer
21 views
ie text display cleartype in some places but not others
I have a strange problem. The text in my footer is displaying as smooth, but none of the rest of the text on the website is in ie8.
I read somewhere that using position:absolute would help. I put ...
0
votes
1answer
222 views
Drawing smooth lines with canvas
So far none of the threads here on smooth lines are correct.
how to draw smooth curve through N points using javascript HTML5 canvas?
Smooth user drawn lines in canvas
Both result in jagged lines. ...
0
votes
1answer
45 views
How to smooth unigrams
I have a unigram language model and i want to smooth the counts. Is add one smoothing the only way or can i use some other smoothing also. I dont think we can use knesser nay as that is for Ngrams ...
0
votes
0answers
80 views
Looking for Local Regression (loess/lowess) implementation in OpenCL
I am looking for a local regression implementation/port in opencl.
http://en.wikipedia.org/wiki/Local_regression
...
0
votes
2answers
69 views
Smoothing a Dataset while Retaining the same number of Points
I'm looking for a smoothing algorithm which retains the same number of points. Does such an algorithm exist for smoothing? Every algorithm I've seen reduces the number of data points.
0
votes
1answer
134 views
Faster way to perform point-wise interplation of numpy array?
I have a 3D datacube, with two spatial dimensions and the third being a multi-band spectrum at each point of the 2D image.
H[x, y, bands]
Given a wavelength (or band number), I would like to ...
0
votes
1answer
164 views
How to set the data that geom_smooth smoothes
This works exactly as expected:
p = qplot(year, temp, data=CETW, geom=c("point", "smooth"))
The temperature is plotted against the year taking the data from the data frame CETW. The series is ...