-
Notifications
You must be signed in to change notification settings - Fork 0
/
density.lyx
2789 lines (1969 loc) · 55.1 KB
/
density.lyx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#LyX 2.0 created this file. For more info see http://www.lyx.org/
\lyxformat 413
\begin_document
\begin_header
\textclass article
\begin_preamble
\usepackage{ae}
%% maxwidth is the original width if it's less than linewidth
%% otherwise use linewidth (to make sure the graphics do not exceed the margin)
\def\maxwidth{%
\ifdim\Gin@nat@width>\linewidth
\linewidth
\else
\Gin@nat@width
\fi
}
\usepackage{todonotes}
\usepackage[thickspace]{SIunits}
\usepackage{movie15}
\usepackage{hyperref}
\AtBeginDocument{\renewcommand{\ref}[1]{\mbox{\autoref{#1}}}}
\end_preamble
\use_default_options false
\begin_modules
knitr
\end_modules
\maintain_unincluded_children false
\language english
\language_package default
\inputencoding utf8
\fontencoding global
\font_roman default
\font_sans default
\font_typewriter default
\font_default_family default
\use_non_tex_fonts false
\font_sc false
\font_osf false
\font_sf_scale 100
\font_tt_scale 100
\graphics default
\default_output_format default
\output_sync 0
\bibtex_command default
\index_command default
\paperfontsize default
\spacing single
\use_hyperref false
\papersize default
\use_geometry false
\use_amsmath 1
\use_esint 0
\use_mhchem 1
\use_mathdots 1
\cite_engine natbib_authoryear
\use_bibtopic false
\use_indices false
\paperorientation portrait
\suppress_date false
\use_refstyle 1
\index Index
\shortcut idx
\color #008000
\end_index
\secnumdepth 3
\tocdepth 3
\paragraph_separation indent
\paragraph_indentation default
\quotes_language english
\papercolumns 1
\papersides 1
\paperpagestyle default
\tracking_changes false
\output_changes false
\html_math_output 0
\html_css_as_file 0
\html_be_strict false
\end_header
\begin_body
\begin_layout Standard
\begin_inset ERT
status open
\begin_layout Plain Layout
%knitr options
\end_layout
\begin_layout Plain Layout
<<knitr-options,include=FALSE, results="hide">>=
\end_layout
\begin_layout Plain Layout
knit_hooks$set(plot = function(x, options) {
\end_layout
\begin_layout Plain Layout
x = paste(x, collapse = '.') # x is file.ext now instead of c(file, ext)
\end_layout
\begin_layout Plain Layout
paste0('
\backslash
\backslash
end{kframe}', hook_plot_tex(x, options), '
\backslash
\backslash
begin{kframe}')
\end_layout
\begin_layout Plain Layout
})
\end_layout
\begin_layout Plain Layout
pdf.options(encoding='ISOLatin2.enc')
\end_layout
\begin_layout Plain Layout
opts_chunk$set(cache=TRUE,encoding="UTF-8",fig.width=6,
\end_layout
\begin_layout Plain Layout
fig.height=4,dev="cairo_pdf",dev.args=list(pointsize=10),
\end_layout
\begin_layout Plain Layout
tidy=FALSE,out.width="1.0
\backslash
\backslash
textwidth",autodep=TRUE,
\end_layout
\begin_layout Plain Layout
external=TRUE,results="hide",echo=FALSE,stop_on_error=2L)
\end_layout
\begin_layout Plain Layout
@
\end_layout
\begin_layout Plain Layout
\end_layout
\end_inset
\end_layout
\begin_layout Standard
\begin_inset ERT
status collapsed
\begin_layout Plain Layout
%density-externalize
\end_layout
\begin_layout Plain Layout
<<density-externalize,cache=FALSE,echo=FALSE,results="hide">>=
\end_layout
\begin_layout Plain Layout
read_chunk("density_weave.R")
\end_layout
\begin_layout Plain Layout
@
\end_layout
\begin_layout Plain Layout
\end_layout
\end_inset
\end_layout
\begin_layout Standard
\begin_inset ERT
status collapsed
\begin_layout Plain Layout
%density-setup
\end_layout
\begin_layout Plain Layout
<<density-setup,cache=FALSE>>=
\end_layout
\begin_layout Plain Layout
@
\end_layout
\begin_layout Plain Layout
\end_layout
\end_inset
\end_layout
\begin_layout Standard
\begin_inset ERT
status collapsed
\begin_layout Plain Layout
%%
\backslash
maxwidth has been defined in the preamble; see document settings
\end_layout
\begin_layout Plain Layout
\backslash
setkeys{Gin}{width=
\backslash
maxwidth}
\end_layout
\end_inset
\end_layout
\begin_layout Section
\begin_inset CommandInset label
LatexCommand label
name "sec:results-number"
\end_inset
Experiment 2: Changes in density versus number of elements
\begin_inset Argument
status open
\begin_layout Plain Layout
Experiment 2
\end_layout
\end_inset
\end_layout
\begin_layout Standard
\begin_inset ERT
status collapsed
\begin_layout Plain Layout
%density-load
\end_layout
\begin_layout Plain Layout
<<density-load,cache=TRUE,echo=FALSE,results="hide">>=
\end_layout
\begin_layout Plain Layout
@
\end_layout
\begin_layout Plain Layout
\end_layout
\end_inset
\end_layout
\begin_layout Standard
In
\begin_inset CommandInset ref
LatexCommand nameref
reference "sec:results-basic"
\end_inset
I reported that judgements of motion direction were more sensitive to envelope
motion when spacing is large.
In that experiment, because spacing was determined by changing the number
of elements, the same results could equally well be described as sensitivity
being higher when there are fewer elements.
Similarly, in the case of carrier motion, I modeled the sensitivity to
carrier motion as being proportional to the number of identical elements,
but it could also be described as inversely proportional to the spacing
between elements.
Mathematically this would be expressed by substituting
\begin_inset Formula $N$
\end_inset
for
\begin_inset Formula $\frac{2\pi r}{S}$
\end_inset
in the model formulation or vice versa.
This leaves the question of which variable provides a better characterization
of motion perception in this task.
\end_layout
\begin_layout Standard
\begin_inset CommandInset ref
LatexCommand nameref
reference "sec:results-number"
\end_inset
attempts to resolve the confounding of spacing and element number, to determine
which provides a better characterization of motion perception in this task.
The answer does not have to be the same for both types of motion; sensitivity
to envelope motion may be determined by number while sensitive to number
whereas sensitivity to carrier motion is determined by spacing, or vice
versa.
Another way to frame the question is to ask whether the changes in sensitivity
to envelope and carrier motion are due to influences from nearby flankers,
or due to effects at a larger scale.
For both carrier and envelope motion, a dependency on element spacing (as
opposed to number) would imply a
\noun on
local
\noun default
process, sensitive to the immediate context of each element but insensitive
to elements farther away.
Conversely a dependence on element number would indicate a
\noun on
global
\noun default
process, which combines information across multiple elements even at large
separations.
\begin_inset Note Note
status collapsed
\begin_layout Plain Layout
We sketched an interpretation in
\begin_inset CommandInset ref
LatexCommand formatted
reference "fig:model-visual-schematic"
\end_inset
in which this term is described as a summation over a window surrounding
one attentively tracked element.
However as far as the data from
\begin_inset CommandInset ref
LatexCommand formatted
reference "sec:results-basic"
\end_inset
is concerned, this window of summation could be any size, from an interaction
directly between an element and its neighbor to a summation over the entire
visual field.
We therefore wished to determine how global the summation of carrier motion
was.
\end_layout
\end_inset
To distinguish these alternatives, in
\begin_inset CommandInset ref
LatexCommand nameref
reference "sec:results-number"
\end_inset
I used stimuli which decoupled the number of elements from the element
spacing by creating a display where the elements cover only a portion of
the scene.
I did this by varying the
\emph on
extent
\emph default
of the stimulus, defined as the circumferential distance covered by the
array of moving elements, as shown in
\begin_inset CommandInset ref
LatexCommand formatted
reference "fig:density-stimulus"
\end_inset
.
That is, the elements form a partial instead of a full circle.
\end_layout
\begin_layout Standard
\begin_inset Note Note
status collapsed
\begin_layout Plain Layout
We also chose left versus right...
It probably turns out we can't say anything useful on left vs.
right, because we aren't measuring thresholds.
Response rates aren't really accurate for quantifying whether there's more
or less interference.
Some subjects show differences, but we just explain any differences away
as a bias.
\end_layout
\end_inset
\end_layout
\begin_layout Standard
\begin_inset Note Note
status collapsed
\begin_layout Plain Layout
\begin_inset Note Note
status collapsed
\begin_layout Plain Layout
more discussion
\end_layout
\end_inset
It has been suggested that crowding results from
\begin_inset Quotes eld
\end_inset
obligatory summation
\begin_inset Quotes erd
\end_inset
of features within some distance; however another interpretation of crowding
is that it results from a loss of information about spatial information,
and the obligatory summation might be considered to be a separate phenomenon.
MOVE TO DISCUSSION
\end_layout
\end_inset
\begin_inset Note Note
status collapsed
\begin_layout Plain Layout
Our model also included terms controlling a repulsive effect.
This effect did not appear to depend on the density
\begin_inset Note Note
status open
\begin_layout Plain Layout
did I talk about this in the earlier section?
\end_layout
\end_inset
it may either reflect a sort of normalized average of the motion energy
across the visual field, or the influence of the carrier motion of an isolated
element on itself.
\begin_inset Note Note
status open
\begin_layout Plain Layout
where am I going with this>:
\end_layout
\end_inset
I would ignore this - getting lost in the trees!
\end_layout
\end_inset
\begin_inset Note Note
status collapsed
\begin_layout Plain Layout
Another goal was to determine whether there were differences in performance
dependent on the location of the elements in the visual field.
This may give additional clues to the the nature of mechanisms underlying
the perception of motion direction.
Depending on which cortical areas are involved in generating a perception
of motion, we may see more or less interference between moving objects
For example, the numeric limit on object tracking appears to be independent
between left and right hemifields
\begin_inset CommandInset citation
LatexCommand citep
key "Alvarez:2005uq"
\end_inset
.
In contrast, if the reversal shares mechanisms with crowding effects, then
we might expect a lessened crowding effect for stimuli that span the horizontal
meridian (, but see...)
\begin_inset Note Note
status open
\begin_layout Plain Layout
I don't find anything useful for crossing meridians.
Move to Discussion if at all.
\end_layout
\end_inset
\end_layout
\end_inset
\begin_inset Note Note
status collapsed
\begin_layout Plain Layout
\begin_inset Note Note
status open
\begin_layout Plain Layout
This type of reasoning belongs in Discussion.
\end_layout
\end_inset
There are a few overlapping reasons why we would wish to experimentally
distinguish element spacing from element number.
\end_layout
\begin_layout Enumerate
Studies of the
\begin_inset Quotes eld
\end_inset
multiple object tracking
\begin_inset Quotes erd
\end_inset
task
\begin_inset CommandInset citation
LatexCommand citep
key "Pylyshyn:1988fk"
\end_inset
have shown that when observers attentively track a subset of objects moving
among distractors, there appears to be a limit to the number of objects
whose changes in position can be tracked for later identification.
Adding more elements to our display might then interfere with the ability
to individuate and track each element, leading to the inability to correctly
discern their change in position over time.
Although the number of elements whose global motion can be correctly discerned
in our display is substantially larger than the limits usually found in
MOT studies, the elements also move coherently, consistent with a structural
rotation of the stimulus, which may increase the capacity for tracking
\begin_inset CommandInset citation
LatexCommand citep
key "Yantis:1992fk"
\end_inset
.
\end_layout
\begin_layout Enumerate
For similar reasons, element spacing in section
\begin_inset CommandInset ref
LatexCommand formatted
reference "sec:results-basic"
\end_inset
is also confounded with the aggregate amount of motion energy; reducing
spacing requires adding more elements, which contributes more motion energy.
Some motion mechanisms may sum up short-range motion information over large
regions of the visual field; for example, global optic flow patterns such
as rotations produce aftereffects in quadrants of the visual field that
did not contain the adapting stimulus
\begin_inset CommandInset citation
LatexCommand citep
key "Snowden:1997vn"
\end_inset
, suggesting a mechanism tuned to optic flow that integrates large areas
of the visual field.
Since the patterns of carrier and envelope motion in our stimulus are (consider
ed separately) consistent with a global rotation, channels sensitive to
global rotations are likely to contribute to the appearance of our stimuli.
If these detectors are more sensitive to first-order than than higher order
motion,
\begin_inset Note Note
status collapsed
\begin_layout Plain Layout
ugh, here's one place where the short-range / long-range distinction is
confusing, because I'm suggesting that the mechanism with huge receptive
fields is all about
\begin_inset Quotes eld
\end_inset
short-range
\begin_inset Quotes erd
\end_inset
motion (has anyone looked at this?).
It does make sense that the optic flow computed in MST is based on a large-scal
e integration of first-order motion, though.
Note, that there are disputes of Bertne and Faubert, finding integration
of second-order optic flow; but I don't think the
\begin_inset Quotes eld
\end_inset
long-range
\begin_inset Quotes erd
\end_inset
mechanism is
\begin_inset Quotes eld
\end_inset
second order
\begin_inset Quotes erd
\end_inset
anyway.
\end_layout
\end_inset
motion
\begin_inset CommandInset citation
LatexCommand citep
key "Bertone:2003zr"
\end_inset
, merely adding more elements my tip the balance toward the short-range
component of the stimulus.
\end_layout
\begin_layout Enumerate
A third reason concerns the induced motion effect we observed at larger
element spacings.
Do these effects depend on element number???
\end_layout
\end_inset
\end_layout
\begin_layout Standard
If the array of elements covers only a portion of the scene, spacing and
number can be varied independently.
This involves varying the
\emph on
extent
\emph default
of the stimulus, defined as the circumferential distance covered by the
array of moving elements.
Any two of these variables (spacing, number, and extent) determine the
third, so I will somewhat arbitrarily focus on spacing and element number
as the relevant variables.
\end_layout
\begin_layout Standard
\begin_inset Note Note
status collapsed
\begin_layout Plain Layout
We also chose left versus right...
It probably turns out we can't say anything useful on left vs.
right, because we aren't measuring thresholds.
Response rates aren't really accurate for quantifying whether there's more
or less interference.
Some subjects show differences, but we just explain any differences away
as a bias.
\end_layout
\end_inset
\end_layout
\begin_layout Subsection
Methods
\begin_inset CommandInset label
LatexCommand label
name "sub:density-methods"
\end_inset
\end_layout
\begin_layout Standard
\begin_inset Float figure
wide false
sideways false
status open
\begin_layout Plain Layout
\align center
\begin_inset ERT
status open
\begin_layout Plain Layout
\backslash
includegraphics[width=4in]{numdensity-stimulus.pdf}
\end_layout
\end_inset
\begin_inset Caption
\begin_layout Plain Layout
\begin_inset CommandInset label
LatexCommand label
name "fig:density-stimulus"
\end_inset
Example frame from a partial-circle stimulus.
A number of moving elements are present on one side of the display.
Two additional flanking elements are added, which always have carrier strength
of 0 (i.e.
they flicker in counterphase.) The flanking elements were positioned so
as to be
\begin_inset ERT
status open
\begin_layout Plain Layout
$
\backslash
Sexpr{paste(numbers$min.distance, collapse=" to ")}
\backslash
degree$
\end_layout
\end_inset
away from the nearest moving elements at their closest approach.
\end_layout
\end_inset
\end_layout
\end_inset
\begin_inset Note Note
status collapsed
\begin_layout Itemize
Show stimulus design; covarying element number and density
\end_layout
\begin_layout Itemize
Mention flankers, which are not counted as moving elements
\end_layout
\begin_layout Itemize
Show demo movie, numbers linked to stimulus space
\end_layout
\begin_layout Itemize
Mention how displacement and direction content is chosen, based on data
from Experiment 1, in an ad-hoc manner.
Illustrate with comparisons of Exp 1 and Exp 2 data from illustrative subjects
(NJ, PBM)
\end_layout
\begin_layout Itemize
We also test in alternate hemifields blockwise (but this is less important.)
\end_layout
\begin_layout Itemize
SUBTLE BUT IMPORTANT POINT: It's the slope of the lines that matters most,
not their height or the change in height with element number (which is
explained away as full-field sum of motion-energy).
Whether the lines collapse together plotted against spacing, as PBM, or
collapse plotted versus number, as NJ, doesn't actually matter.
What matters is that In particular, it's that the slope does not change
with element number, that distinguishes this model from e.g.
one in which element number causes collapse due to failure of attentive
tracking or whatever.
Work through why the model predicts this.
\end_layout
\end_inset
\end_layout
\begin_layout Standard
The task was identical to that in
\begin_inset CommandInset ref
LatexCommand nameref
reference "sec:results-basic"
\end_inset
.
The motion elements were fixed at
\begin_inset ERT
status collapsed
\begin_layout Plain Layout
$
\backslash
Sexpr{sprintf("%.2f",numbers$segment.ecc)}^
\backslash
circ$
\end_layout
\end_inset
eccentricity.
The stimulus consisted of evenly spaced moving elements, identical to those
in
\begin_inset CommandInset ref
LatexCommand nameref
reference "sec:results-basic"
\end_inset
, but instead of being distributed around the entire circle, the elements
were distributed along a partial-circle on either the left or right wide
of the display.
Stimuli were positioned either left or right of the fixation point.
In pilot experiments observers found it difficult to judge the direction
of motion if the stimulus appeared in a random location on each trial,
so stimuli alternated between hemifields in blocks.
Each session used an equal number of stimuli positioned in the left and
right hemifields, with the position alternating in blocks of 100 to 200
trials.
\end_layout
\begin_layout Standard
I varied both the spacing and the number of elements used; accordingly,
the total spatial extent of the stimulus varied from trial to trial.
The stimuli used are plotted in
\begin_inset CommandInset ref
LatexCommand formatted
reference "fig:density-conditions"
\end_inset
.
This stimulus set was constructed so that each value of spacing was tested
using more than one value for the element number, and vice versa.
I chose a set of stimuli that was symmetrically arranged in element number
and spacing, spanning a similar range for both variables (covering a factor
of
\begin_inset ERT
status collapsed
\begin_layout Plain Layout
\backslash
Sexpr{chain(numbers$tested$trial_extra_nVisibleTargets, max(.)/min(.),latex.format(
digits=3))}
\end_layout
\end_inset
in element number and a factor of
\begin_inset ERT
status collapsed
\begin_layout Plain Layout
\backslash
Sexpr{chain(numbers$tested$spacing, max(.)/min(.),latex.format(digits=3))}
\end_layout
\end_inset
in element spacing.)
\end_layout
\begin_layout Standard
\begin_inset Float figure
wide false
sideways false
status open
\begin_layout Plain Layout
\align center
\begin_inset ERT
status open
\begin_layout Plain Layout
\backslash
movsmall{demo_segment}
\end_layout
\end_inset
\end_layout
\begin_layout Plain Layout
\begin_inset Caption
\begin_layout Plain Layout
\begin_inset CommandInset label
LatexCommand label
name "movie:density-stimuli"
\end_inset
(
\family typewriter
demo_segment.mov
\family default
) Example stimuli for
\begin_inset CommandInset ref
LatexCommand nameref
reference "sec:results-number"
\end_inset
.
In this movie, the elements are shown in the left hemifield; in the experiment,
stimuli alternated across hemifields, blockwise.
Two stationary flankers with no carrier motion (showing counterphase flicker)
are present at either end of the array of elements.
Stimulus pairs 1-2 and 3-4 show stimuli with identical spacing, with different
numbers of targets; pair 2-3 holds target number constant while reducing
spacing.
The numbers index the stimulus set given in
\begin_inset CommandInset ref
LatexCommand formatted
reference "fig:density-conditions"
\end_inset
.
\end_layout
\end_inset
\end_layout
\end_inset
\end_layout
\begin_layout Standard
\begin_inset Float figure
wide false
sideways false