MIRA
|
Macros for easy creation of JSON based text visualizations. More...
Go to the source code of this file.
Classes | |
class | VisualizationTextBase< T > |
class | VisualizationTextJSONBase< T > |
Namespaces | |
mira | |
specialize cv::DataType for our ImgPixel and inherit from cv::DataType<Vec> | |
Macros | |
#define | MIRA_TEXT_VISUALIZATION(className, type, channel, name, description, category) |
Use this macro to create a text visualization for a data type that supports toString(DataType) (is a atomic/build in type or supports the ostream& operator<<(ostream& s) operator. More... | |
#define | MIRA_JSON_VISUALIZATION(className, type, channel, name, description, category) |
Use this macro to create a text visualization for a data type that supports serialization using JSON serializer. More... | |
Macros for easy creation of JSON based text visualizations.
#define MIRA_TEXT_VISUALIZATION | ( | className, | |
type, | |||
channel, | |||
name, | |||
description, | |||
category | |||
) |
Use this macro to create a text visualization for a data type that supports toString(DataType) (is a atomic/build in type or supports the ostream& operator<<(ostream& s) operator.
className specifies the class name type is the data type of the channel channel is the name of the channel property name is the name of the visualization description describes the visualization category is the category of the visualization
#define MIRA_JSON_VISUALIZATION | ( | className, | |
type, | |||
channel, | |||
name, | |||
description, | |||
category | |||
) |
Use this macro to create a text visualization for a data type that supports serialization using JSON serializer.
className specifies the class name type is the data type of the channel channel is the name of the channel property name is the name of the visualization description describes the visualization category is the category of the visualization