Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Eagleeye | 3,045 | a year ago | 18 | wtfpl | Python | |||||
Stalk your Friends. Find their Instagram, FB and Twitter Profiles using Image Recognition and Reverse Image Search. | ||||||||||
Mesos Instagram Image Recognition | 23 | 7 years ago | 1 | mit | Python | |||||
Build distributed Instagram object recognition service on DCOS/Marathon and TensorFlow | ||||||||||
Spyscrap | 15 | 2 years ago | mit | Python | ||||||
CLI and GUI for OSINT. Are you very exhibited on the Internet? Check it! Twitter, Tinder, Facebook, Google, Yandex, BOE. It uses facial recognition to provide more accurate results. | ||||||||||
Instagramstalker | 7 | 5 years ago | PHP | |||||||
Uses face recognition to find/stalk a user in Instagram stories | ||||||||||
Ai Computer Vision | 3 | 8 years ago | PHP | |||||||
Artificial Intelligence - Computer Vision |
Given an Instagram username, return the recognized objects from the user's latest image posts.
git clone https://github.com/xiaoganghan/mesos-instagram-image-recognition.git
Follow the instructions DC/OS-vagrant to install DC/OS with Vagrant.
suppose your DC/OS-vagrant directory is dcos-vagrant
cp mesos-instagram-image-recognition/ops/VagrantConfig.yaml dcos-vagrant/VagrantConfig.yaml
cd dcos-vagrant
vagrant up m1 a1 p1 boot
Follow the instruction DC/OS CLI to install DC/OS CLI
cd mesos-instagram-image-recognition/ops
dcos package install --options=marathon-lb.json marathon-lb --yes
Install the Docker software by following the Docker Installation
Create a Docker Hub account to store the docker images created in the following step, assume your docker account name is 'DockerAccount'
cd mesos-instagram-image-recognition/backend
build a docker image called 'mesos-instagram-detect-backend' use sudo under ubuntu if 'Cannot connect to the Docker daemon, Is the docker daemon running on this host?' error shown
docker build -t mesos-instagram-detect-backend .
find out the id of image 'mesos-instagram-detect-backend'
docker images
tag the image
docker tag [image_id] DockerAccount/mesos-instagram-detect-backend:latest
run locally to test
docker run -it -p 5000:5000 --rm DockerAccount/mesos-instagram-detect-backend
open url in browser to test
If correct, the following results should be shown in the browser
{ objects: [ "stage (score = 0.02232)", "wool, woolen, woollen (score = 0.01913)", "mitten (score = 0.01680)", "balloon (score = 0.01405)", "cloak (score = 0.01377)" ] }
push to Docker Hub
docker push DockerAccount/mesos-instagram-detect-backend:latest
cd mesos-instagram-image-recognition/ops
Using Web UI: create application using ops/launch_backend.json or,
Using DC/OS CLI:
dcos marathon app add launch_backend.json
cd mesos-instagram-image-recognition/front
docker build -t DockerAccount/mesos-instagram-detect-frontend:latest .
run locally to test
docker run -it -p 5001:5001 --rm DockerAccount/mesos-instagram-detect-frontend
find out the id of image 'mesos-instagram-detect-frontend'
docker images
tag the image
docker tag [image_id] DockerAccount/mesos-instagram-detect-frontend:latest
push to Docker Hub
docker push DockerAccount/mesos-instagram-detect-frontend:latest
cd mesos-instagram-image-recognition/ops
Using Web UI: create application using ops/launch_front.json or, Using DC/OS CLI:
dcos marathon app add launch_front.json
open http://instagramdemo.com in your browser