使用Lightroom我知道如何将相机配置文件(* .dcp文件)应用于我的* .DNG图像。
我想在我正在编写的应用程序中执行相同操作,因此我想一个好的起点是将此功能附加到dng_validate.exe应用程序。
所以我开始添加:
#include "dng_camera_profile.h"
然后补充说:
static dng_string gDumpDCP;
并将以下内容添加到错误打印中:
"-dcp <file> Load camera profile from <file>.dcp\"\n"
然后我添加了从cli读取dcp的函数:
else if (option.Matches("dcp", true))
{
gDumpDCP.Clear();
if (index + 1 < argc)
{
gDumpDCP.Set(argv[++index]);
}
if (gDumpDCP.IsEmpty() || gDumpDCP.StartsWith("-"))
{
fprintf(stderr, "*** Missing file name after -dcp\n");
return 1;
}
if (!gDumpDCP.EndsWith(".dcp"))
{
gDumpDCP.Append(".dcp");
}
}
然后我从磁盘加载配置文件[第421行]:
if (gDumpTIF.NotEmpty ())
{
dng_camera_profile profile;
if (gDumpDCP.NotEmpty())
{
dng_file_stream inStream(gDumpDCP.Get());
profile.ParseExtended(inStream);
}
// Render final image.
.... rest of code as it was
那么我现在如何使用配置文件数据来校正渲染并写入校正后的图像?
答案 0 :(得分:1)
您需要使用negative->AddProfile(profile);
将个人资料添加到否定内容。
答案 1 :(得分:1)
所以在玩了几天之后,我现在找到了解决方案。实际上,负片可以有多个摄像机配置文件。因此,使用negative->AddProfile(profile)
,您只需添加一个。但如果它不是第一个配置文件,那就不会被使用!因此,我们首先需要清理配置文件,然后添加一个。
AutoPtr<dng_camera_profile> profile(new dng_camera_profile);
if (gDumpDCP.NotEmpty())
{
negative->ClearProfiles();
dng_file_stream inStream(gDumpDCP.Get());
profile->ParseExtended(inStream);
profile->SetWasReadFromDNG();
negative->AddProfile(profile);
printf("Profile count: \"%d\"\n", negative->ProfileCount()); // will be 1 now!
}
正确获取图像的下一步是获得正确的白平衡。这可以在相机中或之后完成。对于我使用4种不同相机的应用,使用后续白平衡校正时效果最佳。所以我使用Lightroom找到了4对(温度,色调)。
问题是如何在dng_validate.exe程序中添加这些值。我是这样做的:
#include "dng_temperature.h"
if (gTemp != NULL && gTint != NULL)
{
dng_temperature temperature(gTemp, gTint);
render.SetWhiteXY(temperature.Get_xy_coord());
}
生成的图像与Lightroom结果略有不同,但足够接近。相机与相机的差异现在也消失了! :)