예제 #1
0
CamShiftPlugin::CamShiftPlugin( wxWindow* parent_, MyFrame *win_ )
: PluginBase(GetStaticName(), parent_, win_, true, true,true),
backproject(NULL), hist(NULL), rotation(NULL), shift(NULL), planes(NULL)
{
	sidebar =  new CamShiftSidebar(parent_, this);
	sidebarw = sidebar;
	DoPreview();
}
예제 #2
0
ResizeMoviePlugin::ResizeMoviePlugin( wxWindow* parent_, MyFrame *win_ )
: PluginBase(GetStaticName(), parent_, win_, true, true)
{
	sidebar =  new ResizeMovieSidebar(parent_, this);
	sidebarw = sidebar;
	OnBookChange();
	DoPreview();
}
예제 #3
0
FindFeaturesPlugin::FindFeaturesPlugin( wxWindow* parent_, MyFrame *win_ )
: PluginBase(GetStaticName(), parent_, win_, true, true),
gray(NULL), eig(NULL), cnt_mask(NULL), tempimg(NULL)
{
	sidebar =  new FindFeaturesSidebar(parent_, this);
	sidebarw = sidebar;
	DoPreview();
}
예제 #4
0
NormalizeContoursPlugin::NormalizeContoursPlugin( wxWindow* parent_, MyFrame *win_ )
: PluginBase(GetStaticName(), parent_, win_, true, true)
{
	sidebar =  new NormalizeContoursSidebar(parent_, this);
	sidebarw = sidebar;
	if (cm->viewFluorescence)
        sidebar->scope2->SetSelection(1);
	DoPreview();
}
예제 #5
0
MatchTemplatePlugin::MatchTemplatePlugin( wxWindow* parent_, MyFrame *win_ )
: PluginBase(GetStaticName(), parent_, win_, true, true,true),
map(NULL)
{
	sidebar =  new MatchTemplateSidebar(parent_, this);
	sidebarw = sidebar;
	if (cm->viewFluorescence)
        sidebar->scope2->SetSelection(1);
	DoPreview();
}
예제 #6
0
SmoothPlugin::SmoothPlugin( wxWindow* parent_, MyFrame *win_ ): PluginBase(GetStaticName(), parent_, win_, true, true), temp(NULL) {
	sidebar =  new SmoothSidebar(parent_, this);
	sidebarw = sidebar;
	DoPreview();
}