Difference between revisions of "Cameras"

From REALab Wiki
Jump to navigation Jump to search
Line 7: Line 7:




==Lytro Light Field Camera==


Example R script:
Useful links:


<source lang="rsplus">
*[[http://support.lytro.com/entries/21035551-lytro-light-field-camera-overview Overview of camera's controls]]
###20120511PL
#Script to read into DF tab-delimited .txt from signage_recycling_opti, and to convert DF to within-subjects SPSS DF
#note: this uses the reshape library, install this from R's packages if needed
 
setwd("c:/users/Barlab/dropbox/recycling/signage analysis/format_convert")
files=list.files(pattern='out.txt')
DF=NULL
for (file in files){
DF=rbind(DF, read.table(file, skip=1, sep="\t"))
}
getheader<-file(files[1], open="r")
nm_wtab<-readLines(getheader, n=1, warn=FALSE)
close(getheader)
names(DF)<-unlist(strsplit(nm_wtab, "\t"))
 
DF$bin_tot=DF$bin_rxn+DF$bin_rsp
head(DF)
 
</source>

Revision as of 23:44, 4 March 2013

Flea USB 3.0 120 FPS camera

Canon Vixia HF Camcorder

{{#ev:youtube|vVtZZhTvR_c|500|Here is a description of the video}}


Lytro Light Field Camera

Useful links: