gpt4 book ai didi

c++ - 如何以十六进制颜色(6digit)输出图像每个像素的所有颜色

转载 作者:行者123 更新时间:2023-11-28 05:12:48 25 4
gpt4 key购买 nike

如何使用 C++ 以十六进制代码(例如 (#FFFFFF))打印图像中的所有颜色?我需要什么样的库才能逐像素提取所有颜色?以及如何使用该库编写代码以逐个循环到所有像素?抱歉我的英语不好。谢谢。

最佳答案

如果我可以大胆地引用艾萨克·牛顿爵士的话,将图像像素转储为十六进制的最简单方法是“站在巨人的肩膀上”。在这种情况下,巨人ImageMagick,它安装在大多数 Linux 发行版上并且免费提供,适用于 macOS 和 Windows。

在命令行中,只需键入:

convert picture.jpg txt:

输出

# ImageMagick pixel enumeration: 300,168,65535,srgb
0,0: (64507,56283,34952) #FBDB88 srgb(251,219,136)
1,0: (65535,58596,37779) #FFE493 srgb(255,228,147)
2,0: (65535,56026,36237) #FFDA8D srgb(255,218,141)
3,0: (62708,51400,33153) #F4C881 srgb(244,200,129)
4,0: (62965,49858,33153) #F5C281 srgb(245,194,129)
5,0: (63222,48830,33153) #F6BE81 srgb(246,190,129)
6,0: (63479,48316,33924) #F7BC84 srgb(247,188,132)
7,0: (64250,48830,34952) #FABE88 srgb(250,190,136)

第二个最简单的选项是CImg C++ 库,您可以从here 获得它。 .我相信它比 OpenCV 简单得多,例如,在 Raspberry Pi 上,它需要大约 1GB 的空间和一个多小时的构建时间,而 CImg 是一个单独的 header - 仅包含在代码中的文件,无需安装任何库,可以满足您的要求。

////////////////////////////////////////////////////////////////////////////////
// main.cpp
//
// CImg example of dumping pixels in hex
//
// Build with: g++-6 -std=c++11 main.cpp -lpng -lz -o main
////////////////////////////////////////////////////////////////////////////////
#include <iostream>
#include <cstdlib>

#define cimg_use_png // Do this if you want CImg to process PNGs itself without resorting to ImageMagick
#define cimg_use_jpeg // Do this if you want CImg to process JPEGs itself without resorting to ImageMagick
#define cimg_use_tiff // Do this if you want CImg to process TIFFs itself without resorting to ImageMagick
#define cimg_use_curl // Do this if you want CImg to be able to load images via a URL
#define cimg_display 0 // Do this if you don't need a GUI and don't want to link to GDI32 or X11
#include "CImg.h"

using namespace cimg_library;
using namespace std;

int main() {
// Load image
CImg<unsigned char> img("input.png");

// Get width, height, number of channels
int w=img.width();
int h=img.height();
int c=img.spectrum();
cout << "Dimensions: " << w << "x" << h << " " << c << " channels" <<endl;

// Dump all pixels
for(int y=0;y<h;y++){
for(int x=0;x<w;x++){
char hex[16];
sprintf(hex,"#%02x%02x%02x",img(x,y,0),img(x,y,1),img(x,y,2));
cout << y << "," << x << " " << hex << endl;
}
}
}

我们可以通过使用 ImageMagick 从红蓝色创建一个小的渐变图像来测试它,如下所示:

convert -size 1x10 gradient:red-blue input.png

这里放大了:

enter image description here

并像这样运行程序 - 希望您能看到十六进制从 ff0000(全红色)到 0000ff(全蓝色):

./main

示例输出

Dimensions: 1x10 3 channels
0,0 #ff0000
1,0 #8d0072
2,0 #1c00e3
3,0 #aa0055
4,0 #3800c7
5,0 #c70038
6,0 #5500aa
7,0 #e3001c
8,0 #72008d
9,0 #0000ff

关于c++ - 如何以十六进制颜色(6digit)输出图像每个像素的所有颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43197784/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com