User:Golubjevaite/hackpact: Difference between revisions
Golubjevaite (talk | contribs) |
Golubjevaite (talk | contribs) |
||
Line 7: | Line 7: | ||
= HACKPACT = | = HACKPACT = | ||
[[File:seventhemodule.jpg|400px|thumbnail|right | starting point]] | |||
== getUserMedia == | == getUserMedia == |
Revision as of 16:33, 9 November 2020
PROJECT PROPOSAL
WHAT
HOW
WHY
HACKPACT
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})
File:Webfilter1.jpeg File:Webfilter2.gif
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)