EDFExplorer - Tutorial - Basic Command Options
A basic command line to perform a simple storage of EDF files on a HDF5 container:
> edfexplorer.exe --inputEdf ./DataForTests/radio-0001.edf --outputHdf ./container.h5
A full paralell execution of diferent tasks:
i) input a file with a raw data;
ii) transforms the raw data in an image file;
iii) normalize the image before storage;
iv) export the raw data to an ASCII file;
v) import a folder with diferent edf files;
vi) export the folder to an HDF5 file;
vii) verbose all information on the screen;
The command line to perform the paralell excution is:
> edfexplorer.exe --verbose --inputEdf ./DataForTests/radio-0001.edf --outputImage image.jpg --imagePreviewNormalizedPositive --outputDataAscii data.txt --inputEdfFolder ./DataForTests/FolderEdfData --outputHdfFolder test-folder-Multi-Action.h5
EDFExplorer - Tutorial - Options
# Command Line HELP:
--help or -h: This help listing the options
--man or -m: The manual of the options = detailed description
--version or -v: The version of the application
--verbose: To output runtime information (default: -quite)
--quite: To NOT output runtime information
--DEBUG: To output runtime debug information - only for development
--DEBUGECLIPSE: To output runtime debug information to be used with ECLIPSE IDE
--nolog: NO log file output
# HDF5 file manipulation HELP:
--inputHdf *.h5: The input HDF5 file
--outputEdf *.edf: The output edf file (already inside the HDF5 input file)
--outputEdfAll : Extraction of all Edf files inside the HDF5 input file
--outputEdfList : Screen output of the edf file list inside the HDF5 container
--outputEdfFolder ./*: Definition of the output folder of the Edf file list
# Edf file manipulation HELP:
--inputEdf *.edf: The edf input file
--outputHdf *.h5: The output container of edf files in HDF5 format
--outputDataAscii *.txt: Ascii file output of the edf file data array
--outputHeader *.txt: Ascii file output of the edf header information
# Image file manipulation HELP:
--outputImage *.jpg: The image preview output
in diferent file formats (*.bmp, *.tif, etc)
--imagePreview: The image preview normalized in 256 grey level format
--imagePreviewNormalized: The image preview normalized in 256 grey level format
--imagePreviewNormalizedPositive: The image preview of the Positive values (bigger of 0.0)
normalized in 256 grey level format
--imagePreviewNormalizedNegative: The image preview of the Negative values (smaller than 0.0)
normalized in 256 grey level format
# Plugin Command Line HELP: --plugin: Screen output of the application plugin list
--pluginGroup: Screen output of the application plugin group list
--pluginGroupTree: Screen output of the application plugin group tree
# Edf Folder manipulation HELP:
--inputEdfFolder ./*: The folder containing a list of edf files
--outputHdfFolder *.h5: The output container of edf files in HDF5 format
This document is under developement.