Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Installation and Deployment
  4. Count every pixels in image opencv python
Forum Updated to NodeBB v4.3 + New Features

Count every pixels in image opencv python

Scheduled Pinned Locked Moved Installation and Deployment
2 Posts 2 Posters 4.1k Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • M Offline
    M Offline
    memoo
    wrote on 6 Nov 2013, 13:49 last edited by
    #1

    Hello i am new in open cv i want to count every pixel in image then count the blue pixel so far i have done the blue pixel counting but it does not work probably so i want to count every brg pixel then defin the blue pixel this is my code
    @ import cv2
    import numpy as np

    img = cv2.imread("mm.jpg")
    BLUE_MIN = np.array([0, 0, 0], np.uint8)
    BLUE_MAX = np.array([255, 20, 20], np.uint8)

    dst = cv2.inRange(img, BLUE_MIN, BLUE_MAX)
    no_blue = cv2.countNonZero(dst)
    print('The number of blue pixels is: ' + str(no_blue))
    cv2.namedWindow("opencv")
    cv2.imshow("opencv",img)
    cv2.waitKey(0)@
    Please help me i am stack in this code

    1 Reply Last reply
    0
    • S Offline
      S Offline
      SGaist
      Lifetime Qt Champion
      wrote on 6 Nov 2013, 21:34 last edited by
      #2

      Hi and welcome to devnet,

      Your question is completely unrelated to Qt. You should ask it on the OpenCV forums/mailing list

      Interested in AI ? www.idiap.ch
      Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

      1 Reply Last reply
      0

      1/2

      6 Nov 2013, 13:49

      • Login

      • Login or register to search.
      1 out of 2
      • First post
        1/2
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • Users
      • Groups
      • Search
      • Get Qt Extensions
      • Unsolved