Confocal Microscopy: Difference between revisions

From PC5214 wiki
Jump to navigation Jump to search
Tag: Manual revert
Line 74: Line 74:
After that, we translated 10um on x-axis per step to find next focus point on z direction. We moved 10 steps in total so that the total distance along y-axis is 100um.
After that, we translated 10um on x-axis per step to find next focus point on z direction. We moved 10 steps in total so that the total distance along y-axis is 100um.


===Step 3===
====Step 3====
At last, we moved 10nm on x-axis through tuning the spiral and measured the final set of data.
At last, we moved 10nm on x-axis through tuning the spiral and measured the final set of data.



Revision as of 15:16, 5 May 2022

Introduction

Figure 1. Schematic of confocal microscopy

A Confocal Microscopy is an optical imaging technique for increasing optical resolution and contrast of a micrograph. It uses pinhole to block out all out of focus light to enhance optical resolution, very different from traditional wide-field fluorescence microscopes. To offset the block of out of focus lights, the light intensity is detected by a photomultiplier tube or avalanche photodiode, which transforms the light signal into an electrical one. We will try to build a Setup like this to enhance optical resolution and maybe get profile information about the sample.

Team Members

Wang Tingyu, Xue Rui, Yang Hengxing

Principles of confocal microscopy

The method of image formation in a confocal microscope is fundamentally different from that in a conventional fluorescence microscope , where the entire specimen is subjected to intense illumination from an incoherent lamp, and resulting image of secondary fluorescence emission can be viewed directly by eye or detector. This usually requires a thin, relatively transparent, sample but often results in out-of-focus blur that reduces resolution and specimen contrast. In contrast, the illumination in a confocal microscope is achieved by scanning focused beam from laser and across the specimen.

The confocal principle is diagrammatically presented in Figure 1. Coherent light emitted by the laser system (excitation source) pass through a low-pass filter that is situated in a conjugate plane (confocal) with a scanning point on the specimen and a pinhole aperture positioned in front of the detector (Si PIN photodiode). As the laser is reflected by a dichromatic mirror and scanned across the specimen in a defined focal plane, secondary fluorescence emitted from points on the specimen pass back through the dichromatic mirror and are focused as a confocal point at the pinhole aperture.

Set up

The confocal fluorescence microscope consists of multiple laser excitation sources, a scan head with optical and electronic components, electronic detector (Si PIN photodiode), and a computer for acquisition, processing, analysis, and display of images.

Figure 2. Optical path diagram of confocal microscope

Laser

XYZ piezo scanner

Figure 5. Modified micro PI stage controller.

Piezo scanners are used for fast, high precision motion in one or more axes. In our project, we combine the micro PI stage controller with a moving stage on x-axis to realise three dimensional piezo scanning in our confocal microscopy.

Si PIN photodiode

Figure 3. High-speed photodiode.

High-speed Si PIN photodiodes are designed for visible to near infrared light detection for they can efficiently convert light into an electrical current. The current is generated when photons are absorbed in the photodiode. These photodiodes provide wide-band characteristics at a low bias, making them suitable for optical communications. In this project, we choose S5973 series with a mini-lens type (S5973-01) that can be efficiently coupled with an optical fiber and a violet sensitivity enhanced type (S5973-02) ideal for violet laser detection.

Photodiode has two working modes: solar cell mode (photovoltaic mode) and photoconductive mode. Solar cell mode is otherwise called as Zero Bias Mode. When a photodiode operates in low frequency applications and ultra-level light applications, this mode is preferred. When photodiode is irradiated by a flash of light, voltage is produced. The voltage produced will have a very small dynamic range and it has a non-linear characteristic. When photodiode is configured with OP-AMP in this mode, there will be a very less variation with temperature. (sketch diagram see link below). In the photoconductive mode, photodiode will act in reverse biased condition. Cathode will be positive and anode will be negative. When the reverse voltage increases, the width of the depletion layer also increases. Due to this the response time and junction capacitance will be reduced. Comparatively this mode of operation is fast and produces electronic noise.

Figure 12. The diagram of circuit for photovoltaic mode and photoconductive mode.

Arduino UNO

Figure 10. Detector of the confocal microscopy (Arduino UNO).

In our confocal set up, we use a 5V DC supply to inverse biase ( connect to the cathode of )the photodiode and operate it under a photoconductive mode. Some resistors are connect btw photodiode anode side and ground (GND) to amplify the signal from the photodiode and convert the photo current to an readable voltage. A 47K Ohm is first adopted in the circuit, later found out that this resistor is not big enough, then we added three more 1M Ohm resistors (3.047M Ohm in total). Then three 100 nF capacitors in series (100/3 nF in total )were connected btw photodiode anode side and ground (GND) to filter out the high frequency noises of photocurrent. Finally, We use an arduino analog input pin A0 to read out the voltage at the anode side of photodiode.

Also, in our photoconductive mode, we didn't use an OP-AMP, but connecting our voltage metter directly with our photodiode's anode.

Figure 9. A diagram of the signal processing circuit using with Arduino UNO).

Code

* Here is an Arduino sketch to read the output voltage of the photodiode detectors. 
  The output pin of the circuit is connected to analog pin 0 of the Arduino. 
  The data are read every 0.025 second in this example. 
  However, you can change the sampling rate by simply changing the argument of the delay() statement. *
  
  #define inPin0 0
  void setup(void) {
    Serial.begin(9600);
    Serial.println();
  }

 void loop(void) {
 float pinRead0 = analogRead(inPin0);
 Serial.println(pinRead0);
 /* the minimum delay allowed is about 20, correspond
 is about 20ms */}
 delay(25);    
 }

Experimental process

Laser calibration

Figure 8. Laser calibration process.

To realise the focus both on the focal plane of specimen and pinhole aperture, we built the set up shown in Figure.6. After the adjustment, we fix the height of the detector.

Measurement of coin sample

Step 1

Firstly, we managed to find the focus point within the region of 400um along z axis for each point on our coin by y-z micro PI stage controller.

Step 2

After that, we translated 10um on x-axis per step to find next focus point on z direction. We moved 10 steps in total so that the total distance along y-axis is 100um.

Step 3

At last, we moved 10nm on x-axis through tuning the spiral and measured the final set of data.

Experimental results

Lab Location

S12-01-10/11 Nanomaterials Research Lab