Contact us, wij zullen glad zijn om van jou te horen!
En anders, Algorithms Every Web Developer Can Use and Understand:
What is it?
Nudity Detection takes an image as an input and returns a value telling us whether the image contains nudity, and a confidence level for this prediction. Because there may be false positives and negatives, adjusting the confidence level allows us to control how strict we want filtered results to be.
This particular algorithm operates under a few assumptions. First, it assumes that nude images contain many skin colored pixels, and that these pixels are mostly interconnected. Unbroken regions of skin colored pixels increase the probability that an image is nude. Second, it assumes that the nude regions are indeed skin colored, rather than black and white. Therefore, black and white nude images are not correctly identified by this algorithm.
Ok, testen. Wat doet het decolleté uit de uitzending van Zondag met Lubach:
curl -X POST -d '"http://www.blikopnieuws.nl/sites/default/files/naamloos-1.jpg"' -H
'Content-Type: application/json' -H
'Authorization: Simple sim8Qzt2OlghqsbVD7W2oAxLG9B1'
https://api.algorithmia.com/v1/algo/sfw/NudityDetectioni2v/0.2.3
Slik. Vunzig:
{"nude": "true", "confidence": 0.92}
Op die Algorithmia-website staan nog meer testen die je daar kan laten doen:
Emotion Recognition in the Wild via Convolutional Neural Networks and Mapped Binary Patterns
This algorithm gives you the emotion in the given photo with its corresponding confidence interval.
Input:
• (Required) Image Data API Url, Web (http/https) Url, binary image or a base64 encoded image.
• (Optional) Number of results (default=3, max=7)Output:
• A list of emotions
Proberen met het gezicht van Arjen Lubach toen hij gisteren antwoord kreeg van Facebook?
Zondag met Lubach lunchnieuws!
Lunchnieuws? Ja, want vanmiddag ging de ZML-redactiedeurbel. Op de stoep stond een koerier met een tas met 20 lekkerbekjes, 16 garnalenkroketjes en een brief van Facebook. In die brief geven ze wat antwoorden op onze vragen van afgelopen zondag.
Samengevat stelt de woordvoerster dat Facebook slechts een technologiebedrijf is en geen mediabedrijf. Maar wij willen hierover graag in discussie, en blijven bij ons standpunt dat een grote organisatie als Facebook een fysiek persoon moet kunnen sturen die in de Zondag met Lubach-studio verantwoording af komt leggen.
P.S. De lekkerbekjes en de garnalenkroketjes waren heerlijk. Ook al hadden we liever oempaloempia’s en Mark Zuckerbekjes.
Gek genoeg is de grootte van zijn foto (540 x 295) medebepalend:
{
"results": [
[0.9427366, "Angry"],
[0.0427012, "Sad"],
[0.0056439, "Fear"],
[0.0041796, "Neutral"],
[0.0030128, "Surprise"],
[0.0013311, "Disgust"],
[0.00039500000000000006, "Happy"]
]
}
Grotere foto (960 x 718) helpt
{
"results": [
[0.5300091, "Angry"],
[0.4687368, "Neutral"],
[0.0005286000000000001, "Sad"],
[0.0002782, "Fear"],
[0.00017740000000000003, "Disgust"],
[0.00014520000000000003, "Surprise"],
[0.0001249, "Happy"]
]
}
Aan een nog groter formaat vertilt zo’n state-of-the-art algoritme zich, een gebruiker rapporteert terug:
Not working http://porngirlworld.com/wp-content/uploads/2015/04/Nude-at-Ranch07.jpg
Met DigitalDesire is ondanks haar afmetingen — 2000 x 3000 pixels — niets aan de hand:
{"nude": "false", "confidence": 0.95}
En dat blijkt ook wel als je haar onderwerpt aan die andere test, Autodetecting emotions in the given image:
{
"results": [
[0.9995402999999999, "Neutral"],
[0.0003888, "Disgust"],
[0.00007049999999999999, "Happy"],
[3e-7, "Surprise"],
[1e-7, "Sad"],
[1e-7, "Angry"],
[0, "Fear"]
]
}