Questions tagged [resolution]

Questions about image resolution.

Image resolution is an umbrella term that describes the detail an image holds. Higher resolution means more image detail.

Reference

Wikipedia

2378 questions
0
votes
2 answers

When Window Size Is Smaller Elements Overlap Eachother?

I have designed a website and am a little bit stumped right now. If you view the website at: http://www.noxinnovations.com/portfolio/charidimos/ If you change the size of the window you will notice the Navigation overlaps the logo/header. Anyway to…
Aaron Brewer
  • 3,567
  • 18
  • 48
  • 78
0
votes
1 answer

How to change resolution of 2 rasters layers in R?

I am working with two rasters stacks: bioclim (climate data) and soil data. They have different resolution. The description of data: bioclim #class : RasterStack #dimensions : 163, 319, 51997, 19 (nrow, ncol, ncell, nlayers) #resolution :…
huanpops
  • 53
  • 4
0
votes
1 answer

Android: getHolder().setFixedSize(1920,1080) causes Issue with screen Resolution

Im developing a Game. I want my screen to always be 1920x1080. getHolder().setFixedSize(1920,1080); setFixedSize on my SurfaceView achieves this. It also creates a problem, however: the screen is still in WQHD res instead of also being FHD. This…
0
votes
1 answer

How to calculate the resolution of a video?

So for 1280x720 it's obvious that resolution equals to 720p with an aspect ratio of 1,777777778 (16:9). But given the width (560px) and height (320px) of a video, how do I calculate the resolution? Or is it just like using the height of the video?…
René Pardon
  • 187
  • 4
  • 12
0
votes
1 answer

resolution QIcon in PyQt

I'm making GUI an ImageViewer Application, but despite I'm using 512x512 resolution icons, they all appear with low resolution. self.left_rotate = QtWidgets.QToolButton(self.centralwidget) sizePolicy =…
pzsette
  • 286
  • 1
  • 5
  • 19
0
votes
0 answers

Different resolutions of same image using php

I am trying to make different resolutions of same image (like 1080x1920 , 1280x720 , 1920x1080 etc ).I am using the GD library of php. I am able to get the desired resolution (i.e 1080x1920) but the original image(1080x1920) is shrinked in the new…
kyle
  • 1
0
votes
0 answers

Calculate aspect ratio of resolution

Time ago I did a research trying to find a solution to calculate aspect ratio of a resolution, and this answer helped me to write the code below, which works fine for all common resolutions, but I just discovered that it fails to calculate the…
ElektroStudios
  • 19,105
  • 33
  • 200
  • 417
0
votes
2 answers

logarithmic rebinning of 2D array

I have a 1D ray containing data that looks like this (48000 points), spaced by one wavenumber (R = 1 cm-1). The shape of the x and y array is (48000, 1), I want to rebin both in a similar…
0
votes
1 answer

How to make ansible interpolate the variables or facts in the return section of the ternary filter?

How to make use of variables or facts in the return section of ternary filter? eg: set_facts: var1="{{ (true) | ternary('ansible_os_family','ansible_os_family'|upper) }}"
0
votes
2 answers

Why is the size of my PyQt5 window different on different resolutions?

So I made a PyQt5 app and it works on one computer but when I try to run it on another one with a bigger resolution it doesn't work. I tried: PyQt5.QtWidgets.QApplication.setAttribute(QtCore.Qt.AA_EnableHighDpiScaling, True) but it just makes the…
Marko
  • 157
  • 1
  • 2
  • 8
0
votes
2 answers

point to resolution conversion

I am using gaze detection hardware and i am having some numeric issues. First off the co-ordinates work from (0,0) [top left of the screen] to (1,1) [bottom right of the screen]. When i gaze to the top left of the screen the system picks up…
Mark Manickaraj
  • 1,661
  • 5
  • 28
  • 44
0
votes
1 answer

Is there a way to assign @media in CSS to one specific resolution only?

Is there a way to set CSS by @media for one specific resolution only? Not from-to px, but only for one specific number. This doesn't work: @media (min-width: 767px) and (max-width: 767px) { #sp-logo {width: 33.33333333%;} } Neither works…
0
votes
1 answer

How Can I View Gigapixxel Images In flutter App

I am trying to view Gigapixxel image in flutter App.I want to Optimize the image size for reduce Data Usage and save the memory when open the image. User should be able to Zoom that image. How I can do that in Flutter ? (I want to zoom Image as…
0
votes
0 answers

Image/Video resolutions and different formats in TYPO3

Is there a preferred way to implement this? The cropVariant makes multiple resolutions for images kind of possible, but still a lot of things are missing here. What do you think about another nested relation inside the sys_file_metadata to other…
kledo-34
  • 33
  • 5
0
votes
1 answer

If condition not working while comparing the current resolution of the machine with standard resolution using powershell

I want to get the current resolution of the machine and store it to use for comparison with a standard resolution. We are keeping standard resolution as 1280x1024 or 1920x1080. I am able to get current resolution as variable $hdc from the amazing…