IMServer:Uploader: Difference between revisions
From KitwarePublic
Jump to navigationJump to search
Line 5: | Line 5: | ||
The files are padded to cover next power of two, and then | The files are padded to cover next power of two, and then | ||
[[ | [[File:IMServerMultiresNamingConvention.png | Naming of images for multiresolution representation]] | ||
== Upload to MongoDB == | == Upload to MongoDB == |
Revision as of 17:35, 19 January 2011
Image Dicer
Large images are split into multir-esolution representation
The files are padded to cover next power of two, and then
Upload to MongoDB
A simple mongo interface is created
<source enclose=pre lang="c">
- include <iostream>
- include <client/dbclient.h>
using namespace std;
class vtkMongoInterface {
mongo::DBClientConnection conn;
public:
// Constructor vtkMongoInterface() {}
// Operations possible int connect(const char *server = "127.0.0.1", int port = 27017); int insert(const char * name , int num ); int insert(const char * path, mongo::BSONObj obj); int query();
};
</source>