Customized video montages
Video montages are widely used in Dynamo to show in a single montage part of a stream of data. The user can slide on the subset of the data that is represented at a given moment. Examples of this are found in the slider GUIs used to explore sets of particles, slices inside a given volume, or selections of gold beads.
In this page, we explain how to use the underlying Dynamo objects to create your own visualization systems. We explain two possible approaches:
- Inline montages
Can be defined easily from the command line without definition of further classes.
- Subclassed montages
Advanced method. This method offers full flexibility at the cost of requiring from the user the creation of new classes.
Contents
Inline montages
You can use the class mbvid.guis.montages.cells.Inline, that allows inline definition of the action to be computed at each frame. For instance, imagine that you have a set of 1000 vectors, and you want to quickly explore their histograms separately. Let's generate a random data set:.
for k=1:1000; myData{k} = randn(20000,1); end
For 1000 elements, you probably don't want to show them all in a single screen, but rather slide through the data. Thus, we create the object that represents the GUI
gui = mbvid.guis.montages.cells.Inline();
we link now this object with the stream of data
gui.setVideo(myData);
My data is a matlab cell array in this example, but you could pass any other object that implicitly defines an stream of data. If you pass, for instance, a volume of dimensions lx x ly x lz, the stream will be defined as a succesion on lz frames.
Now, we have to tell the GUI object what to do on each frame. This is done by defining the method depictorOnAxesFcn to be an inline function of two variables. The first is a dummy variable that represents the content of the stream for a given frame. The second is the graphical axis associated to the frame in the montage. Thus:
gui.depictorOnAxesFcn = @(x,haxis) hist(haxis,x(:),100);
This command reads as: "for a frame in position i, take the position i in the stream (i.e., the i-th entry in the cell array myData associated to the gui object), and show its histogram (with 100 bins) on the axis associated to the frame".
Now we are ready to go:
gui.show();
Subclassed montages
The underlying generic class for video montages is mbvid.guis.Montage.
Showing the GUI of an user-defined subclass myVideoMontageof mbvid.guis.Montage requires first creating the instance
gui = myVideoMontage();
then attaching the video stream (if it is not included in the constructor)
gui = myVideoMontage();
and them invoking the show method:
gui.show();
Structure of a video montage object
A video montage object is basically the result of combining of two different types of objectc:
- An scene manager object that runs the general layout and sliding of the scene.
- Objects of the frameManager class that control what is depicting on each panel.
Frame manager class
This object controls the creation and updating of a frame when its representation is invoked by the scene manager in the videomontage GUI. The basic frame class is mbvid.controls.VideoMontageFrameManager. Custom frame managers need to be subclasses of this class.
Defining the action of a frame
You need to define the method createFrame in your subclass (let's call it myFrameManager). This will pass the properties 'gui' , 'frameNumber', 'hPanel' .
Linking a frame class to a GUI
In order to link a frame class to a particular class of GUI, we can assign the name of the class to the property of the GUI object.
gui.frameManagerType = 'mbvid.controls.VideoMontageFrameManager'
The usual practice is to include this definition in the constructor method of the GUI, to ensure this assignation is ran before the GUI is shown.
Example
In order to create a new class, you can use the usual Matlab system, or just type:
mbnew myFrameManager . mbvid.controls.montageFrameManager
which will open the editor with this predefined content for the class @myFrameManager, created in the current directory.
% % class definition % classdef myFrameManager < mbvid.controls.montageFrameManager properties end methods function obj=myFrameManager(varargin) obj=obj@mbvid.controls.montageFrameManager(varargin{:}); end end end
You can the define the method createFrame() inside this file, using the properties 'gui' , 'frameNumber', 'hPanel' that will be available in the obj during runtime.