#include "Neuro/SimulationViewerEyeRegion.H"
#include "Component/OptionManager.H"
#include "Component/ModelOptionDef.H"
#include "Transport/TransportOpts.H"
#include "Channels/ChannelBase.H"
#include "Image/DrawOps.H"
#include "Image/ColorOps.H"
#include "Image/CutPaste.H"
#include "Image/FilterOps.H"
#include "Image/MathOps.H"
#include "Image/ShapeOps.H"
#include "Image/Transforms.H"
#include "Neuro/NeuroOpts.H"
#include "Neuro/NeuroSimEvents.H"
#include "Psycho/EyeData.H"
#include "Simulation/SimEventQueue.H"
#include "Util/sformat.H"
#include "rutz/trace.h"
#include <fstream>
Go to the source code of this file.
Variables | |
const ModelOptionDef | OPT_SimViewXMLInputFile |
const ModelOptionDef | OPT_SimViewSelectedObjects |
const ModelOptionDef | OPT_SimViewObjDrawMode |
const ModelOptionDef | OPT_SimViewHighlightMode |
const ModelOptionDef | OPT_SimViewPrependHeader |
const ModelOptionDef | OPT_SimViewRegionOutFile |
comparison between region data from an ObjRec data (from an XML file) and human eye movements
Definition in file SimulationViewerEyeRegion.C.
const ModelOptionDef OPT_SimViewHighlightMode |
{ MODOPT_ARG(std::string), "SimViewHighlightMode", &MOC_DISPLAY, OPTEXP_CORE, "Chooses when objects are highlighted. Note that these options currently " "depend upon --display-patch and --display-foa. Also, highlighting is currently " "ambiguous with multiple eye-traces. \n" "\t'targeted' triggers highlighting only at the FOA.\n" "\t'traced' highlights the object that is at the point of gaze.", "obj-highlightmode", '\0', "<off|targeted|traced>", "targeted" }
Definition at line 82 of file SimulationViewerEyeRegion.C.
const ModelOptionDef OPT_SimViewObjDrawMode |
{ MODOPT_ARG(std::string), "SimViewObjDrawMode", &MOC_DISPLAY, OPTEXP_CORE, "Chooses which objects are displayed. Note that these options currently " "depend upon --display-patch and --display-foa. \n" "\t'selected' objects are objects which are selected by the option --objs-filter.\n" "\t'targeted' objects are objects that saccades are directed towards.\n" "\t'traced' objects are objects that are followed by an eyetrace.\n" "\t'none' and 'all' are none and all labeled objects, respectively.", "obj-drawmode", '\0', "<none|selected|targeted|traced|all>", "all" }
Definition at line 72 of file SimulationViewerEyeRegion.C.
const ModelOptionDef OPT_SimViewPrependHeader |
{ MODOPT_FLAG, "SimViewPrependHeader", &MOC_DISPLAY, OPTEXP_CORE, "Determines whether to add a header to svem or region output", "prepend-header", '\0', "", "false" }
Definition at line 92 of file SimulationViewerEyeRegion.C.
const ModelOptionDef OPT_SimViewRegionOutFile |
{ MODOPT_ARG_STRING, "SimViewRegionOutFile", &MOC_DISPLAY, OPTEXP_CORE, "File name for region-based output data (or empty to not save output data).", "region-out-fname", '\0', "<file>", "" }
Definition at line 98 of file SimulationViewerEyeRegion.C.
const ModelOptionDef OPT_SimViewSelectedObjects |
{ MODOPT_ARG(std::string), "SimViewSelectedObjects", &MOC_DISPLAY, OPTEXP_CORE, "Only display objects matching the given name.", "objs-filter", '\0', "string", "" }
Definition at line 67 of file SimulationViewerEyeRegion.C.
const ModelOptionDef OPT_SimViewXMLInputFile |
{ MODOPT_ARG(std::string), "SimViewXMLInputFile", &MOC_INPUT, OPTEXP_CORE, "XML file to gather region data from.", "xml-file", '\0', "string", ""}
Definition at line 62 of file SimulationViewerEyeRegion.C.