Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8236957
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T19:18:27+00:00 2026-06-07T19:18:27+00:00

What is the python module to count number of ones in a binary image

  • 0

What is the python module to count number of ones in a binary image ?

to rephrase,

I have a matrix that has only ones and zeros, it’s of numpy array type and I want to know how many ones are there.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T19:18:29+00:00Added an answer on June 7, 2026 at 7:18 pm

    You can simply use sum:

    >>> import numpy
    >>> n = numpy.random.randint(0, 2, size=(3,3))
    >>> n
    array([[1, 0, 1],
           [0, 1, 1],
           [1, 1, 1]])
    >>> n.sum()
    7
    

    Since bools have integer values of 0/1 for False/True, even if the array had elements that weren’t 0 or 1 you could use a variant of this trick:

    >>> n = numpy.random.randint(0, 3, size=(3,3))
    >>> n
    array([[2, 2, 0],
           [0, 2, 0],
           [1, 1, 0]])
    >>> n == 1
    array([[False, False, False],
           [False, False, False],
           [ True,  True, False]], dtype=bool)
    >>> (n == 1).sum()
    2
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

If I have a Python module implemented as a directory (i.e. package) that has
I have a python module that imports a module generated with swig. When I
I have some python module, that I import as: from mygraph.draw import pixel The
I have written a Python module which contains functions that return arrays. I want
Is there a python module that will do a waterfall plot like MATLAB does?
I'm writing a python module for a device that interacts with a user supplied
I have written a Python module, and I have two versions: a pure Python
I wrote a python module. Running python filename.py, only checks for syntax errors. Is
I have the following questions about tweepy python module 1.I am trying to retrieve
I have problems importing a boost-python module on WinXP-32. I'm using python 2.6.6, boost.python

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.