Last active
February 20, 2017 09:19
-
-
Save dahtah/8ead764942819c5ab3dd76309d67b12c to your computer and use it in GitHub Desktop.
problem with float-valued TIFF in CImg
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "CImg/CImg.h" | |
using namespace cimg_library; | |
int main() | |
{ | |
CImg<double> img1("float.tif"); | |
CImg<double> img2("integer.tif"); | |
CImgList<double> L(img1,img2); | |
L.display(); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment