Skip to main content

Olfactory Memory

Formation of OLfactory Memory

Introduction


Olfactory Memory refers to the memory associated with odors and smells.If you just spare your 5 minutes in thinking that how our brain can memorise a smell which does not even seem to be a material thing then you'll get confused.Visual memory is associated with pictures, Echoic Memory is associated with sounds but both pictures and sounds can be stored as coded information but SMELL...! How memory of smell can be stored.To understand the structure of formation of olfactory memory we'll discuss each step through which the information is passed.

Importance

Studies have found various characteristics of common memories of odor memory including persistence and high resistance to interference. Explicit memory is typically the form focused on in the studies of olfactory memory, though implicit forms of memory certainly supply distinct contributions to the understanding of odors and memories of them. Research has demonstrated that the changes to the olfactory bulb and main olfactory system following birth are extremely important and influential for maternal behavior. Mammalian olfactory cues play an important role in the coordination of the mother infant bond, and the following normal development of the offspring. Maternal breast odors are individually distinctive, and provide a basis for recognition of the mother by her offspring. Olfactory memory was developed throughout evolution for various reasons. Among the most notable reasons are those related to the survival of the species and the development of early communication. Even in humans and animals today, these survival and communication aspects are still functioning. There is also evidence suggesting that there are deficits in olfactory memory in individuals with brain degenerative diseases such as Alzheimer's disease and dementia. These individuals lose the ability to distinguish smells as their disease worsens. There is also research showing that deficits in olfactory memory can act as a base in assessing certain types of mental disorders such as depression as each mental disorder has its own distinct pattern of olfactory deficits.

Process

Our sense of smell, though not as simple as our sense of taste, is very simple compared to the rest of the processes of our nervous system. Olfactory receptor proteins are able to recognize physiochemical molecules called odorants and relay information to the brain. Approximately one thousand of these proteins have been characterized. Each one is only able to recognize one odorant, yet we are able to experience and characterize many more than one thousand unique scents. Once an odorant binds to a receptor protein, the massage is sent via olfactory neurons in the olfactory epithelia to the olfactory cortex in the brain. These olfactory neurons only survive for approximately 60 days before they are replaced with new neurons. Olfactory neurons are also unmyelinated, making scent the slowest of the five senses and allowing the sensation of odor to persist for a relatively long period of time. It is perhaps the proximity of the olfactory bulb to the limbic system that gives scent such a strong influence over memory and emotion. The limbic system, specifically the amygdala and the hippocampus, are associated with processing emotion and memory.

Role of the Amygdala

The amygdala is a complex set of nuclei situated in the anterior temporal lobe and lies beneath the primary olfactory cortex. The amygdala is involved in the formation of memories of emotional experiences, particularly those associated with fear, flight, and defense. It is connected by various pathways to other parts of the brain, but most notably to the basal forebrain which contains magnocellular cells which provide extensive input into the neocortex and hippocampus. There are also direct projections to the hippocampus from the amygdala, which are involved in the integration of various sensations into memory. Neuropsychological research has suggested that this pathway is vital for the development of olfactory memories. The primary olfactory cortex and the hippocampus have extensive connections with the amydgala through both indirect and direct pathways. It is important for an animal to create memories of olfactory stimuli which threaten its survival. Without a properly functioning amygdala, olfactory memories would not be able to form which could put an animal at risk of dangerous stimuli in its environment due its lack of memory of such stimuli.

Comments

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