代码拉取完成,页面将自动刷新
同步操作将从 OpenRA中文社区/索引化素材工具 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#include <QApplication>
#include <opencv2/opencv.hpp>
#include <palette/WWClassicVGAPalette.h>
#include <converter/FrameConverter.h>
#include <shp/Shp.h>
#include <PaletteShower.h>
#include <IndexedShapeShower.h>
using namespace std;
using namespace cv;
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
auto pReader = WWClassicVGAPaletteReader();
auto pal = pReader.ReadFormFile(R"(C:\Users\Castle\Desktop\unittem.pal)");
auto cdc = std::make_shared<EulerColorDiffCalc>();
auto converter = FrameConverter(pal, cdc);
auto img = cv::imread(R"(C:\Users\Castle\Desktop\ark_icon.png)", cv::IMREAD_UNCHANGED);
cvtColor(img, img, cv::COLOR_BGRA2RGBA);
auto data = img.data;
auto w = img.cols;
auto h = img.rows;
auto out = Uint8Seq(w * h);
converter.Convert(data, w * h, FrameConverter::ImageDataType::RGBA, out);
auto frameCount = 1;
auto shp = make_shared<Shp>();
shp->header.height = h;
shp->header.width = w;
shp->header.frameTotal = frameCount;
shp->frames.reserve(frameCount);
shp->frames.emplace_back(Shp::ShpFrame());
shp->frames[0].width = w;
shp->frames[0].height = h;
shp->frames[0].x = 0;
shp->frames[0].y = 0;
shp->frames[0].data = make_shared<Uint8Seq>(w * h);
shp->frames[0].data->swap(out);
shp->Write(R"(C:\Users\Castle\Desktop\c.shp)");
auto w1 = new PaletteShower();
w1->SetPalette(pal);
w1->show();
auto w2 = new IndexedShapeShower(pal);
w2->SetShp(shp);
w2->show();
return QApplication::exec();
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。