https://github.com/hankstag/progressive_embedding
Raw File
Tip revision: 02b7596a3b1d182616bfc415d4d1f8351ae6486e authored by hanxiao on 19 August 2019, 15:14:54 UTC
change format
Tip revision: 02b7596
loader.h
#ifndef LOADER
#define LOADER

#include <Eigen/Core>

void load_model(
    std::string model, 
    Eigen::MatrixXd& V,
    Eigen::MatrixXd& uv,
    Eigen::MatrixXi& F,
    Eigen::MatrixXd& P,
    Eigen::VectorXi& R,
    Eigen::VectorXi& T
);

void load_model_with_seam(
    const std::string model,
    Eigen::MatrixXd& V,
    Eigen::MatrixXi& F,
    Eigen::MatrixXd& polygon,
    Eigen::VectorXi& bd
);


void load_matching_info(
    std::string fname,
    std::pair<int,int>& match
);

#endif
back to top