vcpkg/scripts/test_ports/vcpkg-ci-vxl/project/main.cpp

10 lines
201 B
C++

//#include <vxl_config.h>
#include <vil/vil_rgb.h>
#include <vil/vil_load.h>
#include <vil/vil_image_view.h>
int main()
{
vil_image_view<vil_rgb<vxl_byte> > img = vil_load("foo.tiff");
return 0;
}