The rescale tag has no wiki summary.
0
votes
0answers
3 views
How can i rescale layout to view on tablet 7inch 10inch and smallest screens
I have these layout and when i check the 4inch(480x800, hdpi) he's out of the screen, and when i select nexus 7 or 10 (portrait or landscape) remains the layout on the top of screen...doesn't rescale ...
0
votes
3answers
44 views
How to rescale painted contents of JPanel
I have a window which contains upper JPanel where figures are painted and the lower JPanel where figures are listed in the JList the list looks like:
[minature][figure.toString()]
The minature is ...
1
vote
1answer
44 views
Obtaining unstandardized factor scores from factor analysis
I'm conducting a factor analysis of several variables in R using factanal(). I want to determine each case's factor score, but I want the factor scores to be unstandardized and on the original metric ...
1
vote
0answers
56 views
Update xlim based on current ylim?
I have a plot in matplotlib and I would like to resize automatically the xlim based on the view fixed by ylim. How to do that ?
Currently I write :
plt.ylim(0, 10)
And the problem occurs when I ...
2
votes
1answer
128 views
Zooming and loading very large TIFF file
I have a very large hi-res map which I want to use in an application (imagesize is around 80 mb).
I would like to know the following:
How can I load this image the best way possible? I know it ...
0
votes
0answers
144 views
how to redraw lines and rectangle on picturebox when picturebox resize and sizemode property is zoom
i have a picturebox and using paint event to draw lines and rectangle, its sizemode property set to zoom.When i resize the picturebox on same proportion(btnZoomIn_Click and btnZoomOut_Click) graphics ...
0
votes
0answers
69 views
Rescale factor scores from factor analysis to latent metric in R
I'm calculating a factor analysis of several variables in R. I want to determine each case's value on the latent variable. When I run the factor analysis, I receive factor scores. The factor scores ...
0
votes
2answers
71 views
matlab: change axes from px to um
simple question...
I have a matrix, lets say A = magic(512). I display it as imagesc(A). Now, I know, that 1px is equal to lets say x=15 [um]. How to display axis values in um instead of px?
Thanks
0
votes
0answers
141 views
rescaled value for affinity propagation and DBSCAN cluster algorithms in python?
I tried 2 cluster algorithms in scikit learn (python): affinity propagation and DBSCAN like here:
http://scikit-learn.org/stable/auto_examples/cluster/plot_dbscan.html#example-cluster-plot-dbscan-py
...
-1
votes
1answer
121 views
Rescaling an image just knowing a scale factor preserving aspect Ratio [closed]
Okay I know it sounds like it's a repost of another question, but I couldn't find anybody asking the same question as I do, or maybe I'm wrong because that's not the way how to handle the problem, but ...
2
votes
2answers
85 views
resizing image using its data
i have a c++ program which reads in an image file, deals with the header, and then stores the image's colour data in a pointer to a pointer of chars
unsigned char** pixelData = new unsigned ...
2
votes
1answer
337 views
tweaking scale heatmap with ggplot2
I am a complete newbie with R and please forgive me if this already has been asked a gazillion times. I am trying to make a heatmap using R, following this example, which are tsvs.
This is an ...
1
vote
1answer
139 views
Why does resize make my image look strange?
I have a relative layout on which i add a view. this is the code in the activity:
paint = (RelativeLayout) findViewById(R.id.paint);
new Handler().postDelayed(new Runnable() {
@Override
...
0
votes
1answer
185 views
Viewport3D disable rescaling / resizing
How can I disable the following strange resize / rescaling behaviour of a Viewport3d in WPF?
Notice that I do not change the window height:
How can I disable this "feature" of WPF (or why does ...
1
vote
0answers
67 views
Android blank bitmap
I'm creating bitmaps using inSampleSize. I've come across an unusual problem. On some images the rescaled image is blank.
Example 1:
Original: 4288x2848
inSampleSize = 2;
Rescale: 2144x1424
...