English: The flash-lag effect. When a visual stimulus moves along a continuous trajectory, it may be seen ahead of its veridical position with respect to an unpredictable event such as a punctuate flash. This illusion tells us something important about the visual system: contrary to classical computers, neural activity travels at a relatively slow speed. It is largely accepted that the resulting delays cause this perceived spatial lag of the flash. Still, after several decades of debates, there is no consensus regarding the underlying mechanisms. See https://laurentperrinet.github.io/publication/khoei-masson-perrinet-17/
Tarih
Kaynak
Yükleyenin kendi çalışması
This file is easily generated using Python with the following libraries: numpy, gizeh, moviepy:
import os
import numpy as np
import gizeh as gz
import moviepy.editor as mpy
figpath = '../figures'
W, H = 1000, 600
r = -W/64
duration = 3.
start = duration*.2
stop = duration*.8
duration_flash = .05
fps = 50
flash = gz.rectangle(lx=r, ly=r, xy=(W/2., H/2.-r), fill=(0,1,0))
def make_frame(t):
surface = gz.Surface(W, H, bg_color=(0, 0, 0))
if np.abs(t-duration/2) < duration_flash: flash.draw(surface)
if start < t < stop:
rect = gz.rectangle(lx=r, ly=r, xy=(W*t/duration, H/2.+r), fill=(1,0,0))
rect.draw(surface)
return surface.get_npimage()
clip = mpy.VideoClip(make_frame, duration=duration)
clip.write_videofile(os.path.join(figpath, 'flash_lag.mp4'), fps=fps)
atıf – Esere yazar veya lisans sahibi tarafından belirtilen (ancak sizi ya da eseri kullanımınızı desteklediklerini ileri sürmeyecek bir) şekilde atıfta bulunmalısınız.
benzer paylaşım – Maddeyi yeniden düzenler, dönüştürür veya inşa ederseniz, katkılarınızı özgünüyle aynı veya uyumlu lisans altında dağıtmanız gerekir.
Bu belgenin GNU Özgür Belgeleme Lisansı, Sürüm 1.2 veya Özgür Yazılım Vakfı tarafından yayımlanan sonraki herhangi bir sürüm şartları altında bu belgenin kopyalanması, dağıtılması ve/veya değiştirilmesi için izin verilmiştir;
Değişmeyen Bölümler, Ön Kapak Metinleri ve Arka Kapak Metinleri yoktur. Lisansın bir kopyası GNU Özgür Belgeleme Lisansı sayfasında yer almaktadır.http://www.gnu.org/copyleft/fdl.htmlGFDLGNU Free Documentation Licensetruetrue
İstediğiniz lisansı seçebilirsiniz.
Altyazılar
Bu dosyanın temsil ettiği şeyin tek satırlık açıklamasını ekleyin.
The flash-lag effect. When a visual stimulus moves along a continuous trajectory, it may be seen ahead of its veridical position with respect to an unpredictable event such as a punctuate flash. This illusion tells us something important about the visu...