1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271
|
/****************************************************************************
*
* ViSP, open source Visual Servoing Platform software.
* Copyright (C) 2005 - 2023 by Inria. All rights reserved.
*
* This software is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* See the file LICENSE.txt at the root directory of this source
* distribution for additional information about the GNU GPL.
*
* For using ViSP with software that can not be combined with the GNU
* GPL, please contact Inria about acquiring a ViSP Professional
* Edition License.
*
* See https://visp.inria.fr for more information.
*
* This software was developed at:
* Inria Rennes - Bretagne Atlantique
* Campus Universitaire de Beaulieu
* 35042 Rennes Cedex
* France
*
* If you have questions regarding the use of this file, please contact
* Inria at visp@inria.fr
*
* This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
* WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
* Description:
* Test vpXmlParserCamera parse / save.
*
*****************************************************************************/
/*!
\file testXmlParserCamera.cpp
Test vpXmlParserCamera parse / save.
*/
#include <visp3/core/vpIoTools.h>
#include <visp3/core/vpXmlParserCamera.h>
int main()
{
#if defined(_WIN32)
std::string tmp_dir = "C:/temp/";
#else
std::string tmp_dir = "/tmp/";
#endif
// Get the user login name
std::string username;
vpIoTools::getUserName(username);
tmp_dir += username + "/test_xml_parser_camera/";
vpIoTools::remove(tmp_dir);
std::cout << "Create: " << tmp_dir << std::endl;
vpIoTools::makeDirectory(tmp_dir);
{
std::cout << "-- Test to save/load one single camera without distortion in a single file" << std::endl;
vpCameraParameters cam;
cam.initPersProjWithoutDistortion(278.4691184118, 273.9196496040, 162.0747539621, 113.1741829586);
std::string filename = tmp_dir + "test_write_cam_without_distortion.xml";
{
vpXmlParserCamera xml;
std::cout << "Write to: " << filename << std::endl;
if (xml.save(cam, filename, "Camera", 320, 240) != vpXmlParserCamera::SEQUENCE_OK) {
std::cerr << "Cannot save XML file: " << filename << std::endl;
return EXIT_FAILURE;
}
}
{
vpCameraParameters cam_read;
vpXmlParserCamera xml;
xml.parse(cam_read, filename, "Camera", vpCameraParameters::perspectiveProjWithoutDistortion, 320, 240, false);
std::cout << "Cam write:\n" << cam << std::endl;
std::cout << "Cam read:\n" << cam_read << std::endl;
if (cam != cam_read) {
std::cerr << "Issue when parsing XML file: " << filename << std::endl;
return EXIT_FAILURE;
}
}
{
// Without specifying image size
vpCameraParameters cam_read;
vpXmlParserCamera xml;
xml.parse(cam_read, filename, "Camera", vpCameraParameters::perspectiveProjWithoutDistortion, 0, 0, false);
std::cout << "Cam write:\n" << cam << std::endl;
std::cout << "Cam read:\n" << cam_read << std::endl;
if (cam != cam_read) {
std::cerr << "Issue when parsing XML file: " << filename << std::endl;
return EXIT_FAILURE;
}
}
}
{
std::cout << "-- Test to save/load one single camera with distortion in a single file" << std::endl;
std::string filename = tmp_dir + "test_write_cam_with_distortion.xml";
vpCameraParameters cam;
cam.initPersProjWithDistortion(200, 200, 160, 120, 0.02, -0.02);
{
vpXmlParserCamera xml;
std::cout << "Write to: " << filename << std::endl;
if (xml.save(cam, filename, "Camera", 320, 240) != vpXmlParserCamera::SEQUENCE_OK) {
std::cerr << "Cannot save XML file: " << filename << std::endl;
return EXIT_FAILURE;
}
}
{
vpCameraParameters cam_read;
vpXmlParserCamera xml;
xml.parse(cam_read, filename, "Camera", vpCameraParameters::perspectiveProjWithDistortion, 320, 240, false);
std::cout << "Cam write:\n" << cam << std::endl;
std::cout << "Cam read:\n" << cam_read << std::endl;
if (cam != cam_read) {
std::cerr << "Issue when parsing XML file: " << filename << std::endl;
return EXIT_FAILURE;
}
}
{
// Without specifying image size
vpCameraParameters cam_read;
vpXmlParserCamera xml;
xml.parse(cam_read, filename, "Camera", vpCameraParameters::perspectiveProjWithDistortion, 0, 0, false);
std::cout << "Cam write:\n" << cam << std::endl;
std::cout << "Cam read:\n" << cam_read << std::endl;
if (cam != cam_read) {
std::cerr << "Issue when parsing XML file: " << filename << std::endl;
return EXIT_FAILURE;
}
}
}
{
std::cout << "-- Test to save/load multiple cameras with and without distortion in a single file" << std::endl;
std::string filename = tmp_dir + "test_write_cam_multiple.xml";
vpCameraParameters cam1_w_d;
cam1_w_d.initPersProjWithDistortion(200, 200, 160, 120, 0.02, -0.02);
{
vpXmlParserCamera xml;
std::cout << "Write to: " << filename << " camera:\n" << cam1_w_d << std::endl;
if (xml.save(cam1_w_d, filename, "Camera 1", 320, 240) != vpXmlParserCamera::SEQUENCE_OK) {
std::cerr << "Cannot save XML file: " << filename << std::endl;
return EXIT_FAILURE;
}
}
vpCameraParameters cam1_wo_d;
cam1_wo_d.initPersProjWithoutDistortion(200, 200, 160, 120);
{
vpXmlParserCamera xml;
std::cout << "Write to: " << filename << " camera:\n" << cam1_wo_d << std::endl;
if (xml.save(cam1_wo_d, filename, "Camera 1", 320, 240) != vpXmlParserCamera::SEQUENCE_OK) {
std::cerr << "Cannot save XML file: " << filename << std::endl;
return EXIT_FAILURE;
}
}
vpCameraParameters cam2_w_d;
cam2_w_d.initPersProjWithDistortion(400, 400, 320, 240, 0.02, -0.02);
{
vpXmlParserCamera xml;
std::cout << "Write to: " << filename << " camera:\n" << cam2_w_d << std::endl;
if (xml.save(cam2_w_d, filename, "Camera 2", 640, 480) != vpXmlParserCamera::SEQUENCE_OK) {
std::cerr << "Cannot save XML file: " << filename << std::endl;
return EXIT_FAILURE;
}
}
vpCameraParameters cam2_wo_d;
cam2_wo_d.initPersProjWithoutDistortion(400, 400, 320, 240);
{
vpXmlParserCamera xml;
std::cout << "Write to: " << filename << " camera:\n" << cam2_wo_d << std::endl;
if (xml.save(cam2_wo_d, filename, "Camera 2", 640, 480) != vpXmlParserCamera::SEQUENCE_OK) {
std::cerr << "Cannot save XML file: " << filename << std::endl;
return EXIT_FAILURE;
}
}
{
vpCameraParameters cam_read;
vpXmlParserCamera xml;
xml.parse(cam_read, filename, "Camera 1", vpCameraParameters::perspectiveProjWithDistortion, 320, 240, false);
std::cout << "Cam write:\n" << cam1_w_d << std::endl;
std::cout << "Cam read:\n" << cam_read << std::endl;
if (cam1_w_d != cam_read) {
std::cerr << "Issue when parsing XML file: " << filename << std::endl;
return EXIT_FAILURE;
}
}
{
vpCameraParameters cam_read;
vpXmlParserCamera xml;
xml.parse(cam_read, filename, "Camera 1", vpCameraParameters::perspectiveProjWithoutDistortion, 320, 240, false);
std::cout << "Cam write:\n" << cam1_wo_d << std::endl;
std::cout << "Cam read:\n" << cam_read << std::endl;
if (cam1_wo_d != cam_read) {
std::cerr << "Issue when parsing XML file: " << filename << std::endl;
return EXIT_FAILURE;
}
}
{
vpCameraParameters cam_read;
vpXmlParserCamera xml;
xml.parse(cam_read, filename, "Camera 2", vpCameraParameters::perspectiveProjWithDistortion, 640, 480, false);
std::cout << "Cam write:\n" << cam2_w_d << std::endl;
std::cout << "Cam read:\n" << cam_read << std::endl;
if (cam2_w_d != cam_read) {
std::cerr << "Issue when parsing XML file: " << filename << std::endl;
return EXIT_FAILURE;
}
}
{
vpCameraParameters cam_read;
vpXmlParserCamera xml;
xml.parse(cam_read, filename, "Camera 2", vpCameraParameters::perspectiveProjWithoutDistortion, 640, 480, false);
std::cout << "Cam write:\n" << cam2_wo_d << std::endl;
std::cout << "Cam read:\n" << cam_read << std::endl;
if (cam2_wo_d != cam_read) {
std::cerr << "Issue when parsing XML file: " << filename << std::endl;
return EXIT_FAILURE;
}
}
}
{
std::cout << "-- Test to save/load one single camera with Kannala Brandt distortion in a single file" << std::endl;
vpCameraParameters cam;
std::vector<double> distortion_coeffs;
distortion_coeffs.push_back(-0.00297341705299914);
distortion_coeffs.push_back(0.0352853797376156);
distortion_coeffs.push_back(-0.032205019146204);
distortion_coeffs.push_back(0.004446716979146);
distortion_coeffs.push_back(0);
cam.initProjWithKannalaBrandtDistortion(285.523895263672, 286.6708984375, 420.874114990234, 381.085388183594,
distortion_coeffs);
std::string filename = tmp_dir + "test_write_cam_with_KannalaBrandt_distortion.xml";
{
vpXmlParserCamera xml;
std::cout << "Write to: " << filename << std::endl;
if (xml.save(cam, filename, "Camera", 800, 848) != vpXmlParserCamera::SEQUENCE_OK) {
std::cerr << "Cannot save XML file: " << filename << std::endl;
return EXIT_FAILURE;
}
}
vpCameraParameters cam_read;
{
vpXmlParserCamera xml;
xml.parse(cam_read, filename, "Camera", vpCameraParameters::ProjWithKannalaBrandtDistortion, 800, 848, false);
std::cout << "Cam write:\n" << cam << std::endl;
std::cout << "Cam read:\n" << cam_read << std::endl;
if (cam != cam_read) {
std::cerr << "Issue when parsing XML file: " << filename << std::endl;
return EXIT_FAILURE;
}
}
}
vpIoTools::remove(tmp_dir);
return EXIT_SUCCESS;
}
|