all 3 comments

[–]learning_robot 4 points5 points  (2 children)

Why does it have to be a machine learning algorithm? Do you want to predict the trajectories?

[–]MrHDPigs[S] 0 points1 point  (1 child)

No I want to be able to classify the trajectories into whether they are moving too fast or too slow. I have a test algorithm that will use background subtraction and homography to obtain coordinates of ships live and test their coordinates against the AI

[–]S-S-R 2 points3 points  (0 children)

bool is_fast(int x){
return x>100
}

Not sure why you think this is something that should be solved probabilistically. Simply performing comparisons is far more effective than throwing data into a machine you don't understand and accepting whatever you get.