Difference between revisions of "Cameras"

From REALab Wiki
Jump to navigation Jump to search
 
(16 intermediate revisions by the same user not shown)
Line 1: Line 1:
==Flea USB 3.0 high FPS camera==
==Flea USB 3.0 120 FPS camera==
http://www.ptgrey.com/flea3-13-mp-color-usb3-vision-sony-imx035-camera


==Canon Vixia HF Camcorder==
http://www.usa.canon.com/cusa/consumer/products/camcorders/consumer_camcorders
==Lytro Light Field Camera==


==Canon Vixia HF Camcorder==
If you plan on using this camera, make sure it's charged ahead of time!  You can plug it into a computer with the USB cable, or for faster charging, it can be plugged into an iPod power adapter ([http://support.lytro.com/entries/21035576-how-do-i-charge-the-lytro-camera full list of compatible wall adapters]). Note that it will likely be faster to use a wall adapter than to charge through your computer.
 
 
Here are some useful links to start using the camera.  You can take a picture using the button on the top of the camera.  Once you've taken a picture, you can view it by swiping the touch interface from left to right.  You can then sharpen a region by tapping it once.  If you want to zoom in, double tap, then move around, and single tap to focus on the zoomed in region; to zoom out again, double tap once more.
 
*[http://support.lytro.com/entries/21035551-lytro-light-field-camera-overview Overview of camera's controls]


<Center>{{#ev:youtube|vVtZZhTvR_c|500}}</Center>


Here are tips on how to shoot pictures that will give dramatic effects when selectively blurring regions in the pictures.  Generally, you should try to get really close to your near-depth object when shooting; if there's a bit of blur, that's good! 


*[http://support.lytro.com/entries/21048627-What-are-the-basics-of-shooting-light-field-pictures- Basic tips on shooting pictures with multiple levels of focus]
*[http://support.lytro.com/entries/21035581-how-can-i-take-even-better-living-pictures More detailed shooting tips]


Example R script:


<source lang="rsplus">
###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")
Once you connect the camera to a computer using the USB cable for the first time, the drivers should automatically download. When you open the camera as a folder, you can find and install the desktop software.  Once the software is installed, photos on the camera will automatically upload.  If the software is already installed, new pictures will upload when you connect to that computer with the USB cable.  Here's an overview of the Lytro Desktop software:
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
*[http://support.lytro.com/entries/21052838-lytro-desktop-overview Lytro Desktop overview]
head(DF)


</source>
There's an option to sign in to the Lytro Desktop software.  As far as I can tell, this is only useful for uploading your pictures to the lytro website, where they can be refocused by anyone through their web browser (i.e., without needing the desktop software).

Latest revision as of 17:50, 23 February 2015

Flea USB 3.0 120 FPS camera

http://www.ptgrey.com/flea3-13-mp-color-usb3-vision-sony-imx035-camera

Canon Vixia HF Camcorder

http://www.usa.canon.com/cusa/consumer/products/camcorders/consumer_camcorders

Lytro Light Field Camera

If you plan on using this camera, make sure it's charged ahead of time! You can plug it into a computer with the USB cable, or for faster charging, it can be plugged into an iPod power adapter (full list of compatible wall adapters). Note that it will likely be faster to use a wall adapter than to charge through your computer.


Here are some useful links to start using the camera. You can take a picture using the button on the top of the camera. Once you've taken a picture, you can view it by swiping the touch interface from left to right. You can then sharpen a region by tapping it once. If you want to zoom in, double tap, then move around, and single tap to focus on the zoomed in region; to zoom out again, double tap once more.


Here are tips on how to shoot pictures that will give dramatic effects when selectively blurring regions in the pictures. Generally, you should try to get really close to your near-depth object when shooting; if there's a bit of blur, that's good!


Once you connect the camera to a computer using the USB cable for the first time, the drivers should automatically download. When you open the camera as a folder, you can find and install the desktop software. Once the software is installed, photos on the camera will automatically upload. If the software is already installed, new pictures will upload when you connect to that computer with the USB cable. Here's an overview of the Lytro Desktop software:

There's an option to sign in to the Lytro Desktop software. As far as I can tell, this is only useful for uploading your pictures to the lytro website, where they can be refocused by anyone through their web browser (i.e., without needing the desktop software).