About 573,000 results
Open links in new tab
  1. Detect and visualize differences between two images with OpenCV …

    May 17, 2019 · python image opencv image-processing computer-vision edited May 7, 2022 at 17:06 Giorgos Xou 2,362 1 23 42

  2. Image Processing, In Python? - Stack Overflow

    Feb 27, 2013 · I've recently come across a problem which requires at least a basic degree of image processing, can I do this in Python, and if so, with what?

  3. image processing to improve tesseract OCR accuracy

    Feb 28, 2012 · What sort of image processing techniques would improve the accuracy? I've been using a Gaussian blur to smooth out the pixellated images and seen some small improvement, but I'm …

  4. Contrast stretching in Python/ OpenCV - Stack Overflow

    Searching Google for Histogram Equalization Python or Contrast Stretching Python I am directed to the same links from python documentation in OpenCv which are actually both related to equalization ...

  5. python - What is the entropy of an image and how is it calculated ...

    May 13, 2018 · 7 The entropy of an image is defined as follows: where n is the number of gray levels (256 for 8-bit images), pi is the probability of a pixel having gray level i, and b is the base of the …

  6. How to remove noise in image OpenCV, Python? - Stack Overflow

    May 28, 2020 · After greying the image try applying equalize histogram to the image, this allows the area's in the image with lower contrast to gain a higher contrast. Then blur the image to reduce the …

  7. High Pass Filter for image processing in python by using scipy/numpy

    Jul 25, 2023 · I am currently studying image processing. In SciPy, I know there is a median filter in scipy.signal. Is there a filter similar to a high pass filter?

  8. image - Region of Interest opencv python - Stack Overflow

    Mar 15, 2013 · python image opencv image-processing roi edited Jul 11, 2020 at 0:37 Ryanc88 202 3 7 28

  9. Does performance differ between Python or C++ coding of OpenCV?

    Sep 12, 2019 · In python, all of the openCV functions return new copies of the image matrices. Whenever you capture an image, or if you resize it - in C++ you can re-use existing memory. In …

  10. opencv - Python - Calculate histogram of image - Stack Overflow

    Mar 4, 2014 · I'm working on teaching myself the basics of computerized image processing, and I am teaching myself Python at the same time. Given an image x of dimensions 2048x1354 with 3 …