tiff图像不被cimg识别

时间:2013-09-11 09:09:59

标签: c++ png tiff cimg phash

我正在使用pHash来分析使用cimg的图像,我无法加载和分析tiff图像或pngs尽管我有libpng12.dll,libpng.lib,libtiff3.dll和libtiff.lib,它们支持这些文件。当我将一个pHash函数传递给tiff图像时,它并不认为它是一个tif,并继续尝试用magick ++加载它,我不想使用magick ++。

你可以帮我弄清楚我哪里出错吗?

在调试完所有内容后......我意识到图像没有通过“if(tiff)”,因此没有做任何事情。

这里是检查文件是否为tiff的代码:

TIFF *tif = TIFFOpen(filename,"r");
      if (tif) {
        unsigned int nb_images = 0;
        do ++nb_images; while (TIFFReadDirectory(tif));
        if (nfirst_frame>=nb_images || (nlast_frame!=~0U && nlast_frame>=nb_images))
          cimg::warn(_cimg_instance
                     "load_tiff() : File '%s' contains %u image(s) while specified frame range is [%u,%u] (step %u).",
                     cimg_instance,
                     filename,nb_images,nfirst_frame,nlast_frame,nstep_frame);

        if (nfirst_frame>=nb_images) return assign();
        if (nlast_frame>=nb_images) nlast_frame = nb_images-1;
        TIFFSetDirectory(tif,0);
        CImg<T> frame;
        for (unsigned int l = nfirst_frame; l<=nlast_frame; l+=nstep_frame) {
          frame._load_tiff(tif,l);
          if (l==nfirst_frame) assign(frame._width,frame._height,1+(nlast_frame-nfirst_frame)/nstep_frame,frame._spectrum);
          if (frame._width>_width || frame._height>_height || frame._spectrum>_spectrum)
            resize(cimg::max(frame._width,_width),cimg::max(frame._height,_height),-100,cimg::max(frame._spectrum,_spectrum),0);
          draw_image(0,0,(l-nfirst_frame)/nstep_frame,frame);
        }
        TIFFClose(tif);

0 个答案:

没有答案