Conference PaperPDF Available

ImageJ Macro Tool Sets for Biological Image Analysis

Authors:

Abstract and Figures

At the imaging facility Montpellier RIO Imaging we create custom solutions for image analysis and automation tasks based on ImageJ. We provide these solutions in the form of ImageJ macro tool sets. Macro tool sets are easy to install, provide a simple graphical interface, allow to set options and can call plugins for more complex tasks. The first button of each tool set opens the help and installation page of the tool set on the wiki of the facility's project management and task-tracking tool. The wiki contains installation and usage instructions, the tool set macro, links to plugins and other dependencies and example images. A tool set often contains a manual version of the macro that can be used to test the macro on the current image and a batch version that will run the same macro on a set of images. The general approach and a number of available tool sets will be presented here. The tool sets for biological image analysis include: the segmentation of adipocytes, the analysis of multi-well arabidopsis seedling images, the counting of segment like objects, the analysis of virus infections in leaves, the measurement of the interdigitation index and the thickness in skin images and the analysis of wound healing. The tool sets concerning the workflow include: the cropping of regions from big images, the conversion of image formats, the navigation within a set of images, the transformation of ROIs and the order of ROIs in the ROI-manager.
Content may be subject to copyright.
ImageJ Macro Tool Sets for Biological Image Analysis
Volker Baeckera
aMontpellier RIO Imaging, CNRS, 1919, route de Mende, 34293 MONTPELLIER CEDEX 5,
France
ABSTRACT
At the imaging facility Montpellier RIO Imaging we create custom solutions for image analysis and automation
tasks based on ImageJ. We provide these solutions in the form of ImageJ macro tool sets. Macro tool sets are
easy to install, provide a simple graphical interface, allow to set options and can call plugins for more complex
tasks. The first button of each tool set opens the help and installation page of the tool set on the wiki of
the facility’s project management and task-tracking tool. The wiki contains installation and usage instructions,
the tool set macro, links to plugins and other dependencies and example images. A tool set often contains a
manual version of the macro that can be used to test the macro on the current image and a batch version that
will run the same macro on a set of images. The general approach and a number of available tool sets will be
presented here. The tool sets for biological image analysis include: the segmentation of adipocytes, the analysis
of multi-well arabidopsis seedling images, the counting of segment like objects, the analysis of virus infections in
leaves, the measurement of the interdigitation index and the thickness in skin images and the analysis of wound
healing. The tool sets concerning the workflow include: the cropping of regions from big images, the conversion
of image formats, the navigation within a set of images, the transformation of ROIs and the order of ROIs in
the ROI-manager.
Keywords: ImageJ, microscopy, image analysis, macros, tool sets, automation
1. INTRODUCTION
At the facility Montpellier RIO Imaging we provide the creation of custom image analysis and automation
solutions on demand as a service. The biologist contacts us and we find a protocol that solves the image analysis
problem. If the protocol can not be executed using existing software packages, we create the necessary tools based
on ImageJ.1The protocol and the tools are evaluated in cooperation with the biologist, using data provided by
him. Once the evaluation done the biologist uses the provided tools by himself to solve the image analysis task.
While in the past we used the ImageJ based MRI Cell Image Analyzer (CIA) framework,2we switched to
the usage of ImageJ macro tool sets3as the main user interface more recently. The reason for this is that, on
the one hand a certain number of features that where missing in ImageJ when the CIA was written are now
available. On the other hand macro tool sets are a standard ImageJ feature and need less adaptations as the
versions of ImageJ advance. Among the now available features are:
the switchable tool bars allow to provide a set of tools that solve a given problem
the options of a tool on the toolbar, accessible via a right-click, can be set independent from running
a macro
the waitForUser macro command allows to have interactive macro tools
Further points that the CIA handled, like for example the independence of the ImageJ operation from the
user interface will be solved in ImageJ2.4What is still missing in ImageJ is a more convenient way to specify
a list of input images and output folders. We solved this with a plugin Macro IO Settings,5that we use in
combination with the macro tool sets.
Send correspondence to volker.baecker@mri.cnrs.fr
It has to be noted that the requirements for tools that are mainly intended for the usage of one research
group are different from the requirements for tools that are made available to the users of a facility or to a wider
community. In the first case a number of macro files with an explanation of how to use them can be enough.
Needed in the second case are:
a possibility to discover the tool
documentation that is accessible from the tool
installation instructions
usage instructions
meaning and influence of the options
a description of the method used
an explanation of the results
the tool must be easy to install and easy to use
a way to try it on data on which it is known to work
an easy way to change options
a way to try it on the data of the user
a possibility to change default values
a possibility to adapt the tool
ImageJ tool sets are a simple way to provide tools that can fulfill the above requirements. At the facility we
developed a number of tool sets for biological image analysis applications from different areas. Besides of this we
wrote a number of tool sets that do not solve biological image analysis problems directly. These are either there
to optimize the workflow of a protocol or they make available a functionality used in another tool set which can
be interesting in its own right.
2. MATERIALS AND METHODS
We use the web-based project management and task-tracking tool Redmine6to manage the image analysis
projects of the facility. For a new image analysis project an issue is created. Biologists can subscribe to issues
and follow the advancement of the work. The tool set macro files and other resources are uploaded to the files-
part of the Redmine and ordered by releases. Releases are numbered by the year and the month of the release.
The wiki part of the Redmine contains a help page for each macro tool set.
The help page of a tool set starts with a general description of the tool. It contains one or more example images
for which the tools work well, using the default options. It explains how to install the tool set and eventually its
dependencies and how to get started with it. The meaning of the options of each tool are explained. For each
tool the algorithms and methods applied are described. The page can contain hints for the usage of the tools or
a description of the workflow. Finally examples of the results of the tools are shown.
The first button of each tool set contains either an image that helps to identify the tool set or a questionmark.
Pressing the first button opens the help page of the tool set in the web-browser. There can be one version of
the macro that runs on the active image and a batch version that runs on a set of images. The tools can have
options that can be set by right-clicking on the button of the tool. The default values of the options are defined
as variables at the beginning of the tool set macro file. This way they can easily be changed. The user can
open the tool set macro file by pressing the shift-key while selecting the tool set, change the default values and
save the modified file. Macros run in batch mode, by using the setBatchMode macro command. Processing in
http://dev.mri.cnrs.fr/projects/imagej-macros
batch mode is faster and safer. Each macro should show the current activity and the progress in a log-window.
The ImageJ-progress bar is not appropriate to show the overall progress of the macro, since single commands
called from the macro are likely to interfere with it. The macro should clearly show when the processing ended.
If the macro worked on a set of files it should list the files that have been processed and those that have been
skipped. Macros running on file sets will usually write the measurement results and control images that show
the measured objects into a result folder. We use the Macro IO Settings plugin to conveniently specify input
images and output folders and to access them from macros. Since at the facility the user pays for the time that
he uses the image analysis workstations, a batch macro tool can have an option to close the workstation session
after the processing finished. This is implemented by running a shell command that closes the operating system
session from within the macro. More complex tasks or user interfaces are better implemented as plugins. Macro
tool sets can still be used to set the options and to start the tool.
3. RESULTS
In this section a number of macro tool sets developed at Montpellier RIO Imaging will be described. In the first
part tool sets that help optimize the workflow or make conversions are presented. In the second part tool sets
that solve biological image analysis tasks are described.
3.1 Tool sets for conversions and workflow optimizations
3.1.1 Crop 4D Cells
Figure 1. The Crop 4D Cells tool set.
This tool set allows to copy the interesting parts of big images and to save them to separate image files.
Only one region of interest needs to fit into the memory of the machine at a time. The tool set displays a
number of buttons to navigate within a defined list of images. These images can be in any format handled by
loci-bioformats.7The list of images can be set as an option of the tools of the tool set. Images are opened as
virtual stacks. The user makes a selection and the regions of interest are saved when he adds a new one and
automatically loaded into the ROI-manager when he opens an image. Once all interesting parts selected on all
images the user can run the export, that saves the result images in ics-format8into the results folder.
3.1.2 Image Conversion Tools
The tool converts all images in a folder from the formats lif, lsm and zviinto tif-images.9Each channel of
a multichannel image is saved separately and an RGB-snapshot is saved as well. The options allow to apply
a z-projection of either all slices or a subset of the slices and to select the channels that will be used in the
RGB-snapshot image. The colors of the converted images will correspond to the colors of the original images
including for the conversion of the zvi-images.
3.1.3 NDPI Tools
This tool set is useful for the work with images from histological slices. The first tool converts images in the ndpi
formatused by the Hamamatsu Nanozoomer into tif-images. The user can select a resolution present in the
ndpi-image for the export. The highest resolution is not supported. The second tool tries to select automatically
the different cuts on a slide. The arrangement of the cuts can be set in the options of the tool. The selections
are added to the ROI-manager and can be corrected by the user. The last tool exports the cuts according to the
ROIs in the ROI-manager, each one as a separate image.
Leica Image File Format (lif ) is a file format owned by Leica Microsystems GmbH, the Laser Scanning Microscope
(lsm) file format and the Zeiss Axio Vision file format are owned by the Carl Zeiss MicroImaging GmbH
The NanoZoomer Digital Pathology Image format is owned by Hamamatsu
3.1.4 Next Image as Hyperstack Tool
This tool set has two tools. The first converts the current RGB-image into a hyperstack. The second opens the
next image in the current folder as a hyperstack. In the options the display mode of the hyperstack and the
channel selected by default can be changed. The tool set allows to work conveniently on a given channel in a
series of RGB-images.
3.1.5 ROI Converter Tools
These tools have been developed in the context of the Skin Tools§. The first tool creates a one-dimensional ROI
from an area ROI. The resulting ROI consists of the upper border between the leftmost and rightmost points
of the area ROI. With the help of this conversion the tool allows to measure the length of the upper border of
an area ROI. The second tool creates a point ROI from a one-dimensional ROI. The resulting points are the
local extrema of the original ROI. The options allow to exclude small local extrema. The third tool takes a
multiple-point ROI, traces for each point a vertical line from the first pixel above with intensity bigger than zero
to the next pixel with intensity zero and adds it to the ROI-manager.
3.1.6 Roi Shuffle Tools
This tool set has been developed for the Leaf Infection Tools. It allows to easily change the order of the ROIs
in the ROI-manager. The up-button moves the selected ROIs one position up in the ROI-manager if possible
and the down-button moves them one position down. It is possible to open a separate window containing the
two buttons.
3.2 Tool sets for biological image analysis
3.2.1 Adipocytes Tool
Figure 2. Adipocites segmented with the Adipocytes Tool.
The Adipocytes Tools help to analyze fat cells in images from histological sections in which the membranes
are stained. The preprocessing excludes regions that clearly do not contain fat cells. It is integrated into the
two other tools. It is nevertheless available as a separate tool in order to allow to find the right options more
easily. The simple method uses automatic thresholding and the particle analyzer to detect the cells. The options
allow to apply a binary watershed10 to separate touching cells. The last method uses a grayscale watershed
algorithm. After the exclusion of background areas, a find edges command is called and the result is smoothed
with a Gaussian blur filter11 before the watershed is applied. As a result a ROI for each detected cell is added
to the ROI-manager.
3.2.2 Arabidopsis Seedlings Tool
The tool allows to measure the surface of green pixels per well in images containing seedlings in multiple wells.
It uses color-thresholding in the CIELAB color space12 for the segmentation. The options allow to change the
threshold values and to adapt the macro to the distribution of the wells. It can be run in batch mode on a series
of images. The result is a spreadsheet file with the measured area per well and a control image showing the
detected surface for each input image.
Figure 3. The count segments tool finds the end points of segments.
3.2.3 Count Segments
This tool estimates the number of filament like segments in an image. The segments can cross each other. The
idea is to count the end point of segments rather than trying to separate and to count the segments themselves.
A blurred version of the image is subtracted from the original image. A Gaussian-blur filter is applied to the
result and the image is segmented by using the IsoData-auto-threshold. The result is converted into a mask and
skeletonized. The end points of the segments are detected as pixels that have exactly one neighbour.
3.2.4 Leaf Infection Tools
The aim of these tools is to measure the areas of two different epifluorescent stainings and the area of the overlap
region of the stainings in images of plant leaves. Each image contains multiple leaves. There is one image for
each channel. For each leaf the user adds a rectangular selection in the larger image and the exact selection
of the leaf in the cropped region to the ROI-manager. The tool calculates for each leaf the regions of the red
staining, the region of the green staining, the region of the overlap of the stainings and Pearson’s correlation
coefficient13 between the two channels. The aim of the experiment is to show that there is mutual exclusion of
the two stainings in some cases and not in other cases.
3.2.5 Skin Tools
Figure 4. The tool selected the lower border of the epidermis in 3 parts and drew perpendicular line segments to the other
side.
The skin tools measure the thickness of the epidermis and the interdigitation index.14 The input images are
masks that represent the epidermis and that have been created from images of stained histological sections. The
mask must touch the left and right border of the image. The dermal-epidermal border must be on the lower site
of the image. The interdigitation index can be measured for one or more segments per image. As a measure of
the thickness of the epidermis the lengths of a number of random line segments are measured. The line segments
start at the lower border, are perpendicular to the lower border and end at the opposite border of the mask.
§see section 3.2.5
see section 3.2.4
3.2.6 Wound Healing Tool
The wound healing tool measures the area of a wound in a time series of images of cellular tissue. The tool will
measure the area of the wound, i.e. the area that does not contain tissue, in each image. The segmentation is
based on the fact that the image is more homogeneous in the region of the wound as in the region of the tissue.
Via the options, one of two methods to detect the empty area, can be selected. The first uses edge detection,
the second a variance filter. Holes in the detected tissue are filled using morphological operations.
4. CONCLUSIONS
We provide solutions for image analysis and automation tasks in the form of ImageJ macro tool sets to the users
of our facility. We found the macro tool sets to be an appropriate tool for this purpose. For project management
and documentation we use the Redmine project management tool. A number of macro tool sets to for conversions
and workflow optimizations and a number of tool sets for biological image analysis have been developed by us
and are publicly available.
In the future we plan to combine this work with our central image database project ”Web Image and Data
Environment” and the project ”Remote ImageJ” in order to run batch image processing from client machines
and from a web application on distant server machines.
ACKNOWLEDGMENTS
I want to thank all scientists and engineers who participated in developing the biological image analysis tool sets.
REFERENCES
[1] M. D. Abramoff, P. J. Magelhaes, and S. J. Ram, “Image processing with ImageJ,” Biophotonics Interna-
tional 11, pp. 36–42, 2004.
[2] V. Baecker and P. Travo, “Cell image analyzer - a visual scripting interface for ImageJ and its usage at the
microscopy facility montpellier RIO imaging,” in Proceedings of the ImageJ User and Developer Conference,
pp. 105–110, Centre de Recherche Public Henri Tudor, (Luxembourg), 2006.
[3] T. A. Ferreira and W. Rasband, “The ImageJ user guide,” Tech. Rep. IJ 1.46, June 2012.
[4] “Technical proposal |developer.imagej.net.” http://developer.imagej.net/proposal.
[5] V. Baecker and P. Travo, “Remote ImageJ - running macros on a distant machine,” in Proceedings of
the ImageJ User and Developer Conference 2010, pp. 205–210, Centre de Recherche Public Henri Tudor,
(Luxembourg), 2010.
[6] “Overview - redmine.” http://www.redmine.org/.
[7] M. Linkert, C. T. Rueden, C. Allan, J. Burel, W. Moore, A. Patterson, B. Loranger, J. Moore, C. Neves,
D. Macdonald, A. Tarkowska, C. Sticco, E. Hill, M. Rossner, K. W. Eliceiri, and J. R. Swedlow, “Metadata
matters: access to image data in the real world,” The Journal of Cell Biology 189, pp. 777–782, May 2010.
PMID: 20513764.
[8] P. Dean, L. Mascio, D. Ow, D. Sudar, and J. Mullikin, “Proposed standard for image cytometry data files,”
Cytometry 11(5), pp. 561–569, 1990.
[9] “TIFF revision 6.0,” tech. rep., Adobe Developers Association, 1992.
[10] S. Beucher, “The watershed transformation applied to image segmentation,” Scanning Microscopy Interna-
tional 6, pp. 299–314, 1992.
[11] R. Fisher, S. Perkins, A. Walker, and E. Wolfart, “Spatial filters - gaussian smoothing.”
http://homepages.inf.ed.ac.uk/rbf/HIPR2/gsmooth.htm, 2003.
[12] J. Schanda, Colorimetry : understanding the CIE system, Wiley ; John Wiley [distributor], Hoboken, N.J.;
Chichester, 2007.
[13] E. M. M. Manders, F. J. Verbeek, and J. A. Aten, “Measurement of co-localization of objects in dual-colour
confocal images,” Journal of Microscopy 169, pp. 375–382, Mar. 1993.
[14] Y. Wang, K. Lee, and W. R. Ledoux, “Histomorphological evaluation of diabetic and non-diabetic plantar
soft tissue,” Foot & Ankle International / American Orthopaedic Foot and Ankle Society [and] Swiss Foot
and Ankle Society 32, pp. 802–810, Aug. 2011. PMID: 22049867.
... Lipid droplet areas in BODIPY -or HE-stained BAT were measured using the MRI Lipid Droplets tool (http:// dev.mri.cnrs.fr/projects/imagej-macros/wiki/Lipid_Droplets_ Tool) (30), which is a macro of Image-J/Fiji software (Fig. 5B, C). ...
... Images were further processed using GIMP 2.10. ImageJ and the MRI_wound_Healing_Tool.ijm macro plugin [25] were used to process the images and calculate the area of the wound the cells have not covered. Relative wound closure over time using time 0 for each condition as the control was plotted and a curve line equation was formed by fitting the curve to a non-linear fit one phase decay least squares fit with Yo = 0 as a constraint. ...
Article
Full-text available
Background Pancreatic ductal adenocarcinoma (PDAC) is one of the deadliest cancers based on five-year survival rates. Genes contributing to chemoresistance represent novel therapeutic targets that can improve treatment response. Increased expression of ANGPTL4 in tumors correlates with poor outcomes in pancreatic cancer. Methods We used statistical analysis of publicly available gene expression data (TCGA-PAAD) to test whether expression of ANGPTL4 and its downstream targets, ITGB4 and APOL1, were correlated with patient survival. We measured the impact of ANGPTL4 overexpression in a common pancreatic cancer cell line, MIA PaCa-2 cells, using CRISPRa for overexpression and DsiRNA for knockdown. We characterized global gene expression changes associated with high levels of ANGPTL4 and response to gemcitabine treatment using RNA-sequencing. Gemcitabine dose response curves were calculated on modified cell lines by measuring cell viability with CellTiter-Glo (Promega). Impacts on cell migration were measured using a time course scratch assay. Results We show that ANGPTL4 overexpression leads to in vitro resistance to gemcitabine and reduced survival times in patients. Overexpression of ANGPTL4 induces transcriptional signatures of tumor invasion and metastasis, proliferation and differentiation, and inhibition of apoptosis. Analyses revealed an overlapping signature of genes associated with both ANGPTL4 activation and gemcitabine response. Increased expression of the genes in this signature in patient PDAC tissues was significantly associated with shorter patient survival. We identified 42 genes that were both co-regulated with ANGPTL4 and were responsive to gemcitabine treatment. ITGB4 and APOL1 were among these genes. Knockdown of either of these genes in cell lines overexpressing ANGPTL4 reversed the observed gemcitabine resistance and inhibited cellular migration associated with epithelial to mesenchymal transition (EMT) and ANGPTL4 overexpression. Conclusions These data suggest that ANGPTL4 promotes EMT and regulates the genes APOL1 and ITGB4. Importantly, we show that inhibition of both targets reverses chemoresistance and decreases migratory potential. Our findings have revealed a novel pathway regulating tumor response to treatment and suggest relevant therapeutic targets in pancreatic cancer.
... The overlaid images were processed using the auto stitching module in Adobe Photoshop (version 24.1.1, Adobe, San Jose, CA, USA) and analyzed using the wound healing tool macro in ImageJ [36]. ...
Article
Full-text available
Catechol-modified bioadhesives generate hydrogen peroxide (H2O2) during the process of curing. A robust design experiment was utilized to tune the H2O2 release profile and adhesive performance of a catechol-modified polyethylene glycol (PEG) containing silica particles (SiP). An L9 orthogonal array was used to determine the relative contributions of four factors (the PEG architecture, PEG concentration, phosphate-buffered saline (PBS) concentration, and SiP concentration) at three factor levels to the performance of the composite adhesive. The PEG architecture and SiP wt% contributed the most to the variation in the results associated with the H2O2 release profile, as both factors affected the crosslinking of the adhesive matrix and SiP actively degraded the H2O2. The predicted values from this robust design experiment were used to select the adhesive formulations that released 40–80 µM of H2O2 and evaluate their ability to promote wound healing in a full-thickness murine dermal wound model. The treatment with the composite adhesive drastically increased the rate of the wound healing when compared to the untreated controls, while minimizing the epidermal hyperplasia. The release of H2O2 from the catechol and soluble silica from the SiP contributed to the recruitment of keratinocytes to the wound site and effectively promoted the wound healing.
... Four images were captured with a digital camera (Nikon D5100, Japan) (resolution: 1 pixel = 0.58 μm) immediately and at 24 h after generating scratch wounds, using phase contrast microscopy (Nikon Eclipse TE300, Japan). Images were analysed by measuring the gap area of the wounds using the MRI wound healing tool plugin for ImageJ software [27]. Experiments were performed with three biological replicates. ...
Article
Full-text available
Sphingosine-1-phosphate (S1P) is a lipid mediator and its binding to the S1P receptor 2 (S1PR2) is reported to regulate cytoskeletal organization. Epidermal growth factor (EGF) has been shown to induce migration and invasion in tumour cells. Since binding of S1P to S1PR2 and EGF to the EGF receptors exhibit some overlapping functionality, this study aimed to determine whether S1PR2 was involved in EGF-induced migration and invasion of oral squamous cell carcinoma (OSCC) lines and to identify any potential crosstalk between the two pathways. Migration was investigated using the scratch wound assay while invasion was studied using the transwell invasion and multicellular tumour spheroid (MCTS) assays. Activity of Rac1, a RhoGTPase, was measured using G-LISA (small GTPase activation assays) while S1P production was indirectly measured via the expression of sphingosine kinase (Sphk). S1PR2 inhibition with 10 µM JTE013 reduced EGF-induced migration, invasion and Rac1 activity, however, stimulation of S1PR2 with 10 µM CYM5478 did not enhance the effect of EGF on migration, invasion or Rac1 activity. The data demonstrated a crosstalk between EGF/EGFR and S1P/S1PR2 pathways at the metabolic level. S1PR2 was not involved in EGF production, but EGF promoted S1P production through the upregulation of Sphk1. In conclusion, OSCC lines could not migrate and invade without S1PR2 regulation, even with EGF stimulation. EGF also activated S1PR2 by stimulating S1P production via Sphk1. The potential for S1PR2 to control cellular motility may lead to promising treatments for OSCC patients and potentially prevent or reduce metastasis.
... The MRI_Lipid Droplets Tool (http://dev.mri.cnrs.fr/projects/ imagej-macros/wiki/LipidDroplets_Tool), a macro in the ImageJ 1.50b software (http://rsb.info.nih.gov/ij/), was used to measure LD area (26). Individual cells were defined by regions of interest (ROIs) and images were analyzed as previously described (27). ...
Article
Full-text available
Introduction: Obesity is a major health problem because it is associated with increased risk of cardiovascular disease, diabetes, hypertension, and some cancers. Strategies to prevent or reduce obesity focus mainly on the possible effects of natural compounds that can induce a phenotype of browning adipocytes capable of releasing energy in the form of heat. Allicin, a bioactive component of garlic with numerous pharmacological functions, is known to stimulate energy metabolism. Methods: In the present study, the effects of allicin on human Simpson-Golabi-Behmel Syndrome (SGBS) cells were investigated by quantifying the dynamics of lipid droplets (LDs) and mitochondria, as well as transcriptomic changes after six days of differentiation. Results: Allicin significantly promoted the reduction in the surface area and size of LDs, leading to the formation of multilocular adipocytes, which was confirmed by the upregulation of genes related to lipolysis. The increase in the number and decrease in the mean aspect ratio of mitochondria in allicin-treated cells indicate a shift in mitochondrial dynamics toward fission. The structural results are confirmed by transcriptomic analysis showing a significant arrangement of gene expression associated with beige adipocytes, in particular increased expression of T-box transcription factor 1 (TBX1), uncoupling protein 1 (UCP1), PPARG coactivator 1 alpha (PPARGC1A), peroxisome proliferator-activated receptor alpha (PPARA), and OXPHOS-related genes. The most promising targets are nuclear genes such as retinoid X receptor alpha (RXRA), retinoid X receptor gamma (RXRG), nuclear receptor subfamily 1 group H member 3 (NR1H3), nuclear receptor subfamily 1 group H member 4 (NR1H4), PPARA, and oestrogen receptor 1 (ESR1). Discussion: Transcriptomic data and the network pharmacology-based approach revealed that genes and potential targets of allicin are involved in ligand-activated transcription factor activity, intracellular receptor signalling, regulation of cold-induced thermogenesis, and positive regulation of lipid metabolism. The present study highlights the potential role of allicin in triggering browning in human SGBS cells by affecting the LD dynamics, mitochondrial morphology, and expression of brown marker genes. Understanding the potential targets through which allicin promotes this effect may reveal the underlying signalling pathways and support these findings.
... Wound closure was monitored and photographed at 0, 24, and 48 h in digital format. For quantitative assessment, The wound areas were measured using ImageJ software with the MRI Wound Healing plugin [22]. ...
Article
Full-text available
The integrity of retinal endothelial cell (EC) is essential for establishing and maintaining the retinal blood barrier to ensure proper vision. Vitamin D is a hormone with known protective roles in EC function. The majority of vitamin D action is mediated through the vitamin D receptor (VDR). VDR is a nuclear receptor whose engagement by vitamin D impacts the expression of many genes with important roles in regulation of angiogenesis and inflammation. Although many studies have investigated vitamin D-VDR action in cardiovascular protection and tumor angiogenesis, its impact on retinal EC function and regulation of ocular angiogenesis and inflammation is exceedingly limited. We previously showed calcitriol, the active form of vitamin D, is a potent inhibitor of retinal neovascularization in vivo and retinal EC capillary morphogenesis in vitro. Here, using retinal EC prepared from wild-type (Vdr+/+) and VDR-deficient (Vdr−/−) mice, we show that retinal EC express VDR and its expression is induced by calcitriol. The lack of VDR expression had a significant impact on endothelial cell–cell and cell–matrix interactions. Vdr−/− retinal EC proliferated at a slower rate and were more adherent and less migratory. They also exhibited increased expression levels of inflammatory markers driven in part by sustained activation of STAT1 and NF-κB pathways and were more sensitive to oxidative challenge. These changes were attributed, in part, to down-regulation of endothelial nitric oxide synthetase, enhanced hepcidin expression, and increased intracellular iron levels. Taken together, our results indicate that VDR expression plays a fundamental role in maintaining the proper angiogenic and inflammatory state of retinal EC.
... ImageJ plugin Adipocyte Tools [30,31] was used to determine the number and size of the adipocytes. Faulty detections were manually corrected, and the exact area containing the selections was delineated to calculate accurate adipocyte density. ...
Article
Full-text available
Objective: This case-control study aimed to analyze the dynamics of macrophage infiltration in subcutaneous adipose tissue following bariatric surgery or conservative treatment of obesity and to clarify whether these features predict the weight loss outcome after the surgery. Methods: Subcutaneous tissue samples taken before and 12 months after laparoscopic Roux-en-Y gastric bypass surgery (n = 39) or conservative (n = 43) treatment for obesity were analyzed. Fat cell size was determined, and with CD68 immunohistochemistry, crown-like structures (CLS) were counted and single macrophages were quantitated. Results: A major decline in CLS density from 4.1 (SD 3.5) to 1.1 (SD 0.8) per 1000 fat cells (p < 0.000) was found, regardless of the degree of weight loss after the surgery. Surgery had no effect on the fraction of infiltrating single-cell macrophages in subcutaneous adipose tissue. The abundance of these macrophage populations before the intervention did not predict the degree of postsurgery weight loss or suboptimal response to the surgery. Conclusions: The effect of gastric bypass on adipose tissue inflammatory status associates closely with CLS density even in subjects with suboptimal weight loss. The study suggests that factors related to bypass surgery other than weight loss modify the inflammatory response in adipose tissue.
... Then IL-1β was applied for 0-24 h. Analysis of phase-contrast images was performed using the MRI Wound Healing Tool for ImageJ [56]. ...
Article
Full-text available
Melanoma shows highly aggressive behavior (i.e., local invasion and metastasis). Matrix metalloprotease-3 (MMP-3), a zinc-dependent endopeptidase, degrades several extracellular substrates and contributes to local invasion by creating a microenvironment suitable for tumor development. Here, we report that interleukin-1β (IL-1β) triggers the MMP-3 expression in canine melanoma cells. The activity of MMP-3 in the culture supernatant was increased in IL-1β-treated melanoma cells. IL-1β time- and dose-dependently provoked the mRNA expression of MMP-3. IL-1β induced the migration of melanoma cells; however, this migration was attenuated by UK356618, an MMP-3 inhibitor. When the cells were treated with the nuclear factor-κB (NF-κB) inhibitor TPCA-1, the inhibition of MMP-3 expression was observed. In IL-1β-treated cells, the phosphorylation both of p65/RelA and p105 was detected, indicating NF-κB pathway activation. In p65/RelA-depleted melanoma cells, IL-1β-mediated mRNA expression of MMP-3 was inhibited, whereas this reduction was not observed in p105-depleted cells. These findings suggest that MMP-3 expression in melanoma cells is regulated through IL-1β-mediated p65/RelA activation, which is involved in melanoma cell migration.
... Two images (Zeiss Axiovert 200 with QICAM Fast 1394), one of 4′,6-diamidino-2-phenylindole (DAPI) and one of Nile red, were taken at three locations in each well. Lipid droplet size and quantity were calculated from epifluorescent widefield micrographs using an ImageJ plugin, MRI Lipid Droplets (75). Lipid droplets were identified as areas larger than five pixels. ...
Article
Full-text available
Oxidized phosphatidylcholines (OxPCs) are implicated in chronic tissue damage. Hyperlipidemic LDL-R-–deficient mice transgenic for an OxPC-recognizing IgM fragment (scFv-E06) are protected against nonalcoholic fatty liver disease (NAFLD). To examine the effect of OxPC elimination at different stages of NAFLD progression, we used cre-dependent, adeno-associated virus serotype 8–mediated expression of the single-chain variable fragment of E06 (AAV8-scFv-E06) in hepatocytes of albumin-cre mice. AAV8-induced expression of scFv-E06 at the start of FPC diet protected mice from developing hepatic steatosis. Independently, expression of scFv-E06 in mice with established steatosis prevented the progression to hepatic fibrosis. Mass spectrometry–based oxophospho-lipidomics identified individual OxPC species that were reduced by scFv-E06 expression. In vitro, identified OxPC species dysregulated mitochondrial metabolism and gene expression in hepatocytes and hepatic stellate cells. We demonstrate that individual OxPC species independently affect disease initiation and progression from hepatic steatosis to steatohepatitis, and that AAV-mediated expression of scFv-E06 is an effective therapeutic intervention.
... different positions, were obtained for each well during monitoring at all the time points. The determination of wound areas, at each time point, was assessed ImageJ software and the MRI wound healing tool plugin(Baecker, 2012). The percentage of wound closure for each time point(24, 48, 72h) was assessed by comparison to the area of the original wound (0h) The percentage of migration was hence determined through the application of equation 10: ...
Thesis
Full-text available
Colorectal cancer (CRC) represents the fourth leading cause of death by cancer in the world. CRC treatment is determined according to disease stage. 5-fluoruracil (5-FU), oxaliplatin and Irinotecan are the main chemotherapeutic compounds used in CRC treatment in different therapeutic strategies. However, in most aggressive CRCs, cells often develop resistance mechanisms leading to the ineffectiveness of these therapies. Thus, it is of great importance a better understanding of molecular mechanisms underlying CRC in order to find new therapeutic targets and novel therapeutic strategies for treating advanced and resistant CRC. Deregulation of Wnt/β-catenin and Sonic hedgehog/Gli (Shh/Gli) signaling pathways, among many others, has been implicated in CRC carcinogenesis and metastasis. Excessive activation of Wnt/βcatenin signaling stimulates CRC development through activation of downstream cancer-related targets. TCF7L2 gene, encoding the main transcriptional activator of this pathway, originates different TCF7L2 isoforms that have been implicated in CRC. Moreover, defective regulation of Shh/Gli pathway has been denoted for its significant role in CRC progression, affecting the regulation of a diversity of cellular processes involved in CRC carcinogenesis. During metastasis, cells develop mesenchymal characteristics, through the epithelial-to-mesenchymal transition (EMT) process. Furthermore, there is an established link between cancer stem cells (CSCs) and metastasis. Therefore, the aim of this project was to explore new therapeutic targets and novel therapies for resistant colorectal cancer subtypes. By studying TCF7L2 gene expression in a cohort of 38 CRC patients and CRC representative cell lines, we identified differential expression of specific TCF7L2 isoforms, varying in exon inclusion within exons 1-5 and exons 11-17, that appear to differ among CRC patients’ samples and among normal and tumor tissues. Therefore, this opens the door for further investigation on differential expression of TCF7L2 isoforms and their relation to CRC tumorigenesis and eventually to CRC risk. In the second phase of the project, we tested a panel of 10 different compounds (cytostatic drugs used in conventional CRC treatment, epigenetic modulators, targeted therapies of specific signaling pathways and nutraceuticals) and the most promising combinations between them, for anti-proliferative and anti-migratory activities, in two CRC cell lines representative of mucinous tumors resistant to therapy (HT-29 and LS174T). The most promising combinations were evaluated for their effect on the expression of gene markers involved in cell-cycle, CRC stemness, epithelial-mesenchymal transition and Wnt/βcatenin and Sonic hedgehog/Gli (Shh/Gli) signaling pathways. With this work we were able to identify promising therapy combinations for the treatment of resistant CRC subtypes and explore the potential of new compounds as a complement for conventional therapy in treatment of aggressive forms of CRC.
Conference Paper
Full-text available
Remote-ImageJ is developed at the imaging facility Montpellier RIO Imaging. It allows to run ImageJ macros on a remote machine. The communication between distant ImageJ-plugins is based on a custom messaging middleware called " Simple Java Message Exchange " (SIJAME). The SIJAME-server listens on a socket 1 and handles each incoming connection in a separate thread. Messages consist of serialized message-objects that can carry arbitrary data. Plugins can use the SIJAME-server in two different ways. They can either directly add themselves to the server's list of message-handlers or they can use the server's request-message queue. The queue allows an asynchronous but ordered communication. The client sends a message that is added to the server's queue of requests. Interested parties are notified when the first request in the queue changes. They can handle the request and remove it from the queue. An answer can be sent back to a client, using the server and port information carried by the message. For that purpose the client runs its own SIJAME-server on a different port. A dedicated answer-message queue can be used to receive answer-messages. Based on the SIJAME-middleware a Remote-Macro-Runner has been written. The Remote-Macro-Runner-Server-Console allows to start and stop the server and to view log-messages. The Modal-Dialog-Killer avoids that modal dialogs, opened by a macro or by an error in a macro, block the macro execution on the server. A local macro is run on a distant machine, with the help of the remote-macro-runner-client-application. To set input files and folders, and output folders, using a JFileChooser-dialog and a list-editor, The IOSettings-plugin is used. These settings are accessible from within the macro. The RemoteFilesystemView implements a filesystem-view as a proxy that gets its information from a remote machine.
Article
Full-text available
A rapid image analysis application development framework called "Cell Image Analyzer" based on ImageJ is presented. It adds a visual scripting interface to ImageJ's capabilities, which allows creating applications from existing operations by drag and drop. It provides support to create batch applications as well as interactive applications. "Cell Image Analyzer" is used at the microscopy facility Montpellier RIO Imaging to create custom image analysis applications and to solve automation tasks. The applications include the topics "DNA combing", "quantication of stained proteins in cells", "comparison of intensity ratios between nuclei and cytoplasm" and "counting nuclei stained in dieren t channels". Modern techniques in microscopy allow biologists to acquire large amounts of data. The analysis of the data often remains a time consuming task. When done manually results might be involuntary biased and not reproducible. The analysis needed on the one hand and the image qualities on the other hand vary widely between experiments and research groups. The knowledge of the biologist can often facilitate the analysis of the images. In cases where a full automatic treatment is not possible with the desired accuracy for the time being, partial automation can help to work more ecien tly. Standard image analysis applications are often not apt for the automation of specic tasks. They are not exible enough to take experiment specic knowledge into account easily or to adapt the worko w in the desired way. At Montpellier RIO Imaging we use the following approach: Specic solutions for analysis and automation problems are developed on demand in close collaboration with the biologists. The development is based on a rapid prototyping framework for image analysis applications. If necessary for the realization of a project and only then, the framework is expanded, in a modular way. This way, the framework grows iteratively with each project and all development eorts serve an immediate purpose. To provide the framework we developed a software called "Cell Image Analyzer" that is based on ImageJ.1 The basic addition to ImageJ is a visual scripting interface2 that allows creating applications from existing operations by using drag and drop. New basic operations can be added to the framework on the programming level either by wrapping existing ImageJ operations or from scratch. It will be possible to use the visual scripting as a plugin in a standard ImageJ installation, as well. A number of applications has been successfully developed with "Cell Image Analyzer" by now.
Article
Full-text available
Data sharing is important in the biological sciences to prevent duplication of effort, to promote scientific integrity, and to facilitate and disseminate scientific discovery. Sharing requires centralized repositories, and submission to and utility of these resources require common data formats. This is particularly challenging for multidimensional microscopy image data, which are acquired from a variety of platforms with a myriad of proprietary file formats (PFFs). In this paper, we describe an open standard format that we have developed for microscopy image data. We call on the community to use open image data standards and to insist that all imaging platforms support these file formats. This will build the foundation for an open image data repository.
Article
Full-text available
Image segmentation by mathematical morphology is a methodology based upon the notions of watershed and homotopy modification. This paper aims at introducing this methodology through various examples of segmentation in materials sciences, electron microscopy and scene analysis.
Book
Colorimetry: Understanding the CIE System summarizes and explains the standards of CIE colorimetry in one comprehensive source. Presents the material in a tutorial form, for easy understanding by students and engineers dealing with colorimetry. Provides an overview of the area of CIE colorimetry, including colorimetric principles, the historical background of colorimetric measurements, uncertainty analysis, open problems of colorimetry and their possible solutions, etc. Includes several appendices, which provide a listing of CIE colorimetric tables as well as an annotated list of CIE publications. Commemorates the 75th anniversary of the CIE's System of Colorimetry.
Article
SUMMARYA method to measure the degree of co‐localization of objects in confocal dual‐colour images has been developed. This image analysis produced two coefficients that represent the fraction of co‐localizing objects in each component of a dual‐channel image. The generation of test objects with a Gaussian intensity distribution, at well‐defined positions in both components of dual‐channel images, allowed an accurate investigation of the reliability of the procedure. To do that, the co‐localization coefficients were determined before degrading the image with background, cross‐talk and Poisson noise. These synthesized sources of image deterioration represent sources of deterioration that must be dealt with in practical confocal imaging, namely dark current, non‐specific binding and cross‐reactivity of fluorescent probes, optical cross‐talk and photon noise. The degraded images were restored by filtering and cross‐talk correction. The co‐localization coefficients of the restored images were not significantly different from those of the original undegraded images. Finally, we tested the procedure on images of real biological specimens. The results of these tests correspond with data found in the literature. We conclude that the co‐localization coefficients can provide relevant quantitative information about the positional relation between biological objects or processes.
Article
Abramoff, M.D., Magelhaes, P.J., Ram, S.J. "Image Processing with ImageJ". Biophotonics International, volume 11, issue 7, pp. 36-42, 2004.
Article
Diabetic foot ulceration has a complex and multifactorial etiology and can involve changes in the pathophysiology of the plantar soft tissue. In the current study, histomorphological analyses of diabetic and non-diabetic plantar tissue were performed. It was hypothesized that the diabetic tissue would have thicker skin (epidermis and dermis), less interdigitation between the dermis and epidermis, thicker elastic septa and decreased adipose cell size. Two locations of the foot (the heel and the first metatarsal) were examined, both of which have been reported to be locations with a high incidence of ulceration. Stereological methods and quantitative morphological techniques were used to evaluate the skin thickness, interdigitation index, elastic septae thickness and adipocyte cell size. The diabetic donors had a greater body mass index (BMI) than the non-diabetic donors. The diabetic tissue had significantly thicker elastic septae and dermis. However, no significant difference was observed in the interdigitation index or adipocyte size. These findings demonstrate that morphological changes can be evaluated histologically to give a better understanding of the pathological changes in the plantar soft tissue with diabetes. These evaluations can then be associated with biomechanical changes that occur in diabetes to provide new insight into how microstructural changes can alter macroscopic properties. An understanding of the histomorphological changes in the soft tissue in relationship to the location on the foot could help to explain the biomechanical changes that occur in diabetes and the subsequent increase in susceptibility to breakdown.
Article
A number of different types of computers running a variety of operating systems are presently used for the collection and analysis of image cytometry data. In order to facilitate the development of sharable data analysis programs, to allow for the transport of image cytometry data from one installation to another, and to provide a uniform and controlled means for including textual information in data files, this document describes a data storage format that is proposed as a standard for use in image cytometry. In this standard, data from an image measurement are stored in a minimum of two files. One file is written in ASCII to include information about the way the image data are written and optionally, information about the sample, experiment, equipment, etc. The image data are written separately into a binary file. This standard is proposed with the intention that it will be used internationally for the storage and handling of biomedical image cytometry data. The method of data storage described in this paper is similar to those methods published in American Association of Physicists in Medicine (AAPM) Report Number 10 and in ACR-NEMA Standards Publication Number 300-1985.
Histomorphological evaluation of diabetic and non-diabetic plantar soft tissue American Orthopaedic Foot and Ankle Society [and] Swiss Foot and Ankle Society 32
  • Y Wang
  • K Lee
  • W R Ledoux
Y. Wang, K. Lee, and W. R. Ledoux, " Histomorphological evaluation of diabetic and non-diabetic plantar soft tissue, " Foot & Ankle International / American Orthopaedic Foot and Ankle Society [and] Swiss Foot and Ankle Society 32, pp. 802–810, Aug. 2011. PMID: 22049867.