Git Product home page Git Product logo

kittydar's Introduction

Kittydar

Kittydar is short for kitty radar. Kittydar takes an image (canvas) and tells you the locations of all the cats in the image:

var cats = kittydar.detectCats(canvas);

console.log("there are", cats.length, "cats in this photo");

console.log(cats[0]);

// { x: 30, y: 200, width: 140, height: 140 }

Kittydar demo

Install

For node:

npm install kittydar

Or grab the browser file

Specifics

Kittydar takes a canvas element. In node you can get a Canvas object with node-canvas.

Kittydar will give an approximate rectangle around the cat's head. Each rectangle has an x and y for the top left corner, and a width and height of the rectangle.

How it works

Kittydar first chops the image up into many "windows" to test for the presence of a cat head. For each window, kittydar first extracts more tractable data from the image's data. Namely, it computes the Histogram of Orient Gradients descriptor of the image, using the hog-descriptor library. This data describes the directions of the edges in the image (where the image changes from light to dark and vice versa) and what strength they are. This data is a vector of numbers that is then fed into a neural network which gives a number from 0 to 1 on how likely the histogram data represents a cat.

The neural network (the JSON of which is located in this repo) has been pre-trained with thousands of photos of cat heads and their histograms, as well as thousands of non-cats. See the repo for the node training scripts.

Limitations

Kittydar will miss cats sometimes, and sometimes classify non-cats as cats. It's best at detecting upright cats that are facing forward, but it can handle a small tilt or turn in the head.

Kittydar isn't fast. It'll take a few seconds to find the cats in one image.

There's lots of room for improvement, so fork and send requests.

Propers

kittydar's People

Contributors

harthur avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

kittydar's Issues

TypeError: Image or Canvas expected

Hi by executing:
node test.js
on a raspberry Pi with kittydar 1.6

where test.js contains the following JS:

var http = require('http'), fs = require('fs'),
Canvas = require('canvas');
kittyDar = require('kittydar');

fs.readFile('/var/www/kittenpush/web/images/userData/kittenimage.jpg', function(err, squid){
if (err) throw err;

img = new Canvas.Image;
img.src = squid;

var canvas = new Canvas(img.width, img.height);
var ctxxxx = canvas.getContext('2d');
ctxxxx.drawImage(img, 0, 0, img.width, img.height,0,0,img.width,img.height);

console.log(canvas);
var cats = kittyDar.detectCats(canvas);
console.log("there are", cats.length, "cats in this photo");
});

I'm ending up with an error insite the kittydar:

[Canvas 1600x1200]

/home/pi/node_modules/kittydar/kittydar.js:151
ctx.drawImage(canvas, 0, 0, canvas.width, canvas.height,
^
TypeError: Image or Canvas expected
at resizeCanvas (/home/pi/node_modules/kittydar/kittydar.js:151:7)
at Object.kittydar.scaleCanvas (/home/pi/node_modules/kittydar/kittydar.js:96:14)
at Object.kittydar.getAllSizes (/home/pi/node_modules/kittydar/kittydar.js:81:28)
at Object.kittydar.detectCats (/home/pi/node_modules/kittydar/kittydar.js:56:24)
at /home/pi/test.js:19:23
at fs.js:266:14
at Object.oncomplete (fs.js:107:15)

Im not sure maybe im just missing something on creating my canvas, but it seems like the kittydar package looses the canvas during execution?

Has anyone else this issue? Would be glad if someone could help.

specific face recognition

Has anyone tried - what would be the route to take.

To identify a specific cat once the coordinates are returned?

Would be great for TNR purposes in tracking the individuals within a colony, and when a new cat has entered.

is there an implementation of ECCV08 paper?

nice work!
is this implementation follow the ECCV08 paper, Cat Head Detection - How to Effectively Exploit Shape and Texture Features by Weiwei Zhang, Jian Sun, and Xiaoou Tang? with fusion of texture and shape detectors?

I gothrough and find neural network things.

How long is train_svm supposed to take

Honestly, thank you for creating this project. It is more or less a learning experience for me. I read about neural network and svm in the past, but never fully grasp the ideas for me to successfully apply these concepts.

With the README, I followed the instructions. The train_network seems to finish the training within an hour or two, but I still need to play with it further (plus study the code).

As for train_svm, well, it has been running for almost 39 hours straight with no results

svm antony$ node train-svm.js -p ../POSITIVES -n ../NEGATIVES
training on 18867
feature size 3388

From my end, I can see node is using about 598Mb of memory with 101% of CPU (I guess it takes over one of the dual core). I can't tel if it is stuck in an infinite loop or it is actually doing something.

So has anyone tried train_svm? How long did it take for train-svm to finish?

License?

Maybe I've missed it, but I can't seem to find what this project is licensed under. I'm guessing it's open source, but would you mind adding that info to the readme?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.