Nothing
oregonThreshold <-
function(imgG){
rPixelValues=as.vector(imgG)
thrsh=mean(rPixelValues)/2
removed=TRUE
while(removed==TRUE){
pixelSmaller=which(rPixelValues<thrsh)
if(length(pixelSmaller)==0){
removed==FALSE
break
}else{
rPixelValues=rPixelValues[-pixelSmaller]
thrsh=mean(rPixelValues)/2
}
}
thrsh
}
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.