conv-net: Convolutional networks in C++
http://conv-net.sourceforge.net
| Home | Forum | Contact Us |

Quick Links
  Features Usage
Download
 
 

LeNet-5
   
 
Latest News

8/6/07Created forum for discussion!
8/3/07Linux binaries and sources are released!

More Info

Intro

conv-net is a C++ library implementing data propagation throught convolutional neural networks.Convolutional Neural Networks are a special kind of multi-layer neural networks. They are designed to recognize visual patterns directly from pixel images with minimal preprocessing. .

The library usage is as simple as this:

// Create empty net object
CvConvNet net;

// Load the network from XML representation. 
net.fromString( xmlstring );

// Propagate the image through network
// and get the result
int res = (int) net.fprop(img);

cout << "Img recognized as " \
     << res << endl;

More Info


Copyright (c) 2007 Akhmed Umyarov. All Rights Reserved