Questions et réponses pour le cimg :
La bibliothèque CIMG est une petite et open opinale, C ++ Toolkit pour le traitement de l'image.
7
votes
Comment obtenir la valeur RVB par CIMG?
CImg<unsigned char> src("image.jpg"); int width = src.width(); int height = src.height(); unsigned char* ptr = src.data(10,10); How can I get rgb from ptr? ...
c++
image-processing
cimg
0 commentaire(s)