Skip to content

Instantly share code, notes, and snippets.

@TakashiNakagawa
Created May 6, 2014 02:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TakashiNakagawa/72b978cd05d835f945e5 to your computer and use it in GitHub Desktop.
Save TakashiNakagawa/72b978cd05d835f945e5 to your computer and use it in GitHub Desktop.
computer vision5章
#!/usr/bin/python
# -*- coding: utf-8 -*-
from pylab import *
execfile('load_vggdata.py')
# 3Dの点を描画する
from mpl_toolkits.mplot3d import axes3d
fig = figure()
ax = fig.gca(projection='3d')
ax.plot(points3D[0],points3D[1],points3D[2],'k.')
show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment