| BP_OpenImage {BoneProfileR} | R Documentation |
Open an image
Description
Open an image.
Usage
BP_OpenImage(file = file.choose(), name = NULL, ijtiff = FALSE)
Arguments
file |
The file to be opened |
name |
Name of this slice |
ijtiff |
Should the ijtiff must be used to read tiff image |
Details
BP_OpenImage opens an image
Value
Characteristics of an image
Author(s)
Marc Girondot marc.girondot@gmail.com
See Also
Other BoneProfileR:
BP_AutoFit(),
BP_ChooseBackground(),
BP_ChooseCenter(),
BP_ChooseForeground(),
BP_DetectBackground(),
BP_DetectCenters(),
BP_DetectForeground(),
BP_DuplicateAnalysis(),
BP_EstimateCompactness(),
BP_FitBayesianCompactness(),
BP_FitMLCompactness(),
BP_FitMLRadialCompactness(),
BP_GetFittedParameters(),
BP_ListAnalyses(),
BP_LnLCompactness(),
BP_Report(),
Erinaceus_europaeus,
plot.BoneProfileR(),
summary.BoneProfileR()
Examples
## Not run:
# Not run:
library(BoneProfileR)
path_Hedgehog <- system.file("extdata", "Erinaceus_europaeus_fem_2-1_small.png",
package = "BoneProfileR")
bone <- BP_OpenImage(file=path_Hedgehog)
plot(bone)
path_Hedgehog <- system.file("extdata", "Erinaceus_europaeus_fem_2-1_small.tif",
package = "BoneProfileR")
bone <- BP_OpenImage(file=path_Hedgehog)
plot(bone)
bone <- BP_OpenImage(file=path_Hedgehog, ijtiff=TRUE)
plot(bone)
# A partial section
path_Dicynodon <- system.file("extdata", "Dicynodon_tibia_11.11.1.T_b_b-1.png",
package = "BoneProfileR")
bone <- BP_OpenImage(file=path_Dicynodon)
plot(bone)
# To open a file with a dialog:
bone <- BP_OpenImage()
## End(Not run)
[Package BoneProfileR version 2.5 Index]