User:Golubjevaite/2proto
< User:Golubjevaite
Revision as of 14:02, 24 November 2020 by Golubjevaite (talk | contribs)
HACKPACT
This is just the prototyping I did to get familliar with tools.
getUserMedia
> Webcam filters
> Take photo button + clear button
> Canvas
> rgbSplit
> Javascript
> navigator.mediaDevices.getUserMedia() / link
// Get media stream navigator.mediaDevices.getUserMedia({video: true, audio: false})
IRC bot
> Using Michaels reverse bot as a base / link
import irc.bot
> Downloading an img from a url into a folder
import requests # to get image from the web import shutil # to save it locally import re
image blend with PIL
# alpha-blend the images with varying values of alpha alphaBlended1 = Image.blend(image5, image6, alpha=.8) alphaBlended2 = Image.blend(image5, image6, alpha=.2)