Nothing
convert.image<- function(imgrgb, threshold=.5) {
warning("Use of convert.image(...) is deprecated!")
return(convertImage(imgrgb, threshold))
}
convertImage<- function(imgrgb, threshold=.5) {
img <- ifelse((imgrgb[,,1]+imgrgb[,,2]+imgrgb[,,3])/3>threshold,1,0)
return(img);
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.