- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试只更改一个屏幕而不是所有屏幕的 Gamma 值。
我使用 this code帮助我
但是这个 SetDeviceGammaRamp(GetDC(IntPtr.Zero), ref s_ramp);
适用于所有设备。
[EDIT2] 我看到一件奇怪的事情:SetDeviceGammaRamp 与 Nvidia Panel Controller 的 Gamma 不同(我试图改变我的 SetDeviceGammaRamp 值,就像我改变了 Nvidia 面板中亮度和对比度的值一样)。所以我想我必须使用 NVidia API :/
那么,我如何更改此代码以将我的 Gamma 值显示在我的第一个屏幕或第二个屏幕上,但不能同时显示在两个屏幕上
[EDIT1] 这是我做的:
class Monitor
{
[DllImport("user32.dll")]
static extern bool EnumDisplayMonitors(IntPtr hdc, IntPtr lprcClip, MonitorEnumProc lpfnEnum, IntPtr dwData);
public delegate int MonitorEnumProc(IntPtr hMonitor, IntPtr hDCMonitor, ref Rect lprcMonitor, IntPtr dwData);
[DllImport("user32.dll")]
public static extern IntPtr GetDC(IntPtr hWnd);
[DllImport("user32.dll")]
static extern bool GetMonitorInfo(IntPtr hmon, ref MonitorInfo mi);
[StructLayout(LayoutKind.Sequential)]
public struct Rect
{
public int left;
public int top;
public int right;
public int bottom;
}
/// <summary>
/// The struct that contains the display information
/// </summary>
public class DisplayInfo
{
public string Availability { get; set; }
public string ScreenHeight { get; set; }
public string ScreenWidth { get; set; }
public Rect MonitorArea { get; set; }
public Rect WorkArea { get; set; }
public IntPtr DC { get; set; }
}
[StructLayout(LayoutKind.Sequential)]
struct MonitorInfo
{
public uint size;
public Rect monitor;
public Rect work;
public uint flags;
}
/// <summary>
/// Collection of display information
/// </summary>
public class DisplayInfoCollection : List<DisplayInfo>
{
}
/// <summary>
/// Returns the number of Displays using the Win32 functions
/// </summary>
/// <returns>collection of Display Info</returns>
public DisplayInfoCollection GetDisplays()
{
DisplayInfoCollection col = new DisplayInfoCollection();
EnumDisplayMonitors(IntPtr.Zero, IntPtr.Zero,
delegate (IntPtr hMonitor, IntPtr hdcMonitor, ref Rect lprcMonitor, IntPtr dwData)
{
MonitorInfo mi = new MonitorInfo();
mi.size = (uint)Marshal.SizeOf(mi);
bool success = GetMonitorInfo(hMonitor, ref mi);
if (success)
{
DisplayInfo di = new DisplayInfo();
di.ScreenWidth = (mi.monitor.right - mi.monitor.left).ToString();
di.ScreenHeight = (mi.monitor.bottom - mi.monitor.top).ToString();
di.MonitorArea = mi.monitor;
di.WorkArea = mi.work;
di.Availability = mi.flags.ToString();
di.DC = GetDC(hdcMonitor);
col.Add(di);
}
return 1;
}, IntPtr.Zero);
return col;
}
public Monitor()
{
}
}
对于 SetDeviceGammaRamp,我做了这个:
GammaRamp gamma = new GammaRamp();
Monitor.DisplayInfoCollection monitors;
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
Monitor monitor = new Monitor();
monitors = monitor.GetDisplays();
}
private void trackBar1_Scroll(object sender, EventArgs e)
{
int value = trackBar1.Value;
gamma.SetValue(Convert.ToByte(value), monitors[1].DC);
}
GammaRamp 类:
public void SetValue(byte value, IntPtr hdc)
{
Ramp gammaArray = new Ramp { Red = new ushort[256], Green = new ushort[256], Blue = new ushort[256] };
for (int i = 0; i < 256; i++)
{
gammaArray.Red[i] = gammaArray.Green[i] = gammaArray.Blue[i] = (ushort)Math.Min(i * (value + 128), ushort.MaxValue);
}
SetDeviceGammaRamp(hdc, ref gammaArray);
}
最佳答案
您可以使用EnumDisplayMonitors 获取另一台显示器的DC或 GetMonitorInfo功能。
请参阅 HMONITOR and the Device Context 上的完整说明.
编辑
如 EnumDisplayMonitors 中所述,
IntPtr.Zero
传递给 hdc
参数(值包含所有显示器)hdcMonitor
应包含当前正在评估的监视器的正确 DCdi.DC = GetDC(IntPtr.Zero);
更改为 di.DC = GetDC(hdcMonitor);
(将 Zero
传递给 GetDC
显然会指定所有监视器,而不是您想要的)
编辑 2
与文档有点混淆,实际上应该执行 EnumDisplayMonitors 的注释中的第三种调用:
using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using System.Windows;
namespace WpfApplication1
{
public partial class MainWindow
{
private readonly List<IntPtr> _dcs = new List<IntPtr>();
public MainWindow()
{
InitializeComponent();
Loaded += MainWindow_Loaded;
}
private void MainWindow_Loaded(object sender, RoutedEventArgs e)
{
var hdc = NativeMethods.GetDC(IntPtr.Zero);
if (hdc == IntPtr.Zero)
throw new InvalidOperationException();
if (!NativeMethods.EnumDisplayMonitors(hdc, IntPtr.Zero, Monitorenumproc, IntPtr.Zero))
throw new InvalidOperationException();
if (NativeMethods.ReleaseDC(IntPtr.Zero, hdc) == 0)
throw new InvalidOperationException();
foreach (var monitorDc in _dcs)
{
// do something cool !
}
}
private int Monitorenumproc(IntPtr param0, IntPtr param1, ref tagRECT param2, IntPtr param3)
{
// optional actually ...
var info = new MonitorInfo {cbSize = (uint) Marshal.SizeOf<MonitorInfo>()};
if (!NativeMethods.GetMonitorInfoW(param0, ref info))
throw new InvalidOperationException();
_dcs.Add(param1); // grab DC for current monitor !
return 1;
}
}
public class NativeMethods
{
[DllImport("user32.dll", EntryPoint = "ReleaseDC")]
public static extern int ReleaseDC([In] IntPtr hWnd, [In] IntPtr hDC);
[DllImport("user32.dll", EntryPoint = "GetDC")]
public static extern IntPtr GetDC([In] IntPtr hWnd);
[DllImport("user32.dll", EntryPoint = "GetMonitorInfoW")]
[return: MarshalAs(UnmanagedType.Bool)]
public static extern bool GetMonitorInfoW([In] IntPtr hMonitor, ref MonitorInfo lpmi);
[DllImport("user32.dll", EntryPoint = "EnumDisplayMonitors")]
[return: MarshalAs(UnmanagedType.Bool)]
public static extern bool EnumDisplayMonitors([In] IntPtr hdc, [In] IntPtr lprcClip, MONITORENUMPROC lpfnEnum,
IntPtr dwData);
}
[UnmanagedFunctionPointer(CallingConvention.StdCall)]
public delegate int MONITORENUMPROC(IntPtr param0, IntPtr param1, ref tagRECT param2, IntPtr param3);
[StructLayout(LayoutKind.Sequential)]
public struct MonitorInfo
{
public uint cbSize;
public tagRECT rcMonitor;
public tagRECT rcWork;
public uint dwFlags;
}
[StructLayout(LayoutKind.Sequential)]
public struct tagRECT
{
public int left;
public int top;
public int right;
public int bottom;
}
}
您应该能够获得每个显示器的 DC,(不能 100% 确认,因为我只有一个屏幕)。
如果所有其他方法都失败了,那么 NVidia 的东西可能会以某种方式干扰。
关于c# - 如何更改单个显示器 (NVidia Config) 的 Gamma 斜坡?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34486842/
我正在寻找一个简单的 Gamma 校正公式,适用于值在 0 到 255 之间的灰度图像。 假设我的屏幕的 Gamma 值为 2.2(它是 LCD 屏幕,因此我可能需要使用更复杂的过程来估计它,但我们假
是否可以通过使用某些图像统计信息的算法来估算gamma correction的最佳 Gamma 参数?所谓“最佳”,是指校正后的图像平均应该对人类“看起来不错”。 最佳答案 如果图像像素的缩放比例在0
我有我正在尝试建模的半连续数据(许多精确的零和连续的正结果)。我从 Zuur 和 Ieno 的 R 中零膨胀模型初学者指南中学到了大量关于零质量的建模数据,它区分了零膨胀 Gamma 模型和他们所描述
我需要为相当大的 x 计算 Gamma(x+1/2)/Gamma(x)。如果我只使用 http://docs.scipy.org/doc/scipy/reference/generated/scipy
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 要求我们推荐或查找工具、库或最喜欢的场外资源的问题对于 Stack Overflow 来说是偏离主题的,
嗨,我是 tensorflow 的新手,我正在尝试在 tensorflow 中生成随机 Gamma 分布,就像 numpy.random.gamma 我的 numpy 代码是:- self._lamb
我正在研究 a package ,它使用来自 RcppArmadillo 的随机数。该软件包运行 MCMC 算法,为了获得精确的再现性,用户应该能够设置随机数种子。执行此操作时,似乎用于从 Gamma
我想计算我拥有的一组数据的 Gamma CDF。我已经计算了 alpha 和 beta 参数,但是我不确定如何在 R 中计算 CDF(是否有类似 Matlab 的 gamcdf 的东西?)。 我看到有
我想使用以下程序计算 gamma(-170.1): program arithmetic ! program to do a calculation real(8) :: x x = GAMMA
我想计算我拥有的一组数据的 Gamma CDF。我已经计算了 alpha 和 beta 参数,但是我不确定如何在 R 中计算 CDF(是否有类似 Matlab 的 gamcdf 的东西?)。 我看到有
我有一个形状和尺度参数为 2.126、0.370 的 Gamma 分布。 您可以使用以下代码绘制它: shape, scale = 2.126, 0.370 # mean=4, std=2*sqrt
我是 python 的新手,我正在尝试进行 Gamma 回归,我希望获得与 R 类似的估计,但我无法理解 python 的语法并且它会产生错误,关于如何解决它的一些想法。 我的 R 代码: set.s
有很多扫描仪允许在它们的设置中设置图像 Gamma ,但不幸的是,这个 Gamma 是在扫描仪软件中调整的,而不是在扫描仪端(通过模拟方式或至少使用分辨率高于 8 位的 ADC) .比如说,我们最初从
关闭。这个问题需要debugging details .它目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and th
在 .NET 中调整图像的亮度对比度和 Gamma 值的简单方法是什么 我会自己发布答案以供稍后查找。 最佳答案 c# and gdi+ have a simple way to control th
我有一个方法可以返回输入的阶乘。它非常适用于整数,但我不知道如何让它适用于小数。 目前我的方法是这样的: public static double factorial(double d) {
我有一些对比度非常微弱且有相当多噪点的成像数据,当我使用线性色标显示时,显示效果不佳。在 imageJ 或 photoshop 等成像软件中,有一条色调曲线,可以对其进行调整以非线性方式增强对比度,并
我正在玩 xgboost,有一些财务数据,想尝试 Gamma 回归作为目标。 cvs 根据 xgboost 文档,stratified 是一个 bool 值,指示是否应根据结果标签的值对折叠采样进行
目前,我使用以下公式在光照通过后对颜色进行 Gamma 校正(将它们从 RGB 颜色空间转换为 sRGB 颜色空间): output = pow(color, vec3(1.0/2.2)); 这个公式
我们有qgamma在 R 和 gamm.inv在 excel 中,我无法使用 invgamma 获得相同的结果python中的函数。例如在excel中GAMMA.INV(0.99,35,0.08)=4
我是一名优秀的程序员,十分优秀!