-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathgrid_mnist.cpp
47 lines (38 loc) · 1.34 KB
/
grid_mnist.cpp
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
38
39
40
41
42
43
44
45
46
47
/*
* GridVisual to view an Mnist char
*/
#include <iostream>
#include <morph/vec.h>
#include <morph/vvec.h>
#include <morph/Visual.h>
#include <morph/Grid.h>
#include <morph/GridVisual.h>
#include <morph/Mnist.h>
int main (int argc, char** argv)
{
namespace m = morph;
// Load MNIST data
morph::Mnist mni(std::string("../standalone_examples/neuralnet/mnist/"));
int index = 0;
if (argc > 1) { index = std::stoi(std::string(argv[1])); }
// Get a specific example
auto [ id, label, data ] = mni.test_example (index);
// Create a scene
m::Visual v(1280, 1280, "Mnist char");
// Create a Grid for visualising the numeral...
constexpr morph::vec<float, 2> grid_spacing = {0.05f, 0.05f};
m::Grid g(28u, 28u, grid_spacing);
// Create a visual for the numeral in it's as-written Cartesian representation
m::vec<float> offset = {0,0,0};
auto gv0 = std::make_unique<m::GridVisual<float>>(&g, offset);
v.bindmodel (gv0);
gv0->gridVisMode = m::GridVisMode::RectInterp;
gv0->setScalarData (&data);
gv0->cm.setType (m::ColourMapType::Berlin);
gv0->zScale.setParams (-0.1, 0);
gv0->addLabel(std::to_string(label) + ", Id " + std::to_string(id), m::vec<float, 3>({0.0f,-0.13f,0.0f}), m::TextFeatures(0.1f));
gv0->finalize();
v.addVisualModel (gv0);
v.keepOpen();
return 0;
}