private void Button_OK_Click(object sender, RoutedEventArgs e)
        {
            ModuleImageFile parent = (ModuleImageFile)base.ParentModule;

            parent.filePath           = textBoxPath.Text;
            parent.cycleThroughFolder = (bool)cbEntireFolder.IsChecked;
        }
        public override bool Draw(bool checkDrawTimer)
        {
            //this has a timer so that no matter how often you might call draw, the dialog
            //only updates 10x per second
            if (!base.Draw(checkDrawTimer))
            {
                return(false);
            }
            ModuleImageFile parent = (ModuleImageFile)base.ParentModule;

            if (File.Exists(parent.filePath))
            {
                textBoxPath.Text = parent.filePath;
            }
            cbNameIsDescription.IsChecked = parent.useDescription;

            //use a line like this to gain access to the parent's public variables
            //ModuleEmpty parent = (ModuleEmpty)base.Parent1;

            //here are some other possibly-useful items
            //theCanvas.Children.Clear();
            //Point windowSize = new Point(theCanvas.ActualWidth, theCanvas.ActualHeight);
            //Point windowCenter = new Point(windowSize.X / 2, windowSize.Y / 2);
            //float scale = (float)Math.Min(windowSize.X, windowSize.Y) / 12;
            //if (scale == 0) return false;

            return(true);
        }
        private void Button_Cancel_Click(object sender, RoutedEventArgs e)
        {
            ModuleImageFile parent = (ModuleImageFile)base.ParentModule;

            parent.filePath = "";
            Close();
        }
        private void Button_Click_Prev(object sender, RoutedEventArgs e)
        {
            ModuleImageFile parent = (ModuleImageFile)base.ParentModule;

            cbAutoCycle.IsChecked = false;
            parent.PrevFile();
        }
        private void Button_Browse_Click(object sender, RoutedEventArgs e)
        {
            OpenFileDialog openFileDialog1 = new OpenFileDialog
            {
                Filter = "Image Files|*.bmp;*.png",
                Title  = "Select a Brain Simulator Command File",
            };
            // Show the Dialog.
            // If the user clicked OK in the dialog
            DialogResult result = openFileDialog1.ShowDialog();

            if (result == System.Windows.Forms.DialogResult.OK)
            {
                textBoxPath.Text = openFileDialog1.FileName;
                ModuleImageFile parent = (ModuleImageFile)base.ParentModule;
                parent.filePath = textBoxPath.Text;
            }
        }
        //commented-out code can add phrases to the UKS
        //Thing recentPhrase = null;
        public void SetDescription(string description)
        {
            if (uks == null)
            {
                return;
            }

            ModuleView naImage = theNeuronArray.FindModuleByLabel("ImageFile");

            if (naImage == null)
            {
                return;
            }
            ModuleImageFile mif = (ModuleImageFile)naImage.TheModule;


            //Thing phraseParent = uks.GetOrAddThing("Phrase", "Audible");
            //Thing thePhrase = uks.AddThing("ph*", phraseParent);

            words = description.Split(new char[] { ' ', '\r', '\n' }, StringSplitOptions.RemoveEmptyEntries).ToList();

            //TODO put words into phrase objects
            //foreach (string word in words1)
            //{

            //    string word1 = char.ToUpper(word[0]) + word.Substring(1);
            //    words.Add(word1);
            //    Thing wordParent = uks.GetOrAddThing("Word", "Audible");
            //    Thing theWord = uks.GetOrAddThing("w" + word1, wordParent);
            //    thePhrase.AddReference(theWord);
            //}

            //remove the phrase if it duplicates an existing phrase.
            //Thing matchingStoredPhrase = uks.ReferenceMatch(thePhrase.ReferencesAsThings, phraseParent.Children);
            //recentPhrase = matchingStoredPhrase;
            //if (matchingStoredPhrase != thePhrase)
            //{
            //    uks.DeleteThing(thePhrase);
            //}
        }
        private void Button_Browse_Click(object sender, RoutedEventArgs e)
        {
            if (defaultDirectory == "")
            {
                defaultDirectory = System.IO.Path.GetDirectoryName(MainWindow.currentFileName);
            }
            OpenFileDialog openFileDialog1 = new OpenFileDialog
            {
                Filter           = "Image Files| *.png;*.jpg",
                Title            = "Select an image file",
                Multiselect      = true,
                InitialDirectory = defaultDirectory,
            };
            // Show the Dialog.
            // If the user clicked OK in the dialog
            DialogResult result = openFileDialog1.ShowDialog();

            if (result == System.Windows.Forms.DialogResult.OK)
            {
                defaultDirectory = System.IO.Path.GetDirectoryName(openFileDialog1.FileName);
                ModuleImageFile parent = (ModuleImageFile)base.ParentModule;

                textBoxPath.Text = openFileDialog1.FileName;
                List <string> fileList;
                string        curPath;
                if (openFileDialog1.FileNames.Length > 1)
                {
                    fileList = openFileDialog1.FileNames.ToList();
                    curPath  = fileList[0];
                }
                else
                {
                    fileList = GetFileList(openFileDialog1.FileName);
                    curPath  = openFileDialog1.FileName;
                }

                parent.SetParameters(fileList, curPath, (bool)cbAutoCycle.IsChecked, (bool)cbNameIsDescription.IsChecked);
            }
        }
        private void ButtonDescr_Click(object sender, RoutedEventArgs e)
        {
            ModuleImageFile parent = (ModuleImageFile)base.ParentModule;

            parent.ResendDescription();
        }
        private void CheckBoxChanged(object sender, RoutedEventArgs e)
        {
            ModuleImageFile parent = (ModuleImageFile)base.ParentModule;

            parent.SetParameters(null, "", (bool)cbAutoCycle.IsChecked, (bool)cbNameIsDescription.IsChecked);
        }
        private void Button_OK_Click(object sender, RoutedEventArgs e)
        {
            ModuleImageFile parent = (ModuleImageFile)base.ParentModule;

            parent.SetParameters(null, textBoxPath.Text, (bool)cbAutoCycle.IsChecked, (bool)cbNameIsDescription.IsChecked);
        }
예제 #11
0
        //fill this method in with code which will execute
        //once for each cycle of the engine
        public override void Fire()
        {
            Init();  //be sure to leave this here
            if (GetNeuron("Enable").CurrentCharge < 1)
            {
                return;
            }
            ModuleImageFile mif = (ModuleImageFile)FindModule("ImageFile");

            if (mif == null)
            {
                return;
            }
            string newFilePath = mif.GetFilePath();

            //TODO need to actually check if neuron values changes (pan/zoom/rot) instead of refreshNeeded
            if (newFilePath == oldFilePath && !refreshNeeded)
            {
                return;
            }
            oldFilePath = newFilePath;
            Bitmap bitmap1 = null;

            try
            {
                bitmap1 = new Bitmap(newFilePath);
            }
            catch {}
            if (bitmap1 == null)
            {
                return;
            }

            Angle rotation = 0;

            if (GetNeuron("Rot") is Neuron n1)
            {
                rotation = n1.currentCharge;     //range (0,1)
            }
            rotation = rotation * 2 * (float)PI; //range (0,2Pi)

            //bitmap1 = RotateBitmap(bitmap1, rotation.ToDegrees());

            System.Windows.Point offset = new System.Windows.Point
            {
                X = GetNeuron("X").CurrentCharge,
                Y = GetNeuron("Y").CurrentCharge,
            };
            scale = GetNeuron("Scale").CurrentCharge;
            if (scale > 1)
            {
                scale = 1;
            }
            if (scale < 0)
            {
                scale = 0;
            }
            float minScale = (float)bitmap1.Width / (float)mv.Width;

            scale = scale + minScale;

            for (int i = 0; i < mv.Height - 1; i++)
            {
                for (int j = 0; j < mv.Width; j++)
                {
                    Neuron n = mv.GetNeuronAt(j, i + 1);
                    int    x = (int)(offset.X * bitmap1.Width + j * scale);
                    int    y = (int)(offset.Y * bitmap1.Height + i * scale);


                    if (x >= bitmap1.Width)
                    {
                        goto NoData;
                    }
                    if (y >= bitmap1.Height)
                    {
                        goto NoData;
                    }
                    if (x < 0)
                    {
                        goto NoData;
                    }
                    if (y < 0)
                    {
                        goto NoData;
                    }

                    Color c          = bitmap1.GetPixel(x, y);
                    float hue        = c.GetHue();
                    float brightness = c.GetBrightness();
                    int   val        = Utils.ColorToInt(c);

                    n.LastChargeInt = val;
                    continue;
NoData:
                    n.LastChargeInt = 0xffffff;
                }
            }
            refreshNeeded = false;
            UpdateDialog();
        }
        //fill this method in with code which will execute
        //once for each cycle of the engine
        public override void Fire()
        {
            Init();  //be sure to leave this here

            ModuleView naSource = theNeuronArray.FindModuleByLabel("UKS");

            if (naSource == null)
            {
                return;
            }
            uks = (ModuleUKS)naSource.TheModule;

            Thing mentalModel            = uks.GetOrAddThing("MentalModel", "Visual");
            Thing currentlyVisibleParent = uks.GetOrAddThing("CurrentlyVisible", "Visual");
            Thing motionParent           = uks.GetOrAddThing("Motion", "Visual");



            //Things which disappeared in the last cycle need special treatment to remove from mental model & relationships but not the known object
            foreach (Thing t in motionParent.Children)
            {
                if (t.Label.Contains("Disappeared"))
                {
                    Thing thingToRemove = t.Children[0];
                    for (int i = thingToRemove.Children.Count - 1; i >= 0; i--)
                    {
                        Thing child = thingToRemove.Children[i];
                        thingToRemove.RemoveChild(child);
                    }
                    uks.DeleteThing(thingToRemove);
                }
            }

            uks.DeleteAllChilden(motionParent);

            //build little lists of things which moved or appeared so we can also be left with things which things which disappeared
            List <Thing> matchedThings  = new List <Thing>();
            List <Thing> movedThings    = new List <Thing>();
            List <Thing> movedThingsNew = new List <Thing>();
            List <Thing> newThings      = new List <Thing>();

            foreach (Thing visibleArea in currentlyVisibleParent.Children)
            {
                Thing matchedThing = null;
                foreach (Thing storedArea in mentalModel.Children)
                {
                    Debug.Assert(visibleArea.Children.Count == 1);
                    if (storedArea.Children.Count != 1)
                    {
                        continue;
                    }
                    if (storedArea.Children[0] == visibleArea.Children[0]) //are these instances of the same object type?
                    {
                        var   values     = uks.GetValues(visibleArea);
                        var   prevValues = uks.GetValues(storedArea);
                        Point c1         = new Point(uks.GetValue(visibleArea, "CtrX+"), uks.GetValue(visibleArea, "CtrY+"));
                        Point c2         = new Point(uks.GetValue(storedArea, "CtrX+"), uks.GetValue(storedArea, "CtrY+"));
                        float dist       = (float)(c1 - c2).Length;
                        if (dist < (uks.GetValue(visibleArea, "Siz+") + uks.GetValue(storedArea, "Siz+")) / 2)
                        {
                            //these are probably the same object...is motion detected?
                            var changes = uks.GetChangedValues(visibleArea, storedArea);
                            if (changes.ContainsKey("Siz+") ||
                                changes.ContainsKey("CtrX+") ||
                                changes.ContainsKey("CtrY+") ||
                                changes.ContainsKey("Ang+"))
                            {
                                Thing t1 = uks.AddThing("Moved", motionParent);
                                t1.AddChild(storedArea);
                                foreach (var change in changes)
                                {
                                    uks.SetValue(t1, change.Value, change.Key, 0);
                                }
                                movedThings.Add(storedArea);
                                movedThingsNew.Add(visibleArea);
                            }
                            matchedThing = storedArea;
                            goto objectMatch;
                        }
                    }
                }
                //there is no matching object, this just appeared!
                newThings.Add(visibleArea);
                Thing m = uks.AddThing("Appeared*", motionParent);
                m.AddChild(visibleArea);
                continue;

                objectMatch :;
                if (matchedThing != null)
                {
                    matchedThings.Add(matchedThing);
                }
            }


            for (int i = mentalModel.Children.Count - 1; i >= 0; i--)
            {
                Thing t = mentalModel.Children[i];
                if (!matchedThings.Contains(t))
                {
                    Thing m = uks.AddThing("Disappeared*", motionParent);
                    m.AddChild(t);
                    mentalModel.RemoveChild(t);
                    Thing attn = uks.Labeled("ATTN");
                    if (attn != null)
                    {
                        attn.RemoveReference(t);
                    }
                }
            }

            if (motionParent.Children.Count > 1)
            {
                //analyze motion
                //if only a few objects moved, they moved
                //if all objects moved in same direction, it's becaue POV turned
                //if all objects moved in directions radiating to or from a point, POV is moving toward or away from that point.
                //TODO if all objects moved in same direction but varying magnitudes, POV has moved sideways...further objects move less

                //calculate the motion vector for all associated objects
                List <Segment> motions = new List <Segment>();
                foreach (Thing t in motionParent.Children)
                {
                    if (t.Label.StartsWith("Moved")) //ignore appeared/disappeared
                    {
                        var       values = uks.GetValues(t);
                        PointPlus p      = new PointPlus(0, (float)0);
                        if (values.ContainsKey("CtrX++"))
                        {
                            p.X = values["CtrX++"];
                        }
                        if (values.ContainsKey("CtrY++"))
                        {
                            p.Y = values["CtrY++"];
                        }
                        Segment s = new Segment();
                        s.P1   = p; //This is a relative motion value
                        values = uks.GetValues(t.Children[0]);
                        p      = new PointPlus(0, (float)0);
                        if (values.ContainsKey("CtrX+"))
                        {
                            p.X = values["CtrX+"];
                        }
                        if (values.ContainsKey("CtrY+"))
                        {
                            p.Y = values["CtrY+"];
                        }
                        s.P2 = p; //This is an absolute position
                        motions.Add(s);
                    }
                }

                if (motions.Count > 1)
                {
                    //do most move the same?  ANGULAR POV MOTION
                    //TODO: use clustering to get most likely motions
                    PointPlus pMotion = new PointPlus(motions[0].P1);

                    int count = 0;
                    foreach (Segment s in motions)
                    {
                        if (s.P1.Near(pMotion, .1f))
                        {
                            count++;
                        }
                    }
                    if (count > motions.Count - 2) //only two objects can be exceptions
                    {
                        for (int i = 0; i < motions.Count; i++)
                        {
                            if (motions[i].P1.Near(pMotion, .1f))
                            {
                                motions.RemoveAt(i);
                                Thing t = motionParent.Children[i];
                                uks.DeleteAllChilden(t);
                                uks.DeleteThing(t);
                                i--;
                            }
                            else
                            {
                                //an object has its own motion too...subtract off the POV motion
                                Thing t = motionParent.Children[i];
                                float x = uks.GetValue(t, "CtrX+");
                                float y = uks.GetValue(t, "CtrY+");
                                x -= motions[i].P1.X;
                                y -= motions[i].P1.Y;
                                uks.SetValue(t, x, "CtrX", 3);
                                uks.SetValue(t, y, "CtrY", 3);
                            }
                        }
                        Thing POVMotion = uks.AddThing("POVMotion*", "Motion");
                        uks.SetValue(POVMotion, pMotion.X, "CtrX", 3);
                        uks.SetValue(POVMotion, pMotion.Y, "CtrY", 3);
                    }
                    else
                    { //this is not a rotation...is it a motion toward/away?
                      //TODO there are no exceptions allowed
                        foreach (var m in motions)
                        {
                            m.P1 += m.P2;
                        }
                        List <PointPlus> intersections = new List <PointPlus>();
                        for (int i = 0; i < motions.Count; i++)
                        {
                            for (int j = i + 1; j < motions.Count; j++)
                            {
                                Utils.FindIntersection(motions[i].P1, motions[i].P2, motions[j].P1, motions[j].P2, out Point intersection);
                                intersections.Add(intersection);
                            }
                        }

                        //testing clustering...
                        //TODO try all this with points of interest rather than centers
                        double[][] rawData = new double[intersections.Count][];
                        for (int i = 0; i < intersections.Count; i++)
                        {
                            rawData[i] = new double[2] {
                                intersections[i].X, intersections[i].Y
                            }
                        }
                        ;
                        int[] clusters = KMeansClustering.Cluster(rawData, 2);
                        //now ask if there is a single cluster with most of the data

                        PointPlus aveIntersection = new PointPlus();
                        for (int i = 0; i < intersections.Count; i++)
                        {
                            aveIntersection.X += intersections[i].X;
                            aveIntersection.Y += intersections[i].Y;
                        }
                        aveIntersection.X /= intersections.Count;
                        aveIntersection.Y /= intersections.Count;
                        float dist = 0;
                        float dir  = 0;
                        for (int i = 0; i < intersections.Count; i++)
                        {
                            dist += (intersections[i] - aveIntersection).R;
                            //moving toward or away?
                            dir += (motions[i].P1 - intersections[i]).R - (motions[i].P2 - intersections[i]).R;
                        }
                        dist /= intersections.Count;
                        dir  /= intersections.Count;
                        if (dist < 10) // ???
                        {
                            uks.DeleteAllChilden(motionParent);
                            Thing POVMotion = uks.AddThing("POVMotion*", "Motion");
                            uks.SetValue(POVMotion, aveIntersection.X, "CtrX", 3);
                            uks.SetValue(POVMotion, aveIntersection.Y, "CtrY", 3);
                            uks.SetValue(POVMotion, dir, "CtrZ", 3);
                        }
                    }
                }
            }

            //transfer currently visible objects to previously visible
            Debug.Assert(movedThings.Count == movedThingsNew.Count);
            for (int i = 0; i < movedThings.Count; i++)
            {
                uks.SetValue(movedThings[i], uks.GetValue(movedThingsNew[i], "CtrX+"), "CtrX", 0);
                uks.SetValue(movedThings[i], uks.GetValue(movedThingsNew[i], "CtrY+"), "CtrY", 0);
                uks.SetValue(movedThings[i], uks.GetValue(movedThingsNew[i], "Siz+"), "Siz", 0);
                uks.SetValue(movedThings[i], uks.GetValue(movedThingsNew[i], "Ang+"), "Ang", 0);
            }

            foreach (var t in newThings)
            {
                t.AddParent(mentalModel); //TODO, this may leave multiple things in the mental model with the same label
            }

            //This hack puts predictable labels on things in the mental model so we can select them more easily in the description
            //Area0-n from top->bottom, left->right
            List <sortable> vals = new List <sortable>();

            foreach (Thing storedArea in mentalModel.Children)
            {
                var values = uks.GetValues(storedArea);
                vals.Add(new sortable {
                    t = storedArea, x = values["CtrX+"], y = values["CtrY+"],
                });
            }
            vals = vals.OrderBy(w => w.y * 1000 + w.x).ToList();
            for (int i = 0; i < vals.Count; i++)
            {
                vals[i].t.Label = "Area" + i;
            }

            //for debugging:
            //if there is a new image, cancel the existing relationships
            ModuleImageFile mif = (ModuleImageFile)FindModule("ImageFile");

            if (mif == null)
            {
                return;
            }
            string curPath = mif.GetFilePath();

            if (curPath != prevPath)
            {
                foreach (Thing t in mentalModel.Children)
                {
                    var refs = t.GetRelationshipsByType(null, null);
                    foreach (Link ref1 in refs)
                    {
                        t.RemoveReference(ref1.T);
                    }
                }
                prevPath = curPath;
            }

            //if you want the dlg to update, use the following code whenever any parameter changes
            // UpdateDialog();
        }