_ _ _ _ _ _ _ __
_| || |_| | | | | | | | (_)/ _|
|_ __ _| |__| | __ _ ___| |__ | |_ __ _ __ _ _| |_ _ _
_| || |_| __ |/ _` / __| '_ \| __/ _` |/ _` | | _| | | |
|_ __ _| | | | (_| \__ \ | | | || (_| | (_| | | | | |_| |
|_||_| |_| |_|\__,_|___/_| |_|\__\__,_|\__, |_|_| \__, |
__/ | __/ |
|___/ |___/
A web app which suggests hashtags for your picture! It might help you to come up with relevant #hashtags for your next Instagram post :p and it may get more eyes on your Instagram posts.
-
Google Vision API - Google Cloud’s Vision API offers powerful pre-trained machine learning models through REST and RPC APIs.
-
Imgur API - Imgur's API exposes the entire Imgur infrastructure via a standardized programmatic interface. Using Imgur's API, you can do just about anything you can do on imgur.com, while using your programming language of choice.
- Get your own imgur clientID here.
- Replace
XXXXXXXXX
with your clientID injs/upload.js
.
new Imgur({
clientid: 'XXXXXXXXX', // replace this
callback: feedback
});
-
Get API keys for Google Cloud Vision API.
-
Replace
XXXXXXXX
with your API keys injs/upload.js
var settings = {
"async": true,
"crossDomain": true,
// change the key below
"url": "https://vision.googleapis.com/v1/images:annotate?key=XXXXXXXXXXXXXXXXXXX",
"method": "POST",
"headers": {
"Content-Type": "application/json",
"cache-control": "no-cache"
},
"processData": false,
"data": str
}
- Now open
index.html
Google Cloud’s Vision API offers powerful pre-trained machine learning models through REST and RPC APIs. Assign labels to images and quickly classify them into millions of predefined categories. Detect objects and faces, read printed and handwritten text, and build valuable metadata into your image catalog.
📧 Feel free to contact me via email.
MIT © Vinit Shahdeo
╦ ╦╔═╗╔═╗╦ ╦╔╦╗╔═╗╔═╗╦╔═╗╦ ╦
╠═╣╠═╣╚═╗╠═╣ ║ ╠═╣║ ╦║╠╣ ╚╦╝
╩ ╩╩ ╩╚═╝╩ ╩ ╩ ╩ ╩╚═╝╩╚ ╩
if (isAwesome) {
// thanks in advance :p
starThisRepository();
}