AI-NeuralNet-Kohonen-Visual
view release on metacpan or search on metacpan
lib/AI/NeuralNet/Kohonen/Visual.pm view on Meta::CPAN
=cut
sub prepare_display {
return $_[0]->create_empty_map;
}
=head1 METHOD create_empty_map
Sets up a TK C<MainWindow> and C<Canvas> to
act as an empty map.
=cut
sub create_empty_map { my $self = shift;
my ($w,$h);
if ($self->{display} and $self->{display} eq 'hex'){
$w = ($self->{map_dim_x}+1) * ($self->{display_scale}+2);
$h = ($self->{map_dim_y}+1) * ($self->{display_scale}+2);
} else {
$w = ($self->{map_dim_x}+1) * ($self->{display_scale});
$h = ($self->{map_dim_y}+1) * ($self->{display_scale});
}
$self->{_mw} = MainWindow->new(
-width => $w + 20,
-height => $h + 20,
);
$self->{_mw}->fontCreate(qw/TAG -family verdana -size 8 -weight bold/);
$self->{_mw}->resizable( 0, 0);
$self->{_quit_flag} = 0;
$self->{_mw}->protocol('WM_DELETE_WINDOW' => sub {$self->{_quit_flag}=1});
$self->{_canvas} = $self->{_mw}->Canvas(
-width => $w,
-height => $h,
-relief => 'raised',
-border => 2,
);
$self->{_canvas}->pack(-side=>'top');
$self->{_label} = $self->{_mw}->Button(
-command => sub { $self->{_mw}->destroy;$self->{_mw} = undef; },
-relief => 'groove',
-text => ' ',
-wraplength => $w,
-textvariable => \$self->{_label_txt}
);
$self->{_label}->pack(-side=>'top');
return 1;
}
=head1 METHOD plot_map
Plots the map on the existing canvas. Arguments are supplied
in a hash with the following keys as options:
The values of C<bmu_x> and C<bmu_y> represent The I<x> and I<y>
co-ordinates of unit to highlight using the value in the
C<hicol> to highlight it with colour. If no C<hicolo> is provided,
it default to red.
When called, this method also sets the object field flag C<plotted>:
currently, this prevents C<main_loop> from calling this routine.
See also L<METHOD get_colour_for>.
=cut
sub plot_map { my ($self,$args) = (shift,{@_});
$self->{plotted} = 1;
# MW may have been destroyed
$self->prepare_display if not defined $self->{_mw};
my $yo = 5+($self->{display_scale}/2);
for my $x (0..$self->{map_dim_x}){
for my $y (0..$self->{map_dim_y}){
my $colour;
if ($args->{bmu_x} and $args->{bmu_x}==$x and $args->{bmu_y}==$y){
$colour = $args->{hicol} || 'red';
} else {
$colour = $self->get_colour_for ($x,$y);
}
if ($self->{display} and $self->{display} eq 'hex'){
my $xo = 5+($y % 2) * ($self->{display_scale}/2);
$self->{_canvas}->create(
polygon => [
$xo + (($x)*$self->{display_scale} ),
$yo + (($y)*$self->{display_scale} ),
# polygon only:
$xo + (($x)*($self->{display_scale})+($self->{display_scale}/2) ),
$yo + (($y)*($self->{display_scale})-($self->{display_scale}/2) ),
#
$xo + (($x)*($self->{display_scale})+$self->{display_scale} ),
$yo + (($y)*$self->{display_scale} ),
$xo + (($x)*($self->{display_scale})+$self->{display_scale} ),
$yo + (($y)*($self->{display_scale})+($self->{display_scale}/2) ),
# Polygon only:
$xo + (($x)*($self->{display_scale})+($self->{display_scale}/2) ),
$yo + (($y)*($self->{display_scale})+($self->{display_scale}) ),
#
$xo + (($x)*$self->{display_scale} ),
$yo + (($y)*($self->{display_scale})+($self->{display_scale}/2) ),
],
-outline => "black",
-fill => $colour,
);
}
else {
$self->{_canvas}->create(
rectangle => [
$x*$self->{display_scale} +1,
$y*$self->{display_scale} +1,
$x*($self->{display_scale})+$self->{display_scale} +1,
$y*($self->{display_scale})+$self->{display_scale} +1
],
-outline => "black",
( run in 1.360 second using v1.01-cache-2.11-cpan-cdf2f3d4e48 )