Skip to content

Commit 617eedb

Browse files
author
hernando
authored
Merge pull request #6 from bilgili/histogram
Histogram simplified and renamed
2 parents 8fbec1c + 12b08d1 commit 617eedb

File tree

3 files changed

+19
-31
lines changed

3 files changed

+19
-31
lines changed

lexis/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ set(LEXIS_RENDER_DIR ${__outdir}/render)
2323
set(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

lexis/render/histogram.fbs

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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+
}

lexis/render/viewHistogram.fbs

Lines changed: 0 additions & 30 deletions
This file was deleted.

0 commit comments

Comments
 (0)