Como verificar se libpng e png ++ estão instalados

0

Como posso verificar se png ++ e libpng estão instalados no Ubuntu? Estou tentando compilar este código link e o readme diz que eu preciso de libpng e png ++

Eu segui as instruções para instalar os dois, mas estou recebendo um erro

/home/usr/spsstereo/spsstereo_main.cpp:22:25: fatal error: png++/png.hpp: No such file or directory
 #include <png++/png.hpp>
                         ^
compilation terminated.
make[2]: *** [CMakeFiles/spsstereo.dir/spsstereo_main.o] Error 1
make[1]: *** [CMakeFiles/spsstereo.dir/all] Error 2

Estou achando que o png ++ não está instalado? Como faço para verificar?

## SPS-Stereo: Slanted Plane Smoothing Stereo

SPS-Stereo is a dense stereo method employing a slanted plane model. It jointly estimates a superpixel segmentation, boundry labels (such as occlusion boundaries), and a dense depth estimate from a pair of stereo images.

**Citation**  

    @inproceedings{Yamaguchi14,
    author = {Koichiro Yamaguchi and David McAllester and Raquel Urtasun},
    title = {Efficient Joint Segmentation, Occlusion Labeling, Stereo and Flow Estimation},
    booktitle = {ECCV},
    year = {2014}
    }


### Building SPS-Stereo

1. Prerequisites
    * [libpng](http://www.libpng.org/pub/png/libpng.html)
    * [png++](http://www.nongnu.org/pngpp/)
2. Building
    1. type 'cmake .'
    2. type 'make'


### Usage of demo code

First, download KITTI stereo/flow dataset from [KITTI Vision Benchmark Suite homepage](http://www.cvlibs.net/datasets/kitti/eval_stereo_flow.php?benchmark=stereo) and extract it.

Run SPS-Stereo  
'> ./spsstereo data_stereo_flow/training/image_0/000000_10.png data_stereo_flow/training/image_1/000000_10.png'
    
por Upvotes All Downvoted Posts 02.08.2016 / 18:14

1 resposta

0

Desde que o comentário acima de @steeldriver funcionou para mim com o mesmo erro, torná-lo uma resposta para que as pessoas possam encontrá-lo facilmente.

'No Ubuntu, os cabeçalhos e bibliotecas de desenvolvimento são geralmente empacotados separadamente das bibliotecas de tempo de execução: neste caso, você provavelmente precisará do libpng ++ - dev'

    
por Raja Raghudeep Emani 03.03.2017 / 10:13