opencv学习(一) 作者: BeefLiu 时间: 2026-04-07 分类: 编程记录,C++ 评论 图像创建 CV_8UC1 : 8位无符号单通道(灰度图) CV_8UC3 : 8位无符号三通道(彩色图,BGR顺序) CV_32FC1 : 32位浮点单通道(用于深度图、特征图等) CV_8UC4 : More...
nlohmann::json使用 作者: BeefLiu 时间: 2026-04-03 分类: 编程记录,C++ 评论 #include <nlohmann/json.hpp> #include <iostream> #include <string> struct Person { std::string name; std::string More...