outline from gadient mask

  • 226 Replies
  • 75036 Views
*

keghn

  • Trusty Member
  • *********
  • Terminator
  • *
  • 824
Re: outline from gadient mask
« Reply #135 on: June 30, 2017, 04:27:49 am »
 Here are four: 
1). k nearest Neighbor: 
?????? 

2). k means : 
main classification is in the middle of a cluster. 
 
 
 

3). Cascade Classification, Haar: 
http://docs.opencv.org/2.4/modules/objdetect/doc/cascade_classification.html   
 
4). Neural Networks: 
????????? 

*

keghn

  • Trusty Member
  • *********
  • Terminator
  • *
  • 824
Re: outline from gadient mask
« Reply #136 on: July 05, 2017, 09:24:58 pm »

*

yotamarker

  • Trusty Member
  • **********
  • Millennium Man
  • *
  • 1003
  • battle programmer
    • battle programming
Re: outline from gadient mask
« Reply #137 on: July 05, 2017, 10:54:30 pm »
interesting read, at any rate it seems unlikely to me that nature uses something that complex.

*

Korrelan

  • Trusty Member
  • ***********
  • Eve
  • *
  • 1454
  • Look into my eyes! WOAH!
    • YouTube
Re: outline from gadient mask
« Reply #138 on: July 05, 2017, 11:24:25 pm »
@Keghn...I'm pleased he realised/ stated...

Quote
In fact, this depends on the amount of training data available, the complexity of the decision boundaries, and the type of classifier used.

If the theoretical infinite number of training samples would be available, the curse of dimensionality does not apply and we could simply use an infinite number of features to obtain perfect classification.

 :)
It thunk... therefore it is!...    /    Project Page    /    KorrTecx Website

*

keghn

  • Trusty Member
  • *********
  • Terminator
  • *
  • 824
Re: outline from gadient mask
« Reply #139 on: July 06, 2017, 12:29:53 am »
 I have giving it thought about making it work in  x, y, z dimensions. Such as they do with PCA and t-SNE mapping. 

 With every object having their features. Each feature and sub feature is a dimension. Such as a outline of a box. That has four corners and four edges which has eight dimensions. 
 The flower tutorial above was nice. it only have two dimensions. 

 But the way i am dealing with it, in this universe, is to pair all features and sub features with weight. The weight is A value 
multiplied to a sub feature. It is initially set to one.   

 Now for example, you have two objects  and each object is described by its sub features, such as 
corners and straight edges of length, and curved line of length. 
 Then to find the distance in n space is to select one object and start increasing or decreasing weight until it become the 
other object. 

 The amount of change it to the weight is "the DISTANCE". 

 With million and billion of objects in this world, it is more like of being a hyper space pilot and selecting a conduit to another
object. 
 And when you do move keep track of what you moving away from and what you are move to. There is no x, y, and z here it is
relative relation with each other objects. Like the mother nature does it.

 But there are trick to view it in flat space.
PCA: 
https://en.wikipedia.org/wiki/Principal_component_analysis 

http://ccwu.me/vsfm/ 


t-SNE: 




*

yotamarker

  • Trusty Member
  • **********
  • Millennium Man
  • *
  • 1003
  • battle programmer
    • battle programming
Re: outline from gadient mask
« Reply #140 on: July 08, 2017, 06:39:53 am »

*

yotamarker

  • Trusty Member
  • **********
  • Millennium Man
  • *
  • 1003
  • battle programmer
    • battle programming
Re: outline from gadient mask
« Reply #141 on: July 14, 2017, 04:46:42 pm »
I want the alg that makes the optical mouse detect if it was moved left or right

*

keghn

  • Trusty Member
  • *********
  • Terminator
  • *
  • 824
Re: outline from gadient mask
« Reply #142 on: July 14, 2017, 06:24:42 pm »
 This total software problem. it would have to built out of something that would get the mouse position. That is if
you are using visual basic?:

Private Sub Form1_MouseClick(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Me.MouseClick
    Dim MPx As Point = MousePosition()
    TextBox1.Text = MPx.ToString

End Sub



*

yotamarker

  • Trusty Member
  • **********
  • Millennium Man
  • *
  • 1003
  • battle programmer
    • battle programming
Re: outline from gadient mask
« Reply #143 on: July 14, 2017, 07:25:21 pm »
no I was talking about image motion direction recognition, I thought about using the mouse's  algorithm to solve it.
I found no proper walkthrough online so I figured it out myself, but the thing was that alg is only accurate as long as
the whole image moves so I modified it, I'LL upload some vids sooner than later, thanks.

*

yotamarker

  • Trusty Member
  • **********
  • Millennium Man
  • *
  • 1003
  • battle programmer
    • battle programming
Re: outline from gadient mask
« Reply #144 on: July 15, 2017, 07:33:30 am »
1st time I used static dim  8)

*

yotamarker

  • Trusty Member
  • **********
  • Millennium Man
  • *
  • 1003
  • battle programmer
    • battle programming
Re: outline from gadient mask
« Reply #145 on: July 17, 2017, 08:33:25 pm »

*

keghn

  • Trusty Member
  • *********
  • Terminator
  • *
  • 824
Re: outline from gadient mask
« Reply #146 on: July 18, 2017, 07:42:35 pm »

AMD Threadripper—16 cores and 32 threads for $999–arrives in August:   

https://arstechnica.com/gadgets/2017/07/amd-threadripper-16-cores-and-32-threads-for-999-arrives-in-august/




*

yotamarker

  • Trusty Member
  • **********
  • Millennium Man
  • *
  • 1003
  • battle programmer
    • battle programming
Re: outline from gadient mask
« Reply #147 on: July 18, 2017, 09:48:39 pm »
the direction getter code itself is actually 10000 times faster then the image recognition

*

yotamarker

  • Trusty Member
  • **********
  • Millennium Man
  • *
  • 1003
  • battle programmer
    • battle programming
Re: outline from gadient mask
« Reply #148 on: July 18, 2017, 09:52:22 pm »
when I speed up the image recog some objects aren't fully detected like the circle is detected as two half circles

*

keghn

  • Trusty Member
  • *********
  • Terminator
  • *
  • 824
Re: outline from gadient mask
« Reply #149 on: July 18, 2017, 11:19:16 pm »
In the math are you using the length of curve and the chord length?
 If so then curve length is an arc of 70 degrees then it's mirror would be 190 degrees or other
wise of putting it 70 and -70 degree: 

https://www.ck12.org/trigonometry/Length-of-a-Chord/lesson/Length-of-a-Chord-TRIG/

 


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

202 Guests, 0 Users

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

Articles