Skip navigation links
C D E F H I M O P Q R S T U V 

C

com.runwayml - package com.runwayml
 
CONNECT - Static variable in class com.runwayml.RunwayOSC
 
connect() - Method in class com.runwayml.RunwayOSC
send a /server/connect message to Runway

D

DATA - Static variable in class com.runwayml.RunwayHTTP
 
DATA - Static variable in class com.runwayml.RunwayOSC
 
DEFAULT_HOST - Static variable in class com.runwayml.Runway
 
DISCONNECT - Static variable in class com.runwayml.RunwayOSC
 
disconnect() - Method in class com.runwayml.RunwayOSC
send a /server/disconnect message to Runway
drawPoseNetParts(JSONObject, float) - Method in class com.runwayml.Runway
shorthand for drawing PoseNet parts into the sketch's default graphics buffer
drawPoseParts(JSONObject, PGraphics, float) - Static method in class com.runwayml.ModelUtils
Traverses Pose Net poses and keypoints and draws ellipses for each keypoint position

E

ERROR - Static variable in class com.runwayml.RunwayHTTP
 
ERROR - Static variable in class com.runwayml.RunwayOSC
 

F

fromBase64(String) - Static method in class com.runwayml.ModelUtils
converts a Base64 encoded String to a PImage
fromBase64(String) - Static method in class com.runwayml.ModelUtilsAndroid
converts a Base64 encoded String to a PImage
fromBase64Android(String) - Static method in class com.runwayml.ModelUtilsAndroid
converts a Base64 encoded String to a PImage on Android (it's a bit over-complicated and inefficient due to so much reflection, but does the job at allowing both Android and non-Android PImages to live side by side)

H

HTTP_TIMEOUT_SECONDS - Static variable in class com.runwayml.RunwayHTTP
 

I

IMAGE_FORMAT_JPG - Static variable in class com.runwayml.ModelUtils
 
IMAGE_FORMAT_PNG - Static variable in class com.runwayml.ModelUtils
 
INFO - Static variable in class com.runwayml.RunwayHTTP
 
INFO - Static variable in class com.runwayml.RunwayOSC
 
isAutoUpdating() - Method in class com.runwayml.RunwayHTTP
 

M

ModelUtils - Class in com.runwayml
 
ModelUtils() - Constructor for class com.runwayml.ModelUtils
 
ModelUtilsAndroid - Class in com.runwayml
 
ModelUtilsAndroid() - Constructor for class com.runwayml.ModelUtilsAndroid
 

O

oscEvent(OscMessage) - Method in class com.runwayml.RunwayOSC
called internally by OscP5 library

P

PORT - Static variable in class com.runwayml.RunwayHTTP
 
PORT_OSC_FROM_RUNWAY - Static variable in class com.runwayml.RunwayOSC
 
PORT_OSC_TO_RUNWAY - Static variable in class com.runwayml.RunwayOSC
 
POSE_LEFT_ANKLE_INDEX - Static variable in class com.runwayml.ModelUtils
 
POSE_LEFT_EAR_INDEX - Static variable in class com.runwayml.ModelUtils
 
POSE_LEFT_ELBOW_INDEX - Static variable in class com.runwayml.ModelUtils
 
POSE_LEFT_EYE_INDEX - Static variable in class com.runwayml.ModelUtils
 
POSE_LEFT_HIP_INDEX - Static variable in class com.runwayml.ModelUtils
 
POSE_LEFT_KNEE_INDEX - Static variable in class com.runwayml.ModelUtils
 
POSE_LEFT_SHOULDER_INDEX - Static variable in class com.runwayml.ModelUtils
 
POSE_LEFT_WRIST_INDEX - Static variable in class com.runwayml.ModelUtils
 
POSE_NOSE_INDEX - Static variable in class com.runwayml.ModelUtils
 
POSE_RIGHT_ANKLE_INDEX - Static variable in class com.runwayml.ModelUtils
 
POSE_RIGHT_EAR_INDEX - Static variable in class com.runwayml.ModelUtils
 
POSE_RIGHT_ELBOW_INDEX - Static variable in class com.runwayml.ModelUtils
 
POSE_RIGHT_EYE_INDEX - Static variable in class com.runwayml.ModelUtils
 
POSE_RIGHT_HIP_INDEX - Static variable in class com.runwayml.ModelUtils
 
POSE_RIGHT_KNEE_INDEX - Static variable in class com.runwayml.ModelUtils
 
POSE_RIGHT_SHOULDER_INDEX - Static variable in class com.runwayml.ModelUtils
 
POSE_RIGHT_WRIST_INDEX - Static variable in class com.runwayml.ModelUtils
 
pre() - Method in class com.runwayml.RunwayHTTP
Don't call method directly The sketch calls this before each frame if

Q

query(PImage) - Method in class com.runwayml.Runway
send a query to Runway Don't call this on a Runway instace, but a Runway sublcass instead.
query(PImage, String, String) - Method in class com.runwayml.Runway
send an image query to Runway with specific format (JPG/PNG) and JSON key to hold the Base64 encoded image Don't call this on a Runway instace, but a Runway sublcass instead.
query(String) - Method in class com.runwayml.Runway
send a query to Runway Don't call this on a Runway instace, but a Runway sublcass instead.
QUERY - Static variable in class com.runwayml.RunwayHTTP
 
query(PImage) - Method in class com.runwayml.RunwayHTTP
send an image query to Runway (defaults to jpg encoding format and "image" JSON object key)
query(PImage, String, String) - Method in class com.runwayml.RunwayHTTP
send an image query to Runway
query(String) - Method in class com.runwayml.RunwayHTTP
send a JSON string query to Runway
QUERY - Static variable in class com.runwayml.RunwayOSC
 
query(PImage) - Method in class com.runwayml.RunwayOSC
send a /query with a PImage sencoded as Base64 string within a JSON string (
query(PImage, String, String) - Method in class com.runwayml.RunwayOSC
Send a /query OSC message to Runway with the passed image Base64 encoded with the selected format and as the value of the selected JSON key
query(String) - Method in class com.runwayml.RunwayOSC
 

R

Runway - Class in com.runwayml
Base Runway class to be subclassed based on the transport method (e.g.
Runway() - Constructor for class com.runwayml.Runway
 
RunwayHTTP - Class in com.runwayml
 
RunwayHTTP(PApplet) - Constructor for class com.runwayml.RunwayHTTP
Constructor, usually called in the setup() method in your sketch to initialize and start the Library.
RunwayHTTP(PApplet, String) - Constructor for class com.runwayml.RunwayHTTP
Constructor variant that takes in an IPv4 Address for situations where Runway runs on a different computer on the same network
RunwayHTTP(PApplet, String, int) - Constructor for class com.runwayml.RunwayHTTP
 
RunwayOSC - Class in com.runwayml
 
RunwayOSC(PApplet) - Constructor for class com.runwayml.RunwayOSC
a Constructor, usually called in the setup() method in your sketch to initialize and start the Library.
RunwayOSC(PApplet, String) - Constructor for class com.runwayml.RunwayOSC
Constructor variant that takes in an IPv4 Address for situations where Runway runs on a different computer on the same network

S

setAutoUpdate(boolean) - Method in class com.runwayml.RunwayHTTP
Call Runway before each frame or not ?

T

toBase64(PImage) - Static method in class com.runwayml.ModelUtils
converts a PImage to a Base64 encoded String
toBase64(PImage, String) - Static method in class com.runwayml.ModelUtils
converts a PImage to a Base64 encoded String
toBase64(PImage) - Static method in class com.runwayml.ModelUtilsAndroid
converts a PImage to a Base64 encoded String
toBase64(PImage, String) - Static method in class com.runwayml.ModelUtilsAndroid
converts a PImage to a Base64 encoded String
toBase64Android(PImage, String) - Static method in class com.runwayml.ModelUtilsAndroid
converts an Android PImage to a Base64 encoded string
toRunwayImageQuery(PImage) - Static method in class com.runwayml.ModelUtils
convert a PImage to a JSONObject with the Base64 encoded image as the value of the "image" key
toRunwayImageQuery(PImage, String) - Static method in class com.runwayml.ModelUtils
convert a PImage to a JSONObject with the Base64 encoded image as the value of the "image" key
toRunwayImageQuery(PImage, String, String) - Static method in class com.runwayml.ModelUtils
convert a PImage to a JSONObject with the Base64 encoded image as the value of the "image" key

U

update() - Method in class com.runwayml.RunwayHTTP
call

V

VERSION - Static variable in class com.runwayml.Runway
 
version() - Static method in class com.runwayml.Runway
return the version of the Library.
C D E F H I M O P Q R S T U V 
Skip navigation links

Processing Library RunwayML by George Profenza. (c) 2019