User:Golubjevaite/2proto

From XPUB & Lens-Based wiki
< User:Golubjevaite
Revision as of 15:02, 24 November 2020 by Golubjevaite (talk | contribs) (Created page with "= HACKPACT = This is just the prototyping I did to get familliar with tools. 400px|thumbnail|right | starting point == getUserMedia == > Webca...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

HACKPACT

This is just the prototyping I did to get familliar with tools.


starting point

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})


rgbSplit

















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)
kittenblend