taoshiqian / image_SDR_to_HDR

图像SDR to HDR,目标:暗光区域 光照增强,过曝光区域 光照减弱
96 stars 31 forks source link

demoTSQall.m运行报错 #2

Open githubPsearth opened 5 years ago

githubPsearth commented 5 years ago

您好~我运行了demoTSQall.m代码,报了以下错误: Error using .* Matrix dimensions must agree.

Error in TooDark (line 88) I2 = I.W; %原图权重

Error in demoTSQall (line 18) V2 = TooDark(J,0.5,0.38);%原图,照度变化,曝光率(曝光率人为控制亮度,越低越暗)

请问该怎么改正呢?期待您的回复~

taoshiqian commented 5 years ago

88行应该是:I2 = I.*W; %原图*权重 不是:I2 = I.W; %原图权重 确认是否被修改。如确认过,则往下探究。

暂未碰到这样的错误。按照原理来看,W来源于I,矩阵维度是相同的,不会出现问题。 进一步探究:

  1. 输出I和W的维度看看是否相等?
  2. 有更多的报错信息么?
  3. 确认所处理的图片合法,是RGB三通道?
githubPsearth commented 5 years ago

您好,我将allcolor的Q图片效果图删除,然后运行程序,没有其他的改动,报了这样的错误Error using .* Matrix dimensions must agree.

Error in TooDark (line 88) I2 = I.W; %原图权重

Error in demoTSQall (line 18) V2 = TooDark(J,0.5,0.38);%原图,照度变化,曝光率(曝光率人为控制亮度,越低越暗)

没有其他的报错信息了。 PS:请问可以处理png图片吗?

------------------ 原始邮件 ------------------ 发件人: "taoshiqian"notifications@github.com; 发送时间: 2019年4月18日(星期四) 下午4:04 收件人: "taoshiqian/image_SDR_to_HDR"image_SDR_to_HDR@noreply.github.com; 抄送: "466123174"466123174@qq.com; "Author"author@noreply.github.com; 主题: Re: [taoshiqian/image_SDR_to_HDR] demoTSQall.m运行报错 (#2)

暂未碰到这样的错误。按照原理来看,W来源于I,矩阵维度是相同的,不会出现问题。 进一步探究:

输出I和W的维度看看是否相等?

有更多的报错信息么?

确认所处理的图片合法,是RGB三通道?

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub, or mute the thread.

taoshiqian commented 5 years ago

1.输出I和W的维度,看看是否相等?您可能需要单步debug以获取更多信息。 2.可以处理png 3.难道是环境不同所致?我是MATLAB2018a,跑起来没问题。

taoshiqian commented 5 years ago

我重新commit一些代码,你重新run看看

githubPsearth commented 5 years ago

非常感谢您的回复!我之前用的是2015,换成了2017可以运行了,非常感谢!

---原始邮件--- 发件人: "taoshiqian"notifications@github.com 发送时间: 2019年4月18日(星期四) 下午5:13 收件人: "taoshiqian/image_SDR_to_HDR"image_SDR_to_HDR@noreply.github.com; 抄送: "Author"author@noreply.github.com;"psear"466123174@qq.com; 主题: Re: [taoshiqian/image_SDR_to_HDR] demoTSQall.m运行报错 (#2)

我重新commit一些代码,你重新run看看

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub, or mute the thread.

taoshiqian commented 5 years ago

我重新commit了一些代码和说明,看看对您有没有帮助