Yet another hunt for nice matplotlib colormaps
This snipet will plot many colormaps in one go. The above example is for 4 levels of shades.
One liner for choosing a nice matplotlib colormap
Memo for myself...
Since jet is becoming less and less popular these days and the default color styles will be revamped in the comming release of MPL, I also tend to avoid jet. When choosing a nice colormap for data that needs only several color levels, this one liner comes in handy.
val=range(10); imshow(np.vstack([val,val]), interpolation='none', cmap=cm.gist_rainbow)
This needs pylab environment, so just do from pylab import * or %pylab magic in IPython.
just change the range and colormap as needed. For colormap, we can choose from this list I took from the official doc:
cmaps = [('Sequential', ['Blues', 'BuGn', 'BuPu', 'GnBu', 'Greens', 'Greys', 'Oranges', 'OrRd', 'PuBu', 'PuBuGn', 'PuRd', 'Purples', 'RdPu', 'Reds', 'YlGn', 'YlGnBu', 'YlOrBr', 'YlOrRd']), ('Sequential (2)', ['afmhot', 'autumn', 'bone', 'cool', 'copper', 'gist_heat', 'gray', 'hot', 'pink', 'spring', 'summer', 'winter']), ('Diverging', ['BrBG', 'bwr', 'coolwarm', 'PiYG', 'PRGn', 'PuOr', 'RdBu', 'RdGy', 'RdYlBu', 'RdYlGn', 'Spectral', 'seismic']), ('Qualitative', ['Accent', 'Dark2', 'Paired', 'Pastel1', 'Pastel2', 'Set1', 'Set2', 'Set3']), ('Miscellaneous', ['gist_earth', 'terrain', 'ocean', 'gist_stern', 'brg', 'CMRmap', 'cubehelix', 'gnuplot', 'gnuplot2', 'gist_ncar', 'nipy_spectral', 'jet', 'rainbow', 'gist_rainbow', 'hsv', 'flag', 'prism'])]
To get the RGB values for 4 levels of gist_rainbow,
[map(int, [255*r,255*g,255*b]) for r,g,b,a in cm.gist_rainbow(np.linspace(0,255,4).astype(int))]
As the default color space in OpenCV is BGR, the above code should be
[map(int, [255*b,255*g,255*r]) for r,g,b,a in cm.gist_rainbow(np.linspace(0,255,4).astype(int))]
to work with OpenCV.
val=range(3); imshow(np.vstack([val,val]), interpolation='none', cmap=cm.bwr)
How to record the panda3d app screen as avi file using ffmpeg
# It's better to use base.movie() instead of this code. see below
Here is an example script I wrote today. To run this on your PC, at least the model in the script needs to be replaced with your egg file.
Panda3d has a nice facility to save the screenshot of the app provided by base.win.saveScreenshot() but that gives us an image file not a video. I noticed that there is also getScreenshot method in the ShowBase class which turned out to be quite useful for getting the texture buffer for ffmpeg. Because Panda3d actually comes with ffmpeg which is used for movie texure loading (Playing MPG and AVI files - Panda3D Manual), there might be a better way to do the same but I could not figure out (yes, use base.movie below...).
tex.getRamImage() seems to give me a pointer to the memory of this texture. So, I had to call getData() to get the actual buffer strings. The buffer seems up-side down and with these parameters to ffmpeg, the video created was not so good. I will have to tweek parameters more...
PS
I found someone mentioning on base.movie() on the forum (Panda3D • View topic - Using Panda3d To render output to video). This is probably a better way to do this. The API for base.movie is found at Panda3D API Reference.
just call self.movie() within ShowBase class to start recording. e.g., self.accept("r", self.OnRec) and in the OnRec, self.movie(duration=10) for 10 s video.
movie(self, namePrefix = 'movie', duration = 1.0, fps = 30,
format = 'png', sd = 4, source = None)Spawn a task to capture a movie using the screenshot function.
- namePrefix will be used to form output file names (can include
path information (e.g. '/i/beta/frames/myMovie')
- duration is the length of the movie in seconds
- fps is the frame rate of the resulting movie
- format specifies output file format (e.g. png, bmp)
- sd specifies number of significant digits for frame count in the
output file name (e.g. if sd = 4, movie_0001.png)
- source is the Window, Buffer, DisplayRegion, or Texture from which
to save the resulting images. The default is the main window.
base.movie creates an image sequence, one image per frame (at fps you specify). default is 1 s video at 30.0 fps with file name like movie_0001.png etc. They can be put together as avi using ffmpeg later like this.
ffmpeg -y -framerate 30 -f image2 -i movie_%04d.png -q:a 2 -q:v 4 -vcodec wmv2 -acodec wmav2 out.avi
Above command will produce powerpoint friendly avi file. I modified from FFMPEG settings for PowerPoint Video Playback - esonderegger.
Although calling movie() slows down the app while recording, the resulting video is actually fine (smooth and nice).