Campaign2008ImageFiles: Selected image files from the 2008 Presidential campaign:...

Description Usage Format Source References Examples

Description

Images from 2008 presidential campaign advertisements. Images from Barack Obama ads begin with "bo" while images from McCain ads begin with "jm." Images captured constitute a small selection of images from the Stanford Political Communication Lab (PCL) http://pcl.stanford.edu/ archive, "Campaign 2008: Presidential Election: McCain vs. Obama," available at http://pcl.stanford.edu/campaigns/2008/. Facial coordinates for each image are provided in the "readings" dataframe. V1 corresponds to the file name and each row constitutes a vector corresponding to the x- then y- coordinates of each face in each image. McCain ads featuring Obama are significantly less saturated with color than Obama's own ads (as are Obama's ads depicting McCain).

Two additional images from the 2008 primary, "Clinton.png" and "MSNBC.png" are image captures from MSNBC footage of Obama, which the Clinton campaign subsequently used in a campaign advertisement. Obama appeared significantly darker and stretched horizontally in the Clinton ad, which served to accentuate his Afrocentric facial features. This caused quite a stir among Democrat bloggers, most notably "Troutnut," who accused the Clinton campaign of using racial bias as tool in attack advertising. See http://www.dailykos.com/story/2008/03/04/468408/-UPDATE-w-campaign-response-Hillarys-ad:-debate-footage-doctored-to-make-Obama-blacker for details. The vectors "clintonpoly" and "msnbcpoly" correspond to the x- then y- coordinates of each face in each image.

Usage

1
data(Campaign2008)

Format

.png format

Source

http://pcl.stanford.edu/ http://www.hillaryclinton.com/ http://www.msnbc.msn.com/

References

Messing, S., Plaut, E., & Jabon, M. (2009). "Bias in the Flesh: Attack Ads in the 2008 Presidential Campaign." In Proceedings of the 2009 American Political Science Association Annual Meeting.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
data(Campaign2008)

## Compare brightness of video still capture from MSNBC footage of Obama, with still capture from 
## an ad featuring the same footage (only Obama appears darker) that appeared in an ad on the Clinton 
## campaign website, causing a stir in the blogosphere.
  
clinton = new("imageMatrix", X = readPNG(system.file("extdata", "Clinton.png", package="ImageMetrics")), type = "rgba")
clintonface = new("imageMatrix", X = ObjSelect( image = clinton@X, poly= clintonpoly ), type = "rgb")

msnbc = new("imageMatrix", X = readPNG(system.file("extdata", "MSNBC.png", package="ImageMetrics")), type = "rgba")
msnbcface = new("imageMatrix", X = ObjSelect( image = msnbc@X, poly= msnbcpoly ), type = "rgb")

## Not run: 
plot(clinton)
plot(clintonface)
plot(msnbc)
plot(msnbcface)

## End(Not run)

meanhsv(clintonface)
meanhsv(msnbcface)

SolomonMg/ImageMetrics documentation built on May 27, 2019, 7:39 a.m.