#ifndef __ContourCrownWidget_h_INCLUDED_H__ #define __ContourCrownWidget_h_INCLUDED_H__ #include #include "mBarRange.h" //JSTG_14-06-08-------------------- #include "ContourPropagation.h" //--------------------------------- //-------------------------------------------------------------------------- class wxMaracasCoutourTool : public wxPanel { public: wxMaracasCoutourTool( wxWindow *parent, wxVtkBaseView *wxvtkbaseview, vtkImageData* imagedata); ~wxMaracasCoutourTool(); void OnContourA(wxCommandEvent &event); void OnContourB(wxCommandEvent &event); void OnContourAB(wxCommandEvent &event); void ConfigureVTK(); void GetValuesInsideCrown( std::vector *pLstValue, std::vector *pLstValuePosX, std::vector *pLstValuePosY, std::vector *pLstValuePosZ); wxVtkBaseView *GetWxVtkBaseView(); //EED void ProcessOutputs(); vtkImageData *GetVtkImageValueResult(); vtkImageData *GetVtkImageMaskResult(); //JSTG 26-02-08 -------------------------------------------------------------------------------------------- void GetSplinePoints ( std::vector *pLstContourX, std::vector *pLstContourY, std::vector *pLstContourZ ); void SetControlPoints ( std::vector *InVectorX, std::vector *InVectorY, std::vector *InVectorZ ); //JSTG 21-03-08 ---------------------------------------------- void OnSaveContour ( wxCommandEvent &event ); void OnSaveControlPoints( wxCommandEvent &event ); //JSTG 11-04-08 ---------------------------------------------- void EreaseLastContour ( wxCommandEvent& event ); void EreaseLastCP ( wxCommandEvent& event ); //---------------------------------------------------------------------------------------------------------- private: mBarRange *mbarrange; //EED ContourCrown *mbbtkContourCrown; vtkImageData *imagedata; vtkImageData *imagedataValueResult; vtkImageData *imagedataMaskResult; wxVtkBaseView *wxvtkbaseview; //JSTG 26-02-08 ------------------------------------------ std::vector _tempCX; std::vector _tempCY; std::vector _tempCZ; std::vector _SizesC; std::vector _tempCPX; std::vector _tempCPY; std::vector _tempCPZ; std::vector _SizesCP; std::vector *pControlVectorX; std::vector *pControlVectorY; std::vector *pControlVectorZ; int _zz; manualPoint *_mpoint; //-------------------------------------------------------- //JSTG_14-06-08------------------------------------------- ContourPropagation *_contprop; //-------------------------------------------------------- manualContourControler *_manContourControl_1; manualContourModel *_mContourModel_1; manualViewContour *_mViewContour_1; manualContourControler *_manContourControl_2; manualContourModel *_mContourModel_2; manualViewContour *_mViewContour_2; manualRoiControler *_manRoiControl; manualContourModel *_mContourModel; manualViewRoi *_mViewRoi; bool isInside(int x, int y); void GetMinMaxPoint(int *minPoint, int *maxPoint); void GetMinMaxPoint(int *minPoint, int *maxPoint, manualViewBaseContour *manualviewbaseecontour, manualContourModel *manualcontourmodel ); int AnalisisContourInside( int x, int y, manualViewBaseContour *manualviewbaseecontour, manualContourModel *manualcontourmodel ); double GetDataValue(int x, int y); void ResetImageResult(); void PutVtkImageDataResultValue( int x, int y, double value ); void InitVtkImagesResult(); }; #endif // __ContourCrownWidget_h_INCLUDED_H__