color-interpolated 二维三角形的 CImg 问题
CImg problem with color-interpolated 2D triangle
我觉得我在这里遗漏了一些明显的东西。
我无法让 CImg 的 color-interpolated 二维三角形按预期工作。
更令人困惑的是,它在我的系统版本 CImg (cimg_version 245) 和最新的 Github (cimg_version 300) 中表现不同。
如果我绘制一个简单的实心三角形,一切都会按预期进行。
如果我为每个顶点指定颜色,则根据我使用的 CImg 版本会有所不同:
cimg_version 245:
插值在一定程度上起作用,但对于大于 0 的值,颜色通道被限制为 255。
您可以通过比较标题为“CImg 版本:245”的图像中的中心三角形和直角三角形来看到这一点。
中心图像从 {0, 0, 0} 渐变到 {255, 255, 255}
而右图从 {100, 100, 100} 变为 {255, 255, 255}。
cimg_version300:
在此版本中,我无法进行任何插值工作。
那么,我是不是缺少启用插值的设置,还是应该提交错误报告?
#include <iostream>
#include <stdio.h>
#include "CImg.h"
using namespace cimg_library;
#define TITLE_LEN 100
int main() {
char title [TITLE_LEN];
snprintf(title, TITLE_LEN, "CImg version: %d", cimg_version);
std::cout << title << "\n";
CImg<unsigned char> image(600, 200, 1, 3, 0);
CImgDisplay main_disp(image, title);
const unsigned char black[3] = {0, 0, 0};
const unsigned char grey[3] = {100, 100, 100};
const unsigned char white[3] = {255, 255, 255};
// Left
image.draw_triangle(100, 10, 10, 190, 190, 190, grey);
// Center
image.draw_triangle(300, 10, 210, 190, 390, 190, white, black, white);
// Right
image.draw_triangle(500, 10, 410, 190, 590, 190, white, grey, white);
image.display(main_disp);
while (!main_disp.is_closed()) {
main_disp.wait();
}
return 0;
}
[编辑]
忘了包括我在 运行 上的内容:
$ lsb_release -a
LSB Version: core-11.1.0ubuntu2-noarch:printing-11.1.0ubuntu2-noarch:security-11.1.0ubuntu2-noarch
Distributor ID: Ubuntu
Description: Ubuntu 20.04.3 LTS
Release: 20.04
Codename: focal
$ uname -a
Linux lapdancer 5.4.0-89-generic #100-Ubuntu SMP Fri Sep 24 14:50:10 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux
$ g++ -v
Using built-in specs.
COLLECT_GCC=g++
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper
OFFLOAD_TARGET_NAMES=nvptx-none:hsa
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.3.0-17ubuntu1~20.04' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-9-HskZEa/gcc-9-9.3.0/debian/tmp-nvptx/usr,hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 9.3.0 (Ubuntu 9.3.0-17ubuntu1~20.04)
这里是 CImg 的开发者。
它看起来确实像一个错误。我会尽快修复它。
谢谢。
当您遇到这种奇怪的行为时,请不要犹豫,在我们的 github 网站 (https://github.com/dtschump/CImg/issues) 上提出问题。
编辑 :现在应该用 github.com/dtschump/CImg/issues/332 修复这个问题。新版预发布已在CImg官网推送
我觉得我在这里遗漏了一些明显的东西。
我无法让 CImg 的 color-interpolated 二维三角形按预期工作。 更令人困惑的是,它在我的系统版本 CImg (cimg_version 245) 和最新的 Github (cimg_version 300) 中表现不同。
如果我绘制一个简单的实心三角形,一切都会按预期进行。 如果我为每个顶点指定颜色,则根据我使用的 CImg 版本会有所不同:
cimg_version 245: 插值在一定程度上起作用,但对于大于 0 的值,颜色通道被限制为 255。 您可以通过比较标题为“CImg 版本:245”的图像中的中心三角形和直角三角形来看到这一点。 中心图像从 {0, 0, 0} 渐变到 {255, 255, 255} 而右图从 {100, 100, 100} 变为 {255, 255, 255}。
cimg_version300: 在此版本中,我无法进行任何插值工作。
那么,我是不是缺少启用插值的设置,还是应该提交错误报告?
#include <iostream>
#include <stdio.h>
#include "CImg.h"
using namespace cimg_library;
#define TITLE_LEN 100
int main() {
char title [TITLE_LEN];
snprintf(title, TITLE_LEN, "CImg version: %d", cimg_version);
std::cout << title << "\n";
CImg<unsigned char> image(600, 200, 1, 3, 0);
CImgDisplay main_disp(image, title);
const unsigned char black[3] = {0, 0, 0};
const unsigned char grey[3] = {100, 100, 100};
const unsigned char white[3] = {255, 255, 255};
// Left
image.draw_triangle(100, 10, 10, 190, 190, 190, grey);
// Center
image.draw_triangle(300, 10, 210, 190, 390, 190, white, black, white);
// Right
image.draw_triangle(500, 10, 410, 190, 590, 190, white, grey, white);
image.display(main_disp);
while (!main_disp.is_closed()) {
main_disp.wait();
}
return 0;
}
[编辑] 忘了包括我在 运行 上的内容:
$ lsb_release -a
LSB Version: core-11.1.0ubuntu2-noarch:printing-11.1.0ubuntu2-noarch:security-11.1.0ubuntu2-noarch
Distributor ID: Ubuntu
Description: Ubuntu 20.04.3 LTS
Release: 20.04
Codename: focal
$ uname -a
Linux lapdancer 5.4.0-89-generic #100-Ubuntu SMP Fri Sep 24 14:50:10 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux
$ g++ -v
Using built-in specs.
COLLECT_GCC=g++
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper
OFFLOAD_TARGET_NAMES=nvptx-none:hsa
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.3.0-17ubuntu1~20.04' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-9-HskZEa/gcc-9-9.3.0/debian/tmp-nvptx/usr,hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 9.3.0 (Ubuntu 9.3.0-17ubuntu1~20.04)
这里是 CImg 的开发者。 它看起来确实像一个错误。我会尽快修复它。 谢谢。 当您遇到这种奇怪的行为时,请不要犹豫,在我们的 github 网站 (https://github.com/dtschump/CImg/issues) 上提出问题。
编辑 :现在应该用 github.com/dtschump/CImg/issues/332 修复这个问题。新版预发布已在CImg官网推送