예제 #1
0
targ_anim_param = dict(
    velocity=None,  #800.0,
    expandedscale=None,  #2.0,
    expansionduration=None,  #0.1,
    contractionduration=None,  #0.1
)

# Run a validation procedure
validation_proc = ValidationProcedure(
    win,
    target,
    positions,
    target_animation_params=targ_anim_param,
    background=None,
    triggers=multi_trigger,
    storeeventsfor=None,
    accuracy_period_start=0.550,
    accuracy_period_stop=.150,
    show_intro_screen=True,
    intro_text="Validation procedure is now going to be performed.",
    show_results_screen=True,
    results_in_degrees=True)

# Run the validation process. The method does not return until the process
# is complete. Returns the validation calculation results and data collected
# for the analysis.
results = validation_proc.display()

# The last calculated validation results can also be retrieved using
# results = validation_proc.getValidationResults()
예제 #2
0
targ_anim_param=dict(
                    velocity=None,#800.0,
                    expandedscale=None,#2.0,
                    expansionduration=None,#0.1,
                    contractionduration=None,#0.1
                    )
                        
# Run a validation procedure 
validation_proc=ValidationProcedure(
                                    target,
                                    positions,
                                    target_animation_params=targ_anim_param,
                                    background=None,
                                    triggers=multi_trigger,
                                    storeeventsfor=None,
                                    accuracy_period_start=0.550,
                                    accuracy_period_stop=.150,
                                    show_intro_screen=True,
                                    intro_text="Validation procedure is now going to be performed.",
                                    show_results_screen=True,
                                    results_in_degrees=True
                                    )                        

# Run the validation process. The method does not return until the process
# is complete.
# Returns the validation calculation results and data collected for the
# analysis.                       
results = validation_proc.display()

# The lasst calculated validation results can also be retrieved using
results = validation_proc.getValidationResults() 
예제 #3
0
targ_anim_param = dict(
                    velocity=None,#800.0,
                    expandedscale=None,#2.0,
                    expansionduration=None,#0.1,
                    contractionduration=None,#0.1
                    )
                        
# Run a validation procedure 
validation_proc=ValidationProcedure(win,
                                    target,
                                    positions,
                                    target_animation_params=targ_anim_param,
                                    background=None,
                                    triggers=multi_trigger,
                                    storeeventsfor=None,
                                    accuracy_period_start=0.550,
                                    accuracy_period_stop=.150,
                                    show_intro_screen=True,
                                    intro_text="Validation procedure is now going to be performed.",
                                    show_results_screen=True,
                                    results_in_degrees=True
                                    )                        

# Run the validation process. The method does not return until the process
# is complete. Returns the validation calculation results and data collected
# for the analysis.
results = validation_proc.display()

# The last calculated validation results can also be retrieved using
# results = validation_proc.getValidationResults()