2025-06-08 12:48:04 +08:00
|
|
|
|
#include "VrConfig.h"
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
|
|
|
|
using namespace tinyxml2;
|
|
|
|
|
|
|
2025-06-22 14:08:15 +08:00
|
|
|
|
CVrConfig::CVrConfig() : m_pNotify(nullptr)
|
2025-06-08 12:48:04 +08:00
|
|
|
|
{
|
|
|
|
|
|
// 构造函数
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
CVrConfig::~CVrConfig()
|
|
|
|
|
|
{
|
|
|
|
|
|
// 析构函数
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ConfigResult CVrConfig::LoadConfig(const std::string& filePath)
|
|
|
|
|
|
{
|
|
|
|
|
|
ConfigResult result;
|
|
|
|
|
|
|
|
|
|
|
|
// 使用tinyxml2库加载XML文件
|
|
|
|
|
|
XMLDocument doc;
|
|
|
|
|
|
XMLError err = doc.LoadFile(filePath.c_str());
|
|
|
|
|
|
if (err != XML_SUCCESS)
|
|
|
|
|
|
{
|
|
|
|
|
|
std::cerr << "open config file failed: " << filePath << std::endl;
|
|
|
|
|
|
return result;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 获取根元素
|
|
|
|
|
|
XMLElement* root = doc.RootElement();
|
2025-06-28 23:06:09 +08:00
|
|
|
|
if (!root || std::string(root->Name()) != "GrabBagConfig")
|
2025-06-08 12:48:04 +08:00
|
|
|
|
{
|
2025-06-28 23:06:09 +08:00
|
|
|
|
std::cerr << "config file format error: root element is not GrabBagConfig" << std::endl;
|
2025-06-08 12:48:04 +08:00
|
|
|
|
return result;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 解析摄像头列表
|
|
|
|
|
|
XMLElement* camerasElement = root->FirstChildElement("Cameras");
|
|
|
|
|
|
if (camerasElement)
|
|
|
|
|
|
{
|
|
|
|
|
|
XMLElement* cameraElement = camerasElement->FirstChildElement("Camera");
|
|
|
|
|
|
while (cameraElement)
|
|
|
|
|
|
{
|
|
|
|
|
|
DeviceInfo camera;
|
|
|
|
|
|
if (cameraElement->Attribute("name"))
|
|
|
|
|
|
camera.name = cameraElement->Attribute("name");
|
|
|
|
|
|
|
|
|
|
|
|
if (cameraElement->Attribute("ip"))
|
|
|
|
|
|
camera.ip = cameraElement->Attribute("ip");
|
|
|
|
|
|
|
|
|
|
|
|
result.cameraList.push_back(camera);
|
|
|
|
|
|
cameraElement = cameraElement->NextSiblingElement("Camera");
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 解析设备列表
|
|
|
|
|
|
XMLElement* devicesElement = root->FirstChildElement("Devices");
|
|
|
|
|
|
if (devicesElement)
|
|
|
|
|
|
{
|
|
|
|
|
|
XMLElement* deviceElement = devicesElement->FirstChildElement("Device");
|
|
|
|
|
|
while (deviceElement)
|
|
|
|
|
|
{
|
|
|
|
|
|
DeviceInfo device;
|
|
|
|
|
|
if (deviceElement->Attribute("name"))
|
|
|
|
|
|
device.name = deviceElement->Attribute("name");
|
|
|
|
|
|
|
|
|
|
|
|
if (deviceElement->Attribute("ip"))
|
|
|
|
|
|
device.ip = deviceElement->Attribute("ip");
|
|
|
|
|
|
|
|
|
|
|
|
result.deviceList.push_back(device);
|
|
|
|
|
|
deviceElement = deviceElement->NextSiblingElement("Device");
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-06-17 00:37:05 +08:00
|
|
|
|
// 解析算法参数
|
|
|
|
|
|
XMLElement* algoParamsElement = root->FirstChildElement("AlgorithmParams");
|
|
|
|
|
|
if (algoParamsElement)
|
|
|
|
|
|
{
|
|
|
|
|
|
// 解析编织袋参数
|
|
|
|
|
|
XMLElement* bagParamElement = algoParamsElement->FirstChildElement("BagParam");
|
|
|
|
|
|
if (bagParamElement)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (bagParamElement->Attribute("bagL"))
|
|
|
|
|
|
result.algorithmParams.bagParam.bagL = bagParamElement->DoubleAttribute("bagL");
|
|
|
|
|
|
if (bagParamElement->Attribute("bagW"))
|
|
|
|
|
|
result.algorithmParams.bagParam.bagW = bagParamElement->DoubleAttribute("bagW");
|
|
|
|
|
|
if (bagParamElement->Attribute("bagH"))
|
|
|
|
|
|
result.algorithmParams.bagParam.bagH = bagParamElement->DoubleAttribute("bagH");
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-06-23 00:05:19 +08:00
|
|
|
|
// 解析垛参数
|
|
|
|
|
|
XMLElement* pileParamElement = algoParamsElement->FirstChildElement("PileParam");
|
|
|
|
|
|
if (pileParamElement)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (pileParamElement->Attribute("pileL"))
|
|
|
|
|
|
result.algorithmParams.pileParam.pileL = pileParamElement->DoubleAttribute("pileL");
|
|
|
|
|
|
if (pileParamElement->Attribute("pileW"))
|
|
|
|
|
|
result.algorithmParams.pileParam.pileW = pileParamElement->DoubleAttribute("pileW");
|
|
|
|
|
|
if (pileParamElement->Attribute("pileH"))
|
|
|
|
|
|
result.algorithmParams.pileParam.pileH = pileParamElement->DoubleAttribute("pileH");
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-06-17 00:37:05 +08:00
|
|
|
|
// 解析滤波参数
|
|
|
|
|
|
XMLElement* filterParamElement = algoParamsElement->FirstChildElement("FilterParam");
|
|
|
|
|
|
if (filterParamElement)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (filterParamElement->Attribute("continuityTh"))
|
|
|
|
|
|
result.algorithmParams.filterParam.continuityTh = filterParamElement->DoubleAttribute("continuityTh");
|
|
|
|
|
|
if (filterParamElement->Attribute("outlierTh"))
|
|
|
|
|
|
result.algorithmParams.filterParam.outlierTh = filterParamElement->IntAttribute("outlierTh");
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 解析角点特征参数
|
|
|
|
|
|
XMLElement* cornerParamElement = algoParamsElement->FirstChildElement("CornerParam");
|
|
|
|
|
|
if (cornerParamElement)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (cornerParamElement->Attribute("minEndingGap"))
|
|
|
|
|
|
result.algorithmParams.cornerParam.minEndingGap = cornerParamElement->DoubleAttribute("minEndingGap");
|
|
|
|
|
|
if (cornerParamElement->Attribute("scale"))
|
|
|
|
|
|
result.algorithmParams.cornerParam.scale = cornerParamElement->DoubleAttribute("scale");
|
|
|
|
|
|
if (cornerParamElement->Attribute("cornerTh"))
|
|
|
|
|
|
result.algorithmParams.cornerParam.cornerTh = cornerParamElement->DoubleAttribute("cornerTh");
|
|
|
|
|
|
if (cornerParamElement->Attribute("jumpCornerTh_1"))
|
|
|
|
|
|
result.algorithmParams.cornerParam.jumpCornerTh_1 = cornerParamElement->DoubleAttribute("jumpCornerTh_1");
|
|
|
|
|
|
if (cornerParamElement->Attribute("jumpCornerTh_2"))
|
|
|
|
|
|
result.algorithmParams.cornerParam.jumpCornerTh_2 = cornerParamElement->DoubleAttribute("jumpCornerTh_2");
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 解析斜率参数
|
|
|
|
|
|
XMLElement* slopeParamElement = algoParamsElement->FirstChildElement("SlopeParam");
|
|
|
|
|
|
if (slopeParamElement)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (slopeParamElement->Attribute("LSlopeZWin"))
|
|
|
|
|
|
result.algorithmParams.slopeParam.LSlopeZWin = slopeParamElement->DoubleAttribute("LSlopeZWin");
|
|
|
|
|
|
if (slopeParamElement->Attribute("validSlopeH"))
|
|
|
|
|
|
result.algorithmParams.slopeParam.validSlopeH = slopeParamElement->DoubleAttribute("validSlopeH");
|
|
|
|
|
|
if (slopeParamElement->Attribute("minLJumpH"))
|
|
|
|
|
|
result.algorithmParams.slopeParam.minLJumpH = slopeParamElement->DoubleAttribute("minLJumpH");
|
|
|
|
|
|
if (slopeParamElement->Attribute("minEndingGap"))
|
|
|
|
|
|
result.algorithmParams.slopeParam.minEndingGap = slopeParamElement->DoubleAttribute("minEndingGap");
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 解析山谷参数
|
|
|
|
|
|
XMLElement* valleyParamElement = algoParamsElement->FirstChildElement("ValleyParam");
|
|
|
|
|
|
if (valleyParamElement)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (valleyParamElement->Attribute("valleyMinH"))
|
|
|
|
|
|
result.algorithmParams.valleyParam.valleyMinH = valleyParamElement->DoubleAttribute("valleyMinH");
|
|
|
|
|
|
if (valleyParamElement->Attribute("valleyMaxW"))
|
|
|
|
|
|
result.algorithmParams.valleyParam.valleyMaxW = valleyParamElement->DoubleAttribute("valleyMaxW");
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 解析增长参数
|
|
|
|
|
|
XMLElement* growParamElement = algoParamsElement->FirstChildElement("GrowParam");
|
|
|
|
|
|
if (growParamElement)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (growParamElement->Attribute("maxLineSkipNum"))
|
|
|
|
|
|
result.algorithmParams.growParam.maxLineSkipNum = growParamElement->IntAttribute("maxLineSkipNum");
|
|
|
|
|
|
if (growParamElement->Attribute("yDeviation_max"))
|
|
|
|
|
|
result.algorithmParams.growParam.yDeviation_max = growParamElement->DoubleAttribute("yDeviation_max");
|
|
|
|
|
|
if (growParamElement->Attribute("maxSkipDistance"))
|
|
|
|
|
|
result.algorithmParams.growParam.maxSkipDistance = growParamElement->DoubleAttribute("maxSkipDistance");
|
|
|
|
|
|
if (growParamElement->Attribute("zDeviation_max"))
|
|
|
|
|
|
result.algorithmParams.growParam.zDeviation_max = growParamElement->DoubleAttribute("zDeviation_max");
|
|
|
|
|
|
if (growParamElement->Attribute("minLTypeTreeLen"))
|
|
|
|
|
|
result.algorithmParams.growParam.minLTypeTreeLen = growParamElement->DoubleAttribute("minLTypeTreeLen");
|
|
|
|
|
|
if (growParamElement->Attribute("minVTypeTreeLen"))
|
|
|
|
|
|
result.algorithmParams.growParam.minVTypeTreeLen = growParamElement->DoubleAttribute("minVTypeTreeLen");
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-06-28 23:06:09 +08:00
|
|
|
|
// 解析多相机平面校准参数
|
|
|
|
|
|
XMLElement* planeCalibParamsElement = algoParamsElement->FirstChildElement("PlaneCalibParams");
|
|
|
|
|
|
if (planeCalibParamsElement)
|
2025-06-17 00:37:05 +08:00
|
|
|
|
{
|
2025-06-28 23:06:09 +08:00
|
|
|
|
XMLElement* cameraCalibParamElement = planeCalibParamsElement->FirstChildElement("CameraCalibParam");
|
|
|
|
|
|
while (cameraCalibParamElement)
|
|
|
|
|
|
{
|
|
|
|
|
|
VrCameraPlaneCalibParam cameraParam;
|
|
|
|
|
|
|
|
|
|
|
|
// 读取相机基础信息
|
|
|
|
|
|
if (cameraCalibParamElement->Attribute("cameraIndex"))
|
|
|
|
|
|
cameraParam.cameraIndex = cameraCalibParamElement->IntAttribute("cameraIndex");
|
|
|
|
|
|
if (cameraCalibParamElement->Attribute("cameraName"))
|
|
|
|
|
|
cameraParam.cameraName = cameraCalibParamElement->Attribute("cameraName");
|
|
|
|
|
|
if (cameraCalibParamElement->Attribute("isCalibrated"))
|
|
|
|
|
|
cameraParam.isCalibrated = cameraCalibParamElement->BoolAttribute("isCalibrated");
|
|
|
|
|
|
if (cameraCalibParamElement->Attribute("planeHeight"))
|
|
|
|
|
|
cameraParam.planeHeight = cameraCalibParamElement->DoubleAttribute("planeHeight");
|
|
|
|
|
|
|
|
|
|
|
|
// 读取旋转矩阵planeCalib[9] (3x3矩阵)
|
|
|
|
|
|
if (cameraCalibParamElement->Attribute("planeCalib_00"))
|
|
|
|
|
|
cameraParam.planeCalib[0] = cameraCalibParamElement->DoubleAttribute("planeCalib_00");
|
|
|
|
|
|
if (cameraCalibParamElement->Attribute("planeCalib_01"))
|
|
|
|
|
|
cameraParam.planeCalib[1] = cameraCalibParamElement->DoubleAttribute("planeCalib_01");
|
|
|
|
|
|
if (cameraCalibParamElement->Attribute("planeCalib_02"))
|
|
|
|
|
|
cameraParam.planeCalib[2] = cameraCalibParamElement->DoubleAttribute("planeCalib_02");
|
|
|
|
|
|
if (cameraCalibParamElement->Attribute("planeCalib_10"))
|
|
|
|
|
|
cameraParam.planeCalib[3] = cameraCalibParamElement->DoubleAttribute("planeCalib_10");
|
|
|
|
|
|
if (cameraCalibParamElement->Attribute("planeCalib_11"))
|
|
|
|
|
|
cameraParam.planeCalib[4] = cameraCalibParamElement->DoubleAttribute("planeCalib_11");
|
|
|
|
|
|
if (cameraCalibParamElement->Attribute("planeCalib_12"))
|
|
|
|
|
|
cameraParam.planeCalib[5] = cameraCalibParamElement->DoubleAttribute("planeCalib_12");
|
|
|
|
|
|
if (cameraCalibParamElement->Attribute("planeCalib_20"))
|
|
|
|
|
|
cameraParam.planeCalib[6] = cameraCalibParamElement->DoubleAttribute("planeCalib_20");
|
|
|
|
|
|
if (cameraCalibParamElement->Attribute("planeCalib_21"))
|
|
|
|
|
|
cameraParam.planeCalib[7] = cameraCalibParamElement->DoubleAttribute("planeCalib_21");
|
|
|
|
|
|
if (cameraCalibParamElement->Attribute("planeCalib_22"))
|
|
|
|
|
|
cameraParam.planeCalib[8] = cameraCalibParamElement->DoubleAttribute("planeCalib_22");
|
|
|
|
|
|
|
|
|
|
|
|
// 读取逆旋转矩阵invRMatrix[9] (3x3矩阵)
|
|
|
|
|
|
if (cameraCalibParamElement->Attribute("invRMatrix_00"))
|
|
|
|
|
|
cameraParam.invRMatrix[0] = cameraCalibParamElement->DoubleAttribute("invRMatrix_00");
|
|
|
|
|
|
if (cameraCalibParamElement->Attribute("invRMatrix_01"))
|
|
|
|
|
|
cameraParam.invRMatrix[1] = cameraCalibParamElement->DoubleAttribute("invRMatrix_01");
|
|
|
|
|
|
if (cameraCalibParamElement->Attribute("invRMatrix_02"))
|
|
|
|
|
|
cameraParam.invRMatrix[2] = cameraCalibParamElement->DoubleAttribute("invRMatrix_02");
|
|
|
|
|
|
if (cameraCalibParamElement->Attribute("invRMatrix_10"))
|
|
|
|
|
|
cameraParam.invRMatrix[3] = cameraCalibParamElement->DoubleAttribute("invRMatrix_10");
|
|
|
|
|
|
if (cameraCalibParamElement->Attribute("invRMatrix_11"))
|
|
|
|
|
|
cameraParam.invRMatrix[4] = cameraCalibParamElement->DoubleAttribute("invRMatrix_11");
|
|
|
|
|
|
if (cameraCalibParamElement->Attribute("invRMatrix_12"))
|
|
|
|
|
|
cameraParam.invRMatrix[5] = cameraCalibParamElement->DoubleAttribute("invRMatrix_12");
|
|
|
|
|
|
if (cameraCalibParamElement->Attribute("invRMatrix_20"))
|
|
|
|
|
|
cameraParam.invRMatrix[6] = cameraCalibParamElement->DoubleAttribute("invRMatrix_20");
|
|
|
|
|
|
if (cameraCalibParamElement->Attribute("invRMatrix_21"))
|
|
|
|
|
|
cameraParam.invRMatrix[7] = cameraCalibParamElement->DoubleAttribute("invRMatrix_21");
|
|
|
|
|
|
if (cameraCalibParamElement->Attribute("invRMatrix_22"))
|
|
|
|
|
|
cameraParam.invRMatrix[8] = cameraCalibParamElement->DoubleAttribute("invRMatrix_22");
|
|
|
|
|
|
|
|
|
|
|
|
// 添加到结果中
|
|
|
|
|
|
result.algorithmParams.planeCalibParam.cameraCalibParams.push_back(cameraParam);
|
|
|
|
|
|
|
|
|
|
|
|
// 移动到下一个相机配置
|
|
|
|
|
|
cameraCalibParamElement = cameraCalibParamElement->NextSiblingElement("CameraCalibParam");
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 兼容性处理:如果存在旧格式的PlaneCalibParam,转换为新格式
|
|
|
|
|
|
XMLElement* oldPlaneCalibParamElement = algoParamsElement->FirstChildElement("PlaneCalibParam");
|
|
|
|
|
|
if (oldPlaneCalibParamElement && result.algorithmParams.planeCalibParam.cameraCalibParams.empty())
|
|
|
|
|
|
{
|
|
|
|
|
|
VrCameraPlaneCalibParam cameraParam;
|
|
|
|
|
|
cameraParam.cameraIndex = 1; // 默认为第一个相机
|
|
|
|
|
|
cameraParam.cameraName = "默认相机";
|
|
|
|
|
|
cameraParam.isCalibrated = false;
|
2025-06-26 00:40:36 +08:00
|
|
|
|
|
2025-06-28 23:06:09 +08:00
|
|
|
|
if (oldPlaneCalibParamElement->Attribute("planeHeight"))
|
|
|
|
|
|
cameraParam.planeHeight = oldPlaneCalibParamElement->DoubleAttribute("planeHeight");
|
2025-06-26 00:40:36 +08:00
|
|
|
|
|
2025-06-28 23:06:09 +08:00
|
|
|
|
// 读取旋转矩阵
|
|
|
|
|
|
if (oldPlaneCalibParamElement->Attribute("planeCalib_00"))
|
|
|
|
|
|
cameraParam.planeCalib[0] = oldPlaneCalibParamElement->DoubleAttribute("planeCalib_00");
|
|
|
|
|
|
if (oldPlaneCalibParamElement->Attribute("planeCalib_01"))
|
|
|
|
|
|
cameraParam.planeCalib[1] = oldPlaneCalibParamElement->DoubleAttribute("planeCalib_01");
|
|
|
|
|
|
if (oldPlaneCalibParamElement->Attribute("planeCalib_02"))
|
|
|
|
|
|
cameraParam.planeCalib[2] = oldPlaneCalibParamElement->DoubleAttribute("planeCalib_02");
|
|
|
|
|
|
if (oldPlaneCalibParamElement->Attribute("planeCalib_10"))
|
|
|
|
|
|
cameraParam.planeCalib[3] = oldPlaneCalibParamElement->DoubleAttribute("planeCalib_10");
|
|
|
|
|
|
if (oldPlaneCalibParamElement->Attribute("planeCalib_11"))
|
|
|
|
|
|
cameraParam.planeCalib[4] = oldPlaneCalibParamElement->DoubleAttribute("planeCalib_11");
|
|
|
|
|
|
if (oldPlaneCalibParamElement->Attribute("planeCalib_12"))
|
|
|
|
|
|
cameraParam.planeCalib[5] = oldPlaneCalibParamElement->DoubleAttribute("planeCalib_12");
|
|
|
|
|
|
if (oldPlaneCalibParamElement->Attribute("planeCalib_20"))
|
|
|
|
|
|
cameraParam.planeCalib[6] = oldPlaneCalibParamElement->DoubleAttribute("planeCalib_20");
|
|
|
|
|
|
if (oldPlaneCalibParamElement->Attribute("planeCalib_21"))
|
|
|
|
|
|
cameraParam.planeCalib[7] = oldPlaneCalibParamElement->DoubleAttribute("planeCalib_21");
|
|
|
|
|
|
if (oldPlaneCalibParamElement->Attribute("planeCalib_22"))
|
|
|
|
|
|
cameraParam.planeCalib[8] = oldPlaneCalibParamElement->DoubleAttribute("planeCalib_22");
|
|
|
|
|
|
|
|
|
|
|
|
// 读取逆旋转矩阵
|
|
|
|
|
|
if (oldPlaneCalibParamElement->Attribute("invRMatrix_00"))
|
|
|
|
|
|
cameraParam.invRMatrix[0] = oldPlaneCalibParamElement->DoubleAttribute("invRMatrix_00");
|
|
|
|
|
|
if (oldPlaneCalibParamElement->Attribute("invRMatrix_01"))
|
|
|
|
|
|
cameraParam.invRMatrix[1] = oldPlaneCalibParamElement->DoubleAttribute("invRMatrix_01");
|
|
|
|
|
|
if (oldPlaneCalibParamElement->Attribute("invRMatrix_02"))
|
|
|
|
|
|
cameraParam.invRMatrix[2] = oldPlaneCalibParamElement->DoubleAttribute("invRMatrix_02");
|
|
|
|
|
|
if (oldPlaneCalibParamElement->Attribute("invRMatrix_10"))
|
|
|
|
|
|
cameraParam.invRMatrix[3] = oldPlaneCalibParamElement->DoubleAttribute("invRMatrix_10");
|
|
|
|
|
|
if (oldPlaneCalibParamElement->Attribute("invRMatrix_11"))
|
|
|
|
|
|
cameraParam.invRMatrix[4] = oldPlaneCalibParamElement->DoubleAttribute("invRMatrix_11");
|
|
|
|
|
|
if (oldPlaneCalibParamElement->Attribute("invRMatrix_12"))
|
|
|
|
|
|
cameraParam.invRMatrix[5] = oldPlaneCalibParamElement->DoubleAttribute("invRMatrix_12");
|
|
|
|
|
|
if (oldPlaneCalibParamElement->Attribute("invRMatrix_20"))
|
|
|
|
|
|
cameraParam.invRMatrix[6] = oldPlaneCalibParamElement->DoubleAttribute("invRMatrix_20");
|
|
|
|
|
|
if (oldPlaneCalibParamElement->Attribute("invRMatrix_21"))
|
|
|
|
|
|
cameraParam.invRMatrix[7] = oldPlaneCalibParamElement->DoubleAttribute("invRMatrix_21");
|
|
|
|
|
|
if (oldPlaneCalibParamElement->Attribute("invRMatrix_22"))
|
|
|
|
|
|
cameraParam.invRMatrix[8] = oldPlaneCalibParamElement->DoubleAttribute("invRMatrix_22");
|
|
|
|
|
|
|
|
|
|
|
|
result.algorithmParams.planeCalibParam.cameraCalibParams.push_back(cameraParam);
|
2025-06-17 00:37:05 +08:00
|
|
|
|
}
|
2025-06-25 01:37:57 +08:00
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 解析调试参数(在AlgorithmParams外面)
|
|
|
|
|
|
XMLElement* debugParamElement = root->FirstChildElement("DebugParam");
|
|
|
|
|
|
if (debugParamElement)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (debugParamElement->Attribute("enableDebug"))
|
|
|
|
|
|
result.debugParam.enableDebug = debugParamElement->BoolAttribute("enableDebug");
|
|
|
|
|
|
if (debugParamElement->Attribute("savePointCloud"))
|
|
|
|
|
|
result.debugParam.savePointCloud = debugParamElement->BoolAttribute("savePointCloud");
|
|
|
|
|
|
if (debugParamElement->Attribute("saveDebugImage"))
|
|
|
|
|
|
result.debugParam.saveDebugImage = debugParamElement->BoolAttribute("saveDebugImage");
|
|
|
|
|
|
if (debugParamElement->Attribute("printDetailLog"))
|
|
|
|
|
|
result.debugParam.printDetailLog = debugParamElement->BoolAttribute("printDetailLog");
|
|
|
|
|
|
if (debugParamElement->Attribute("debugOutputPath"))
|
|
|
|
|
|
result.debugParam.debugOutputPath = debugParamElement->Attribute("debugOutputPath");
|
2025-06-17 00:37:05 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-14 00:17:41 +08:00
|
|
|
|
// 解析串口配置
|
|
|
|
|
|
XMLElement* serialConfigElement = root->FirstChildElement("SerialConfig");
|
|
|
|
|
|
if (serialConfigElement)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (serialConfigElement->Attribute("portName"))
|
|
|
|
|
|
result.serialConfig.portName = serialConfigElement->Attribute("portName");
|
|
|
|
|
|
if (serialConfigElement->Attribute("baudRate"))
|
|
|
|
|
|
result.serialConfig.baudRate = serialConfigElement->IntAttribute("baudRate");
|
|
|
|
|
|
if (serialConfigElement->Attribute("dataBits"))
|
|
|
|
|
|
result.serialConfig.dataBits = serialConfigElement->IntAttribute("dataBits");
|
|
|
|
|
|
if (serialConfigElement->Attribute("stopBits"))
|
|
|
|
|
|
result.serialConfig.stopBits = serialConfigElement->IntAttribute("stopBits");
|
|
|
|
|
|
if (serialConfigElement->Attribute("parity"))
|
|
|
|
|
|
result.serialConfig.parity = serialConfigElement->IntAttribute("parity");
|
|
|
|
|
|
if (serialConfigElement->Attribute("flowControl"))
|
|
|
|
|
|
result.serialConfig.flowControl = serialConfigElement->IntAttribute("flowControl");
|
|
|
|
|
|
if (serialConfigElement->Attribute("enabled"))
|
|
|
|
|
|
result.serialConfig.enabled = serialConfigElement->BoolAttribute("enabled");
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-06-08 12:48:04 +08:00
|
|
|
|
return result;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool CVrConfig::SaveConfig(const std::string& filePath, ConfigResult& configResult)
|
|
|
|
|
|
{
|
|
|
|
|
|
// 创建XML文档
|
|
|
|
|
|
XMLDocument doc;
|
|
|
|
|
|
|
|
|
|
|
|
// 添加声明
|
|
|
|
|
|
XMLDeclaration* declaration = doc.NewDeclaration("xml version=\"1.0\" encoding=\"UTF-8\"");
|
|
|
|
|
|
doc.InsertFirstChild(declaration);
|
|
|
|
|
|
|
|
|
|
|
|
// 创建根元素
|
2025-06-28 23:06:09 +08:00
|
|
|
|
XMLElement* root = doc.NewElement("GrabBagConfig");
|
2025-06-08 12:48:04 +08:00
|
|
|
|
doc.InsertEndChild(root);
|
|
|
|
|
|
|
|
|
|
|
|
// 添加摄像头列表
|
|
|
|
|
|
XMLElement* camerasElement = doc.NewElement("Cameras");
|
|
|
|
|
|
root->InsertEndChild(camerasElement);
|
|
|
|
|
|
|
|
|
|
|
|
for (const auto& camera : configResult.cameraList)
|
|
|
|
|
|
{
|
|
|
|
|
|
XMLElement* cameraElement = doc.NewElement("Camera");
|
|
|
|
|
|
cameraElement->SetAttribute("name", camera.name.c_str());
|
|
|
|
|
|
cameraElement->SetAttribute("ip", camera.ip.c_str());
|
|
|
|
|
|
camerasElement->InsertEndChild(cameraElement);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 添加设备列表
|
|
|
|
|
|
XMLElement* devicesElement = doc.NewElement("Devices");
|
|
|
|
|
|
root->InsertEndChild(devicesElement);
|
|
|
|
|
|
|
|
|
|
|
|
for (const auto& device : configResult.deviceList)
|
|
|
|
|
|
{
|
|
|
|
|
|
XMLElement* deviceElement = doc.NewElement("Device");
|
|
|
|
|
|
deviceElement->SetAttribute("name", device.name.c_str());
|
|
|
|
|
|
deviceElement->SetAttribute("ip", device.ip.c_str());
|
|
|
|
|
|
devicesElement->InsertEndChild(deviceElement);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-06-22 14:08:15 +08:00
|
|
|
|
// 添加算法参数
|
|
|
|
|
|
XMLElement* algoParamsElement = doc.NewElement("AlgorithmParams");
|
|
|
|
|
|
root->InsertEndChild(algoParamsElement);
|
|
|
|
|
|
|
|
|
|
|
|
// 添加编织袋参数
|
|
|
|
|
|
XMLElement* bagParamElement = doc.NewElement("BagParam");
|
|
|
|
|
|
bagParamElement->SetAttribute("bagL", configResult.algorithmParams.bagParam.bagL);
|
|
|
|
|
|
bagParamElement->SetAttribute("bagW", configResult.algorithmParams.bagParam.bagW);
|
|
|
|
|
|
bagParamElement->SetAttribute("bagH", configResult.algorithmParams.bagParam.bagH);
|
|
|
|
|
|
algoParamsElement->InsertEndChild(bagParamElement);
|
|
|
|
|
|
|
2025-06-23 00:05:19 +08:00
|
|
|
|
// 添加垛参数
|
|
|
|
|
|
XMLElement* pileParamElement = doc.NewElement("PileParam");
|
|
|
|
|
|
pileParamElement->SetAttribute("pileL", configResult.algorithmParams.pileParam.pileL);
|
|
|
|
|
|
pileParamElement->SetAttribute("pileW", configResult.algorithmParams.pileParam.pileW);
|
|
|
|
|
|
pileParamElement->SetAttribute("pileH", configResult.algorithmParams.pileParam.pileH);
|
|
|
|
|
|
algoParamsElement->InsertEndChild(pileParamElement);
|
|
|
|
|
|
|
2025-06-22 14:08:15 +08:00
|
|
|
|
// 添加滤波参数
|
|
|
|
|
|
XMLElement* filterParamElement = doc.NewElement("FilterParam");
|
|
|
|
|
|
filterParamElement->SetAttribute("continuityTh", configResult.algorithmParams.filterParam.continuityTh);
|
|
|
|
|
|
filterParamElement->SetAttribute("outlierTh", configResult.algorithmParams.filterParam.outlierTh);
|
|
|
|
|
|
algoParamsElement->InsertEndChild(filterParamElement);
|
|
|
|
|
|
|
|
|
|
|
|
// 添加角点特征参数
|
|
|
|
|
|
XMLElement* cornerParamElement = doc.NewElement("CornerParam");
|
|
|
|
|
|
cornerParamElement->SetAttribute("minEndingGap", configResult.algorithmParams.cornerParam.minEndingGap);
|
|
|
|
|
|
cornerParamElement->SetAttribute("scale", configResult.algorithmParams.cornerParam.scale);
|
|
|
|
|
|
cornerParamElement->SetAttribute("cornerTh", configResult.algorithmParams.cornerParam.cornerTh);
|
|
|
|
|
|
cornerParamElement->SetAttribute("jumpCornerTh_1", configResult.algorithmParams.cornerParam.jumpCornerTh_1);
|
|
|
|
|
|
cornerParamElement->SetAttribute("jumpCornerTh_2", configResult.algorithmParams.cornerParam.jumpCornerTh_2);
|
|
|
|
|
|
algoParamsElement->InsertEndChild(cornerParamElement);
|
|
|
|
|
|
|
|
|
|
|
|
// 添加斜率参数
|
|
|
|
|
|
XMLElement* slopeParamElement = doc.NewElement("SlopeParam");
|
|
|
|
|
|
slopeParamElement->SetAttribute("LSlopeZWin", configResult.algorithmParams.slopeParam.LSlopeZWin);
|
|
|
|
|
|
slopeParamElement->SetAttribute("validSlopeH", configResult.algorithmParams.slopeParam.validSlopeH);
|
|
|
|
|
|
slopeParamElement->SetAttribute("minLJumpH", configResult.algorithmParams.slopeParam.minLJumpH);
|
|
|
|
|
|
slopeParamElement->SetAttribute("minEndingGap", configResult.algorithmParams.slopeParam.minEndingGap);
|
|
|
|
|
|
algoParamsElement->InsertEndChild(slopeParamElement);
|
|
|
|
|
|
|
|
|
|
|
|
// 添加山谷参数
|
|
|
|
|
|
XMLElement* valleyParamElement = doc.NewElement("ValleyParam");
|
|
|
|
|
|
valleyParamElement->SetAttribute("valleyMinH", configResult.algorithmParams.valleyParam.valleyMinH);
|
|
|
|
|
|
valleyParamElement->SetAttribute("valleyMaxW", configResult.algorithmParams.valleyParam.valleyMaxW);
|
|
|
|
|
|
algoParamsElement->InsertEndChild(valleyParamElement);
|
|
|
|
|
|
|
|
|
|
|
|
// 添加增长参数
|
|
|
|
|
|
XMLElement* growParamElement = doc.NewElement("GrowParam");
|
|
|
|
|
|
growParamElement->SetAttribute("maxLineSkipNum", configResult.algorithmParams.growParam.maxLineSkipNum);
|
|
|
|
|
|
growParamElement->SetAttribute("yDeviation_max", configResult.algorithmParams.growParam.yDeviation_max);
|
|
|
|
|
|
growParamElement->SetAttribute("maxSkipDistance", configResult.algorithmParams.growParam.maxSkipDistance);
|
|
|
|
|
|
growParamElement->SetAttribute("zDeviation_max", configResult.algorithmParams.growParam.zDeviation_max);
|
|
|
|
|
|
growParamElement->SetAttribute("minLTypeTreeLen", configResult.algorithmParams.growParam.minLTypeTreeLen);
|
|
|
|
|
|
growParamElement->SetAttribute("minVTypeTreeLen", configResult.algorithmParams.growParam.minVTypeTreeLen);
|
|
|
|
|
|
algoParamsElement->InsertEndChild(growParamElement);
|
|
|
|
|
|
|
2025-06-28 23:06:09 +08:00
|
|
|
|
// 添加多相机平面校准参数
|
|
|
|
|
|
XMLElement* planeCalibParamsElement = doc.NewElement("PlaneCalibParams");
|
2025-06-26 00:40:36 +08:00
|
|
|
|
|
2025-06-28 23:06:09 +08:00
|
|
|
|
for (const auto& cameraParam : configResult.algorithmParams.planeCalibParam.cameraCalibParams)
|
|
|
|
|
|
{
|
|
|
|
|
|
XMLElement* cameraCalibParamElement = doc.NewElement("CameraCalibParam");
|
|
|
|
|
|
cameraCalibParamElement->SetAttribute("cameraIndex", cameraParam.cameraIndex);
|
|
|
|
|
|
cameraCalibParamElement->SetAttribute("cameraName", cameraParam.cameraName.c_str());
|
|
|
|
|
|
cameraCalibParamElement->SetAttribute("isCalibrated", cameraParam.isCalibrated);
|
|
|
|
|
|
cameraCalibParamElement->SetAttribute("planeHeight", cameraParam.planeHeight);
|
|
|
|
|
|
|
|
|
|
|
|
// 保存旋转矩阵planeCalib[9] (3x3矩阵)
|
|
|
|
|
|
cameraCalibParamElement->SetAttribute("planeCalib_00", cameraParam.planeCalib[0]);
|
|
|
|
|
|
cameraCalibParamElement->SetAttribute("planeCalib_01", cameraParam.planeCalib[1]);
|
|
|
|
|
|
cameraCalibParamElement->SetAttribute("planeCalib_02", cameraParam.planeCalib[2]);
|
|
|
|
|
|
cameraCalibParamElement->SetAttribute("planeCalib_10", cameraParam.planeCalib[3]);
|
|
|
|
|
|
cameraCalibParamElement->SetAttribute("planeCalib_11", cameraParam.planeCalib[4]);
|
|
|
|
|
|
cameraCalibParamElement->SetAttribute("planeCalib_12", cameraParam.planeCalib[5]);
|
|
|
|
|
|
cameraCalibParamElement->SetAttribute("planeCalib_20", cameraParam.planeCalib[6]);
|
|
|
|
|
|
cameraCalibParamElement->SetAttribute("planeCalib_21", cameraParam.planeCalib[7]);
|
|
|
|
|
|
cameraCalibParamElement->SetAttribute("planeCalib_22", cameraParam.planeCalib[8]);
|
|
|
|
|
|
|
|
|
|
|
|
// 保存逆旋转矩阵invRMatrix[9] (3x3矩阵)
|
|
|
|
|
|
cameraCalibParamElement->SetAttribute("invRMatrix_00", cameraParam.invRMatrix[0]);
|
|
|
|
|
|
cameraCalibParamElement->SetAttribute("invRMatrix_01", cameraParam.invRMatrix[1]);
|
|
|
|
|
|
cameraCalibParamElement->SetAttribute("invRMatrix_02", cameraParam.invRMatrix[2]);
|
|
|
|
|
|
cameraCalibParamElement->SetAttribute("invRMatrix_10", cameraParam.invRMatrix[3]);
|
|
|
|
|
|
cameraCalibParamElement->SetAttribute("invRMatrix_11", cameraParam.invRMatrix[4]);
|
|
|
|
|
|
cameraCalibParamElement->SetAttribute("invRMatrix_12", cameraParam.invRMatrix[5]);
|
|
|
|
|
|
cameraCalibParamElement->SetAttribute("invRMatrix_20", cameraParam.invRMatrix[6]);
|
|
|
|
|
|
cameraCalibParamElement->SetAttribute("invRMatrix_21", cameraParam.invRMatrix[7]);
|
|
|
|
|
|
cameraCalibParamElement->SetAttribute("invRMatrix_22", cameraParam.invRMatrix[8]);
|
|
|
|
|
|
|
|
|
|
|
|
planeCalibParamsElement->InsertEndChild(cameraCalibParamElement);
|
|
|
|
|
|
}
|
2025-06-26 00:40:36 +08:00
|
|
|
|
|
2025-06-28 23:06:09 +08:00
|
|
|
|
algoParamsElement->InsertEndChild(planeCalibParamsElement);
|
2025-06-22 14:08:15 +08:00
|
|
|
|
|
2025-06-25 01:37:57 +08:00
|
|
|
|
// 添加调试参数(在AlgorithmParams外面)
|
|
|
|
|
|
XMLElement* debugParamElement = doc.NewElement("DebugParam");
|
|
|
|
|
|
debugParamElement->SetAttribute("enableDebug", configResult.debugParam.enableDebug);
|
|
|
|
|
|
debugParamElement->SetAttribute("savePointCloud", configResult.debugParam.savePointCloud);
|
|
|
|
|
|
debugParamElement->SetAttribute("saveDebugImage", configResult.debugParam.saveDebugImage);
|
|
|
|
|
|
debugParamElement->SetAttribute("printDetailLog", configResult.debugParam.printDetailLog);
|
|
|
|
|
|
debugParamElement->SetAttribute("debugOutputPath", configResult.debugParam.debugOutputPath.c_str());
|
|
|
|
|
|
root->InsertEndChild(debugParamElement);
|
2025-07-14 00:17:41 +08:00
|
|
|
|
|
|
|
|
|
|
// 添加串口配置
|
|
|
|
|
|
XMLElement* serialConfigElement = doc.NewElement("SerialConfig");
|
|
|
|
|
|
serialConfigElement->SetAttribute("portName", configResult.serialConfig.portName.c_str());
|
|
|
|
|
|
serialConfigElement->SetAttribute("baudRate", configResult.serialConfig.baudRate);
|
|
|
|
|
|
serialConfigElement->SetAttribute("dataBits", configResult.serialConfig.dataBits);
|
|
|
|
|
|
serialConfigElement->SetAttribute("stopBits", configResult.serialConfig.stopBits);
|
|
|
|
|
|
serialConfigElement->SetAttribute("parity", configResult.serialConfig.parity);
|
|
|
|
|
|
serialConfigElement->SetAttribute("flowControl", configResult.serialConfig.flowControl);
|
|
|
|
|
|
serialConfigElement->SetAttribute("enabled", configResult.serialConfig.enabled);
|
|
|
|
|
|
root->InsertEndChild(serialConfigElement);
|
2025-06-25 01:37:57 +08:00
|
|
|
|
|
2025-06-08 12:48:04 +08:00
|
|
|
|
// 保存到文件
|
|
|
|
|
|
XMLError err = doc.SaveFile(filePath.c_str());
|
|
|
|
|
|
if (err != XML_SUCCESS)
|
|
|
|
|
|
{
|
|
|
|
|
|
std::cerr << "无法保存配置文件: " << filePath << std::endl;
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-06-22 14:08:15 +08:00
|
|
|
|
// 触发配置改变通知
|
|
|
|
|
|
if (m_pNotify)
|
|
|
|
|
|
{
|
|
|
|
|
|
m_pNotify->OnConfigChanged(configResult);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-06-08 12:48:04 +08:00
|
|
|
|
return true;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-06-22 14:08:15 +08:00
|
|
|
|
// 设置配置改变通知回调
|
|
|
|
|
|
void CVrConfig::SetConfigChangeNotify(IVrConfigChangeNotify* notify)
|
|
|
|
|
|
{
|
|
|
|
|
|
m_pNotify = notify;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-06-08 12:48:04 +08:00
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @brief 创建实例
|
|
|
|
|
|
* @return 实例
|
|
|
|
|
|
*/
|
|
|
|
|
|
bool IVrConfig::CreateInstance(IVrConfig** ppVrConfig)
|
|
|
|
|
|
{
|
|
|
|
|
|
*ppVrConfig = new CVrConfig() ;
|
|
|
|
|
|
return *ppVrConfig != nullptr;
|
|
|
|
|
|
}
|