~bertrand-nouvel/pycvf-keypoints/trunk

« back to all changes in this revision

Viewing changes to nodes/surf.py

  • Committer: tranx
  • Date: 2010-10-01 16:56:14 UTC
  • Revision ID: tranx@havane-20101001165614-u938mdd1y1fgd0o5
initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
#########################################################################################################################################
 
3
#
 
4
# MyNode By Bertrand NOUVEL
 
5
# 2009 CNRS Postdoctorate JFLI
 
6
#
 
7
# (c) All rights reserved
 
8
# ###############################################
 
9
#
 
10
################################################################################################################################################################################
 
11
# Includes
 
12
################################################################################################################################################################################
 
13
 
 
14
 
 
15
from pycvf.core import genericnode
 
16
from pycvf.datatypes import basics
 
17
from pycvfext.image.datatypes import image
 
18
from pycvf.datatypes import list as ldt
 
19
 
 
20
from pycvfext.keypoints.lib.kp_surf import surf
 
21
 
 
22
Node=genericnode.pycvf_node_function( image.Datatype(),ldt.Datatype(basics.NumericArray.Datatype))(surf)
 
23
__call__=Node