OpenHantek / OpenHantek6022

OpenHantek6022 is a DSO software for Hantek USB digital signal oscilloscopes 6022BE / BL. Development OS is Debian Linux, but the program also works on FreeBSD, MacOS, RaspberryPi and Windows. No support for non-Linux related issues unless a volunteer steps in!
GNU General Public License v3.0
858 stars 152 forks source link

Low image quality on exports #353

Closed espindola closed 1 year ago

espindola commented 1 year ago

I am using f4d31c40aefa80c183cd9e3a2bb3e9a0e9240faf

The attached screenshots of demo mode illustrate the problems. The first one is that the resolution is low. It seems to have something to do with HiDPI displays. I was able to hack it locally by multiplying the width and heighth by 2, but I am not sure what the proper fix is.

The other problem is that some lines are broken.

Everything looks good when running OpenHantek, it is only the exported pngs that are bad.

20230225_214026 20230225_211451

Computer environment (please complete the following information):

I am running alpine linux 3.17, but I have been able to reproduce this with a debian stable chroot. Somehow the issue is not present on arch linux with version 3.3.2.1-1.

Given that it fails with a debian stable chroot, I suspect that somehow the sway or kernel version is relevant:

linux-lts-5.15.95-r0 sway-1.7-r4

Intel Corporation HD Graphics 620 (rev 02)

Graphic: 4.6 (Compatibility Profile) Mesa 22.2.5 - GLSL version 1.20

qt5-qtbase-5.15.6_git20221010-r0

gcc (Alpine 12.2.1_git20220924-r4) 12.2.1 20220924

Scope device (please complete the following information):

demo mode

espindola commented 1 year ago

I expanded the experiment by installing fedora 37 in a VM and producing screenshots from the vm and then mounting the qcow2 image, chrooting into it and producing new screenshots. As far as I know, the only thing from alpine 3.17 being used in the chroot case is the wayland compositor (sway) and the kernel.

The 4 images are attached.

fedora-in-vm-screenshot: fedora-in-vm-screenshot

fedora-in-vm-hardcopy: fedora-in-vm-hardcopy

fedora-in-chroot-screenshot: fedora-in-chroot-screen

fedora-in-chroot-hardcopy: fedora-in-chroot-hardcopy

iss000 commented 1 year ago

Just for reference - Fedora 36 (64 bit), KDE, Wayland. Attached are demo mode screenshot, hardcopy and the whole window captured with spectacle. 20230226_140311 20230226_140328 Screenshot_20230226_140340

Ho-Ro commented 1 year ago

I was able to hack it locally by multiplying the width and heighth by 2, but I am not sure what the proper fix is.

@espindola Which screen resolution do you use? Where did you multiply by 2? Please give me a chance to understand the issue - I do not see this behaviour on my laptops (1280x800 and 1920x1080).

Vascom commented 1 year ago

I also have HiDPI monitor 3840x2112 and the same problem. I think we need option to set waveform line width.

Ho-Ro commented 1 year ago

set waveform line width

I already tried this long ago. Unfortunately this is not possible with the OpenGL graphics. The option for line width doesn't work - the width stays always "1". The OpenGL implementation is more than 10 years old when hi dpi was not common. :(

espindola commented 1 year ago

I was able to hack it locally by multiplying the width and heighth by 2, but I am not sure what the proper fix is.

@espindola Which screen resolution do you use? Where did you multiply by 2? Please give me a chance to understand the issue - I do not see this behaviour on my laptops (1280x800 and 1920x1080).

My laptop resolution is 3200x1800, but sway is configured to scale it by 2 (" scale 2" in the config file). I did the hack of multiplying by 2 by adding

     int sw = screenshot.width();
     int sh = screenshot.height();
+
+    screenshot = screenshot.scaled( sw *= 2, sh *= 2 );
+

I should probably try a KDE or Gnome session to compare. Will hopefully have that tonight.

espindola commented 1 year ago

Thinks look OK on my desktop, which has a 4K display (but is running arch, which has a newer version of sway).

espindola commented 1 year ago

I also have HiDPI monitor 3840x2112 and the same problem. I think we need option to set waveform line width.

Are you using Wayland or X? Which compositor?

Vascom commented 1 year ago

I also have HiDPI monitor 3840x2112 and the same problem. I think we need option to set waveform line width.

Are you using Wayland or X? Which compositor?

Currently X11, Kwin.

espindola commented 1 year ago

I got the same issue with gnome instead of sway. Note that the take a regular screenshot (not via the OpenHantek menu) works just fine. One captured with grim is attached.

Looks like QT knows to do something different when outputting directly to the screen instead of to a QPixmap.

20230227_17h41m03s_grim

espindola commented 1 year ago

One possible workaround is to disable the hdpi scaling just to produce the screenshot/hardcopy. This is what I got when I did that:

20230227_175739

Ho-Ro commented 1 year ago

@espindola What are your values of sw and sh before you scale them? About 3200x1800 or 1600x900 (scale2)?

     int sw = screenshot.width();
     int sh = screenshot.height();
+    qDebug() << "screenshot size:" << sw << "x" << sh;

     screenshot = screenshot.scaled( sw *= 2, sh *= 2 );
espindola commented 1 year ago

@espindola What are your values of sw and sh before you scale them? About 3200x1800 or 1600x900 (scale2)?

     int sw = screenshot.width();
     int sh = screenshot.height();
+    qDebug() << "screenshot size:" << sw << "x" << sh;

     screenshot = screenshot.scaled( sw *= 2, sh *= 2 );

I got:

screenshot size: 1596 x 841

Ho-Ro commented 1 year ago

Ok, you get the downscaled size and upscale it to the correct 1:1 size. Now the question, how to know if you're downscaling by 2 (or even by 4)? A quick solution would be to make it a persistent config option that defaults to 1 and can be changed in the range of e.g. 1..8 - dunno if you have a better idea to detect it automatically.

espindola commented 1 year ago

Ok, you get the downscaled size and upscale it to the correct 1:1 size. Now the question, how to know if you're downscaling by 2 (or even by 4)? A quick solution would be to make it a persistent config option that defaults to 1 and can be changed in the range of e.g. 1..8 - dunno if you have a better idea to detect it automatically.

Given that the image looks OK when drawing directly (not writing to the QPixmap), Qt must know this somehow (see https://github.com/OpenHantek/OpenHantek6022/issues/353#issuecomment-1446878548) , but I don't know where to look.

Ho-Ro commented 1 year ago

Please try the latest unstable - set scale factor in menu Oscilloscope/Settings/Scope/Upscale exported images

espindola commented 1 year ago

Please try the latest unstable - set scale factor in menu Oscilloscope/Settings/Scope/Upscale exported images

The resolution is fixed, but some lines are still broken. Compare with https://github.com/OpenHantek/OpenHantek6022/issues/353#issuecomment-1446897149

20230304_190321

Ho-Ro commented 1 year ago

Which value did you set? 2?

espindola commented 1 year ago

Which value did you set? 2?

Yes, 2.

Ho-Ro commented 1 year ago

strange, then it should give the same result as your

+
+    screenshot = screenshot.scaled( sw *= 2, sh *= 2 );
+

But now another shot in the dark -> new unstable (1e7788b)

espindola commented 1 year ago

But now another shot in the dark -> new unstable

Fixed! 20230305_144845

Ho-Ro commented 1 year ago

@Vascom @iss000 Please double check also with your HiDPI setup.