what :
Home > Search > sin

Objectspage : 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
cpuclock External Make precise “real-world” time measurements.
Report cpu relative time since max started.
createfolder External create a folder in the file hierarchy
create a folder in the file hierarchy, also on other volumes than the bootvolumes also allows using unicode characters in the pathname (accents etc)
crossfade~ Abstraction Crossfades two input signals according to a sine function which guarantees that loudness of the result is constant.
curve~ External Exponential ramp generator
curve~ is similar to line~. It produces a signal that goes from an initial to target value over a specified number of milliseconds. However, it produces non-linear ramps using a piecewise approximation of an exponential function. You specify the parameter to this exponential function in the curve~ object's right inlet. Values from 0 to 1 produce an "exponential" curve when increasing in value and values from -1 to 0 produce a "logarithmic" curve. The closer to 0 the curve parameter is, the closer the curve is to a straight line, and the farther away the parameter is from 0, the steeper the curve. curve~ can also accept a list of up two or three arguments (the previous curve parameter is used if there are two arguments), or a list with two or more value, time, parameter triples. curve~ is limited to 42 such triples in a single list. The object's approximation of the exponential becomes better when the vector size is smaller, but the object also becomes more computationally expensive.
cv.jit.centroids External centroids are a very cheap and robust way of doing motion tracking.
Centroids, or center of mass, are the coordinates of the point where the number of ON pixels left of the x value is equal to the number of ON pixels to the right, and the number of pixels over the y value equals the number below. If there is only a single object in an image, centroids are a very cheap and robust way of doing motion tracking. Note that the centroids do not necessarily fall on an ON pixel, for instance in the case of a U-shaped object. Since the mass is used to calculate the centroids, cv.jit.centroids will also return this value from its second outlet.
cv.jit.dilate External This will make shapes fatter and although it will make noise all the more noticeable
In binary mode, a pixel will be marked ON if any of its neighbours is ON. This will make shapes fatter and although it will make noise all the more noticeable, it is a good way to get rid of small holes in an image. In greyscale mode, however, each pixel is given the maximum value of the pixels around it. You can toggle between both mode using the "greyscale", or "grayscale" attribute followed by a 0, or a 1. You can also change the shape of the neighbourhood with the "mode" attribute. Mode 0 uses 8 neighbours, and mode 1 uses 4 neighbours forming a cross.
cv.jit.HSflow External Estimates the optical flow using the Horn-Schunk method.
Estimates the optical flow using the Horn-Schunk method. This technique assumes that changes in optical flow, over the image, are relatively uniform. It is slightly better at estimating faster movements that the Lucas-Kanade technique, but it will also become unreliable if the motion is too fast. It is better at finding the optical around contrast edges and returns generally cleaner results than Lucas-Kanade.
cv.jit.label External This algorithm scans through the image and gives each connected component an individual value.
This algorithm scans through the image and gives each connected component an individual value. If you set the "mode" attribute to its default value of 0, it will paint the top-leftmost blob with ones, and will number blobs incrementally moving right and down. In mode 1, however, it will paint the blobs with the number of pixels in that blob. This can allow you, for instance, to filter only blobs that have sizes between such and such a value. Furthermore, in either mode, you can use the "threshold" attribute to erase all the blobs that are smaller than the threshold value. This is an extremely powerful (and surprisingly cheap) way of filtering noise out. In order to accommodate potentially large numbers of blobs, or large blob sizes, the output is a 1-plane long matrix. There is a hard-coded limit of 2048 possible blobs.
cv.jit.LKflow External Estimates the optical flow using the Lucas-Kanade method.
Estimates the optical flow using the Lucas-Kanade method. This algorithm is based on the assumption that pixels move only a short distance from one frame to another. It has the advantage of yielding good results for slow-moving objects but unfortunately is completely unreliable for faster movements. The performance can be greatly improved, both in terms of CPU usage and reliability, by using small matrices. 80x60 matrices, or smaller, give very good results.
cv.jit.moments External Apart from returning centroids and mass, it outputs two lists of shape descriptors.
This is the most complicated and versatile object of this distribution. Apart from returning centroids and mass, it outputs two lists of shape descriptors. Moment-based shape analysis is based on the physics concept of moment of inertia. Since, in theory, these moments are unique to each shape, they have been used for a long time to perform tasks like optical character recognition. From the left-most outlet a list of seven moments comes out. These are cryptically labeled "m20, m02, m22, m21, m12, m30, and m03". The m here simply stands for moment, the two numbers following tell us how the particular value was calculated.
cv.jit.opticalflow External Calculate optical flow using a variety of techniques.
Optical flow is a measure of the velocity of each pixel between two consecutive frames. In other words, displacing the pixels in the first image by the optical flow should produce the second image.

Optical flow can unfortunately only be estimated, not precisely calculated. For this reason, there are several optical flow estimation algorithms. cv.jit.lkflow and cv.jit.hsflow implement two of the most famous approaches, but because the output format and its meaning are the same, cv.jit.opticalflow encapsulates several algorithms, allowing you to easily switch between them to find the one that best suits your needs.

Appart from the Lucas-Kanade and Horn-Schunk techniques, cv.jit.opticalflow currently implements the "block matching" algorithm and an algorithm by Gunnar Farnebäck.
cv.jit.shift External Track image regions using MeanShift and CAMShift algorithms.
Track image regions using MeanShift and CAMShift algorithms.
cv.jit.track External Tracks the position of a number of pixels over time.
Tracks the position of a number of pixels over time. This object uses the pyramidal implementation of the Lucas-Kanade technique described by Jean-Yves Bouguet. The Lucas-Kanade method of calculating optical flow, as stated above, is very precise for small movements but is incapable of accurately guessing large motions. The algorithm used here circumvents this problem by first guessing the position of the target pixel on a very low-resolution copy of the image (1/8 the original size in this implementation.) Even large movements will have only small pixel displacement on such a small matrix. This first guess is then used to make another guess on a larger copy, and the process is repeated until the new position is guessed on the original image. This technique is too computationally intensive to be used for every pixel, as in the case of cv.jit.Lkflow. However, it is perfect for a small set of target pixels.
cv.jit.trackpoints External This external only accepts the 3-plane float matrices output from cv.jit.track.
When using large number of points with cv.jit.track, displaying the position of these points can be problematic. This external only accepts the 3-plane float matrices output from cv.jit.track. You must manually specify the size of the output matrix with the "size" attribute, followed by the width and height. Normally, this will be the same as the size of the matrices being sent to cv.jit.track. The cells of the output matrix corresponding to the position of the points in the input matrix will be set with each pointÕs index values. In order to avoid labeling points starting at 0, all indices are offset by one. I.e. 1 to 255, rather than 0 to 254.
cycle External Send successive numbers / stream of data to successive outlets cyclically
cycle takes two (optional) arguments. The first specifies how many outlets the object has (which can be arbitrarily large), and the second, if non-zero, uses a mode where separate "events" always restart at outlet 0. The default mode is to cycle through all the outlets. A separate event is one in which a different action triggers the next input. numbers which arrive from dumps from objects like table and coll are considered to belong to a single event.
page : 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36

Libraries
abhaXions
debug: SELECT prenom, nom FROM auteurs RIGHT JOIN auteur_libraries USING (id_auteur) WHERE auteur_libraries.id_library='84'Stefan Tiedje hacked X abstractions of missing externals.
ag.graular.suite
debug: SELECT prenom, nom FROM auteurs RIGHT JOIN auteur_libraries USING (id_auteur) WHERE auteur_libraries.id_library='166'Adrian Gierakowski The ag.granular.suite is a collection of Max/MSP patches for generalised granular sound processing and microsound composition written using FTM/Gabor libraries (developed at IRCAM) and encapsulated as Jamoma modules. Main features include: subsample accurate scheduling, multichannel output, granulation of multiple soundfiles at the same time (with interpolation of two sources per grain), parameter randomisation and sequencing, control via OSC, preset management, preset interpolation. Its modular architecture makes it possible to easily extend it with new algorithms for grain scheduling and parameter control.
AHRS Max Library
debug: SELECT prenom, nom FROM auteurs RIGHT JOIN auteur_libraries USING (id_auteur) WHERE auteur_libraries.id_library='168'Giuseppe Torre The AHRS Library (Attitude Heading Reference System) is a set of Max externals that allows you to perform a series of basic calculations for 3D/4D vectorial math used in aerodynamics.
If you are using a three axis accelerometer and a three-axis magnetometer check out the"ahrs_triad" object which enables you to find the orientation of your cluster of sensor with respect to the Earth fixed coordinates.
Cosm
debug: SELECT prenom, nom FROM auteurs RIGHT JOIN auteur_libraries USING (id_auteur) WHERE auteur_libraries.id_library='147'Wesley Smith
Graham Wakefield
Cosm is an integrated collection of externals and abstractions to assist the construction of navigable, sonified virtual worlds using Max/MSP/Jitter. Cosm has been designed to require only minimal changes to existing Max/MSP/Jitter patches to support a number of features valuable in the creation of virtual worlds.

Supports six-degrees-of-freedom (6DoF) navigation using quaternions, spatial audio using 3rd order Ambisonics, distance filtering and doppler, collision detection using spherical intersection (query sphere), world boundaries, stereographic control, 3D field interaction, and a strategy for remote rendering.
Digital Orchestra Toolbox
debug: SELECT prenom, nom FROM auteurs RIGHT JOIN auteur_libraries USING (id_auteur) WHERE auteur_libraries.id_library='134'Joseph Malloch
The Digital Orchestra Toolbox is a collection of Max/MSP abstractions that we have found useful in creating gesture processing, mapping, and synthesis patches for digital musical instruments. Each patch is accompanied with a help patch to demonstrate its use.
DIPS5v1.01
debug: SELECT prenom, nom FROM auteurs RIGHT JOIN auteur_libraries USING (id_auteur) WHERE auteur_libraries.id_library='171'Development Group Dips
Shu Matsuda
Takayuki Rai
DIPS (Digital Image Processing with Sound) is a plug-in software for Max. DIPS, consisting of more than 370 Max external and abstracts objects, is a powerful and user-friendly tool for the creation of interactive multimedia art, supporting interaction between sound events and visual events in Max, using Apple’s Core Image technology as well as OpenGL and OpenCV technologies.

DIPS5v1.01 is the most recent release (Oct. 2013) and available from http://dips.kcm-sd.ac.jp .
DIPS Development Group
T.Rai/S.Matsuda/Y.Morimoto/T.Fukuda/K.Takahashi
EAMIR - the Electro-acoustic Musically Interactive Room
debug: SELECT prenom, nom FROM auteurs RIGHT JOIN auteur_libraries USING (id_auteur) WHERE auteur_libraries.id_library='133'V.j. Manzo The EAMIR project is an open-source effort to enable educators with technology for music education. Software is designed around a common configuration which can be easily implemented by music educators around the world by downloading source code and standalone applications through eamir.org.

Users who understand programming can edit the source code and post their new source and standalone applications back to the site for the EAMIR community to use.

Much of the EAMIR software is also designed to allow students with physical and mental disabilities to create meaningful music using interfaces that are accessible to their needs.


The EAMIR SDK allows users to easily create their own EAMIR-like applications by connecting preassembled interface modules to musical modules. The interfaces include cameras with color tracking, guitar hero controllers, wii remotes and devices, dance dance revolution pads, and other gaming controllers as well as traditional MIDI instruments like keyboards.

created by V.J. Manzo
www.vjmanzo.com | www.eamir.org
ejies
debug: SELECT prenom, nom FROM auteurs RIGHT JOIN auteur_libraries USING (id_auteur) WHERE auteur_libraries.id_library='38'Emmanuel Jourdan The ejies is a collection of abstractions utilities, digital signal processing, JavaScripts tools I have developed in Max/MSP-Jitter for my own pedagogical purposes, using the knowledge I gained while teaching at Ircam.
FFTease
debug: SELECT prenom, nom FROM auteurs RIGHT JOIN auteur_libraries USING (id_auteur) WHERE auteur_libraries.id_library='6'Eric Lyon
Christopher Penrose
FFTease is a collection of Max/MSP objects implementing various forms of spectral sound processing. These include an additive-synthesis phase vocoder, noise reduction, cross synthesis, and more unusual forms of spectral processing
FFTexternals
debug: SELECT prenom, nom FROM auteurs RIGHT JOIN auteur_libraries USING (id_auteur) WHERE auteur_libraries.id_library='3'Nathan Wolek A small collection of externals used for various spectral processing. Includes objects for computing amplitude in decibels and a few complex math functions.
GEM (Graphics Environment for Multimedia)
debug: SELECT prenom, nom FROM auteurs RIGHT JOIN auteur_libraries USING (id_auteur) WHERE auteur_libraries.id_library='58'Shigeyuki Hirai This software enable Max to render interactive 3D graphics using OpenGL.
Granular Toolkit
debug: SELECT prenom, nom FROM auteurs RIGHT JOIN auteur_libraries USING (id_auteur) WHERE auteur_libraries.id_library='44'Nathan Wolek set of externals and abstractions developed using several granular synthesis concepts. Effects available in this download include pitch shifting, spatializing, \"clouds\", chord production and looping.
ICST Ambisonics
debug: SELECT prenom, nom FROM auteurs RIGHT JOIN auteur_libraries USING (id_auteur) WHERE auteur_libraries.id_library='91' Jasch
Philippe Kocher
Externals for Ambisonics surround sound processing.
ISPW Compatibility Library
debug: SELECT prenom, nom FROM auteurs RIGHT JOIN auteur_libraries USING (id_auteur) WHERE auteur_libraries.id_library='68'Zack Settel This library provides a set of abstractions which allow a certain degree of compatibility between MSP and Miller Puckette's Max0.26/FTS for the ISPW/SIM (Ircam Signal Processing Workstation/Station d'Informatique Musicale). It contains abstractions for all of the ISPW (signal) objects whose name has changed in MSP, and some additional abstractions to replace objects found in the "lib" and "ISPW jimmies".
jb.utilities
debug: SELECT prenom, nom FROM auteurs RIGHT JOIN auteur_libraries USING (id_auteur) WHERE auteur_libraries.id_library='121'Joseph Branciforte A set of 50 abstractions for performing both common and awkward tasks in Max/MSP. Categories include control, data, list processing, numbers, pattr-family, statistics, strings, and user-interface. Most perform multiple related functions and are unbiased as to data type where possible. Additionally, the download contains help files.

Jitter
debug: SELECT prenom, nom FROM auteurs RIGHT JOIN auteur_libraries USING (id_auteur) WHERE auteur_libraries.id_library='11' Cycling74 Jitter is a set of 135 brilliant new video, matrix, and 3D graphics objects for the Max graphical programming environment. The Jitter objects extend the functionality of Max4/MSP2 with flexible means to generate and manipulate matrix data -- any data that can be expressed in rows and columns, such as video and still images, 3D geometry, as well as text, spreadsheet data, particle systems, voxels, or audio. Jitter is useful to anyone interested in real-time video processing, custom effects, 2D/3D graphics, audio/visual interaction, data visualization, and analysis
Jitter 1.5
debug: SELECT prenom, nom FROM auteurs RIGHT JOIN auteur_libraries USING (id_auteur) WHERE auteur_libraries.id_library='75' Cycling74 In this librairy are listed only the new objects since version 1.5. For all others Jitter objects, please go to "Jitter" library.
LFO Quaternion Objects
debug: SELECT prenom, nom FROM auteurs RIGHT JOIN auteur_libraries USING (id_auteur) WHERE auteur_libraries.id_library='124'Evan Raskob Free externals for using and converting Quaternions in Max/MSP/Jitter. Includes source code as XCode project, BSD license.
Max 4.5
debug: SELECT prenom, nom FROM auteurs RIGHT JOIN auteur_libraries USING (id_auteur) WHERE auteur_libraries.id_library='69' Cycling74 A graphical programming environment for music and media development.
In this librairy are listed only the new objects since version 4.5.
MaxAlea
debug: SELECT prenom, nom FROM auteurs RIGHT JOIN auteur_libraries USING (id_auteur) WHERE auteur_libraries.id_library='96'Carl Faia MaxAlea contains various objects for random distributions and functions. MaxAlea was begun as a Max port of an existing PatchWork Library created in 1991-2 by Mikhail Malt. While the distributions and functions found in MaxAlea are similar to those found in the Patchwork version ,there are many differences in their functioning. The environment of Patchwork is static and is not designed for real-time work. Part of the incentive for creating these objects to work with Max was to have a dynamic and real-time environment with which to experiment and work with these algorithms in a manner as simple and straightforward as possible. One can change variables and manipulate the output in many ways in real-time. There are several different versions of the various stochastic models/processes best presented in the now classic references by Denis Lorrain and Charles Dodge. Carl Faia has used a variety of sources for the creation of this library which include the Lorrain, Dodge and Malt implementations as well as sources found on the WorldWideWeb. The externals found in the package include several random distributions, examples of random walks and 1/f noise algorithms, as well as one or two utilities written specifically for the MaxAlea library. Carl Faia wanted to make a coherent collection (as he thought Malt had managed to do in PatchWork) of these various algorithms and provide an interface easily accessible using the Max environment for real-time control. All these algorithms have been created using a seeded version of the random function found in the standard AINSI library. That is, each time the function is first run there will always be a different set of random numbers (unlike the random funtions found in Max, PatchWork and other versions of random number generators).
net.loadbang.groovy
debug: SELECT prenom, nom FROM auteurs RIGHT JOIN auteur_libraries USING (id_auteur) WHERE auteur_libraries.id_library='130'Nick Rothwell net.loadbang.groovy is a package which supports the Groovy scripting/programming language within MXJ for Max/MSP.

Groovy is an agile, dynamic language for the Java Virtual Machine (JVM) which builds upon Java by providing features such as closures and support for domain-specific programming (such as XML processing and database access). It integrates seamlessly with Java and is very similar in syntax.
net.loadbang.jython
debug: SELECT prenom, nom FROM auteurs RIGHT JOIN auteur_libraries USING (id_auteur) WHERE auteur_libraries.id_library='131'Nick Rothwell Embedded Python interpreter for MaxMSP, using Jython and MXJ. This is a companion release to the Groovy interpreter.
Optimized Gates
debug: SELECT prenom, nom FROM auteurs RIGHT JOIN auteur_libraries USING (id_auteur) WHERE auteur_libraries.id_library='34'Stephen Kay 7 different optimized gates ("bgate" for bangs, "igate" for ints, "fgate" for floats, "sgate" for symbols, and "lgate" for lists. These do not need to do a message lookup, since they only deal with one data type. Also includes "andGate" and "orGate" by David Roach)
p.jit.gl.tools
debug: SELECT prenom, nom FROM auteurs RIGHT JOIN auteur_libraries USING (id_auteur) WHERE auteur_libraries.id_library='123' Pelado the p.jit.gl tools are designed to provide for easier learning of and experimenting with the many attributes that are available to jitter's gl objects by making them a whole lot more transparent and accessible. patches expose jitter gl object's attributes to interfaces that allow you to immediately edit and change an attribute's value. many of the parameters are attached to blines, which provide smooth changes while rendering, and all settings can be saved and recalled as presets using the pattrs that are embedded in the patches.
Panaiotis Objects
debug: SELECT prenom, nom FROM auteurs RIGHT JOIN auteur_libraries USING (id_auteur) WHERE auteur_libraries.id_library='122' Panaiotis The Mac version is UB.

These Max objects have been enhanced since the documentation to the left was written. Help files for the objects provide information on enhancements.

The matrix object has been substantially upgraded. It now combines features of unpack, spray, funnel, append, and prepend into one object. This makes a great object to place between controllers and jit objects because it acts like a multi-prepend. There are new configuration commands and enhancements to the old: even, odd, mod,and range, among others). Most commands can be applied to inlets of outlets. There is also a mute function that adds another layer of control. Matrixctrl support has been enhanced. See the help file for full details and examples.

Most other objects now fully support floats. RCer and autocount will count in float values, not just integers.

Notegen16 is a 16 channel version of its predecessor: notegen. It is more generalized and much more efficient.
PeRColate
debug: SELECT prenom, nom FROM auteurs RIGHT JOIN auteur_libraries USING (id_auteur) WHERE auteur_libraries.id_library='5'Dan Trueman PeRColate is an open-source distribution of a variety of synthesis and signal processing algorithms for Max, MSP, and Nato. It is centered around a (partial) port of the Synthesis Toolkit (STK) by Perry Cook (Princeton) and Gary Scavone (Stanford CCRMA). Like the STK, it provides a fairly easy to use library of synthesis and signal processing functions (in C) that can be wired together to create conventional and unusual instruments. Also like the STK, it includes a variety of precompiled synthesis objects, including physical modeling, modal, and PhISM class instruments; the code for these instruments can serve as foundations for creating new instruments (one example, the blotar, is included) and can be used to teach elementary and advanced synthesis techniques. Given it's STK heritage and educational function, PeRColate is largely un-optimized, though all the objects run on a 80MHz 7100, which is pretty good. PeRColate also includes a number of objects not from the STK; some are from RTcmix and others are our own evil creations, designed to crash your computer, but only after making some kind of interesting sound or image.
Singer Library 1
debug: SELECT prenom, nom FROM auteurs RIGHT JOIN auteur_libraries USING (id_auteur) WHERE auteur_libraries.id_library='33'Eric Singer a collection of examples and utility patches
suivi
debug: SELECT prenom, nom FROM auteurs RIGHT JOIN auteur_libraries USING (id_auteur) WHERE auteur_libraries.id_library='88' Ircam Two externals performing score following on soloist performances using Hidden Markov Models (HMM)
Suivi is based on FTM and requires the shared library FTMlib for Max/MSP. Both externals use an FTM track object - a sequence of time-tagged FTM values - to store the score of the soloist performance to be followed. Notes, trills and other elements of the score are represented by FTM score objects (FTM scoob class). For the moment, scores can be imported from standard MIDI files only.
An editor for the FTM track class, which will also provide a graphical control interface for the score follower is under development as well as the import of MusicXML files.
The suivi object set is distributed within the IRCAM Forum.
tapemovie
debug: SELECT prenom, nom FROM auteurs RIGHT JOIN auteur_libraries USING (id_auteur) WHERE auteur_libraries.id_library='144'Tom Mays
Olivier Pfeiffer
Renaud Rubiano
tapemovie is a modular software environment for controlling, processing, and analyzing various media in realtime (sound, video, 3D, lighting). It has stood the test of numerous productions since 2007, for theater, dance, concert performance and installation - enabling precise control and sequencing of media and their interactions while at the same time allowing connections with multiple peripheral controllers and interfaces. It is programmed with Max/MSP/Jitter and exists as a standalone application (free download), as well as in patch version for advanced users.
UBC Toolbox
debug: SELECT prenom, nom FROM auteurs RIGHT JOIN auteur_libraries USING (id_auteur) WHERE auteur_libraries.id_library='87'Keith Hamel
Bob Pritchard
A collection of modules for creating and processing audio in Max/MSP and manipulating video and 3D graphics using Jitter.
v001 Shaders
debug: SELECT prenom, nom FROM auteurs RIGHT JOIN auteur_libraries USING (id_auteur) WHERE auteur_libraries.id_library='115'--/// Vade v001 Shaders are a collection of GPU accelerated video and geometry processing plugins for Jitter 1.6. The library includes 2 and 3 channel mixers, single channel video effects and geometry, lighting, bump mapping and displacement shaders for 3D objects.
VASP
debug: SELECT prenom, nom FROM auteurs RIGHT JOIN auteur_libraries USING (id_auteur) WHERE auteur_libraries.id_library='49'Thomas Grill VASP is a package for PD or Max/MSP consisting of a number of externals extending these systems with functions for non-realtime array-based audio data processing. VASP is capable of working in the background, therefore not influencing eventual dsp signal processing.
xjimmies
debug: SELECT prenom, nom FROM auteurs RIGHT JOIN auteur_libraries USING (id_auteur) WHERE auteur_libraries.id_library='100'Zack Settel
Jean-michel Dumas
Parts of the nSLAM audio suite.
The "xjimmies" library included with nSLAM v2.0 offers new functionality not defined in the original "jimmies" running under Max/MSP.
Specifically, a number of new objects have been added for working with multichannel sound, sound source simulation and immersive audio. The name of the library, formerly "jimmies", was changed to "xjimmies", since the "X"-platform library runs in both PD (Windows/OSX/Linux) and now, in Max/MSP (Windows/OSX).

4855 objects and 135 libraries within the database Last entries : December 23rd, 2023 Last comments : 0 0 visitor and 60908848 members connected RSS
Site under GNU Free Documentation License