123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225 |
- // This file is part of libigl, a simple c++ geometry processing library.
- //
- // Copyright (C) 2013 Alec Jacobson <alecjacobson@gmail.com>
- //
- // This Source Code Form is subject to the terms of the Mozilla Public License
- // v. 2.0. If a copy of the MPL was not distributed with this file, You can
- // obtain one at http://mozilla.org/MPL/2.0/.
- #include "readDMAT.h"
- #include "verbose.h"
- #include <cstdio>
- #include <iostream>
- #include <cassert>
- // Static helper method reads the first to elements in the given file
- // Inputs:
- // fp file pointer of .dmat file that was just opened
- // Outputs:
- // num_rows number of rows
- // num_cols number of columns
- // Returns
- // 0 success
- // 1 did not find header
- // 2 bad num_cols
- // 3 bad num_rows
- // 4 bad line ending
- static inline int readDMAT_read_header(FILE * fp, int & num_rows, int & num_cols)
- {
- // first line contains number of rows and number of columns
- int res = fscanf(fp,"%d %d",&num_cols,&num_rows);
- if(res != 2)
- {
- return 1;
- }
- // check that number of columns and rows are sane
- if(num_cols < 0)
- {
- fprintf(stderr,"IOError: readDMAT() number of columns %d < 0\n",num_cols);
- return 2;
- }
- if(num_rows < 0)
- {
- fprintf(stderr,"IOError: readDMAT() number of rows %d < 0\n",num_rows);
- return 3;
- }
- // finish reading header
- char lf;
- if(fread(&lf, sizeof(char), 1, fp)!=1 || !(lf == '\n' || lf == '\r'))
- {
- fprintf(stderr,"IOError: bad line ending in header\n");
- return 4;
- }
- return 0;
- }
- #ifndef IGL_NO_EIGEN
- template <typename DerivedW>
- IGL_INLINE bool igl::readDMAT(const std::string file_name,
- Eigen::PlainObjectBase<DerivedW> & W)
- {
- FILE * fp = fopen(file_name.c_str(),"rb");
- if(fp == NULL)
- {
- fprintf(stderr,"IOError: readDMAT() could not open %s...\n",file_name.c_str());
- return false;
- }
- int num_rows,num_cols;
- int head_success = readDMAT_read_header(fp,num_rows,num_cols);
- if(head_success != 0)
- {
- if(head_success == 1)
- {
- fprintf(stderr,
- "IOError: readDMAT() first row should be [num cols] [num rows]...\n");
- }
- fclose(fp);
- return false;
- }
- // Resize output to fit matrix, only if non-empty since this will trigger an
- // error on fixed size matrices before reaching binary data.
- bool empty = num_rows == 0 || num_cols == 0;
- if(!empty)
- {
- W.resize(num_rows,num_cols);
- }
- // Loop over columns slowly
- for(int j = 0;j < num_cols;j++)
- {
- // loop over rows (down columns) quickly
- for(int i = 0;i < num_rows;i++)
- {
- double d;
- if(fscanf(fp," %lg",&d) != 1)
- {
- fclose(fp);
- fprintf(
- stderr,
- "IOError: readDMAT() bad format after reading %d entries\n",
- j*num_rows + i);
- return false;
- }
- W(i,j) = d;
- }
- }
- // Try to read header for binary part
- head_success = readDMAT_read_header(fp,num_rows,num_cols);
- if(head_success == 0)
- {
- assert(W.size() == 0);
- // Resize for output
- W.resize(num_rows,num_cols);
- double * Wraw = new double[num_rows*num_cols];
- fread(Wraw, sizeof(double), num_cols*num_rows, fp);
- // Loop over columns slowly
- for(int j = 0;j < num_cols;j++)
- {
- // loop over rows (down columns) quickly
- for(int i = 0;i < num_rows;i++)
- {
- W(i,j) = Wraw[j*num_rows+i];
- }
- }
- }else
- {
- // we skipped resizing before in case there was binary data
- if(empty)
- {
- // This could trigger an error if using fixed size matrices.
- W.resize(num_rows,num_cols);
- }
- }
- fclose(fp);
- return true;
- }
- #endif
- template <typename Scalar>
- IGL_INLINE bool igl::readDMAT(
- const std::string file_name,
- std::vector<std::vector<Scalar> > & W)
- {
- FILE * fp = fopen(file_name.c_str(),"r");
- if(fp == NULL)
- {
- fprintf(stderr,"IOError: readDMAT() could not open %s...\n",file_name.c_str());
- return false;
- }
- int num_rows,num_cols;
- bool head_success = readDMAT_read_header(fp,num_rows,num_cols);
- if(head_success != 0)
- {
- if(head_success == 1)
- {
- fprintf(stderr,
- "IOError: readDMAT() first row should be [num cols] [num rows]...\n");
- }
- fclose(fp);
- return false;
- }
- // Resize for output
- W.resize(num_rows,typename std::vector<Scalar>(num_cols));
- // Loop over columns slowly
- for(int j = 0;j < num_cols;j++)
- {
- // loop over rows (down columns) quickly
- for(int i = 0;i < num_rows;i++)
- {
- double d;
- if(fscanf(fp," %lg",&d) != 1)
- {
- fclose(fp);
- fprintf(
- stderr,
- "IOError: readDMAT() bad format after reading %d entries\n",
- j*num_rows + i);
- return false;
- }
- W[i][j] = (Scalar)d;
- }
- }
- // Try to read header for binary part
- head_success = readDMAT_read_header(fp,num_rows,num_cols);
- if(head_success == 0)
- {
- assert(W.size() == 0);
- // Resize for output
- W.resize(num_rows,typename std::vector<Scalar>(num_cols));
- double * Wraw = new double[num_rows*num_cols];
- fread(Wraw, sizeof(double), num_cols*num_rows, fp);
- // Loop over columns slowly
- for(int j = 0;j < num_cols;j++)
- {
- // loop over rows (down columns) quickly
- for(int i = 0;i < num_rows;i++)
- {
- W[i][j] = Wraw[j*num_rows+i];
- }
- }
- }
- fclose(fp);
- return true;
- }
- #ifdef IGL_STATIC_LIBRARY
- // Explicit template specialization
- template bool igl::readDMAT<Eigen::Matrix<double, -1, -1, 0, -1, -1> >(std::string, Eigen::PlainObjectBase<Eigen::Matrix<double, -1, -1, 0, -1, -1> >&);
- template bool igl::readDMAT<double>(std::string, std::vector<std::vector<double, std::allocator<double> >, std::allocator<std::vector<double, std::allocator<double> > > >&);
- template bool igl::readDMAT<Eigen::Matrix<int, -1, -1, 0, -1, -1> >(std::string, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, -1, 0, -1, -1> >&);
- template bool igl::readDMAT<Eigen::Matrix<double, 4, 1, 0, 4, 1> >(std::string, Eigen::PlainObjectBase<Eigen::Matrix<double, 4, 1, 0, 4, 1> >&);
- template bool igl::readDMAT<Eigen::Matrix<double, -1, 1, 0, -1, 1> >(std::string, Eigen::PlainObjectBase<Eigen::Matrix<double, -1, 1, 0, -1, 1> >&);
- template bool igl::readDMAT<Eigen::Matrix<int, -1, 1, 0, -1, 1> >(std::string, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, 1, 0, -1, 1> >&);
- template bool igl::readDMAT<Eigen::Matrix<int, -1, 2, 0, -1, 2> >(std::string, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, 2, 0, -1, 2> >&);
- template bool igl::readDMAT<Eigen::Matrix<double, -1, -1, 1, -1, -1> >(std::string, Eigen::PlainObjectBase<Eigen::Matrix<double, -1, -1, 1, -1, -1> >&);
- template bool igl::readDMAT<Eigen::Matrix<int, -1, -1, 1, -1, -1> >(std::string, Eigen::PlainObjectBase<Eigen::Matrix<int, -1, -1, 1, -1, -1> >&);
- #endif
|