Topographic Mapping with fmri

Size: px
Start display at page:

Download "Topographic Mapping with fmri"

Transcription

1 Topographic Mapping with fmri Retinotopy in visual cortex Tonotopy in auditory cortex signal processing + neuroimaging = beauty!

2 Topographic Mapping with fmri Retinotopy in visual cortex Tonotopy in auditory cortex Overview: 1) background on brain topographic maps with emphasis on visual cortex 2) traveling wave method for mapping visual cortex, use of Fourier Analysis 3) examples from auditory and motor cortex

3 Topographic Mapping with fmri Retinotopy in visual cortex Tonotopy in auditory cortex Topographic maps: in the brain we find ordered projections of the body s sensory surfaces (retina, cochlea, body surface) Imaging these maps allows identification of these sensory regions, in individual subjects, just a few minutes of fmri scan time required. Many applications in clinical and perceptual neuroscience.

4 Background Visual System & Retinotopy Motor cortex Somatosensory cortex Different sensory surfaces project to different regions of the brain The 2-D array of cells in the retina project in an orderly manner to visual cortex, such that the cortex a has 2D retinal image of the visual field. Visual cortical neurons each have a limited view (receptive field) of the visual field and are neighbored by neurons with adjacent views.

5 Background Visual System & Retinotopy Left Visual field projects to Right brain hemisphere Right Visual field projects to Left brain hemisphere

6 Background Visual System & Retinotopy A hierarchy of visual areas each with its own retinal image : retina to thalamus (LGN) to V1 to V2 to V3, etc... V1 is the first visual area in the cortex and is necessary for visual perception. Local lesions of V1 produce blindspots in the corresponding region of visual space Each visual areas is hard to define by anatomy. But could be identified if we could just visualize its retinal image

7 Retinotopy: retinal images on the brain classic demonstration of retinotopy in macaque V1 flattened V1 is labelled by radioactive glucose after viewing of flickering target pattern. Tootell et al. Science 1983 latest high-res demonstration in human V1 fmri response (1mm 3, 7 Tesla) to viewing flickering letter M (warped by inverse of cortical magnification) Polimeni et al. Neuroimage 2011

8 Measurement of visual responses with fmri

9 Visual Cortex has Multiple Retinotopic Maps Each visual area (V1, V3, V3, etc.. ) has its own retinotopic map resulting in a patchwork of such maps across the cortical surface. Visualizing these maps with allows identification of the individual areas. This can be achieved with fmri. Typically, mapping stimuli trace out the visual field in eccentricity and polar angle. Color mappings show associated areas of visual cortex. Dougherty et al. Journal of Vision 2003

10 A Closer look at Retinotopic Organization Left Visual cortex Right hemifield upper upper quadrant quadrant lower lower quadrant quadrant V3v upper quadrant V2v V2v upper quadrant V1 V1 full hemifield V2d V2d V3d V3d lower quadrant lower quadrant Mirror-image reversals at visual area borders patchwork of hemifields and quadrants in flattened area of visual cortex

11 A Hierarchy of Cortical Visual Areas Wandell, Dumoulin, & Brewer Neuron 2007 So far, at least 18 human visual areas identified based on their retinotopic maps

12 Now that we know about retinal images in brain, here is a thought experiment... what if you could stimulate impossible visual space? It is possible to stimulate local regions of V1 with transcranial magnetic stimulution (TMS) which results in light perception in the corresponding region of visual space.

13 Topographic Mapping with fmri Overview: 1) background on brain topographic maps with emphasis on visual cortex 2) traveling wave method for mapping visual cortex, use of Fourier Analysis 3) examples from auditory and motor cortex

14 Traveling wave or phase-encoded mapping method: Engel et al. Nature 1994, Sereno et al. Science 1995 polar angle: eccentricity: idealized response of visual cortex voxels with blue and green receptive fields: Periodic stimuli map out visual space in polar angle in eccentricity Voxel responses are periodic, having the same frequency but different phases So, parameter of interest is response phase because it tags visual field location

15 Traveling wave or phase-encoded mapping method: Engel et al. Nature 1994, Sereno et al. Science 1995 polar angle: eccentricity: Stimulus is cyclical, so response is cyclical idealized response of visual cortex voxels with blue and green receptive fields how to measure the phase of a cyclical function? 1) Fourier analysis (phase of a sinusoid) 2) Cross-correlation (phase of a specified model function) difference from standard GLM analysis? 1) key parameter is response phase, not amplitude 2) no contrast, overlapping responses contributes to efficiency of design

16 Fourier analysis for retinotopic mapping here s the actual fmri time series of a good single voxel. you can see by eye that there are 15 cycles (the stimulation frequency) and we want to know the phase of that signal This is an excellent Fourier problem! The Fourier Transform breaks down a signal into its component sinusoids, giving the amplitude and phase at each frequency.

17 The Fourier transform is universal in signal processing (1820 s Joseph Fourier) Fourier s insight: Any temporal signal (just about) can be represented as a sum of sine and cosine waves (circular motion) of different frequencies and amplitudes.

18 Why this is useful: if earthquake vibrations can be separated into frequency components, buildings can be designed to avoid interacting with the strongest ones. if sound waves can be separated into frequency components, we can boost the frequencies we want to hear and ignore the ones we don t. (btw: Shazam compares the FT, not raw audio clips) if 2D images can be separated into frequency components, we can keep the important ones and ignore the rest to drastically decrease file size. ( lossy compression used in JPEG and MP3 files)

19 Fourier transform transforms the signal from the time domain to the frequency domain. time domain frequency domain the amplitudes squared are the power spectrum

20 Fourier transform transforms the signal from the time domain to the frequency domain. 5 Hz 12 Hz FFT Hz Time domain frequency domain (power spectrum)

21 Mathematically, the Fourier Series expressed as a sum of sine and cosine basis functions: If we instead sum to a finite number N>0, then partial sums of the Fourier series. Fourier coefficients can be solve for by projecting the function onto its bases and integrating for the area under the curve:

22 Intuition for why this works: sines and cosines form an orthonormal set: example of cosine-sine multiplication:

23 Fourier Series more conveniently expressed in complex notation: Euler s formula: where each coefficient Cn is expressed as complex number with a real and imaginary component: Cn = a + bi, where a is the amplitude and b the phase of the Fourier component at frequency n. So, any signal can be expressed as the sum of circular basis functions! For each component we need to know frequency N (how fast do we go around the circle?), the amplitude (what is the radius of the circle?) and the phase angle (where do we start on the circle?)

24 Now to get back to our retinotopic mapping signal... here s the actual fmri time series of a good single voxel. you can see by eye that there are 15 cycles (the stimulation frequency) and we want to know the phase of that signal This is an excellent Fourier problem! The Fourier Transform breaks down a signal into its component sinusoids, giving the amplitude and phase at each frequency.

25 Fourier analysis for Retinotopy (how to in Matlab): 1) Apply Fast Fourier Transform. FFT produces an array of complex numbers (real plus imaginary components) giving the amplitude and phase of each frequency component. FFT f=fft(series); 2) plot the amplitude spectrum amplitudes=abs(f) bar(0:30, amplitudes(1:31)) 3) get the phase at stimulation frequency n phase=angle(f(16)) %n th +1 value power spectrum peaks at 15 cycles!

26 Finally, plot the phases with a color code, and notice how the change smoothly. Each retinal image is revealed by a complete cycle of phases.

27 Linear Cross-correlation analysis 1) stimulus position is cyclical over time: 0s cont... 0s 40s 2) construct cyclical time-lagged regressors: 80s Lag = 1 Lag = 2 Lag = 3... Lag = 20 3) For each voxel, calculate correlation (R) between the voxel time course and all lagged regressors (i.e. if 20 lag functions then each voxel gets 20 R values) 4) Assign each voxel to the lag with the highest R (winner-take-all) 5) Correlation value can be thresholded for display

28 Retinotopic mapping with the traveling wave has been used to study: homologies with monkey visual system functions of individual visual areas individual differences and perception Schwartzkopf, Song, & Rees Nature Neuroscience 2009 visual cortex plasticity Baselar et al. Nature Neuroscience 2011

29 Topographic Mapping with fmri SUMMARY: Sensory topographic maps throughout the brain traveling wave method is an efficient way to measure these maps relies on methods to measure the PHASE of the fmri time course (Fourier or cross-correlation) Allows localization of individual brain regions in individual human subjects

30 Topographic Mapping with fmri Overview: 1) background on brain topographic maps with emphasis on visual cortex 2) traveling wave method for mapping visual cortex, use of Fourier Analysis 3) examples from auditory and motor cortex

31 Cochlea creates tonotopy The cochlea is a biological structure that essentially performs a Fourier transform! Incoming time-dependent sound information is converted to its frequency spectrum. Human hearing range: 20 Hz to 20,000 Hz. High-frequency hearing loss with age associated with loss of high-frequency cochlear hair cells.

32 High freq Human Auditory Cortex Tonotopic: fmri at 7 Tesla Low freq low frequency tones high frequency tones anterior posterior DaCosta et al. J. Neurosci 2011

33 Human Auditory Cortex Tonotopic: fmri at 7 Tesla low frequency tones high frequency high tones frequency tones anterior posterior useful for studying language and music processing, tinnitus DaCosta et al. J. Neurosci 2011

34 Sound presentation (phase mapping) 1) Present tones from 88 to 8000 Hz in 1/2 octave steps, in repeating cycles 2) For each voxel, calculate linear correlation to all time lags of the model function. LO HI LO HI LO HI time 0s 32s 64s cont... Lag = 1 Lag = 2 Lag = 3... Lag = 14

35 Somatosensory cortex

36 Topographic mapping of motor cortex with fmri useful for studying phantom pain and other disordors Zaharia et al. PNAS 2012

37 Topographic Mapping with fmri SUMMARY: Sensory topographic maps throughout the brain, and have smoothly changing representations traveling wave method is an efficient way to measure these maps relies on methods to measure the PHASE of the fmri time course (Fourier or cross-correlation)

Supplementary Methods

Supplementary Methods 1 Travelling waves of activity in primary visual cortex during binocular rivalry Sang-Hun Lee, Randolph Blake, and David J. Heeger Supplementary Methods Data were acquired from three male observers, 25-34

More information

Vision: From Eye to Brain (Chap 3)

Vision: From Eye to Brain (Chap 3) Vision: From Eye to Brain (Chap 3) Lecture 7 Jonathan Pillow Sensation & Perception (PSY 345 / NEU 325) Princeton University, Fall 2017 early visual pathway eye eye optic nerve optic chiasm optic tract

More information

Characterizing human retinotopic mapping with conformal geometry: A preliminary study

Characterizing human retinotopic mapping with conformal geometry: A preliminary study Characterizing human retinotopic mapping with conformal geometry: A preliminary study Duyan Ta a, Jie Shi a, Brian Barton b, Alyssa Brewer b, Zhong-Lin Lu c, Yalin Wang a a Arizona State University, Ira

More information

Section 9. Human Anatomy and Physiology

Section 9. Human Anatomy and Physiology Section 9. Human Anatomy and Physiology 9.1 MR Neuroimaging 9.2 Electroencephalography Overview As stated throughout, electrophysiology is the key tool in current systems neuroscience. However, single-

More information

CS/NEUR125 Brains, Minds, and Machines. Due: Wednesday, April 5

CS/NEUR125 Brains, Minds, and Machines. Due: Wednesday, April 5 CS/NEUR125 Brains, Minds, and Machines Lab 8: Using fmri to Discover Language Areas in the Brain Due: Wednesday, April 5 In this lab, you will analyze fmri data from an experiment that was designed to

More information

Texture. Outline. Image representations: spatial and frequency Fourier transform Frequency filtering Oriented pyramids Texture representation

Texture. Outline. Image representations: spatial and frequency Fourier transform Frequency filtering Oriented pyramids Texture representation Texture Outline Image representations: spatial and frequency Fourier transform Frequency filtering Oriented pyramids Texture representation 1 Image Representation The standard basis for images is the set

More information

Reconstructing visual experiences from brain activity evoked by natural movies

Reconstructing visual experiences from brain activity evoked by natural movies Reconstructing visual experiences from brain activity evoked by natural movies Shinji Nishimoto, An T. Vu, Thomas Naselaris, Yuval Benjamini, Bin Yu, and Jack L. Gallant, Current Biology, 2011 -Yi Gao,

More information

Decoding the Human Motor Cortex

Decoding the Human Motor Cortex Computer Science 229 December 14, 2013 Primary authors: Paul I. Quigley 16, Jack L. Zhu 16 Comment to piq93@stanford.edu, jackzhu@stanford.edu Decoding the Human Motor Cortex Abstract: A human being s

More information

Geometric Fourier Analysis in Computational Vision

Geometric Fourier Analysis in Computational Vision Geometric Fourier Analysis in Computational Vision Biological and Mathematical Background Jacek Turski University of Houston-DTN 9 th International Conference on Cognitive and Neural Systems Boston University,

More information

Neural Population Tuning Links Visual Cortical Anatomy to Human Visual Perception

Neural Population Tuning Links Visual Cortical Anatomy to Human Visual Perception Article Neural Population Tuning Links Visual Cortical Anatomy to Human Visual Perception Highlights d Variability in cortical thickness and surface area has opposite functional impacts Authors Chen Song,

More information

Coordinate Transformations in Parietal Cortex. Computational Models of Neural Systems Lecture 7.1. David S. Touretzky November, 2013

Coordinate Transformations in Parietal Cortex. Computational Models of Neural Systems Lecture 7.1. David S. Touretzky November, 2013 Coordinate Transformations in Parietal Cortex Lecture 7.1 David S. Touretzky November, 2013 Outline Anderson: parietal cells represent locations of visual stimuli. Zipser and Anderson: a backprop network

More information

Computational Perception. Visual Coding 3

Computational Perception. Visual Coding 3 Computational Perception 15-485/785 February 21, 2008 Visual Coding 3 A gap in the theory? - - + - - from Hubel, 1995 2 Eye anatomy from Hubel, 1995 Photoreceptors: rods (night vision) and cones (day vision)

More information

Introduction to Neural Networks U. Minn. Psy 5038 Psy Self-organizing Adaptive Maps. Initialization. Topographic maps

Introduction to Neural Networks U. Minn. Psy 5038 Psy Self-organizing Adaptive Maps. Initialization. Topographic maps Introduction to Neural Networks U. Minn. Psy 5038 Psy 5038 Self-organizing Adaptive Maps Initialization In[4]:= Off[SetDelayed::write] Off[General::spell1] (*

More information

Modern Signal Processing and Sparse Coding

Modern Signal Processing and Sparse Coding Modern Signal Processing and Sparse Coding School of Electrical and Computer Engineering Georgia Institute of Technology March 22 2011 Reason D etre Modern signal processing Signals without cosines? Sparse

More information

What is a receptive field? Why a sensory neuron has such particular RF How a RF was developed?

What is a receptive field? Why a sensory neuron has such particular RF How a RF was developed? What is a receptive field? Why a sensory neuron has such particular RF How a RF was developed? x 1 x 2 x 3 y f w 1 w 2 w 3 T x y = f (wx i i T ) i y x 1 x 2 x 3 = = E (y y) (y f( wx T)) 2 2 o o i i i

More information

Binocular Stereo Vision

Binocular Stereo Vision Binocular Stereo Vision Properties of human stereo vision Marr-Poggio-Grimson multi-resolution stereo algorithm CS332 Visual Processing Department of Computer Science Wellesley College Properties of human

More information

Principles of Audio Coding

Principles of Audio Coding Principles of Audio Coding Topics today Introduction VOCODERS Psychoacoustics Equal-Loudness Curve Frequency Masking Temporal Masking (CSIT 410) 2 Introduction Speech compression algorithm focuses on exploiting

More information

Audio-coding standards

Audio-coding standards Audio-coding standards The goal is to provide CD-quality audio over telecommunications networks. Almost all CD audio coders are based on the so-called psychoacoustic model of the human auditory system.

More information

Introduction to Neural Networks Overview of the visual system

Introduction to Neural Networks Overview of the visual system Introduction to Neural Networks Overview of the visual system November 2, 2011 Daniel Kersten Goals Provide an overview of a major brain subsystem to help anchor concepts in neural network theory. Discuss

More information

Representational similarity analysis. Dr Ian Charest,

Representational similarity analysis. Dr Ian Charest, Representational similarity analysis Dr Ian Charest, Edinburgh, April 219 A space for neuroimaging studies Pattern across subjects Cross-subject correlation studies (e.g. social neuroscience) Raizada et

More information

Audio-coding standards

Audio-coding standards Audio-coding standards The goal is to provide CD-quality audio over telecommunications networks. Almost all CD audio coders are based on the so-called psychoacoustic model of the human auditory system.

More information

Fourier transforms and convolution

Fourier transforms and convolution Fourier transforms and convolution (without the agonizing pain) CS/CME/BioE/Biophys/BMI 279 Oct. 26, 2017 Ron Dror 1 Why do we care? Fourier transforms Outline Writing functions as sums of sinusoids The

More information

Computer Vision. Fourier Transform. 20 January Copyright by NHL Hogeschool and Van de Loosdrecht Machine Vision BV All rights reserved

Computer Vision. Fourier Transform. 20 January Copyright by NHL Hogeschool and Van de Loosdrecht Machine Vision BV All rights reserved Van de Loosdrecht Machine Vision Computer Vision Fourier Transform 20 January 2017 Copyright 2001 2017 by NHL Hogeschool and Van de Loosdrecht Machine Vision BV All rights reserved j.van.de.loosdrecht@nhl.nl,

More information

Chapter 14 MPEG Audio Compression

Chapter 14 MPEG Audio Compression Chapter 14 MPEG Audio Compression 14.1 Psychoacoustics 14.2 MPEG Audio 14.3 Other Commercial Audio Codecs 14.4 The Future: MPEG-7 and MPEG-21 14.5 Further Exploration 1 Li & Drew c Prentice Hall 2003 14.1

More information

Attention modulates spatial priority maps in human occipital, parietal, and frontal cortex

Attention modulates spatial priority maps in human occipital, parietal, and frontal cortex Attention modulates spatial priority maps in human occipital, parietal, and frontal cortex Thomas C. Sprague 1 and John T. Serences 1,2 1 Neuroscience Graduate Program, University of California San Diego

More information

Nonparametric sparse hierarchical models describe V1 fmri responses to natural images

Nonparametric sparse hierarchical models describe V1 fmri responses to natural images Nonparametric sparse hierarchical models describe V1 fmri responses to natural images Pradeep Ravikumar, Vincent Q. Vu and Bin Yu Department of Statistics University of California, Berkeley Berkeley, CA

More information

Rory Sayres and Kalanit Grill-Spector

Rory Sayres and Kalanit Grill-Spector Rory Sayres and Kalanit Grill-Spector J Neurophysiol 100:249-267, 2008. First published May 7, 2008; doi:10.1152/jn.01383.2007 You might find this additional information useful... Supplemental material

More information

An Intuitive Explanation of Fourier Theory

An Intuitive Explanation of Fourier Theory An Intuitive Explanation of Fourier Theory Steven Lehar slehar@cns.bu.edu Fourier theory is pretty complicated mathematically. But there are some beautifully simple holistic concepts behind Fourier theory

More information

Improvement of optic flow estimation from an event-based sensor with recurrently connected processing layers

Improvement of optic flow estimation from an event-based sensor with recurrently connected processing layers Improvement of optic flow estimation from an event-based sensor with recurrently connected processing layers Vilim Štih 31st March 2014 1 Introduction The Dynamic Vision Sensor (DVS) is a visual sensor

More information

NeuroImage 63 (2012) Contents lists available at SciVerse ScienceDirect. NeuroImage. journal homepage:

NeuroImage 63 (2012) Contents lists available at SciVerse ScienceDirect. NeuroImage. journal homepage: NeuroImage 63 (22) 623 632 Contents lists available at SciVerse ScienceDirect NeuroImage journal homepage: www.elsevier.com/locate/ynimg Contribution of large scale biases in decoding of direction-of-motion

More information

Introduction to Neuroimaging Janaina Mourao-Miranda

Introduction to Neuroimaging Janaina Mourao-Miranda Introduction to Neuroimaging Janaina Mourao-Miranda Neuroimaging techniques have changed the way neuroscientists address questions about functional anatomy, especially in relation to behavior and clinical

More information

Supporting Information

Supporting Information Supporting Information Baldassarre et al. 10.1073/pnas.1113148109 SI Methods Participants. Fourteen healthy, right-handed volunteers (seven female; aged 20 30 y) with normal or corrected-to-normal vision

More information

Project proposal: Statistical models of visual neurons

Project proposal: Statistical models of visual neurons Project proposal: Statistical models of visual neurons Anna Sotnikova asotniko@math.umd.edu Project Advisor: Prof. Daniel A. Butts dab@umd.edu Department of Biology Abstract Studying visual neurons may

More information

Single-subject fmri mapping at 7T of the representation of fingertips in S1: a comparison of event-related and phase-encoding designs

Single-subject fmri mapping at 7T of the representation of fingertips in S1: a comparison of event-related and phase-encoding designs Articles in PresS. J Neurophysiol (February 20, 2013). doi:10.1152/jn.00499.2012 1 1 2 3 Single-subject fmri mapping at 7T of the representation of fingertips in S1: a comparison of event-related and phase-encoding

More information

Mapping of Hierarchical Activation in the Visual Cortex Suman Chakravartula, Denise Jones, Guillaume Leseur CS229 Final Project Report. Autumn 2008.

Mapping of Hierarchical Activation in the Visual Cortex Suman Chakravartula, Denise Jones, Guillaume Leseur CS229 Final Project Report. Autumn 2008. Mapping of Hierarchical Activation in the Visual Cortex Suman Chakravartula, Denise Jones, Guillaume Leseur CS229 Final Project Report. Autumn 2008. Introduction There is much that is unknown regarding

More information

Stereovision. Binocular disparity

Stereovision. Binocular disparity Stereovision Binocular disparity Retinal correspondence Uncrossed disparity Horoptor Crossed disparity Horoptor, crossed and uncrossed disparity Wheatsteone stereoscope (c. 1838) Red-green anaglyph How

More information

Nicolai Petkov Intelligent Systems group Institute for Mathematics and Computing Science

Nicolai Petkov Intelligent Systems group Institute for Mathematics and Computing Science V1-inspired orientation selective filters for image processing and computer vision Nicolai Petkov Intelligent Systems group Institute for Mathematics and Computing Science 2 Most of the images in this

More information

Investigation of Spatio-Temporal Effects of f MRI Visual Field Mapping Techniques on V1

Investigation of Spatio-Temporal Effects of f MRI Visual Field Mapping Techniques on V1 Marquette University e-publications@marquette Dissertations (2009 -) Dissertations, Theses, and Professional Projects Investigation of Spatio-Temporal Effects of f MRI Visual Field Mapping Techniques on

More information

Neurophysical Model by Barten and Its Development

Neurophysical Model by Barten and Its Development Chapter 14 Neurophysical Model by Barten and Its Development According to the Barten model, the perceived foveal image is corrupted by internal noise caused by statistical fluctuations, both in the number

More information

(Moon et al., 2007). Animal use was approved by the Institutional Animal Care and Use

(Moon et al., 2007). Animal use was approved by the Institutional Animal Care and Use 1 Supplementary Materials & Methods fmri study of cat visual cortex. The experimental methods used here have been fully described in a previous publication (Moon et al., 2007). Animal use was approved

More information

Fundamentals of Perceptual Audio Encoding. Craig Lewiston HST.723 Lab II 3/23/06

Fundamentals of Perceptual Audio Encoding. Craig Lewiston HST.723 Lab II 3/23/06 Fundamentals of Perceptual Audio Encoding Craig Lewiston HST.723 Lab II 3/23/06 Goals of Lab Introduction to fundamental principles of digital audio & perceptual audio encoding Learn the basics of psychoacoustic

More information

Computer Vision 2. SS 18 Dr. Benjamin Guthier Professur für Bildverarbeitung. Computer Vision 2 Dr. Benjamin Guthier

Computer Vision 2. SS 18 Dr. Benjamin Guthier Professur für Bildverarbeitung. Computer Vision 2 Dr. Benjamin Guthier Computer Vision 2 SS 18 Dr. Benjamin Guthier Professur für Bildverarbeitung Computer Vision 2 Dr. Benjamin Guthier 1. IMAGE PROCESSING Computer Vision 2 Dr. Benjamin Guthier Content of this Chapter Non-linear

More information

Perceptual coding. A psychoacoustic model is used to identify those signals that are influenced by both these effects.

Perceptual coding. A psychoacoustic model is used to identify those signals that are influenced by both these effects. Perceptual coding Both LPC and CELP are used primarily for telephony applications and hence the compression of a speech signal. Perceptual encoders, however, have been designed for the compression of general

More information

Representing the World

Representing the World Table of Contents Representing the World...1 Sensory Transducers...1 The Lateral Geniculate Nucleus (LGN)... 2 Areas V1 to V5 the Visual Cortex... 2 Computer Vision... 3 Intensity Images... 3 Image Focusing...

More information

Introduction to visual computation and the primate visual system

Introduction to visual computation and the primate visual system Introduction to visual computation and the primate visual system Problems in vision Basic facts about the visual system Mathematical models for early vision Marr s computational philosophy and proposal

More information

- Graphical editing of user montages for convenient data review - Import of user-defined file formats using generic reader

- Graphical editing of user montages for convenient data review - Import of user-defined file formats using generic reader Data review and processing Source montages and 3D whole-head mapping Onset of epileptic seizure with 3D whole-head maps and hemispheric comparison of density spectral arrays (DSA) Graphical display of

More information

Visual Pathways to the Brain

Visual Pathways to the Brain Visual Pathways to the Brain 1 Left half of visual field which is imaged on the right half of each retina is transmitted to right half of brain. Vice versa for right half of visual field. From each eye

More information

Fmri Spatial Processing

Fmri Spatial Processing Educational Course: Fmri Spatial Processing Ray Razlighi Jun. 8, 2014 Spatial Processing Spatial Re-alignment Geometric distortion correction Spatial Normalization Smoothing Why, When, How, Which Why is

More information

Supplementary Figure 1

Supplementary Figure 1 Supplementary Figure 1 BOLD and CBV functional maps showing EPI versus line-scanning FLASH fmri. A. Colored BOLD and CBV functional maps are shown in the highlighted window (green frame) of the raw EPI

More information

Multi-voxel pattern analysis: Decoding Mental States from fmri Activity Patterns

Multi-voxel pattern analysis: Decoding Mental States from fmri Activity Patterns Multi-voxel pattern analysis: Decoding Mental States from fmri Activity Patterns Artwork by Leon Zernitsky Jesse Rissman NITP Summer Program 2012 Part 1 of 2 Goals of Multi-voxel Pattern Analysis Decoding

More information

Efficient Visual Coding: From Retina To V2

Efficient Visual Coding: From Retina To V2 Efficient Visual Coding: From Retina To V Honghao Shan Garrison Cottrell Computer Science and Engineering UCSD La Jolla, CA 9093-0404 shanhonghao@gmail.com, gary@ucsd.edu Abstract The human visual system

More information

Both LPC and CELP are used primarily for telephony applications and hence the compression of a speech signal.

Both LPC and CELP are used primarily for telephony applications and hence the compression of a speech signal. Perceptual coding Both LPC and CELP are used primarily for telephony applications and hence the compression of a speech signal. Perceptual encoders, however, have been designed for the compression of general

More information

7.1 The Somatotopic Map of the Body Surface

7.1 The Somatotopic Map of the Body Surface 7. Modeling the Somatotopic Map 101 7. MODELING THE SOMATOTOPIC MAP 7.1 The Somatotopic Map of the Body Surface In this chapter we demonstrate the formation of a somatotopic map by means of a computer

More information

This exercise uses one anatomical data set (ANAT1) and two functional data sets (FUNC1 and FUNC2).

This exercise uses one anatomical data set (ANAT1) and two functional data sets (FUNC1 and FUNC2). Exploring Brain Anatomy This week s exercises will let you explore the anatomical organization of the brain to learn some of its basic properties, as well as the location of different structures. The human

More information

HST.583 Functional Magnetic Resonance Imaging: Data Acquisition and Analysis Fall 2006

HST.583 Functional Magnetic Resonance Imaging: Data Acquisition and Analysis Fall 2006 MIT OpenCourseWare http://ocw.mit.edu HST.583 Functional Magnetic Resonance Imaging: Data Acquisition and Analysis Fall 2006 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms.

More information

Digital Media. Daniel Fuller ITEC 2110

Digital Media. Daniel Fuller ITEC 2110 Digital Media Daniel Fuller ITEC 2110 Daily Question: Digital Audio What values contribute to the file size of a digital audio file? Email answer to DFullerDailyQuestion@gmail.com Subject Line: ITEC2110-09

More information

Modeling the top neuron layers of the human retina. Laurens Koppenol ( ) Universiteit Utrecht

Modeling the top neuron layers of the human retina. Laurens Koppenol ( ) Universiteit Utrecht Modeling the top neuron layers of the human retina Laurens Koppenol (3245578) 23-06-2013 Universiteit Utrecht 1 Contents Introduction... 3 Background... 4 Photoreceptors... 4 Scotopic vision... 5 Photopic

More information

A Generic Lie Group Model for Computer Vision

A Generic Lie Group Model for Computer Vision A Generic Lie Group Model for Computer Vision Within this research track we follow a generic Lie group approach to computer vision based on recent physiological research on how the primary visual cortex

More information

Nicolai Petkov Intelligent Systems group Institute for Mathematics and Computing Science

Nicolai Petkov Intelligent Systems group Institute for Mathematics and Computing Science 2D Gabor functions and filters for image processing and computer vision Nicolai Petkov Intelligent Systems group Institute for Mathematics and Computing Science 2 Most of the images in this presentation

More information

INDEPENDENT COMPONENT ANALYSIS APPLIED TO fmri DATA: A GENERATIVE MODEL FOR VALIDATING RESULTS

INDEPENDENT COMPONENT ANALYSIS APPLIED TO fmri DATA: A GENERATIVE MODEL FOR VALIDATING RESULTS INDEPENDENT COMPONENT ANALYSIS APPLIED TO fmri DATA: A GENERATIVE MODEL FOR VALIDATING RESULTS V. Calhoun 1,2, T. Adali, 2 and G. Pearlson 1 1 Johns Hopkins University Division of Psychiatric Neuro-Imaging,

More information

Bayesian Inference in fmri Will Penny

Bayesian Inference in fmri Will Penny Bayesian Inference in fmri Will Penny Bayesian Approaches in Neuroscience Karolinska Institutet, Stockholm February 2016 Overview Posterior Probability Maps Hemodynamic Response Functions Population

More information

Tutorial of Origin 7.0. Chuang Tan, Zheyun Liu

Tutorial of Origin 7.0. Chuang Tan, Zheyun Liu Tutorial of Origin 7.0 Chuang Tan, Zheyun Liu Origin is a kind of powerful software for numerical manipulation and data analysis. Here is a brief tutorial that explains how to do the numerical Fourier

More information

Robert Matthew Buckley. Nova Southeastern University. Dr. Laszlo. MCIS625 On Line. Module 2 Graphics File Format Essay

Robert Matthew Buckley. Nova Southeastern University. Dr. Laszlo. MCIS625 On Line. Module 2 Graphics File Format Essay 1 Robert Matthew Buckley Nova Southeastern University Dr. Laszlo MCIS625 On Line Module 2 Graphics File Format Essay 2 JPEG COMPRESSION METHOD Joint Photographic Experts Group (JPEG) is the most commonly

More information

Nicolai Petkov Intelligent Systems group Institute for Mathematics and Computing Science

Nicolai Petkov Intelligent Systems group Institute for Mathematics and Computing Science 2D Gabor functions and filters for image processing and computer vision Nicolai Petkov Intelligent Systems group Institute for Mathematics and Computing Science 2 Most of the images in this presentation

More information

Image Transformation Techniques Dr. Rajeev Srivastava Dept. of Computer Engineering, ITBHU, Varanasi

Image Transformation Techniques Dr. Rajeev Srivastava Dept. of Computer Engineering, ITBHU, Varanasi Image Transformation Techniques Dr. Rajeev Srivastava Dept. of Computer Engineering, ITBHU, Varanasi 1. Introduction The choice of a particular transform in a given application depends on the amount of

More information

F-BF Model air plane acrobatics

F-BF Model air plane acrobatics F-BF Model air plane acrobatics Alignments to Content Standards: F-IF.B.4 Task A model airplane pilot is practicing flying her airplane in a big loop for an upcoming competition. At time t = 0 her airplane

More information

Arbib: Slides for TMB2 Section 7.2 1

Arbib: Slides for TMB2 Section 7.2 1 Arbib: Slides for TMB2 Section 7.2 1 Lecture 20: Optic Flow Reading assignment: TMB2 7.2 If, as we walk forward, we recognize that a tree appears to be getting bigger, we can infer that the tree is in

More information

Data Representation. Reminders. Sound What is sound? Interpreting bits to give them meaning. Part 4: Media - Sound, Video, Compression

Data Representation. Reminders. Sound What is sound? Interpreting bits to give them meaning. Part 4: Media - Sound, Video, Compression Data Representation Interpreting bits to give them meaning Part 4: Media -, Video, Compression Notes for CSC 100 - The Beauty and Joy of Computing The University of North Carolina at Greensboro Reminders

More information

MultiVariate Bayesian (MVB) decoding of brain images

MultiVariate Bayesian (MVB) decoding of brain images MultiVariate Bayesian (MVB) decoding of brain images Alexa Morcom Edinburgh SPM course 2015 With thanks to J. Daunizeau, K. Brodersen for slides stimulus behaviour encoding of sensorial or cognitive state?

More information

Image Compression using Discrete Wavelet Transform Preston Dye ME 535 6/2/18

Image Compression using Discrete Wavelet Transform Preston Dye ME 535 6/2/18 Image Compression using Discrete Wavelet Transform Preston Dye ME 535 6/2/18 Introduction Social media is an essential part of an American lifestyle. Latest polls show that roughly 80 percent of the US

More information

The organization of the human cerebral cortex estimated by intrinsic functional connectivity

The organization of the human cerebral cortex estimated by intrinsic functional connectivity 1 The organization of the human cerebral cortex estimated by intrinsic functional connectivity Journal: Journal of Neurophysiology Author: B. T. Thomas Yeo, et al Link: https://www.ncbi.nlm.nih.gov/pubmed/21653723

More information

Multi-area visuotopic map complexes in macaque striate and extra-striate cortex

Multi-area visuotopic map complexes in macaque striate and extra-striate cortex Vision Research 46 (2006) 3336 3359 www.elsevier.com/locate/visres Multi-area visuotopic map complexes in macaque striate and extra-striate cortex J.R. Polimeni a, M. Balasubramanian b, E.L. Schwartz a,b,c,

More information

Multimedia Communications. Audio coding

Multimedia Communications. Audio coding Multimedia Communications Audio coding Introduction Lossy compression schemes can be based on source model (e.g., speech compression) or user model (audio coding) Unlike speech, audio signals can be generated

More information

COS 116 The Computational Universe Laboratory 4: Digital Sound and Music

COS 116 The Computational Universe Laboratory 4: Digital Sound and Music COS 116 The Computational Universe Laboratory 4: Digital Sound and Music In this lab you will learn about digital representations of sound and music, especially focusing on the role played by frequency

More information

DSP. Presented to the IEEE Central Texas Consultants Network by Sergio Liberman

DSP. Presented to the IEEE Central Texas Consultants Network by Sergio Liberman DSP The Technology Presented to the IEEE Central Texas Consultants Network by Sergio Liberman Abstract The multimedia products that we enjoy today share a common technology backbone: Digital Signal Processing

More information

Administrivia. Enrollment Lottery Paper Reviews (Adobe) Data passwords My office hours

Administrivia. Enrollment Lottery Paper Reviews (Adobe) Data passwords My office hours Administrivia Enrollment Lottery Paper Reviews (Adobe) Data passwords My office hours Good Cop Bad Cop Two or three ways to think about this class Computer Science Algorithms Engineering Brain Computer

More information

Mathematically Tuned into Sound Analyzing the Sound of a Tuning Fork. Group Members:

Mathematically Tuned into Sound Analyzing the Sound of a Tuning Fork. Group Members: Mathematically Tuned into Sound Analyzing the Sound of a Tuning Fork Name: Group Members: When you throw a rock in a pond you probably notice the rippling effect of the water outward. Oftentimes these

More information

2.4 Audio Compression

2.4 Audio Compression 2.4 Audio Compression 2.4.1 Pulse Code Modulation Audio signals are analog waves. The acoustic perception is determined by the frequency (pitch) and the amplitude (loudness). For storage, processing and

More information

COS 116 The Computational Universe Laboratory 4: Digital Sound and Music

COS 116 The Computational Universe Laboratory 4: Digital Sound and Music COS 116 The Computational Universe Laboratory 4: Digital Sound and Music In this lab you will learn about digital representations of sound and music, especially focusing on the role played by frequency

More information

AUDIOVISUAL COMMUNICATION

AUDIOVISUAL COMMUNICATION AUDIOVISUAL COMMUNICATION Laboratory Session: Audio Processing and Coding The objective of this lab session is to get the students familiar with audio processing and coding, notably psychoacoustic analysis

More information

CW High School. Advanced Math A. 1.1 I can make connections between the algebraic equation or description for a function, its name, and its graph.

CW High School. Advanced Math A. 1.1 I can make connections between the algebraic equation or description for a function, its name, and its graph. 1. Functions and Math Models (10.00%) 1.1 I can make connections between the algebraic equation or description for a function, its name, and its graph. 4 Pro cient I can make connections between the algebraic

More information

Audio Fundamentals, Compression Techniques & Standards. Hamid R. Rabiee Mostafa Salehi, Fatemeh Dabiran, Hoda Ayatollahi Spring 2011

Audio Fundamentals, Compression Techniques & Standards. Hamid R. Rabiee Mostafa Salehi, Fatemeh Dabiran, Hoda Ayatollahi Spring 2011 Audio Fundamentals, Compression Techniques & Standards Hamid R. Rabiee Mostafa Salehi, Fatemeh Dabiran, Hoda Ayatollahi Spring 2011 Outlines Audio Fundamentals Sampling, digitization, quantization μ-law

More information

Exercise: Simulating spatial processing in the visual pathway with convolution

Exercise: Simulating spatial processing in the visual pathway with convolution Exercise: Simulating spatial processing in the visual pathway with convolution This problem uses convolution to simulate the spatial filtering performed by neurons in the early stages of the visual pathway,

More information

Introduction to Neural Networks Overview of the visual system

Introduction to Neural Networks Overview of the visual system Introduction to Neural Networks Overview of the visual system November 14, 2012 Daniel Kersten To create a background with a Shade From Title, choose Shade Background on the Color Scheme dialog. Shading

More information

Sparse sampling in MRI: From basic theory to clinical application. R. Marc Lebel, PhD Department of Electrical Engineering Department of Radiology

Sparse sampling in MRI: From basic theory to clinical application. R. Marc Lebel, PhD Department of Electrical Engineering Department of Radiology Sparse sampling in MRI: From basic theory to clinical application R. Marc Lebel, PhD Department of Electrical Engineering Department of Radiology Objective Provide an intuitive overview of compressed sensing

More information

Multimedia Systems Image III (Image Compression, JPEG) Mahdi Amiri April 2011 Sharif University of Technology

Multimedia Systems Image III (Image Compression, JPEG) Mahdi Amiri April 2011 Sharif University of Technology Course Presentation Multimedia Systems Image III (Image Compression, JPEG) Mahdi Amiri April 2011 Sharif University of Technology Image Compression Basics Large amount of data in digital images File size

More information

Textbook Assignment #1: DUE Friday 5/9/2014 Read: PP Do Review Questions Pg 388 # 1-20

Textbook Assignment #1: DUE Friday 5/9/2014 Read: PP Do Review Questions Pg 388 # 1-20 Page 1 of 38 Page 2 of 38 Unit Packet Contents Unit Objectives Notes 1: Waves Introduction Guided Practice: Waves Introduction (CD pp 89-90) Independent Practice: Speed of Waves Notes 2: Interference and

More information

EE482: Digital Signal Processing Applications

EE482: Digital Signal Processing Applications Professor Brendan Morris, SEB 3216, brendan.morris@unlv.edu EE482: Digital Signal Processing Applications Spring 2014 TTh 14:30-15:45 CBC C222 Lecture 13 Audio Signal Processing 14/04/01 http://www.ee.unlv.edu/~b1morris/ee482/

More information

CISC 7610 Lecture 3 Multimedia data and data formats

CISC 7610 Lecture 3 Multimedia data and data formats CISC 7610 Lecture 3 Multimedia data and data formats Topics: Perceptual limits of multimedia data JPEG encoding of images MPEG encoding of audio MPEG and H.264 encoding of video Multimedia data: Perceptual

More information

m Environment Output Activation 0.8 Output Activation Input Value

m Environment Output Activation 0.8 Output Activation Input Value Learning Sensory-Motor Cortical Mappings Without Training Mike Spratling Gillian Hayes Department of Articial Intelligence University of Edinburgh mikes@dai.ed.ac.uk gmh@dai.ed.ac.uk Abstract. This paper

More information

Decoding of faces and face components in face-sensitive human visual cortex

Decoding of faces and face components in face-sensitive human visual cortex Original Research Article published: 08 July 2010 doi: 10.3389/fpsyg.2010.00028 Decoding of faces and face components in face-sensitive human visual cortex David F. Nichols*, Lisa R. Betts and Hugh R.

More information

Multivariate pattern classification

Multivariate pattern classification Multivariate pattern classification Thomas Wolbers Space & Ageing Laboratory (www.sal.mvm.ed.ac.uk) Centre for Cognitive and Neural Systems & Centre for Cognitive Ageing and Cognitive Epidemiology Outline

More information

Version. Getting Started: An fmri-cpca Tutorial

Version. Getting Started: An fmri-cpca Tutorial Version 11 Getting Started: An fmri-cpca Tutorial 2 Table of Contents Table of Contents... 2 Introduction... 3 Definition of fmri-cpca Data... 3 Purpose of this tutorial... 3 Prerequisites... 4 Used Terms

More information

Section 5.4: Modeling with Circular Functions

Section 5.4: Modeling with Circular Functions Section 5.4: Modeling with Circular Functions Circular Motion Example A ferris wheel with radius 25 feet is rotating at a rate of 3 revolutions per minute, When t = 0, a chair starts at its lowest point

More information

Initialization. Introduction. Introduction to Neural Networks. Self-organizing Adaptive Maps. Last time

Initialization. Introduction. Introduction to Neural Networks. Self-organizing Adaptive Maps. Last time Introduction to Neural Networks Self-organizing Adaptive Maps Initialization Off[SetDelayed::write] Off[General::spell1] Introduction Last time Visual cortical hierarchy. Basic connection classes What

More information

Analysis of Functional MRI Timeseries Data Using Signal Processing Techniques

Analysis of Functional MRI Timeseries Data Using Signal Processing Techniques Analysis of Functional MRI Timeseries Data Using Signal Processing Techniques Sea Chen Department of Biomedical Engineering Advisors: Dr. Charles A. Bouman and Dr. Mark J. Lowe S. Chen Final Exam October

More information

CSCD 443/533 Advanced Networks Fall 2017

CSCD 443/533 Advanced Networks Fall 2017 CSCD 443/533 Advanced Networks Fall 2017 Lecture 18 Compression of Video and Audio 1 Topics Compression technology Motivation Human attributes make it possible Audio Compression Video Compression Performance

More information

newfasant US User Guide

newfasant US User Guide newfasant US User Guide Software Version: 6.2.10 Date: April 15, 2018 Index 1. FILE MENU 2. EDIT MENU 3. VIEW MENU 4. GEOMETRY MENU 5. MATERIALS MENU 6. SIMULATION MENU 6.1. PARAMETERS 6.2. DOPPLER 7.

More information

Visual Acuity. Adler s Physiology of the Eye 11th Ed. Chapter 33 - by Dennis Levi.

Visual Acuity. Adler s Physiology of the Eye 11th Ed. Chapter 33 - by Dennis Levi. Visual Acuity Adler s Physiology of the Eye 11th Ed. Chapter 33 - by Dennis Levi http://www.mcgill.ca/mvr/resident/ Visual Acuity Keeness of Sight, possible to be defined in different ways Minimum Visual

More information

Lecture 5: Frequency Domain Transformations

Lecture 5: Frequency Domain Transformations #1 Lecture 5: Frequency Domain Transformations Saad J Bedros sbedros@umn.edu From Last Lecture Spatial Domain Transformation Point Processing for Enhancement Area/Mask Processing Transformations Image

More information