|
a |
|
b/man/generateXeniumImage.Rd |
|
|
1 |
% Generated by roxygen2: do not edit by hand |
|
|
2 |
% Please edit documentation in R/import.R |
|
|
3 |
\name{generateXeniumImage} |
|
|
4 |
\alias{generateXeniumImage} |
|
|
5 |
\title{generateXeniumImage} |
|
|
6 |
\usage{ |
|
|
7 |
generateXeniumImage( |
|
|
8 |
dir.path, |
|
|
9 |
increase.contrast = TRUE, |
|
|
10 |
resolution_level = 7, |
|
|
11 |
overwrite_resolution = FALSE, |
|
|
12 |
output.path = NULL, |
|
|
13 |
file.name = "morphology_lowres.tif", |
|
|
14 |
verbose = TRUE, |
|
|
15 |
... |
|
|
16 |
) |
|
|
17 |
} |
|
|
18 |
\arguments{ |
|
|
19 |
\item{dir.path}{Xenium output folder} |
|
|
20 |
|
|
|
21 |
\item{increase.contrast}{increase the contrast of the image before writing} |
|
|
22 |
|
|
|
23 |
\item{resolution_level}{the level of resolution within Xenium OME-TIFF image. Default: 7 (553x402)} |
|
|
24 |
|
|
|
25 |
\item{overwrite_resolution}{if TRUE, the image "file.name" will be generated again although it exists at "dir.path"} |
|
|
26 |
|
|
|
27 |
\item{output.path}{The path to the new morphology image created if the image should be saved to a location other than Xenium output folder.} |
|
|
28 |
|
|
|
29 |
\item{file.name}{the name of the lowred morphology image. Default: morphology_lowres.tif} |
|
|
30 |
|
|
|
31 |
\item{verbose}{verbose} |
|
|
32 |
|
|
|
33 |
\item{...}{additional parameters passed to the \link{writeImage} function} |
|
|
34 |
} |
|
|
35 |
\description{ |
|
|
36 |
Generate a low resolution DAPI image of the Xenium experiment |
|
|
37 |
} |
|
|
38 |
\details{ |
|
|
39 |
The Xenium morphology_mip.ome.tif file that is found under the outs folder comes is an hyperstack of different resolutions of the DAPI image. |
|
|
40 |
\link{generateXeniumImage} allows extracting only one of these layers by specifying the \code{resolution} parameter (Default: 7 for 553x402) among 1 to 8. |
|
|
41 |
Lower incides of resolutions have higher higher resolutions, e.g. 1 for 35416x25778. Note that you may need to allocate larger memory of Java to import |
|
|
42 |
higher resolution images. |
|
|
43 |
} |