Skip to main content

Why in flash light photo of eyeball become red?

look at the eyes 

After longing research finally, I got this reason why it is so.
It is the actually same reason as back-light of bicycle works at night means the same principle as retro reflector glass is working. [ link for details how retro-reflector works ]


                                                          ( retro-reflector glass)

 As our eyeball is spherical in shape the light is reflected back to the source itself means if we capture a photo by mobile phone as the flashlight is configured side by side to the camera, the light will immediately back to the camera itself, for that reason under the flashlight at night eyeball become brighter like a Dracula! 
                                        
[schematic diagram of an EYE ball] 


Now question arise why reddish in colour?

so again if we back to our physics class we can find the answer, we know when a beam of light passes through a lens it will get separated as VIBGYOR, of which red colour has less diffraction means long way can travel without deflecting more. so that's why when the reflected light back to the towards source passes through the lens, it gets separated as result camera perceived mostly red light.
Also, another reason for reddish colour is our uncountable red blood cell present inside the eyes.
     


But sometimes it reflected bluish light also it totally depends upon incidence angle of light falling on the lens, size of the lens(as the lens are flexible) at that moment. As I have shown below in this picture.




look at those figure different eye colour at a different angle



HOPE YOU LEARN SOMETHING NEW TODAY!





Comments

Post a Comment

Popular posts from this blog

How to make dice game by using LabVIEW?

8. Dice Game (Exercise) In a board game a pair of dice (one is 6 sided and the other is 12 sided) is rolled. You win when there is a matching number, or the sum of the numbers rolled is equal to 18. In this problem we would like to build a VI that will do the following: i) Rolls the pair of dice every 100ms and displays the numbers rolled ii) A digital indicator displays the number of times dice rolled iii) An LED glows when you win iv) A digital indicator displays the number of wins v) Program stops after exactly100 rolls.

Image Identify using machine learning in Python.

#pip install imageai #pip install Tensorflow #pip install keras from  imageai.Prediction  import  ImagePrediction import  os from  keras.models  import  load_model Givenimage= "picc.jpg" execution_path=os.getcwd() #print(execution_path) prediction = ImagePrediction() prediction.setModelTypeAsSqueezeNet() prediction.setModelPath(os.path.join(execution_path,  "squeezenet_weights_tf_dim_ordering_tf_kernels.h5" )) prediction.loadModel() predictions, probabilities = prediction.predictImage(os.path.join(execution_path, Givenimage), result_count= 3  ) for  eachPrediction, eachProbability  in   zip (predictions, probabilities):      print (eachPrediction ,  " : "  , eachProbability)   Result: WARNING:tensorflow:11 out of the last 11 calls to <function Model.make_predict_function.<locals>.predict_function at 0x7f941e211598> tr...

Find an Element of a particular position of 2D array in Lab VIEW

4. Application of Structures function For the 2D array as shown, do the followings without using array functions: a) Get the array size b) Extract an element (i,j) c) Extract a row i d) Extract a column j #indexing is off for both the loop # selecting Last Value