Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
3answers
689 views

Scaling a 2D polygon with the mouse

I develop a Python-based drawing program, Whyteboard (https://launchpad.net/whyteboard) I'm developing features to allow the user to rotate and scale a polygon that they draw. Here's my problem: I ...
1
vote
1answer
45 views

Rescale column in dataframe?

I have a dataframe called data where I would like to rescale the values in the 4th field to a range of 0-1000 and round the scaled value to the nearest integer. I'm trying to use ddply, round and ...
1
vote
2answers
77 views

Rescale listboxes or other items? but not text (WPF)

The question is quite clear. I have listviews or listboxes in my view. If i make my screen smaller, i want that my text (labels etc) stay the same size. But the listviews and listboxes have to become ...
1
vote
2answers
895 views

.net Drawing.Graphics.FromImage() returns blank black image

I'm trying to rescale uploaded jpeg in asp.net So I go: Image original = Image.FromStream(myPostedFile.InputStream); int w=original.Width, h=original.Height; using(Graphics g = ...
1
vote
2answers
416 views

Cocoa : Scale Image dragged into an ImageWell

I am working on application to keep a comic book collection in order. The user should be able to drag an image of the cover artwork into the program via an ImageWell. Since it is not possible to drag ...
1
vote
3answers
6k views

Correct way to standardize/scale/normalize multiple variables following power law distribution for use in linear combination

I'd like to combine a few metrics of nodes in a social network graph into a single value for rank ordering the nodes: in_degree + betweenness_centrality = informal_power_index The problem is ...
0
votes
0answers
12 views

rescaling image gallery wordpress depending on resolution

This is the website http://pacelinegroup.com/ As you can see theres a gallery, it is set to 1663px x 500px. It shows perfectly on my PC which is a big screen but when I use my laptop or netbook it ...
0
votes
2answers
110 views

Android Canvas slow drawing/animation

I am drawing bitmaps on the canvas using bitmap factory(see P.S.). I also have an animation applyed to my bitmap. I use bitMapFactory.options with options.inScaled = false; options.inDither = true; ...
0
votes
0answers
55 views

How To Use Galleria Rescale Method

I have a website that is using the Galleria jquery plugin and I want the Galleria slideshow to rescale itself when the browser size is changed. Galleria takes the size of its container when the page ...
0
votes
4answers
128 views

Rescaling numbers between 0 and 1

I have the following list of numbers: 3.16, 4.72, 6.44, 8.25, 3.76, 4.87, 5.76, 6.5, 7.32 I have to rescale the numbers between (0, 1) such that: 1)The smallest number gets a value closest to 0 but ...
0
votes
0answers
179 views

Java2d graphic processing ; Image rescale JFrame

How can I rescale image using that pattern ? I like to show an empty rectangle just after loading image into JFRAME , when user moves mouse I like to move this rectangle.User must able to change ...
0
votes
1answer
234 views

Algorithm for fast decompression & rescaling of jpeg image

Working on an application in uCLinux 2.4 to run in an IP camera. Need to grab an image from the videostream (MJPEG, MPEG4 or h.264), decompress it to raw format and rescale it to smaller size. Need to ...
0
votes
1answer
118 views

Auto inferring scale for a time series plot

Problem: I am plotting a time series. I don't know apriori the minimum & maximum values. I want to plot it for the last 5 seconds of data. I want the plot to automaticaly rescale itself to best ...