Helpers.h 253 Bytes
Newer Older
change's avatar
change committed
1
2
3
4
5
6
7
8
9
10
#include "opencv2/imgproc.hpp"
#include <string>

class Helpers
{
public:
	static std::vector<float> loadImage(const std::string& filename, int sizeX = 224, int sizeY = 224);
	static std::vector<std::string> loadLabels(const std::string& filename);
};