aio.cpp 16.4 KB
Newer Older
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
/*M///////////////////////////////////////////////////////////////////////////////////////
//
//  IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
//
//  By downloading, copying, installing or using the software you agree to this license.
//  If you do not agree to this license, do not download, install,
//  copy or use the software.
//
//
//                        Intel License Agreement
//                For Open Source Computer Vision Library
//
// Copyright (C) 2000, Intel Corporation, all rights reserved.
// Third party copyrights are property of their respective owners.
//
// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:
//
//   * Redistribution's of source code must retain the above copyright notice,
//     this list of conditions and the following disclaimer.
//
//   * Redistribution's in binary form must reproduce the above copyright notice,
//     this list of conditions and the following disclaimer in the documentation
//     and/or other materials provided with the distribution.
//
//   * The name of Intel Corporation may not be used to endorse or promote products
//     derived from this software without specific prior written permission.
//
// This software is provided by the copyright holders and contributors "as is" and
// any express or implied warranties, including, but not limited to, the implied
// warranties of merchantability and fitness for a particular purpose are disclaimed.
// In no event shall the Intel Corporation or contributors be liable for any direct,
// indirect, incidental, special, exemplary, or consequential damages
// (including, but not limited to, procurement of substitute goods or services;
// loss of use, data, or profits; or business interruption) however caused
// and on any theory of liability, whether in contract, strict liability,
// or tort (including negligence or otherwise) arising in any way out of
// the use of this software, even if advised of the possibility of such damage.
//
//M*/

#include "cxcoretest.h"
#include <stdio.h>

using namespace cv;

class CV_IOTest : public CvTest
{
public:
    CV_IOTest();
protected:
    void run(int);
};


CV_IOTest::CV_IOTest():
CvTest( "io", "cvOpenFileStorage, cvReleaseFileStorage, cvRead*, cvWrite*, cvStartWriteStruct, cvEndWriteStruct" )
{
    support_testing_modes = CvTS::CORRECTNESS_CHECK_MODE;
}


static SparseMat cvTsGetRandomSparseMat(int dims, const int* sz, int type,
                                        int nzcount, double a, double b, CvRNG* rng)
{
    SparseMat m(dims, sz, type);
    int i, j;
    CV_Assert(CV_MAT_CN(type) == 1);
    for( i = 0; i < nzcount; i++ )
    {
        int idx[CV_MAX_DIM];
        for( j = 0; j < dims; j++ )
            idx[j] = cvTsRandInt(rng) % sz[j];
        double val = cvTsRandReal(rng)*(b - a) + a;
        uchar* ptr = m.ptr(idx, true, 0);
        if( type == CV_8U )
            *(uchar*)ptr = saturate_cast<uchar>(val);
        else if( type == CV_8S )
            *(schar*)ptr = saturate_cast<schar>(val);
        else if( type == CV_16U )
            *(ushort*)ptr = saturate_cast<ushort>(val);
        else if( type == CV_16S )
            *(short*)ptr = saturate_cast<short>(val);
        else if( type == CV_32S )
            *(int*)ptr = saturate_cast<int>(val);
        else if( type == CV_32F )
            *(float*)ptr = saturate_cast<float>(val);
        else
            *(double*)ptr = saturate_cast<double>(val);
    }
    
    return m;
}

static bool cvTsCheckSparse(const CvSparseMat* m1, const CvSparseMat* m2, double eps)
{
    CvSparseMatIterator it1;
    CvSparseNode* node1;
    int depth = CV_MAT_DEPTH(m1->type);
    
    if( m1->heap->active_count != m2->heap->active_count ||
        m1->dims != m2->dims || CV_MAT_TYPE(m1->type) != CV_MAT_TYPE(m2->type) )
        return false;
    
    for( node1 = cvInitSparseMatIterator( m1, &it1 );
         node1 != 0; node1 = cvGetNextSparseNode( &it1 ))
    {
        uchar* v1 = (uchar*)CV_NODE_VAL(m1,node1);
        uchar* v2 = cvPtrND( m2, CV_NODE_IDX(m1,node1), 0, 0, &node1->hashval );
        if( !v2 )
            return false;
        if( depth == CV_8U || depth == CV_8S )
        {
            if( *v1 != *v2 )
                return false;
        }
        else if( depth == CV_16U || depth == CV_16S )
        {
            if( *(ushort*)v1 != *(ushort*)v2 )
                return false;
        }
        else if( depth == CV_32S )
        {
            if( *(int*)v1 != *(int*)v2 )
                return false;
        }
        else if( depth == CV_32F )
        {
            if( fabs(*(float*)v1 - *(float*)v2) > eps*(fabs(*(float*)v2) + 1) )
                return false;
        }
        else if( fabs(*(double*)v1 - *(double*)v2) > eps*(fabs(*(double*)v2) + 1) )
            return false;
    }
    
    return true;
}

void CV_IOTest::run( int )
{
    double ranges[][2] = {{0, 256}, {-128, 128}, {0, 65536}, {-32768, 32768},
        {-1000000, 1000000}, {-10, 10}, {-10, 10}};
    CvRNG* rng = ts->get_rng();
    RNG rng0;
    test_case_count = 2;
    int progress = 0;
    MemStorage storage(cvCreateMemStorage(0));
    
    for( int idx = 0; idx < test_case_count; idx++ )
    {
        ts->update_context( this, idx, false );
        progress = update_progress( progress, idx, test_case_count, 0 );
        
        cvClearMemStorage(storage);
        
        char buf[L_tmpnam+16];
        char* filename = tmpnam(buf);
        strcat(filename, idx % 2 ? ".yml" : ".xml");
159 160
        if(filename[0] == '\\')
            filename++;
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
        
        FileStorage fs(filename, FileStorage::WRITE);
        
        int test_int = (int)cvTsRandInt(rng);
        double test_real = (cvTsRandInt(rng)%2?1:-1)*exp(cvTsRandReal(rng)*18-9);
        string test_string = "vw wv23424rt\"&amp;&lt;&gt;&amp;&apos;@#$@$%$%&%IJUKYILFD@#$@%$&*&() ";
        
        int depth = cvTsRandInt(rng) % (CV_64F+1);
        int cn = cvTsRandInt(rng) % 4 + 1;
        Mat test_mat(cvTsRandInt(rng)%30+1, cvTsRandInt(rng)%30+1, CV_MAKETYPE(depth, cn));
        
        rng0.fill(test_mat, CV_RAND_UNI, Scalar::all(ranges[depth][0]), Scalar::all(ranges[depth][1]));
        if( depth >= CV_32F )
        {
            exp(test_mat, test_mat);
            Mat test_mat_scale(test_mat.size(), test_mat.type());
            rng0.fill(test_mat_scale, CV_RAND_UNI, Scalar::all(-1), Scalar::all(1));
            multiply(test_mat, test_mat_scale, test_mat);
        }
        
181 182
        CvSeq* seq = cvCreateSeq(test_mat.type(), (int)sizeof(CvSeq),
            (int)test_mat.elemSize(), storage);
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 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427
        cvSeqPushMulti(seq, test_mat.data, test_mat.cols*test_mat.rows); 
        
        CvGraph* graph = cvCreateGraph( CV_ORIENTED_GRAPH,
                                        sizeof(CvGraph), sizeof(CvGraphVtx),
                                        sizeof(CvGraphEdge), storage );
        int edges[][2] = {{0,1},{1,2},{2,0},{0,3},{3,4},{4,1}};
        int i, vcount = 5, ecount = 6;
        for( i = 0; i < vcount; i++ )
            cvGraphAddVtx(graph);
        for( i = 0; i < ecount; i++ )
        {
            CvGraphEdge* edge;
            cvGraphAddEdge(graph, edges[i][0], edges[i][1], 0, &edge);
            edge->weight = (float)(i+1);
        }
        
        depth = cvTsRandInt(rng) % (CV_64F+1);
        cn = cvTsRandInt(rng) % 4 + 1;
        int sz[] = {cvTsRandInt(rng)%10+1, cvTsRandInt(rng)%10+1, cvTsRandInt(rng)%10+1};
        MatND test_mat_nd(3, sz, CV_MAKETYPE(depth, cn));
        
        rng0.fill(test_mat_nd, CV_RAND_UNI, Scalar::all(ranges[depth][0]), Scalar::all(ranges[depth][1]));
        if( depth >= CV_32F )
        {
            exp(test_mat_nd, test_mat_nd);
            MatND test_mat_scale(test_mat_nd.dims, test_mat_nd.size, test_mat_nd.type());
            rng0.fill(test_mat_scale, CV_RAND_UNI, Scalar::all(-1), Scalar::all(1));
            multiply(test_mat_nd, test_mat_scale, test_mat_nd);
        }
        
        int ssz[] = {cvTsRandInt(rng)%10+1, cvTsRandInt(rng)%10+1,
            cvTsRandInt(rng)%10+1,cvTsRandInt(rng)%10+1};
        SparseMat test_sparse_mat = cvTsGetRandomSparseMat(4, ssz, cvTsRandInt(rng)%(CV_64F+1),
            cvTsRandInt(rng) % 10000, 0, 100, rng);
            
        fs << "test_int" << test_int << "test_real" << test_real << "test_string" << test_string;
        fs << "test_mat" << test_mat;
        fs << "test_mat_nd" << test_mat_nd;
        fs << "test_sparse_mat" << test_sparse_mat;
        
        fs << "test_list" << "[" << 0.0000000000001 << 2 << CV_PI << -3435345 << "2-502 2-029 3egegeg" <<
            "{:" << "month" << 12 << "day" << 31 << "year" << 1969 << "}" << "]";
        fs << "test_map" << "{" << "x" << 1 << "y" << 2 << "width" << 100 << "height" << 200 << "lbp" << "[:";
        
        const uchar arr[] = {0, 1, 1, 0, 1, 1, 0, 1};
        fs.writeRaw("u", arr, (int)(sizeof(arr)/sizeof(arr[0])));

        fs << "]" << "}";
        cvWriteComment(*fs, "test comment", 0);
        
        fs.writeObj("test_seq", seq);
        fs.writeObj("test_graph",graph);
        CvGraph* graph2 = (CvGraph*)cvClone(graph);
        
        fs.release();
        
        if(!fs.open(filename, FileStorage::READ))
        {
            ts->printf( CvTS::LOG, "filename %s can not be read\n", filename );
            ts->set_failed_test_info( CvTS::FAIL_MISSING_TEST_DATA );
            return;
        }
        
        int real_int = (int)fs["test_int"];
        double real_real = (double)fs["test_real"];
        string real_string = (string)fs["test_string"];
        
        if( real_int != test_int ||
            fabs(real_real - test_real) > DBL_EPSILON*(fabs(test_real)+1) ||
            real_string != test_string )
        {
            ts->printf( CvTS::LOG, "the read scalars are not correct\n" );
            ts->set_failed_test_info( CvTS::FAIL_INVALID_OUTPUT );
            return;
        }
        
        CvMat* m = (CvMat*)fs["test_mat"].readObj();
        CvMat _test_mat = test_mat;
        double max_diff = 0;
        CvMat stub1, _test_stub1;
        cvReshape(m, &stub1, 1, 0);
        cvReshape(&_test_mat, &_test_stub1, 1, 0);
        CvPoint pt = {0,0};
        
        if( !m || !CV_IS_MAT(m) || m->rows != test_mat.rows || m->cols != test_mat.cols ||
            cvTsCmpEps( &stub1, &_test_stub1, &max_diff, 0, &pt, true) < 0 )
        {
            ts->printf( CvTS::LOG, "the read matrix is not correct: (%.20g vs %.20g) at (%d,%d)\n",
                       cvGetReal2D(&stub1, pt.y, pt.x), cvGetReal2D(&_test_stub1, pt.y, pt.x),
                       pt.y, pt.x );
            ts->set_failed_test_info( CvTS::FAIL_INVALID_OUTPUT );
            return;
        }
        if( m && CV_IS_MAT(m))
            cvReleaseMat(&m);

        CvMatND* m_nd = (CvMatND*)fs["test_mat_nd"].readObj();
        CvMatND _test_mat_nd = test_mat_nd;
        
        if( !m_nd || !CV_IS_MATND(m_nd) )
        {
            ts->printf( CvTS::LOG, "the read nd-matrix is not correct\n" );
            ts->set_failed_test_info( CvTS::FAIL_INVALID_OUTPUT );
            return;
        }
        
        CvMat stub, _test_stub;
        cvGetMat(m_nd, &stub, 0, 1);
        cvGetMat(&_test_mat_nd, &_test_stub, 0, 1);
        cvReshape(&stub, &stub1, 1, 0);
        cvReshape(&_test_stub, &_test_stub1, 1, 0);
        
        if( !CV_ARE_TYPES_EQ(&stub, &_test_stub) ||
            !CV_ARE_SIZES_EQ(&stub, &_test_stub) ||
            //cvNorm(&stub, &_test_stub, CV_L2) != 0 ) 
            cvTsCmpEps( &stub1, &_test_stub1, &max_diff, 0, &pt, true) < 0 )
        {
            ts->printf( CvTS::LOG, "readObj method: the read nd matrix is not correct: (%.20g vs %.20g) vs at (%d,%d)\n",
                       cvGetReal2D(&stub1, pt.y, pt.x), cvGetReal2D(&_test_stub1, pt.y, pt.x),
                       pt.y, pt.x );
            ts->set_failed_test_info( CvTS::FAIL_INVALID_OUTPUT );
            return;
        }

        MatND mat_nd2;
        fs["test_mat_nd"] >> mat_nd2;
        CvMatND m_nd2 = mat_nd2;
        cvGetMat(&m_nd2, &stub, 0, 1);
        cvReshape(&stub, &stub1, 1, 0);
        
        if( !CV_ARE_TYPES_EQ(&stub, &_test_stub) ||
            !CV_ARE_SIZES_EQ(&stub, &_test_stub) ||
            //cvNorm(&stub, &_test_stub, CV_L2) != 0 ) 
            cvTsCmpEps( &stub1, &_test_stub1, &max_diff, 0, &pt, true) < 0 )
        {
            ts->printf( CvTS::LOG, "C++ method: the read nd matrix is not correct: (%.20g vs %.20g) vs at (%d,%d)\n",
                        cvGetReal2D(&stub1, pt.y, pt.x), cvGetReal2D(&_test_stub1, pt.y, pt.x),
                        pt.y, pt.x );
                        ts->set_failed_test_info( CvTS::FAIL_INVALID_OUTPUT );
                        return;
        }
        
        cvRelease((void**)&m_nd);
            
        Ptr<CvSparseMat> m_s = (CvSparseMat*)fs["test_sparse_mat"].readObj();
        Ptr<CvSparseMat> _test_sparse_ = (CvSparseMat*)test_sparse_mat;
        Ptr<CvSparseMat> _test_sparse = (CvSparseMat*)cvClone(_test_sparse_);
        SparseMat m_s2;
        fs["test_sparse_mat"] >> m_s2;
        Ptr<CvSparseMat> _m_s2 = (CvSparseMat*)m_s2;
        
        if( !m_s || !CV_IS_SPARSE_MAT(m_s) ||
            !cvTsCheckSparse(m_s, _test_sparse,0) ||
            !cvTsCheckSparse(_m_s2, _test_sparse,0))
        {
            ts->printf( CvTS::LOG, "the read sparse matrix is not correct\n" );
            ts->set_failed_test_info( CvTS::FAIL_INVALID_OUTPUT );
            return;
        }
        
        FileNode tl = fs["test_list"];
        if( tl.type() != FileNode::SEQ || tl.size() != 6 ||
           fabs((double)tl[0] - 0.0000000000001) >= DBL_EPSILON ||
           (int)tl[1] != 2 ||
           fabs((double)tl[2] - CV_PI) >= DBL_EPSILON ||
           (int)tl[3] != -3435345 ||
           (string)tl[4] != "2-502 2-029 3egegeg" ||
            tl[5].type() != FileNode::MAP || tl[5].size() != 3 ||
            (int)tl[5]["month"] != 12 ||
            (int)tl[5]["day"] != 31 ||
            (int)tl[5]["year"] != 1969 )
        {
            ts->printf( CvTS::LOG, "the test list is incorrect\n" );
            ts->set_failed_test_info( CvTS::FAIL_INVALID_OUTPUT );
            return;
        }
        
        FileNode tm = fs["test_map"];
        FileNode tm_lbp = tm["lbp"];
        
        int real_x = (int)tm["x"];
        int real_y = (int)tm["y"];
        int real_width = (int)tm["width"];
        int real_height = (int)tm["height"];
        
        
        int real_lbp_val = 0;
        FileNodeIterator it;
        it = tm_lbp.begin();
        real_lbp_val |= (int)*it << 0;
        ++it;
        real_lbp_val |= (int)*it << 1;
        it++;
        real_lbp_val |= (int)*it << 2;
        it += 1;
        real_lbp_val |= (int)*it << 3;
        FileNodeIterator it2(it);
        it2 += 4;
        real_lbp_val |= (int)*it2 << 7;
        --it2;
        real_lbp_val |= (int)*it2 << 6;
        it2--;
        real_lbp_val |= (int)*it2 << 5;
        it2 -= 1;
        real_lbp_val |= (int)*it2 << 4;
        it2 += -1;
        CV_Assert( it == it2 );
        
        if( tm.type() != FileNode::MAP || tm.size() != 5 ||
            real_x != 1 ||
            real_y != 2 ||
            real_width != 100 ||
            real_height != 200 ||
            tm_lbp.type() != FileNode::SEQ ||
            tm_lbp.size() != 8 ||
            real_lbp_val != 0xb6 )
        {
            ts->printf( CvTS::LOG, "the test map is incorrect\n" );
            ts->set_failed_test_info( CvTS::FAIL_INVALID_OUTPUT );
            return;
        }
        
        CvGraph* graph3 = (CvGraph*)fs["test_graph"].readObj();
        if(graph2->active_count != vcount || graph3->active_count != vcount ||
           graph2->edges->active_count != ecount || graph3->edges->active_count != ecount)
        {
            ts->printf( CvTS::LOG, "the cloned or read graph have wrong number of vertices or edges\n" );
            ts->set_failed_test_info( CvTS::FAIL_INVALID_OUTPUT );
            return;
        }
        
        for( i = 0; i < ecount; i++ )
        {
            CvGraphEdge* edge2 = cvFindGraphEdge(graph2, edges[i][0], edges[i][1]);
            CvGraphEdge* edge3 = cvFindGraphEdge(graph3, edges[i][0], edges[i][1]);
            if( !edge2 || edge2->weight != (float)(i+1) ||
                !edge3 || edge3->weight != (float)(i+1) )
            {
                ts->printf( CvTS::LOG, "the cloned or read graph do not have the edge (%d, %d)\n", edges[i][0], edges[i][1] );
                ts->set_failed_test_info( CvTS::FAIL_INVALID_OUTPUT );
                return;
            }
        }
        
        fs.release();
428
        remove(filename);
429 430 431 432
    }
}

CV_IOTest opencv_io_test;