File tree Expand file tree Collapse file tree 3 files changed +19
-31
lines changed
Expand file tree Collapse file tree 3 files changed +19
-31
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ set(LEXIS_RENDER_DIR ${__outdir}/render)
2323set (LEXIS_RENDER_FBS
2424 ${CMAKE_CURRENT_SOURCE_DIR} /render/exit.fbs
2525 ${CMAKE_CURRENT_SOURCE_DIR} /render/frame.fbs
26- ${CMAKE_CURRENT_SOURCE_DIR} /render/viewHistogram .fbs
26+ ${CMAKE_CURRENT_SOURCE_DIR} /render/histogram .fbs
2727 ${CMAKE_CURRENT_SOURCE_DIR} /render/imageJPEG.fbs
2828 ${CMAKE_CURRENT_SOURCE_DIR} /render/lookOut.fbs
2929 ${CMAKE_CURRENT_SOURCE_DIR} /render/lookupTable1D.fbs
Original file line number Diff line number Diff line change 1+ // Copyright (c) 2016, Human Brain Project
2+ // Ahmet Bilgili <ahmet.bilgili@epfl.ch>
3+
4+ // This event is used to communicate histograms for
5+ // 8 bit data between applications ( also inside the
6+ // application ).
7+ //
8+ // Currently every data is discretized to 256 bins.
9+ // This may change later to higer number of bins if
10+ // needed.
11+ //
12+
13+ namespace lexis.render;
14+
15+ table Histogram
16+ {
17+ bins:[ulong:256]; // The bins for data.
18+ }
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments