Subversion Repositories gelsvn

Rev

Rev 443 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 443 Rev 595
Line -... Line 1...
-
 
1
/**
-
 
2
 * @file load_raw.h
-
 
3
 * @brief contains function template for loading raw voxel data.
-
 
4
 */
-
 
5
 
-
 
6
/* ----------------------------------------------------------------------- *
-
 
7
 * This file is part of GEL, http://www.imm.dtu.dk/GEL
-
 
8
 * Copyright (C) the authors and DTU Informatics
-
 
9
 * For license and list of authors, see ../../doc/intro.pdf
-
 
10
 * ----------------------------------------------------------------------- */
-
 
11
 
1
#ifndef __GEOMETRY_VOXELGRID_LOAD_RAW_H__
12
#ifndef __GEOMETRY_VOXELGRID_LOAD_RAW_H__
2
#define __GEOMETRY_VOXELGRID_LOAD_RAW_H__
13
#define __GEOMETRY_VOXELGRID_LOAD_RAW_H__
3
 
14
 
4
#include <string>
15
#include <string>
5
#include "CGLA/Mat4x4f.h"
16
#include "CGLA/Mat4x4f.h"
6
#include "RGrid.h"
17
#include "RGrid.h"
7
 
18
 
8
namespace Geometry
19
namespace Geometry
9
{
20
{
10
 
-
 
-
 
21
    /// Function template for loading raw voxel data. Template arg is the grid type.
11
	template<class T>
22
	template<class T>
12
		bool load_raw(const std::string& file, RGrid<T>& grid);
23
		bool load_raw(const std::string& file, RGrid<T>& grid);
13
	
24
	
14
}
25
}
15
 
26