# download the necessary packages
# cannot install the packages all together in a single line, for whatever reason
### on MAC you have to download xquartz; already done using homebrew
#install.packages("AcuityView")
#install.packages("imager")
#install.packages("fftwtools")
#install.packages("magrittr")
# load the installed packages into the environment
library(AcuityView)
library(imager)
library(fftwtools)
library(magrittr)
# set the working directory
setwd("/Users/carilewis/Desktop/Dissertation/Bioinformatics/Data_Wrangling/LewisBIOL7263/Assignments/")
1. Choose five animals from the databases given and calculate their
acuity as MRA:
# assassin bug
redu_CPD = 0.76
redu_MRA <- 1/redu_CPD
# eagle
eagle_CPD = 140
eagle_MRA <- 1/eagle_CPD
# jumping spider
js_CPD = 12
js_MRA <- 1/js_CPD
# bee
bee_CPD = 0.5
bee_MRA <- 1/bee_CPD
# dragonfly
df_CPD = 2
df_MRA <- 1/df_CPD
Assassin Bug |
0.76 |
1.3157895 |
Eagle |
140 |
0.0071429 |
Jumping Spider |
12 |
0.0833333 |
Worker Bee |
0.5 |
2 |
Dragonfly |
2 |
0.5 |
2.Choose an image that is applicable to each of your animals own
ecology (1 image for each animal) and resize that image to 512x512
dimensions:
# load in the image
redu_img <- load.image('redu_cat.jpg') # assassin bug
eagle_img <- load.image('eagle_river.jpg') # eagle
js_img <- load.image('js_fly.jpg') # jumping spider
bee_img <- load.image('bee_flower.jpg') # worker bee
df_img <- load.image('df_pond.jpg') #dragonfly
# make the aspect ratio a square
redu_img <- resize(redu_img, 512, 512)
eagle_img <- resize(eagle_img, 512, 512)
js_img <- resize(js_img, 512, 512)
bee_img <- resize(bee_img, 512, 512)
df_img <- resize(df_img, 512, 512)
3. Create an output of your selected image at distance of 1 m, 2 m,
and 3 m for your five animals.
# Acuity view for assassin bug @ 1 inch, 2 inch, and 3 inches (realistic to this species)
AcuityView(photo = redu_img, # image file
distance = 1, # distance = distance from viewer to object; same units as realWidth
realWidth = 1, # realWidth = the real-life width of the image
eyeResolutionX = redu_MRA, # visual resolution in the X plane
eyeResolutionY = NULL, # visual resolution in the Y plane; don't change
plot = T, # shows the plot AND saves it
output = "redu_1in.jpg") # output image name
AcuityView(photo = redu_img, # image file
distance = 2, # distance = distance from viewer to object; same units as realWidth
realWidth = 0.8, # realWidth = the real-life width of the image
eyeResolutionX = redu_MRA, # visual resolution in the X plane
eyeResolutionY = NULL, # visual resolution in the Y plane; don't change
plot = T, # shows the plot AND saves it
output = "redu_2in.jpg") # output image name
AcuityView(photo = redu_img, # image file
distance = 3, # distance = distance from viewer to object; same units as realWidth
realWidth = 0.6, # realWidth = the real-life width of the image
eyeResolutionX = redu_MRA, # visual resolution in the X plane
eyeResolutionY = NULL, # visual resolution in the Y plane; don't change
plot = T, # shows the plot AND saves it
output = "redu_3in.jpg") # output image name
Assassin Bug View of a Caterpillar
Jumping Spider View of a Fly
Worker Bee View of a Flower Patch