2

A question about image processing and machine learning.
I post random images of the Earth to Twitter. I would like the bot to detect if the image is bad one. How can I do this? Here is an example of bad image.

Comments
  • 1
    Why is that image bad?
  • 0
    @zacg it contains 2 images with different quality and contrast
  • 1
    @martikyan oh. I don’t think you could feasibly detect that, because I presume some places actually look like that
  • 4
    if(image.isbad()){
    tweet.isbad();
    }
    else{
    tweet.isgood();
    }
  • 5
    “Bad” is an opinion, ML isn’t about opinions last time I checked.
  • 2
    @C0D4 it kind of can be though. It can be trained to have an opinion. Also “Bad” can be defined in some way
  • 0
    @Haxk20 It's not a good idea
  • 4
    @BlackByte Instead of using two setter functions, I would have just made one that accepts arguments... But I guess that's not the point here :)
  • 0
    @TheOct0 i woud have done that too but that would be wierd to post
Add Comment