Skip to main content

Thalamus


Function

The thalamus has multiple functions. It may be thought of as a kind of switchboard of information. It is generally believed to act as a relay between different subcortical areas and the cerebral cortex . In particular, every sensory system (with the exception of the olfactory system ) includes a thalamic nucleus that receives sensory signals and sends them to the associated primary cortical area. For the visual system, for example, inputs from the retina are sent to the lateral geniculate nucleus of the thalamus, which in turn projects to the visual cortex in the occipital lobe . The thalamus is believed to both process sensory information as well as relay it—each of the primary sensory relay areas receives strong feedback connections from the cerebral cortex Similarly the medial geniculate nucleus acts as a key auditory relay between the inferior colliculus of the midbrain and the primary auditory cortex, and the ventral posterior nucleus is a key somatosensory relay, which sends touch and proprioceptive information to the primary somatosensory cortex . The thalamus also plays an important role in regulating states of sleep and wakefulness.Thalamic nuclei have strong reciprocal connections with the cerebral cortex, forming thalamo-cortico-thalamic circuits that are believed to be involved with consciousness. The thalamus plays a major role in regulating arousal, the level of awareness, and activity. Damage to the thalamus can lead to permanent coma . The role of the thalamus in the more anterior pallidal and nigral territories in the basal ganglia system disturbances is recognized but still poorly understood. The contribution of the thalamus to vestibular or to tectal functions is almost ignored. The thalamus has been thought of as a "relay" that simply forwards signals to the cerebral cortex. Newer research suggests that thalamic function is more selective. Many different functions are linked to various regions of the thalamus. This is the case for many of the sensory systems (except for the olfactory system), such as the auditory , somatic , visceral, gustatory and visual systems where localized lesions provoke specific sensory deficits. A major role of the thalamus is devoted to "motor" systems. The thalamus is functionally connected to the hippocampus as part of the extended hippocampal system at the thalamic anterior nuclei with respect to spatial memory and spatial sensory datum they are crucial for human episodic memory and rodent event memory.There is support for the hypothesis that thalamic regions connection to particular parts of the mesio-temporal lobe provide differentiation of the functioning of recollective and familiarity memory. The neuronal information processes necessary for motor control were proposed as a network involving the thalamus as a subcortical motor centre. Through investigations of the anatomy of the brains of primates the nature of the interconnected tissues of the cerebellum to the multiple motor cortices suggested that the thalamus fulfills a key function in providing the specific channels from the basal ganglia and cerebellum to the cortical motor areas. [18][19] In an investigation of the saccade and antisaccade motor response in three monkeys, the thalamic regions were found to be involved in the generation of antisaccade eye-movement.
For more information
Download this File

Comments

  1. The stuff is very nice and helpful! Thanks to providing this info.
    https://blog.mindvalley.com/sensory-cortex/

    ReplyDelete

Post a Comment

Comment on articles for more info.

Popular posts from this blog

Image Search Engine Using Python

Images provide a lot more information than audio or text. Image processing is the prime field of research for robotics as well as search engines. In this article we will explore the concept of finding similarity between digital images using python. Then we will use our program to find top 10 search results inside a dataset of images for a given picture. It won't be as good as google's search engine because of the technique we will be using to find similarity between images. But what we are going to make will be pretty cool. So lets start. Setting up the Environment Our Algorithm How the code looks Lets build the GUI Additional Techniques Setting up the Environment The code we are going to write requires a few tools which we need to install first. I will try to be as precise as i can and if you get stuck into installing some tool then you can drop a comment below and i will help you sort out the problem. So here are the tools and the steps to install

Understanding Python Decorators

If you have ever wondered what those @something mean above a python function or method then you are going to have your answers now. This @something line of code is actually called a decorator. I have red from various articles about them but some of them were not able to clarify the concept of a decorator and what we can achieve with them. So in this post we'll learn a lot about python decorators. Here is a list of topics we'll be covering. What is python decorator Understanding the concept Multiple decorators on same function class method decorator Where can we use decorators What is python decorator A python decorator is nothing but a function which accepts your given function as a parameter and returns a replacement function. So its like something this def decorator(your_func): def replacement(your_func_args): #do some other work return replacement @decorator your_func(your_func_args): #your_func code Now when your_func gets called then

Cordova viewport problem solved

Include the viewport settings in Cordova If you are facing the auto zooming problem of cordova then go read on the full article. Cordova actually ignores the viewport meta tag which causes the pixel density problem. So we need to tell cordova that viewport tag is equally important as other tags. To do this, we need to add some code to a file which is specify in the article. Corodva messes with pixels If you are using the latest cordova version or creating the cordova app for latest android versions then you may have faced the zoom malfunctioning.I also faced it when creating an app. Many of you may have already searched the web and found the answer of changing the meta tag attributes to get it working. But adding target-densitydpi=medium-dpi does not solve the problem for latest android versions. It may work for gingerbread but not for kitkat and others. So the final solution which i found was one of the stackexchange answer but rarely found. So i am gonna two things here, i