Description | : | Basic useful boxes |
Author(s) | : | laurent.guigues at creatis.insa-lyon.fr |
Author(s) | : | |
Version | : | 1.0.0 |
bbtk Version | : | 0.9.3 |
Black Boxes :
ASCII | ascii codes sequence to string - string to ascii codes sequence |
Add | Adds its inputs |
ConcatStrings | String concatenation |
Configuration | Gets configuration informations |
Div | Divides its inputs |
ExecBbiCommand | Executes bbi commands |
ExecSystemCommand | Executes system (O.S.) commands |
FilesFromDirectory | returns the fullPathNames of the files in a Directory |
GetVectorCharElement | Gets the i-th element from the input vector (std::vector |
GetVectorDoubleElement | Gets the i-th element from the input vector (std::vector |
GetVectorFloatElement | Gets the i-th element from the input vector (std::vector |
GetVectorIntElement | Gets the i-th element from the input vector (std::vector |
GetVectorLongElement | Gets the i-th element from the input vector (std::vector |
GetVectorShortElement | Gets the i-th element from the input vector (std::vector |
GetVectorStringElement | Gets the i-th element from the input vector (std::vector |
GetVectorUCharElement | Gets the i-th element from the input vector (std::vector |
GetVectorUIntElement | Gets the i-th element from the input vector (std::vector |
GetVectorUShortElement | Gets the i-th element from the input vector (std::vector |
MagicBox | Takes *any kind* of data and copies it to its output. Is a magic box as any box output can be plugged into it and its output can be plugged into any other box input (dynamic type checking, see below), hence it can be put between **any** two boxes. Type matching between its output and the input of the box(es) to which it is connected is made at *run-time*. The pipeline will be executed if the data types : i) match exactly ii) can be transformed by an adaptor iii) are related pointers, i.e. if the output pointer can be upcasted (static_cast) or downcasted (dynamic_cast) to an input type pointer (see the bbtk::any output connection rule in the guide for details). Important uses of the MagicBox are : 1) performing run-time pointer cast, either upward or backward an object hierarchy 2) perform data adaptation (adaptor creation) at run-time vs. pipeline creation time. |
MakeFileName | Makes a kosher file name |
Mul | Multiplies its inputs |
MultipleInputs | This box has multiple Void inputs and one Void output. Hence it relays any input modification to its output. It is usefull to plug different BoxChange outputs into the same BoxExecute input. |
PrependDataPath | Prepends the input string file 'last name' with the default DataPath found in bbtk_config_xml |
PrependPackageDataPath | Prepends the input file name 'In' with the path to the data directory of the package 'Package' |
SharedMemory | Implements a memory which can be shared by different boxes. The value of the output is the value of the lower index input which has changed. It is used for example for synchronization issues between boxes. |
StringRelay | Just copies the value of its input to its output. Usefull to plug an input of a complex box into different internal boxes. |
StringSelect | Outputs the string set to the ith input Ini (In0 ... In9) according to the value of the input In, hence selects a string according to an index. |
Wait | Waits a certain number of milliseconds |
exampleAdd | std::Add box example. Also shows how to print an output of a box in bbi. |
exampleAscii | std::ASCII box example. Shows how to use it. |
exampleFilesFromDirectory | |
examplePrependDataPath | std::PrependDataPath box example. Also shows how to invoke the default data path. |
exampleWait | std::Wait box example : waits 1 second then 3 seconds... |
Adaptors :
BoolToString | Converts a Bool (bool) into a string |
CastBoolToChar | Static cast from Bool (bool) to Char (signed char) |
CastBoolToDouble | Static cast from Bool (bool) to Double (double) |
CastBoolToFloat | Static cast from Bool (bool) to Float (float) |
CastBoolToInt | Static cast from Bool (bool) to Int (int) |
CastBoolToShort | Static cast from Bool (bool) to Short (short) |
CastBoolToUChar | Static cast from Bool (bool) to UChar (unsigned char) |
CastBoolToUInt | Static cast from Bool (bool) to UInt (unsigned int) |
CastBoolToUShort | Static cast from Bool (bool) to UShort (unsigned short) |
CastCharToBool | Static cast from Char (signed char) to Bool (bool) |
CastCharToDouble | Static cast from Char (signed char) to Double (double) |
CastCharToFloat | Static cast from Char (signed char) to Float (float) |
CastCharToInt | Static cast from Char (signed char) to Int (int) |
CastCharToShort | Static cast from Char (signed char) to Short (short) |
CastCharToUChar | Static cast from Char (signed char) to UChar (unsigned char) |
CastCharToUInt | Static cast from Char (signed char) to UInt (unsigned int) |
CastCharToUShort | Static cast from Char (signed char) to UShort (unsigned short) |
CastDoubleToBool | Static cast from Double (double) to Bool (bool) |
CastDoubleToChar | Static cast from Double (double) to Char (signed char) |
CastDoubleToFloat | Static cast from Double (double) to Float (float) |
CastDoubleToInt | Static cast from Double (double) to Int (int) |
CastDoubleToShort | Static cast from Double (double) to Short (short) |
CastDoubleToUChar | Static cast from Double (double) to UChar (unsigned char) |
CastDoubleToUInt | Static cast from Double (double) to UInt (unsigned int) |
CastDoubleToUShort | Static cast from Double (double) to UShort (unsigned short) |
CastFloatToBool | Static cast from Float (float) to Bool (bool) |
CastFloatToChar | Static cast from Float (float) to Char (signed char) |
CastFloatToDouble | Static cast from Float (float) to Double (double) |
CastFloatToInt | Static cast from Float (float) to Int (int) |
CastFloatToShort | Static cast from Float (float) to Short (short) |
CastFloatToUChar | Static cast from Float (float) to UChar (unsigned char) |
CastFloatToUInt | Static cast from Float (float) to UInt (unsigned int) |
CastFloatToUShort | Static cast from Float (float) to UShort (unsigned short) |
CastIntToBool | Static cast from Int (int) to Bool (bool) |
CastIntToChar | Static cast from Int (int) to Char (signed char) |
CastIntToDouble | Static cast from Int (int) to Double (double) |
CastIntToFloat | Static cast from Int (int) to Float (float) |
CastIntToShort | Static cast from Int (int) to Short (short) |
CastIntToUChar | Static cast from Int (int) to UChar (unsigned char) |
CastIntToUInt | Static cast from Int (int) to UInt (unsigned int) |
CastIntToUShort | Static cast from Int (int) to UShort (unsigned short) |
CastShortToBool | Static cast from Short (short) to Bool (bool) |
CastShortToChar | Static cast from Short (short) to Char (signed char) |
CastShortToDouble | Static cast from Short (short) to Double (double) |
CastShortToFloat | Static cast from Short (short) to Float (float) |
CastShortToInt | Static cast from Short (short) to Int (int) |
CastShortToUChar | Static cast from Short (short) to UChar (unsigned char) |
CastShortToUInt | Static cast from Short (short) to UInt (unsigned int) |
CastShortToUShort | Static cast from Short (short) to UShort (unsigned short) |
CastUCharToBool | Static cast from UChar (unsigned char) to Bool (bool) |
CastUCharToChar | Static cast from UChar (unsigned char) to Char (signed char) |
CastUCharToDouble | Static cast from UChar (unsigned char) to Double (double) |
CastUCharToFloat | Static cast from UChar (unsigned char) to Float (float) |
CastUCharToInt | Static cast from UChar (unsigned char) to Int (int) |
CastUCharToShort | Static cast from UChar (unsigned char) to Short (short) |
CastUCharToUInt | Static cast from UChar (unsigned char) to UInt (unsigned int) |
CastUCharToUShort | Static cast from UChar (unsigned char) to UShort (unsigned short) |
CastUIntToBool | Static cast from UInt (unsigned int) to Bool (bool) |
CastUIntToChar | Static cast from UInt (unsigned int) to Char (signed char) |
CastUIntToDouble | Static cast from UInt (unsigned int) to Double (double) |
CastUIntToFloat | Static cast from UInt (unsigned int) to Float (float) |
CastUIntToInt | Static cast from UInt (unsigned int) to Int (int) |
CastUIntToShort | Static cast from UInt (unsigned int) to Short (short) |
CastUIntToUChar | Static cast from UInt (unsigned int) to UChar (unsigned char) |
CastUIntToUShort | Static cast from UInt (unsigned int) to UShort (unsigned short) |
CastUShortToBool | Static cast from UShort (unsigned short) to Bool (bool) |
CastUShortToChar | Static cast from UShort (unsigned short) to Char (signed char) |
CastUShortToDouble | Static cast from UShort (unsigned short) to Double (double) |
CastUShortToFloat | Static cast from UShort (unsigned short) to Float (float) |
CastUShortToInt | Static cast from UShort (unsigned short) to Int (int) |
CastUShortToShort | Static cast from UShort (unsigned short) to Short (short) |
CastUShortToUChar | Static cast from UShort (unsigned short) to UChar (unsigned char) |
CastUShortToUInt | Static cast from UShort (unsigned short) to UInt (unsigned int) |
CharToString | Converts a Char (signed char) into a string |
DoubleToString | Converts a Double (double) into a string |
FloatToString | Converts a Float (float) into a string |
IntToString | Converts a Int (int) into a string |
ShortToString | Converts a Short (short) into a string |
StringToBool | Converts the content of the input string to a Bool (bool) |
StringToChar | Converts the content of the input string to a Char (signed char) |
StringToDouble | Converts the content of the input string to a Double (double) |
StringToFloat | Converts the content of the input string to a Float (float) |
StringToInt | Converts the content of the input string to a Int (int) |
StringToShort | Converts the content of the input string to a Short (short) |
StringToUChar | Converts the content of the input string to a UChar (unsigned char) |
StringToUInt | Converts the content of the input string to a UInt (unsigned int) |
StringToUShort | Converts the content of the input string to a UShort (unsigned short) |
StringToVectorChar | Converts the content of the input string to a VectorChar (std::vector |
StringToVectorDouble | Converts the content of the input string to a VectorDouble (std::vector |
StringToVectorFloat | Converts the content of the input string to a VectorFloat (std::vector |
StringToVectorInt | Converts the content of the input string to a VectorInt (std::vector |
StringToVectorLong | Converts the content of the input string to a VectorLong (std::vector |
StringToVectorShort | Converts the content of the input string to a VectorShort (std::vector |
StringToVectorString | Converts the content of the input string to a VectorString (std::vector |
StringToVectorUChar | Converts the content of the input string to a VectorUChar (std::vector |
StringToVectorUInt | Converts the content of the input string to a VectorUInt (std::vector |
StringToVectorUShort | Converts the content of the input string to a VectorUShort (std::vector |
StringTobbtk::Void | Converts the content of the input string to a bbtk::Void (bbtk::Void) |
UCharToString | Converts a UChar (unsigned char) into a string |
UIntToString | Converts a UInt (unsigned int) into a string |
UShortToString | Converts a UShort (unsigned short) into a string |
VectorCharToString | Converts the content of the input vector (std::vector |
VectorDoubleToString | Converts the content of the input vector (std::vector |
VectorFloatToString | Converts the content of the input vector (std::vector |
VectorIntToString | Converts the content of the input vector (std::vector |
VectorLongToString | Converts the content of the input vector (std::vector |
VectorShortToString | Converts the content of the input vector (std::vector |
VectorStringToString | Converts the content of the input vector (std::vector |
VectorUCharToString | Converts the content of the input vector (std::vector |
VectorUIntToString | Converts the content of the input vector (std::vector |
VectorUShortToString | Converts the content of the input vector (std::vector |
Description | : | ascii codes sequence to string - string to ascii codes sequence |
Author(s) | : | eduardo.davila [at] creatis [dot] insa-lyon.fr |
Category(s) | : | atomic box misc |
To use it | : | include std |
Inputs | ||
In | Ascii code or Ascii character | <std::string> |
Type | Conversion type (default 0) 0=Ascii codes to string, 1=String to ascii codes | <int> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Ascii codes sequence or characters sequence | <std::string> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Adds its inputs |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box math |
To use it | : | include std |
Inputs | ||
In1 | First number to add | <double> |
In2 | Second number to add | <double> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Result | <double> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Converts a Bool (bool) into a string |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <bool> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <std::string> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Bool (bool) to Char (signed char) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <bool> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <signed char> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Bool (bool) to Double (double) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <bool> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <double> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Bool (bool) to Float (float) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <bool> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <float> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Bool (bool) to Int (int) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <bool> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <int> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Bool (bool) to Short (short) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <bool> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <short> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Bool (bool) to UChar (unsigned char) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <bool> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <unsigned char> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Bool (bool) to UInt (unsigned int) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <bool> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <unsigned int> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Bool (bool) to UShort (unsigned short) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <bool> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <unsigned short> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Char (signed char) to Bool (bool) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <signed char> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <bool> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Char (signed char) to Double (double) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <signed char> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <double> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Char (signed char) to Float (float) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <signed char> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <float> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Char (signed char) to Int (int) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <signed char> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <int> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Char (signed char) to Short (short) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <signed char> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <short> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Char (signed char) to UChar (unsigned char) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <signed char> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <unsigned char> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Char (signed char) to UInt (unsigned int) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <signed char> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <unsigned int> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Char (signed char) to UShort (unsigned short) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <signed char> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <unsigned short> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Double (double) to Bool (bool) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <double> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <bool> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Double (double) to Char (signed char) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <double> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <signed char> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Double (double) to Float (float) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <double> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <float> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Double (double) to Int (int) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <double> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <int> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Double (double) to Short (short) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <double> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <short> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Double (double) to UChar (unsigned char) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <double> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <unsigned char> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Double (double) to UInt (unsigned int) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <double> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <unsigned int> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Double (double) to UShort (unsigned short) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <double> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <unsigned short> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Float (float) to Bool (bool) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <float> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <bool> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Float (float) to Char (signed char) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <float> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <signed char> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Float (float) to Double (double) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <float> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <double> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Float (float) to Int (int) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <float> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <int> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Float (float) to Short (short) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <float> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <short> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Float (float) to UChar (unsigned char) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <float> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <unsigned char> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Float (float) to UInt (unsigned int) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <float> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <unsigned int> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Float (float) to UShort (unsigned short) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <float> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <unsigned short> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Int (int) to Bool (bool) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <int> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <bool> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Int (int) to Char (signed char) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <int> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <signed char> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Int (int) to Double (double) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <int> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <double> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Int (int) to Float (float) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <int> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <float> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Int (int) to Short (short) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <int> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <short> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Int (int) to UChar (unsigned char) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <int> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <unsigned char> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Int (int) to UInt (unsigned int) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <int> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <unsigned int> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Int (int) to UShort (unsigned short) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <int> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <unsigned short> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Short (short) to Bool (bool) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <short> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <bool> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Short (short) to Char (signed char) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <short> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <signed char> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Short (short) to Double (double) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <short> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <double> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Short (short) to Float (float) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <short> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <float> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Short (short) to Int (int) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <short> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <int> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Short (short) to UChar (unsigned char) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <short> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <unsigned char> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Short (short) to UInt (unsigned int) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <short> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <unsigned int> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from Short (short) to UShort (unsigned short) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <short> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <unsigned short> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from UChar (unsigned char) to Bool (bool) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <unsigned char> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <bool> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from UChar (unsigned char) to Char (signed char) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <unsigned char> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <signed char> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from UChar (unsigned char) to Double (double) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <unsigned char> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <double> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from UChar (unsigned char) to Float (float) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <unsigned char> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <float> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from UChar (unsigned char) to Int (int) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <unsigned char> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <int> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from UChar (unsigned char) to Short (short) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <unsigned char> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <short> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from UChar (unsigned char) to UInt (unsigned int) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <unsigned char> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <unsigned int> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from UChar (unsigned char) to UShort (unsigned short) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <unsigned char> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <unsigned short> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from UInt (unsigned int) to Bool (bool) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <unsigned int> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <bool> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from UInt (unsigned int) to Char (signed char) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <unsigned int> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <signed char> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from UInt (unsigned int) to Double (double) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <unsigned int> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <double> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from UInt (unsigned int) to Float (float) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <unsigned int> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <float> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from UInt (unsigned int) to Int (int) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <unsigned int> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <int> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from UInt (unsigned int) to Short (short) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <unsigned int> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <short> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from UInt (unsigned int) to UChar (unsigned char) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <unsigned int> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <unsigned char> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from UInt (unsigned int) to UShort (unsigned short) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <unsigned int> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <unsigned short> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from UShort (unsigned short) to Bool (bool) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <unsigned short> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <bool> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from UShort (unsigned short) to Char (signed char) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <unsigned short> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <signed char> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from UShort (unsigned short) to Double (double) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <unsigned short> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <double> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from UShort (unsigned short) to Float (float) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <unsigned short> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <float> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from UShort (unsigned short) to Int (int) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <unsigned short> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <int> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from UShort (unsigned short) to Short (short) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <unsigned short> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <short> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from UShort (unsigned short) to UChar (unsigned char) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <unsigned short> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <unsigned char> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Static cast from UShort (unsigned short) to UInt (unsigned int) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <unsigned short> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <unsigned int> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Converts a Char (signed char) into a string |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <signed char> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <std::string> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | String concatenation |
Author(s) | : | jean-pierre.roux@creatis.insa-lyon.fr |
Category(s) | : | atomic box misc |
To use it | : | include std |
Inputs | ||
In1 | String 1 | <std::string> |
In10 | String 10 | <std::string> |
In2 | String 2 | <std::string> |
In3 | String 3 | <std::string> |
In4 | String 4 | <std::string> |
In5 | String 5 | <std::string> |
In6 | String 6 | <std::string> |
In7 | String 7 | <std::string> |
In8 | String 8 | <std::string> |
In9 | String 9 | <std::string> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Concatenated string | <std::string> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Gets configuration informations |
Author(s) | : | jpr@creatis.insa-lyon [dot] fr |
Category(s) | : | atomic box misc |
To use it | : | include std |
Inputs | ||
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
BinPath | Binaries path | <std::string> |
DataPath | Data path | <std::string> |
DocPath | Documentation path | <std::string> |
FileSeparator | / or \ | <std::string> |
SystemType | 0=Linux 1=Windows | <int> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Divides its inputs |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box math |
To use it | : | include std |
Inputs | ||
In1 | Numerator | <double> |
In2 | Denominator | <double> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Result | <double> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Converts a Double (double) into a string |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <double> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <std::string> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Executes bbi commands |
Author(s) | : | eduardo.davila@creatis.insa-lyon.fr |
Category(s) | : | atomic box |
To use it | : | include std |
Inputs | ||
In | bbi commands separated by ';' , use '' to indicate strings ex. help 'graph' | <std::string> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Executes system (O.S.) commands |
Author(s) | : | eduardo.davila@creatis.insa-lyon.fr |
Category(s) | : | atomic box |
To use it | : | include std |
Inputs | ||
In | system (O.S.) commands separated by ';' , use '' to indicate strings ex. help 'graph' | <std::string> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | returns the fullPathNames of the files in a Directory |
Author(s) | : | jpr@creatis.univ-lyon1.fr |
Category(s) | : | atomic box |
To use it | : | include std |
Inputs | ||
In | Directory Name | <std::string> |
Recursive | Recursive directory exploration | <bool> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | FullPathNames of the files | <std::vector<std::string, std::allocator<std::string> >> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Converts a Float (float) into a string |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <float> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <std::string> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Gets the i-th element from the input vector (std::vector |
Author(s) | : | info-dev@creatis.insa-lyon.fr |
Category(s) | : | atomic box |
To use it | : | include std |
Inputs | ||
I | Input | <int> |
In | Input | <std::vector<signed char, std::allocator<signed char> >> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <signed char> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Gets the i-th element from the input vector (std::vector |
Author(s) | : | info-dev@creatis.insa-lyon.fr |
Category(s) | : | atomic box |
To use it | : | include std |
Inputs | ||
I | Input | <int> |
In | Input | <std::vector<double, std::allocator<double> >> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <double> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Gets the i-th element from the input vector (std::vector |
Author(s) | : | info-dev@creatis.insa-lyon.fr |
Category(s) | : | atomic box |
To use it | : | include std |
Inputs | ||
I | Input | <int> |
In | Input | <std::vector<float, std::allocator<float> >> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <float> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Gets the i-th element from the input vector (std::vector |
Author(s) | : | info-dev@creatis.insa-lyon.fr |
Category(s) | : | atomic box |
To use it | : | include std |
Inputs | ||
I | Input | <int> |
In | Input | <std::vector<int, std::allocator<int> >> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <int> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Gets the i-th element from the input vector (std::vector |
Author(s) | : | info-dev@creatis.insa-lyon.fr |
Category(s) | : | atomic box |
To use it | : | include std |
Inputs | ||
I | Input | <int> |
In | Input | <std::vector<long, std::allocator<long> >> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <long> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Gets the i-th element from the input vector (std::vector |
Author(s) | : | info-dev@creatis.insa-lyon.fr |
Category(s) | : | atomic box |
To use it | : | include std |
Inputs | ||
I | Input | <int> |
In | Input | <std::vector<short, std::allocator<short> >> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <short> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Gets the i-th element from the input vector (std::vector |
Author(s) | : | info-dev@creatis.insa-lyon.fr |
Category(s) | : | atomic box |
To use it | : | include std |
Inputs | ||
I | Input | <int> |
In | Input | <std::vector<std::string, std::allocator<std::string> >> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <std::string> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Gets the i-th element from the input vector (std::vector |
Author(s) | : | info-dev@creatis.insa-lyon.fr |
Category(s) | : | atomic box |
To use it | : | include std |
Inputs | ||
I | Input | <int> |
In | Input | <std::vector<unsigned char, std::allocator<unsigned char> >> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <unsigned char> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Gets the i-th element from the input vector (std::vector |
Author(s) | : | info-dev@creatis.insa-lyon.fr |
Category(s) | : | atomic box |
To use it | : | include std |
Inputs | ||
I | Input | <int> |
In | Input | <std::vector<unsigned int, std::allocator<unsigned int> >> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <unsigned int> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Gets the i-th element from the input vector (std::vector |
Author(s) | : | info-dev@creatis.insa-lyon.fr |
Category(s) | : | atomic box |
To use it | : | include std |
Inputs | ||
I | Input | <int> |
In | Input | <std::vector<unsigned short, std::allocator<unsigned short> >> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <unsigned short> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Converts a Int (int) into a string |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <int> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <std::string> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Takes *any kind* of data and copies it to its output. Is a magic box as any box output can be plugged into it and its output can be plugged into any other box input (dynamic type checking, see below), hence it can be put between **any** two boxes. Type matching between its output and the input of the box(es) to which it is connected is made at *run-time*. The pipeline will be executed if the data types : i) match exactly ii) can be transformed by an adaptor iii) are related pointers, i.e. if the output pointer can be upcasted (static_cast) or downcasted (dynamic_cast) to an input type pointer (see the bbtk::any output connection rule in the guide for details). Important uses of the MagicBox are : 1) performing run-time pointer cast, either upward or backward an object hierarchy 2) perform data adaptation (adaptor creation) at run-time vs. pipeline creation time. |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box misc |
To use it | : | include std |
Inputs | ||
In | Input data | <bbtk::any<bbtk::thing>> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output data | <bbtk::any<bbtk::thing>> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Makes a kosher file name |
Author(s) | : | jpr@creatis.insa-lyon.fr |
Category(s) | : | atomic box misc |
To use it | : | include std |
Inputs | ||
Directory | Directory Name | <std::string> |
Extent | Extention | <std::string> |
File | File Name | <std::string> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Full File Name | <std::string> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Multiplies its inputs |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box math |
To use it | : | include std |
Inputs | ||
In1 | First number | <double> |
In2 | Second number | <double> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Result | <double> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | This box has multiple Void inputs and one Void output. Hence it relays any input modification to its output. It is usefull to plug different BoxChange outputs into the same BoxExecute input. |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box misc |
To use it | : | include std |
Inputs | ||
In1 | Input 1 | <bbtk::Void> |
In2 | Input 2 | <bbtk::Void> |
In3 | Input 3 | <bbtk::Void> |
In4 | Input 4 | <bbtk::Void> |
In5 | Input 5 | <bbtk::Void> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <bbtk::Void> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Prepends the input string file 'last name' with the default DataPath found in bbtk_config_xml |
Author(s) | : | jpr@creatis.insa-lyon.fr |
Category(s) | : | complex box misc |
To use it | : | include /usr/local/bin/../share/bbtk/bbs/std/boxes/bbPrependDataPath.bbs [source] |
Uses | : | std::Configuration std::MakeFileName |
Inputs | ||
In | Last Filename | <std::string> |
Outputs | ||
Out | Full path Filename | <std::string> |
Description | : | Prepends the input file name 'In' with the path to the data directory of the package 'Package' |
Author(s) | : | laurent.guigues at creatis.insa-lyon.fr |
Category(s) | : | complex box misc |
To use it | : | include /usr/local/bin/../share/bbtk/bbs/std/boxes/bbPrependPackageDataPath.bbs [source] |
Uses | : | std::Configuration std::MakeFileName |
Inputs | ||
In | Last Filename | <std::string> |
Package | Package name | <std::string> |
Outputs | ||
Out | Full path Filename | <std::string> |
Description | : | Implements a memory which can be shared by different boxes. The value of the output is the value of the lower index input which has changed. It is used for example for synchronization issues between boxes. |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box misc |
To use it | : | include std |
Inputs | ||
In | Input data | <bbtk::any<bbtk::thing>> |
In1 | Input data | <bbtk::any<bbtk::thing>> |
In2 | Input data | <bbtk::any<bbtk::thing>> |
In3 | Input data | <bbtk::any<bbtk::thing>> |
In4 | Input data | <bbtk::any<bbtk::thing>> |
In5 | Input data | <bbtk::any<bbtk::thing>> |
In6 | Input data | <bbtk::any<bbtk::thing>> |
In7 | Input data | <bbtk::any<bbtk::thing>> |
In8 | Input data | <bbtk::any<bbtk::thing>> |
In9 | Input data | <bbtk::any<bbtk::thing>> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output data | <bbtk::any<bbtk::thing>> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Converts a Short (short) into a string |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <short> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <std::string> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Just copies the value of its input to its output. Usefull to plug an input of a complex box into different internal boxes. |
Author(s) | : | laurent.guigues at creatis.insa-lyon.fr |
Category(s) | : | atomic box misc |
To use it | : | include std |
Inputs | ||
In | Input | <std::string> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <std::string> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Outputs the string set to the ith input Ini (In0 ... In9) according to the value of the input In, hence selects a string according to an index. |
Author(s) | : | eduardo.davila@creatis.insa-lyon.fr |
Category(s) | : | atomic box misc |
To use it | : | include std |
Inputs | ||
In | Index of the string to select | <int> |
In0 | String of index 0 | <std::string> |
In1 | String of index 1 | <std::string> |
In2 | String of index 2 | <std::string> |
In3 | String of index 3 | <std::string> |
In4 | String of index 4 | <std::string> |
In5 | String of index 4 | <std::string> |
In6 | String of index 6 | <std::string> |
In7 | String of index 7 | <std::string> |
In8 | String of index 8 | <std::string> |
In9 | String of index 9 | <std::string> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Selected string | <std::string> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Converts the content of the input string to a Bool (bool) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <std::string> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <bool> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Converts the content of the input string to a Char (signed char) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <std::string> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <signed char> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Converts the content of the input string to a Double (double) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <std::string> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <double> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Converts the content of the input string to a Float (float) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <std::string> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <float> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Converts the content of the input string to a Int (int) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <std::string> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <int> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Converts the content of the input string to a Short (short) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <std::string> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <short> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Converts the content of the input string to a UChar (unsigned char) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <std::string> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <unsigned char> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Converts the content of the input string to a UInt (unsigned int) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <std::string> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <unsigned int> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Converts the content of the input string to a UShort (unsigned short) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <std::string> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <unsigned short> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Converts the content of the input string to a VectorChar (std::vector |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <std::string> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <std::vector<signed char, std::allocator<signed char> >> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Converts the content of the input string to a VectorDouble (std::vector |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <std::string> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <std::vector<double, std::allocator<double> >> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Converts the content of the input string to a VectorFloat (std::vector |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <std::string> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <std::vector<float, std::allocator<float> >> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Converts the content of the input string to a VectorInt (std::vector |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <std::string> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <std::vector<int, std::allocator<int> >> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Converts the content of the input string to a VectorLong (std::vector |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <std::string> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <std::vector<long, std::allocator<long> >> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Converts the content of the input string to a VectorShort (std::vector |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <std::string> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <std::vector<short, std::allocator<short> >> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Converts the content of the input string to a VectorString (std::vector |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <std::string> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <std::vector<std::string, std::allocator<std::string> >> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Converts the content of the input string to a VectorUChar (std::vector |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <std::string> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <std::vector<unsigned char, std::allocator<unsigned char> >> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Converts the content of the input string to a VectorUInt (std::vector |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <std::string> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <std::vector<unsigned int, std::allocator<unsigned int> >> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Converts the content of the input string to a VectorUShort (std::vector |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <std::string> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <std::vector<unsigned short, std::allocator<unsigned short> >> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Converts the content of the input string to a bbtk::Void (bbtk::Void) |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <std::string> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <bbtk::Void> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Converts a UChar (unsigned char) into a string |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <unsigned char> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <std::string> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Converts a UInt (unsigned int) into a string |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <unsigned int> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <std::string> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Converts a UShort (unsigned short) into a string |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <unsigned short> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <std::string> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Converts the content of the input vector (std::vector |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <std::vector<signed char, std::allocator<signed char> >> |
Separator | Separator of item in the output string. Default is whitespace. | <std::string> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <std::string> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Converts the content of the input vector (std::vector |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <std::vector<double, std::allocator<double> >> |
Separator | Separator of item in the output string. Default is whitespace. | <std::string> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <std::string> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Converts the content of the input vector (std::vector |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <std::vector<float, std::allocator<float> >> |
Separator | Separator of item in the output string. Default is whitespace. | <std::string> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <std::string> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Converts the content of the input vector (std::vector |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <std::vector<int, std::allocator<int> >> |
Separator | Separator of item in the output string. Default is whitespace. | <std::string> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <std::string> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Converts the content of the input vector (std::vector |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <std::vector<long, std::allocator<long> >> |
Separator | Separator of item in the output string. Default is whitespace. | <std::string> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <std::string> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Converts the content of the input vector (std::vector |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <std::vector<short, std::allocator<short> >> |
Separator | Separator of item in the output string. Default is whitespace. | <std::string> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <std::string> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Converts the content of the input vector (std::vector |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <std::vector<std::string, std::allocator<std::string> >> |
Separator | Separator of item in the output string. Default is whitespace. | <std::string> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <std::string> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Converts the content of the input vector (std::vector |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <std::vector<unsigned char, std::allocator<unsigned char> >> |
Separator | Separator of item in the output string. Default is whitespace. | <std::string> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <std::string> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Converts the content of the input vector (std::vector |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <std::vector<unsigned int, std::allocator<unsigned int> >> |
Separator | Separator of item in the output string. Default is whitespace. | <std::string> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <std::string> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Converts the content of the input vector (std::vector |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box adaptor |
To use it | : | include std |
Inputs | ||
In | Input | <std::vector<unsigned short, std::allocator<unsigned short> >> |
Separator | Separator of item in the output string. Default is whitespace. | <std::string> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
Out | Output | <std::string> |
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | Waits a certain number of milliseconds |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | atomic box |
To use it | : | include std |
Inputs | ||
In | Number of milliseconds to wait | <int> |
BoxExecute | Any signal received by this input executes the box | <bbtk::Void> |
BoxProcessMode | Sets the processing mode of the box (Pipeline | Always | Reactive) | <std::string> |
Outputs | ||
BoxChange | Signals modifications of the box | <bbtk::Void> |
Description | : | std::Add box example. Also shows how to print an output of a box in bbi. |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | complex box example |
To use it | : | include /usr/local/bin/../share/bbtk/bbs/std/appli/exampleAdd.bbs [source] |
Uses | : | std::Add |
Inputs | ||
Outputs |
Description | : | std::ASCII box example. Shows how to use it. |
Author(s) | : | |
Category(s) | : | complex box example |
To use it | : | include /usr/local/bin/../share/bbtk/bbs/std/appli/exampleAscii.bbs [source] |
Uses | : | std::ASCII |
Inputs | ||
Outputs |
Description | : | |
Author(s) | : | jpr@creatis.univ-lyon1.fr |
Category(s) | : | complex box example |
To use it | : | include /usr/local/bin/../share/bbtk/bbs/std/appli/exampleFilesFromDirectory.bbs [source] |
Uses | : | std::FilesFromDirectory |
Inputs | ||
Outputs |
Description | : | std::PrependDataPath box example. Also shows how to invoke the default data path. |
Author(s) | : | |
Category(s) | : | complex box example |
To use it | : | include /usr/local/bin/../share/bbtk/bbs/std/appli/examplePrependDataPath.bbs [source] |
Uses | : | std::PrependDataPath |
Inputs | ||
Outputs |
Description | : | std::Wait box example : waits 1 second then 3 seconds... |
Author(s) | : | laurent.guigues@creatis.insa-lyon.fr |
Category(s) | : | complex box example |
To use it | : | include /usr/local/bin/../share/bbtk/bbs/std/appli/exampleWait.bbs [source] |
Uses | : | std::Wait |
Inputs | ||
Outputs |