#include "bbCreaContournDimensions.h" #include "bbcreaContoursPackage.h" namespace bbcreaContours { BBTK_ADD_BLACK_BOX_TO_PACKAGE(creaContours,nDimensions) BBTK_BLACK_BOX_IMPLEMENTATION(nDimensions,bbtk::WxBlackBox); void nDimensions::Process() { double **vectx, **vecty, **vectz; std::vector< void * > vectortemp; std::vector size; vtkImageData *mask, *value; vtkImageData* img = bbGetInputIn(); std::vector selectedimages; if(img!=NULL && currentimg!=img){ currentimg=img; selectedimages.push_back(img); wxContourMainFrame::getInstance()->setVectImages(selectedimages); } if(currentimg != NULL){ int contourtype = bbGetInputContourType(); //wxContourMainFrame::getInstance()->getValuesXYZ(vectx, vecty, vectz, &size); wxContourMainFrame::getInstance()->getMaskValue(mask, value, contourtype); } bbSetOutputX(vectx); bbSetOutputY(vecty); bbSetOutputZ(vectz); bbSetOutputSizeContour(size); bbSetOutputMask(mask); bbSetOutputValue(value); } void nDimensions::CreateWidget(wxWindow* parent) { //vtkImageData* img = bbGetInputIn(); std::vector selectedimages; //selectedimages.push_back(img); //wxFrame* frame1 = new wxFrame(parent, wxID_ANY, wxT("ROI Application - Evaluation version, 23 Oct 2008 "), wxPoint(400,50), wxSize(800, 600) ); //frame = wxContourMainFrame::getInstance(frame1, wxID_ANY, wxString(_T("")), wxPoint(100,50), wxSize(800, 600), selectedimages ); //new wxContourMainFrame( frame1, wxID_ANY, _T(""), wxPoint(50,50), wxSize(800, 600),selectedimages ); //frame1->CreateStatusBar(); //bbSetOutputWidget( frame1 ); char currentPath[_MAX_PATH]; HMODULE hand = GetModuleHandle("bbcreaContours"); GetModuleFileName(hand, currentPath, _MAX_PATH); std::string path = currentPath; path = path.substr(0,path.find_last_of("\\")); wxPanel* panel = wxContourMainFrame::getInstance(parent, wxID_ANY, wxString(_T("")), wxPoint(100,50), wxSize(800, 600), selectedimages,wxDEFAULT_FRAME_STYLE | wxSUNKEN_BORDER,path ); bbSetOutputWidget( panel ); } void nDimensions::bbUserConstructor() { bbSetInputContourType(0); bbSetInputIn(NULL); } void nDimensions::bbUserCopyConstructor(bbtk::BlackBox::Pointer) { } void nDimensions::bbUserDestructor() { } } // EO namespace bbCreaContour