Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

รับอารมณ์ของภาพโดยใช้ Microsoft อารมณ์ API ใน Python หรือไม่


มนุษย์ทุกคนมีอารมณ์เช่น สุข เศร้า เป็นกลาง แปลกใจ เศร้า ฯลฯ หากเราสร้างอารมณ์ของภาพเช่น สุข เศร้า เป็นกลาง ประหลาดใจ ฯลฯ ใน Python เราสามารถใช้ Microsoft อารมณ์ API เพื่อการพัฒนาใด ๆ

เราสามารถอธิบายอารมณ์เหล่านี้ทั้งหมดได้อย่างง่ายดายโดยใช้ API อารมณ์ของ Microsoft

โค้ดตัวอย่าง

import http.client, urllib.request
import urllib.parse, urllib.error
import base64, sys
import simplejson as json

# replace with subscription_key
# you obtained after registration
subscription_key = '23d39244dbe55173214b56ab45d56cla'

headers = {
   # Request for headers. And also replace the placeholder key with
   # our subscription key.
   'Content-Type': 'application/json',
   'Ocp-Apim-Subscription-Key': subscription_key,
}
params = urllib.parse.urlencode({
})
url1 = 'IMAGE OF URL '
body = { 'url': url1 }
newbody =str(body)
try:
conn = http.client.HTTPSConnection('westus.api.cognitive.microsoft.com')
conn.request("POST", "/emotion/v1.0/recognize?%s" % params, newbody, headers)
response = conn.getresponse()
data = response.read()
my_parsed = json.loads(data)
print ("Response is:")
print (json.dumps(my_parsed, sort_keys=True, indent=2))
val = my_parsed[0]["scores"]
res = max(val, key = val.get)
print ("\nEmotionoutput :: ",res)
conn.close()
except Exception as e:
print(e.args)