# Expand save panel by default
defaults write NSGlobalDomain NSNavPanelExpandedStateForSaveMode -bool true| figure.facecolor: white | |
| figure.dpi: 200 | |
| savefig.dpi: 600 | |
| figure.figsize: 3.3,2.2 | |
| axes.facecolor: white | |
| figure.subplot.bottom: 0.01 | |
| figure.subplot.left: 0.01 | |
| figure.subplot.right: 0.99 | |
| figure.subplot.wspace: 0.2 |
| <!DOCTYPE qgis_style> | |
| <qgis_style version="2"> | |
| <symbols> | |
| <symbol alpha="1" force_rhr="0" clip_to_extent="1" type="fill" name="pencilish"> | |
| <layer class="MarkerLine" pass="0" locked="0" enabled="1"> | |
| <prop k="average_angle_length" v="4"/> | |
| <prop k="average_angle_map_unit_scale" v="3x:0,0,0,0,0,0"/> | |
| <prop k="average_angle_unit" v="MM"/> | |
| <prop k="interval" v="0.02"/> | |
| <prop k="interval_map_unit_scale" v="3x:0,0,0,0,0,0"/> |
| <?xml version="1.0"?> | |
| <!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
| <fontconfig> | |
| <match target="font"> | |
| <edit name="antialias" mode="assign"> | |
| <bool>true</bool> | |
| </edit> | |
| </match> |
| def stacked_bar_chart(pivoted_df, stack_vals, level_values_field, chart_title, x_label, y_label, filename, color1, color2): | |
| # | |
| # stacked_bar_chart: draws and saves a barchart figure to filename | |
| # | |
| # pivoted_df: dataframe which has been pivoted so columns correspond to the values to be plotted | |
| # stack_vals: the column names in pivoted_df to plot | |
| # level_values_field: column in the dataframe which has the values to be plotted along the x axis (typically time dimension) | |
| # chart_title: how to title chart | |
| # x_label: label for x axis | |
| # y_label: label for y axis |
Probably the most straight forward way to start generating Point Clouds from a set of pictures.
VisualSFM is a GUI application for 3D reconstruction using structure from motion (SFM). The reconstruction system integrates several of my previous projects: SIFT on GPU(SiftGPU), Multicore Bundle Adjustment, and Towards Linear-time Incremental Structure from Motion. VisualSFM runs fast by exploiting multicore parallelism for feature detection, feature matching, and bundle adjustment.
For dense reconstruction, this program supports Yasutaka Furukawa's PMVS/CMVS tool chain, and can prepare data for Michal Jancosek's CMP-MVS. In addition, the output of VisualSFM is natively supported by Mathias Rothermel and Konrad Wenzel's [SURE]
Sometimes you want to have a subdirectory on the master branch be the root directory of a repository’s gh-pages branch. This is useful for things like sites developed with Yeoman, or if you have a Jekyll site contained in the master branch alongside the rest of your code.
For the sake of this example, let’s pretend the subfolder containing your site is named dist.
Remove the dist directory from the project’s .gitignore file (it’s ignored by default by Yeoman).
| <?xml version="1.0"?> | |
| <!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
| <fontconfig> | |
| <!-- Info: | |
| Latest version: http://forums.gentoo.org/viewtopic-p-6183606.html#6183606 | |
| xeffects thread: http://forums.gentoo.org/viewtopic-t-511382.html | |
| Alternative: https://wiki.ubuntu.com/Fonts | |
| http://wiki.archlinux.org/index.php/XOrg_Font_Configuration | |
| http://antigrain.com/research/font_rasterization/index.html |