You are on page 1of 6

See discussions, stats, and author profiles for this publication at: https://www.researchgate.

net/publication/333647535

Designing and Building the Vein Finder System Utilizing Near-Infrared


Technique

Chapter · January 2020


DOI: 10.1007/978-981-13-5859-3_68

CITATIONS READS

5 20,726

2 authors, including:

Pham Hien
Ho Chi Minh City International University
67 PUBLICATIONS 355 CITATIONS

SEE PROFILE

All content following this page was uploaded by Pham Hien on 17 June 2019.

The user has requested enhancement of the downloaded file.


Designing and Building the Vein Finder
System Utilizing Near-Infrared Technique

Long Thanh Tran and Hien Thi-Thu Pham

  
Abstract Keywords


The process of venipuncture is a necessity for obtaining Venipuncture Near-infrared Camera board
intravenous access for intravenous therapy or blood Filtering and processing Back-projection
sampling of venous blood. Therefore, a vein finder
system is an effective solution not only to make
venipuncture safe and accurate but also to reduce anxiety
and stress of patients and to improve donation comfort 1 Introduction
and efficiency. Vein visualization technology utilizes
noninvasive infrared technology in capturing the real-time Recently, Near-Infrared (750–1400 nm) Imaging (NIR) has
venous image on the patient’s skin and making it significantly attracted the attention of many medical scien-
observable. In the procedure executed by this system, tists and practitioners as a non-invasive method of acquiring
the sample’s skin is exposed to the near-infrared images of veins near the surface of skin efficiently. It has
(NIR) light transmitted from an 850 nm 12 W 6-LED been scientifically proven to be useful assistance in phle-
array. Following this, Raspberry Pi 3 Model B, connected botomy procedure performed on patients and a remarkable
with NoIR Camera Board, is utilized as an image tool in medical diagnostic [1]. Hence, this device aids more
acquisition equipment to capture the NIR illuminated support in the vein tracking process of the phlebotomists
skin area. Next, the raw data will be transferred to the because venipuncture is an essential part of clinical testing,
computer to perform the filtering and processing tech- donation, or medical research.
nique before being displayed on the monitor. The system The principle of this project is the method of vein
is examined on 24 volunteers with various age and gender imaging, which relies on the variation of light absorption
groups. The output venous image is also imported to a parameters between venous blood and surrounding tissue to
pico-projector (Texas Instrument Inc.) for the attempt of capture the image of the venous system non-invasively.
back-projection onto the patient’s hand. In overall, the Together with some digital image enhancement techniques,
experimental results are capable of distinguishing the a system is designed with a NIR light source (850 nm), a
differences in the contrast and brightness between Raspberry Pi 3 Model B micro-controller, a NoIR camera
the veins and the surrounding tissues on the wrists of board, DLPDLCR2010EVM projector, and a laptop (or
the samples. It is anticipated that, with further investiga- computer) with MATLAB installed as an image processor.
tion and experiments, a verification method for accurate The experimental results exhibit an acceptable venous
and real-time projection of the enhanced imaged onto the image of some chosen samples. The image projection is also
human skin can be developed. initially possible using the adjustments in the projector’s
software and the method of reference points. This vein finder
system is believed to have a lot of future potentials to be
developed in many orientations such as venous disease
diagnosis, more accurate image re-projection, or vein finder
smartphone application.

L. T. Tran  H. T.-T. Pham (&)


Biomedical Engineering Department, International University—
Vietnam National University HCMC, Ho Chi Minh, Vietnam
e-mail: ptthien@hcmiu.edu.vn

© Springer Nature Singapore Pte Ltd. 2020 383


V. Van Toi et al. (eds.), 7th International Conference on the Development of Biomedical Engineering
in Vietnam (BME7), IFMBE Proceedings 69, https://doi.org/10.1007/978-981-13-5859-3_68
384 L. T. Tran and H. T.-T. Pham

2 Principle of Near-Infrared Imaging in Vein As can be seen from Fig. 2, at the first stage, the NIR
Illuminator light source will be operated to emit NIR light to the skin
surface of the skin. Because of the absorption of Hb, the
The unique characteristic of NIR radiation is it can penetrate image of the venous system can be captured by a NoIR
into biological tissue up to a depth of about 3 mm, in which Camera Board connected to Raspberry Pi. From the con-
the veins are located. Arteries are more deeply seated than troller, the image is transferred to the computer to perform
veins and NIR cannot penetrate further beyond 3 mm. the image enhancement and noise filtering process on
Moreover, in contrast with arterial blood which is mostly MATLAB. Finally, the resulting image is either display on
occupied by oxygenated hemoglobin (HbO2), the reduced, the screen or re-projected on the skin by the projector.
or deoxygenated, hemoglobin (Hb) in the venous blood
absorbs more of the radiation in this spectrum than the
surrounding tissue. This concept is illustrated in Fig. 1 [2], 3.2 Software Implementation
which describes the absorption spectra of Hb and HbO2 and
water, main component of the neighbor tissues such as fat, Figure 3 illustrate the programming procedure of the system.
and muscle. Two most crucial image processing technique will be dis-
According to the figure, only Hb and HbO2 are the pri- cussed thoroughly: median filtering and adaptive histogram
mary absorbers of NIR light (600–1300 nm). In this region, equalization.
venous blood still maintains a higher absorption capability
when the absorption coefficients of both oxygenated and
deoxygenated blood dramatically fall with the wavelength 3.3 Median Filtering
beyond 600 nm. Also, there exists a peak at approximately
760 nm for HbO2, and the absorption difference between Median filtering is a nonlinear method used to remove noise
both kinds of hemoglobin is most prominent within the 700– from images without eliminating the edges and lines. Specif-
900 nm range. Therefore, it is significant that the wavelength ically, the median filter works by replacing each pixel of the
of the NIR light source is chosen to be between 700 and image with the median of all pixels in a neighborhood x.
900 nm or around 760 nm, ideally.
y½m; n ¼ medianfx½i; j; ði; jÞ 2 xg ð1Þ

where x represents a neighborhood defined by the user


3 Methodology whose center is around location ½m; n in the image. In this
approach, 2D median filter, in which the median of all pixel
3.1 System Design value inside the window is applied as the replacement for the
pixel at the center is performed on the snapshot image [3].
The system is built up by some essential components such as
a 12 W NIR 6-LED array (850 nm), an image capturing
device (NoIR camera), a camera controller (Raspberry Pi 3
Model 3), a computer with MATLAB installed, and a 3.4 Adaptive Histogram Equalization
DLPDLCR2010EVM projector.
This technique is only executable as long as the image is
converted to grayscale. The histogram is the plot of the
number of pixels for each intensity value. In this method, the
image is divided into distinct sections whose histograms are
computed separately. After that, the tonal values of the
image are redistributed according to their probability distri-
bution function. Consequently, the visual contrast is con-
siderably enhanced along with the sharpness. In our
implementation, adaptive histogram equalization is per-
formed twice to increase the effectiveness of the method [4].

3.5 Back-Projection Methodology

It can be analyzed that the real-time image of the veins as a


Fig. 1 The absorption spectra of water, Hb, and HbO2 consequence of the MATLAB program only occupies a
Designing and Building the Vein Finder System … 385

Fig. 2 The system components

Digital image processing


Image capturing system

NIR light Projector

Fig. 3 Flowchart of the system


RGB image to
Start Input image grayscale image Median filtering
conversion

End Image display Adaptive histo-


Output image
or re-projection gram equalization

central part of the computer screen. This means that the


output of the projection through the HDMI port will be 4 Results
extremely distracted as the whole screen is projected on the
skin. Therefore, it is required that the input need to be 4.1 Hardware Design and On-Screen Results
cropped to only the part of the venous image. of Volunteers
As can be seen from Fig. 4, the cropping transaction is
accomplished by controlling the 24-bit parallel I2C interface Figure 5 describes the design of the image capturing system
of the DLPDLCR2010EVM with a unique programming including a camera board attached at the center of a 6-LED
language that is not compatible with other prevalent and array ring, all of which are connected to the ports of Rasp-
standardized ones such as C++, Python, MATLAB. First of berry Pi 3 Model B. The computer controls this system via
all, from the resolution of the input HDMI display, the the Ethernet port on Raspberry Pi.
coordinate (X, Y) of the pixel where the crop will be started In the next part of the research, 24 volunteers (14 females,
is determined. Following that, the number of lines and pixels 10 males) with various age groups and BMI indexes repre-
per line are called to indicates the width and height of the senting the amount of fat under the skin are invited to
cropped image. At the last stage, the cropped pixels can be examine the operation of the design. There are 5 children
scaled to an arbitrary resolution as long as it is rational with and teenagers (8–14 years old), 11 adults (18–34 years old)
the input venous image before being projected [5]. in the volunteer’s group, whereas, the remaining people are
in middle ages (44–64 years old). Their left or right wrist is
NIR illuminated and captured by the system, the resulting
images are displayed on the screen of the computer, as
shown in Fig. 6.

4.2 Back-Projection of the Results onto the Skin

The research is currently investigated on the projection of


Fig. 4 Steps of image cropping procedure the venous image onto the volunteers’ wrists. Two subjects
386 L. T. Tran and H. T.-T. Pham

However, to assure that the venous image accurately


illuminates the subject’s hand at the right position, a cali-
bration method is proposed, in which the subject’s wrist is
marked with three white dots by a special ink that prevents
transmittance of NIR light. Therefore, the on-screen
enhanced image also contains these dots. After that, these
images are projected back onto the skin in a way such that
the reference points must be accurately fixed with their
original ones, indicating the accurate projection [4]. The
procedure is illustrated in Fig. 7.

5 Discussion and Implementations

5.1 Evaluation of the Results

According to Fig. 6, after the contrast enhancement process,


in almost every subject, the veins are more easily located as
their color is significantly darkened and conversely, the other
tissues appear with a higher brightness. Furthermore, there is
a development in the re-projection of the image onto
human’s skin although the procedure only pauses at the
experiments. Indeed, the application of the DLP LightCrafter
Display 2010 EVM in a new approach of the project is
considerable because the problems of operating a new pro-
jector module that uses I2C interface to control is overcome
Fig. 5 Hardware design of the image capturing system and the quality of the output is comparable to the commer-
cialized products regarding resolution.
Nevertheless, it can be easily observed that the current
are undergoing the experiments of this process. Subject 1 is a design has a bunch of raw connection wires to link the
21-year-old man, while the other is a 55-year-old woman, components together such USB, HDMI, power supply
whose right hands are the location for image capturing and cable… which makes the product look extraordinarily
re-projecting. Their hands are stabilized on the table in both anesthetic and not portable. In case of tiny and deep veins
cases. such as those from the children and teenagers group, the

Fig. 6 Resulting venous images


of the wrists of 24 volunteers
Designing and Building the Vein Finder System … 387

Fig. 7 Original hands and venous image re-projection on the hands of subject 1 (two leftmost images) and subject 2 (two rightmost images)

image is blurred or may not be obtained. In addition, the task phlebotomists would deal with no trouble in searching for
of image projection has no guarantee that the venous image the accurate vessels for blood drawing or venipuncture as the
is illuminating the right anatomical parts because the method venous image appears clearly and sharply among the sur-
using reference points are temporary and it contains many rounding tissues. In the future, the achievement of a
errors regarding distance and angle. real-time projectable vein finder device, together with an
aesthetically satisfying design will even emphasize the
beneficial effects of this research in Vietnam’s medical
5.2 Implementations system.

The next progression, the research can develop the software Acknowledgements This research is funded by International
and graphical user inter-face to obtain more emphasizing University—VNUHCM under grant number T2017-01- BME.
venous images and a friendlier program for every-one other
Conflict of Interest The authors declare that they have no conflict of
than the engineers to operate the system. Moreover, inno- interest.
vative system will be designed with proper components
arrangement for both the NIR camera and the projector for
the real-time operation. Therefore, a method in which a References
camera and projector are placed in different axes is proposed.
On account of the modification of the axes, the visual con- 1. Marathe, M., et al.: A novel wireless vein finder. In: International
flict between the input of the camera and the output of the Conference on Circuits, Communication, Control and Computing
projector is completely eliminated. In the proposed method, (2014)
the software program requires an additional technique called 2. Vo-Dinh, T.: Biomedical Photonics Handbook: Fundamentals,
Devices, and Techniques. CRC Press Inc, Boca Raton, FL (2014)
homography transformation to correct the angle variances 3. Median Filter, fourier.eng.hmc.
between the camera and projector [6, 7]. edu/e161/lectures/smooth_sharpen/node2.html
4. Sureshkumar, V., Elizabeth Kurien, S., Sunny, S., James, S.,
Lakshmy, S.: Electronic vein finder. Int. J. Adv. Res. Comput.
Commun. Eng. 4(10) (Oct, 2015)
6 Conclusion 5. DLPC3430, DLPC3435, DLPC3433, and DLPC 3438 Software
Programmer’s Guide. DLPDLCR2010EVM DLP LightCrafter™
To sum up, this analyzing vein image system will provide Display 2010 Evaluation Module | TI.Com
the safest way for venipuncture shortly due to non-invasive 6. Dai, X., et al.: A fast vein display device based on the
camera-projector system. In: 2013 IEEE International Conference
characteristic of NIR technology. The hardware components on Imaging Systems and Techniques (IST), pp. 146–149 (2013)
are the state-of-the-art modules that are popularly available 7. Sukthankar, R., Stockton, R.G., Mullin, M.D.: Smarter presenta-
on the market. In addition, the image processing algorithm is tions: exploiting homography in camera-projector systems. In:
an innovative version of other researches. By looking at the Eighth IEEE International Conference on Computer Vision, 2001.
ICCV 2001. Proceedings, vol. 1. IEEE, New York (2001)
vein-illuminating images displayed on the screen, the

View publication stats

You might also like