Skip to content

Commit

Permalink
Merge pull request #6 from bilgili/histogram
Browse files Browse the repository at this point in the history
Histogram simplified and renamed
  • Loading branch information
hernando authored Jun 20, 2016
2 parents 8fbec1c + 12b08d1 commit 617eedb
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 31 deletions.
2 changes: 1 addition & 1 deletion lexis/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ set(LEXIS_RENDER_DIR ${__outdir}/render)
set(LEXIS_RENDER_FBS
${CMAKE_CURRENT_SOURCE_DIR}/render/exit.fbs
${CMAKE_CURRENT_SOURCE_DIR}/render/frame.fbs
${CMAKE_CURRENT_SOURCE_DIR}/render/viewHistogram.fbs
${CMAKE_CURRENT_SOURCE_DIR}/render/histogram.fbs
${CMAKE_CURRENT_SOURCE_DIR}/render/imageJPEG.fbs
${CMAKE_CURRENT_SOURCE_DIR}/render/lookOut.fbs
${CMAKE_CURRENT_SOURCE_DIR}/render/lookupTable1D.fbs
Expand Down
18 changes: 18 additions & 0 deletions lexis/render/histogram.fbs
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// Copyright (c) 2016, Human Brain Project
// Ahmet Bilgili <[email protected]>

// This event is used to communicate histograms for
// 8 bit data between applications ( also inside the
// application ).
//
// Currently every data is discretized to 256 bins.
// This may change later to higer number of bins if
// needed.
//

namespace lexis.render;

table Histogram
{
bins:[ulong:256]; // The bins for data.
}
30 changes: 0 additions & 30 deletions lexis/render/viewHistogram.fbs

This file was deleted.

0 comments on commit 617eedb

Please sign in to comment.