outline from gadient mask

  • 226 Replies
  • 74967 Views
*

yotamarker

  • Trusty Member
  • **********
  • Millennium Man
  • *
  • 1003
  • battle programmer
    • battle programming
Re: outline from gadient mask
« Reply #150 on: July 19, 2017, 04:20:39 am »
what math what are you talking about ?

*

yotamarker

  • Trusty Member
  • **********
  • Millennium Man
  • *
  • 1003
  • battle programmer
    • battle programming
Re: outline from gadient mask
« Reply #151 on: July 19, 2017, 06:41:24 pm »
what else does an eye do ?
count
recog objects
read
recog movements
recog colors
recog shapes (edges)
recog grids
recog size and distances



*

keghn

  • Trusty Member
  • *********
  • Terminator
  • *
  • 824
Re: outline from gadient mask
« Reply #152 on: July 19, 2017, 07:12:09 pm »
 The edges between chaos and low chaos. Such as shore line of a rough river.
 The edges between simple and complexity. The sky and the leaves in the tree or the face and the heir line.
 Two very stable patches of color with a chaotic edge dancing some where in between.
  In brace the chaos.

*

yotamarker

  • Trusty Member
  • **********
  • Millennium Man
  • *
  • 1003
  • battle programmer
    • battle programming
Re: outline from gadient mask
« Reply #153 on: July 19, 2017, 10:41:29 pm »
I"ll throw an Idea I just had, and you guys tell me what you think :
what if I limit the processing area to the region of move area, with the addition of processing the whole image if she is static (no movement) ?

BTW, I eat bananas !

*

keghn

  • Trusty Member
  • *********
  • Terminator
  • *
  • 824
Re: outline from gadient mask
« Reply #154 on: July 23, 2017, 07:18:18 pm »
  That should work find.
 A AGI brain "main tracking routine" figures out what to track. The simple static stuff or non moving stuff is found first and
then is given to a different a "simple tracking subroutine" to be track in low detail.

 The "main tracking routine" track things that need a lot of CPU processing power. It needs 10 threads out of 18.
 There is only one "Main tracking routine".
 There can be up to twenty "simple tracking routines". And all twenty may share one or two threads.

 When a "simple tracking routine" finds that is is losing control it calls for the "Main tracking routine" to take over.

 The main tracing is conscious mind.
 The "simple robotic tracking" is subconscious mind.


*

yotamarker

  • Trusty Member
  • **********
  • Millennium Man
  • *
  • 1003
  • battle programmer
    • battle programming
Re: outline from gadient mask
« Reply #155 on: July 23, 2017, 09:07:22 pm »
I gave it some more thought and there is a problem :
you don't get additional object near data, so if you see a fire hydrant and you don't see the kiosk next to it
you can't know specifically enough where you are.

*

keghn

  • Trusty Member
  • *********
  • Terminator
  • *
  • 824
Re: outline from gadient mask
« Reply #156 on: August 09, 2017, 09:54:09 pm »

 The mind uses temporal memory to build up map. That is build up into a image.
 The eye records a pinpoint scan along with the out of focus back ground and build up map that is turned into a image.
 Then with this with these images it build up a video frames. Than with these video frames it builds up a map that surrounds
the head of the AGI bot in 3 d simulated space. Like it is printed on the inside of globe that surrounds the AGI's head. 
 The internal self learning 3 d simulator can make adjustment to this map when it move to a different physical location in the real world
or moving around in the simulation as a ghost. As well as when it move up!.................. WAY UP.............. So that it can
make a terrain map that that can be compared against a physically real road map.

 Also the AGI has video sent to it brain. In the video, it has special border that is broken into brick like sections. These pieces are
boarder pieces. These piece will transform into object that move into image. They are all marked with what object
and the percent of it becoming active, like car, person, bird, or what ever. When that object move off the video image the marker
goes back up on the video image boarder. The boarder piece and the activation percent change with time and the AGI bot's location. In
the real world or simulated n space.

 The AGI view the world the "Mind focus": 

http://aidreams.co.uk/forum/index.php?topic=12328.0

 The mind focuses can make transition into 3 D simulated metal memory and construction space in less than a instant and come back
out with the needed information.

real time algorithm tester: 
https://opencv.multimedia-processing.com/index.php#




*

yotamarker

  • Trusty Member
  • **********
  • Millennium Man
  • *
  • 1003
  • battle programmer
    • battle programming
Re: outline from gadient mask
« Reply #157 on: August 09, 2017, 09:57:56 pm »
that confirms the shiber algorithm for speeding it up

*

keghn

  • Trusty Member
  • *********
  • Terminator
  • *
  • 824
Re: outline from gadient mask
« Reply #158 on: August 09, 2017, 10:14:28 pm »

 Are you talking about George Shlber?: 

https://www.georgeshiber.com



*

yotamarker

  • Trusty Member
  • **********
  • Millennium Man
  • *
  • 1003
  • battle programmer
    • battle programming
Re: outline from gadient mask
« Reply #159 on: August 09, 2017, 10:31:34 pm »
no, a faucet's shiber actually.

*

yotamarker

  • Trusty Member
  • **********
  • Millennium Man
  • *
  • 1003
  • battle programmer
    • battle programming
Re: outline from gadient mask
« Reply #160 on: August 10, 2017, 08:15:42 pm »
I cleaned up the code moved stuff to the AEye class and it looks better, now I will play some nekopara O0

Code
Imports System.Math
Imports WindowsApp1.rinegan

Public Class Form1
    Dim eye1 As New Aeye()

    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
        Dim bmp As New Bitmap(imageLocaiton.Text)
        TextBox3.Clear()
        Dim ImageList As New List(Of Rectangle)
        Aeye.ImagesDetecter(bmp, ImageList)
        PictureBox1.Image = bmp.Clone()


        For Each item As Rectangle In ImageList
            bmp = Aeye.graphicContour(bmp, item.X, item.Width + item.X, item.Y, item.Height + item.Y)
        Next

        TextBox3.Text &= Aeye.DirectionGetter(bmp)
 PictureBox2.Image = bmp.Clone()
        TextBox3.Text &= "  image height : " & bmp.Height.ToString & " image width : " & bmp.Width.ToString

    End Sub

    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
        Dim bmp As New Bitmap("c:\testimage\x1.bmp")
        PictureBox1.Image = bmp.Clone()
    End Sub

    Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
        TextBox3.Clear()
        For i As Integer = 300 To 3700 Step 300
            TextBox3.Text &= i & " "
        Next
        TextBox3.Text &= ((4000 - 600) \ 300) + 1
    End Sub
End Class

*

yotamarker

  • Trusty Member
  • **********
  • Millennium Man
  • *
  • 1003
  • battle programmer
    • battle programming
Re: outline from gadient mask
« Reply #161 on: August 19, 2017, 01:47:48 pm »
« Last Edit: August 19, 2017, 04:18:56 pm by yotamarker »

*

yotamarker

  • Trusty Member
  • **********
  • Millennium Man
  • *
  • 1003
  • battle programmer
    • battle programming
Re: outline from gadient mask
« Reply #162 on: August 19, 2017, 06:37:03 pm »

also the key for the z axis

*

yotamarker

  • Trusty Member
  • **********
  • Millennium Man
  • *
  • 1003
  • battle programmer
    • battle programming
Re: outline from gadient mask
« Reply #163 on: September 02, 2017, 11:20:32 am »



*

yotamarker

  • Trusty Member
  • **********
  • Millennium Man
  • *
  • 1003
  • battle programmer
    • battle programming
Re: outline from gadient mask
« Reply #164 on: September 03, 2017, 07:57:23 pm »
the low ratio of replies div views is beyond me

 


OpenAI Speech-to-Speech Reasoning Demo
by MikeB (AI News )
March 31, 2024, 01:00:53 pm
Say good-bye to GPUs...
by MikeB (AI News )
March 23, 2024, 09:23:52 am
Google Bard report
by ivan.moony (AI News )
February 14, 2024, 04:42:23 pm
Elon Musk's xAI Grok Chatbot
by MikeB (AI News )
December 11, 2023, 06:26:33 am
Nvidia Hype
by 8pla.net (AI News )
December 06, 2023, 10:04:52 pm
How will the OpenAI CEO being Fired affect ChatGPT?
by 8pla.net (AI News )
December 06, 2023, 09:54:25 pm
Independent AI sovereignties
by WriterOfMinds (AI News )
November 08, 2023, 04:51:21 am
LLaMA2 Meta's chatbot released
by 8pla.net (AI News )
October 18, 2023, 11:41:21 pm

Users Online

242 Guests, 0 Users

Most Online Today: 286. Most Online Ever: 2369 (November 21, 2020, 04:08:13 pm)

Articles