X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=vv%2FvvImageContour.h;h=d93a3f343b29ffbe1e0339903b935fc30984a1fd;hb=a4c7c3e6b24a06bfe248f935411e0136184faf97;hp=12bb2dcca7c065a77577377fad238bdafc97159e;hpb=f98406ee8b0a0961caa09e36b771d480481e6b20;p=clitk.git diff --git a/vv/vvImageContour.h b/vv/vvImageContour.h index 12bb2dc..d93a3f3 100644 --- a/vv/vvImageContour.h +++ b/vv/vvImageContour.h @@ -34,13 +34,14 @@ class vvImageContour vvImageContour(); ~vvImageContour(); - void setSlicer(vvSlicer * slicer); - void update(double value); - void hideActors(); - void showActors(); - void setColor(double r, double g, double b); - void setImage(vvImage::Pointer image); - void setPreserveMemoryModeEnabled(bool b); + void SetSlicer(vvSlicer * slicer); + void Update(double value); + void HideActors(); + void ShowActors(); + void SetColor(double r, double g, double b); + void SetLineWidth(double w); + void SetImage(vvImage::Pointer image); + void SetPreserveMemoryModeEnabled(bool b); protected: vvSlicer * mSlicer; @@ -64,18 +65,18 @@ class vvImageContour std::vector > mListOfCachedContourActors; // Functions - void initializeCacheMode(); - void updateWithPreserveMemoryMode(); - void updateWithFastCacheMode(); - void createNewActor(vtkActor ** actor, + void InitializeCacheMode(); + void UpdateWithPreserveMemoryMode(); + void UpdateWithFastCacheMode(); + void CreateNewActor(vtkActor ** actor, vtkMarchingSquares ** squares, vtkImageClip ** clipper, int numImage); - void updateActor(vtkActor * actor, + void UpdateActor(vtkActor * actor, vtkMarchingSquares * squares, vtkImageClip * clipper, - int threshold, int orientation, int slice); - void createActor(int orientation, int slice); - int computeCurrentOrientation(); + double threshold, int orientation, int slice); + void CreateActor(int orientation, int slice); + int ComputeCurrentOrientation(); }; // end class vvImageContour //------------------------------------------------------------------------------