4

I'm reading a paper on counting cells, humans, etc. Is there an off-the-shelf library for Python/Theano or TensorFlow I could use?

Dawny33
  • 8,296
  • 12
  • 48
  • 104
FullStack
  • 267
  • 1
  • 4
  • 9

4 Answers4

3

I think the OP was asking for a specific library for Theano or TensorFlow that provides off-the-shelf functionality for object identification.

I would look first into scikit image, an image processing library for Python in the Scipy/Numpy stack. It has all sorts of edge detectors, blob detectors, shape identifications, color separations... Look at their gallery of examples.

Btw, counting humans in a crowd may not be so trivial to automate...

Zephyr
  • 997
  • 4
  • 10
  • 20
metjush
  • 536
  • 1
  • 5
  • 7
1

To see what you can do considering the size(area) of objects, the android app PHOTO COUNT do the job using opencv 3.1 library.

Zephyr
  • 997
  • 4
  • 10
  • 20
tomas
  • 11
  • 1
1

Yes, there are libraries for TensorFlow and Theano.

Theano Library: An extensive tutorial for the Theano library is also available online.

TensorFlow library: An in-depth official tutorial of TensorFlow. (Highly recommend, if you're going with TensorFlow)

In addition, I would also like to suggest you to have a look at this question regarding open source Python deep learning libraries.

Dawny33
  • 8,296
  • 12
  • 48
  • 104
0

Not sure I understand the question... TensorFlow is OpenSourced, here is a tutorial

To import the TensorFlow library, all you need to do is:

import tensorflow as tf