forked from carlren/ORUtils
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathFileUtils.h
executable file
·37 lines (28 loc) · 1.34 KB
/
FileUtils.h
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
// Copyright 2014-2017 Oxford University Innovation Limited and the authors of InfiniTAM
#pragma once
#include <stdio.h>
#include "Image.h"
#include "Vector.h"
void SaveImageToFile(const ORUtils::Image<ORUtils::Vector4<unsigned char> >* image, const char* fileName, bool flipVertical = false);
void SaveImageToFile(const ORUtils::Image<short>* image, const char* fileName);
void SaveImageToFile(const ORUtils::Image<float>* image, const char* fileName);
bool ReadImageFromFile(ORUtils::Image<ORUtils::Vector4<unsigned char> >* image, const char* fileName);
bool ReadImageFromFile(ORUtils::Image<short> *image, const char *fileName);
#ifdef COMPILE_WITH_OpenCV
void SaveImageToFileCV(const ORUtils::Image<ORUtils::Vector4<unsigned char> >* image, const char* fileName, bool flipVertical = false);
void SaveImageToFileCV(const ORUtils::Image<float>* image, const char* fileName);
void SaveImageToFileCV(const ORUtils::Image<short>* image, const char* fileName);
#endif
void MakeDir(const char *fileName);
template <typename T> void ReadFromBIN(T *data, int dataSize, const char *fileName)
{
FILE *f = fopen(fileName, "rb");
fread(data, dataSize * sizeof(T), 1, f);
fclose(f);
}
template <typename T> void WriteToBIN(const T *data, int dataSize, const char *fileName)
{
FILE *f = fopen(fileName, "wb");
fwrite(data, dataSize * sizeof(T), 1, f);
fclose(f);
}