Skip to content
#

Image processing

Digital image processing is the use of algorithms to make computers analyze the content of digital images.

Here are 6,481 public repositories matching this topic...

YashasSamaga
YashasSamaga commented Dec 30, 2019

System information (version)

  • OpenCV => 4.2.0
  • Operating System / Platform => Ubuntu 18.04
  • Compiler => g++ 7.4
Detailed description

It appears that the pad value in darknet configuration files indicates the padding mode and not the padding value itself. I think pad being one implies same padding and pad being zero implies manual padding (which is specified in the `padd

lovell
lovell commented Nov 17, 2019

I've spent a while investigating and assessing various options to replace readthedocs, including but not limited to docusaurus, docsify, docpress, gitbook and vuepress.

I really like the docsify approach and then discovered the similar but-with-more-bells-attached docute and it appears to support pretty much everything we need (and more):

  • retrieves *vers
mhulse
mhulse commented Oct 24, 2016

Hello,

From the README:

smartcrop.crop(image, {width: 100, height: 100}).then(function(result){
  console.log(result);
});

Output:

{topCrop: {x: 300, y: 200, height: 200, width: 200}}

In terms of documentation and the above example, I think it would be nice to have a little explanation as to why the output's width/height values (200x200) are larger

robodhhb
robodhhb commented Feb 22, 2019

What did you do?

I want to import PIL modules with the following statement

#!/usr/bin/python3
import tkinter
from PIL import Image, ImageTk

But ImageTk was NOT imported. I got it by executing:
sudo aptitude install python3-pil.imagetk
This fact should be added to the documentation which would be of great help for beginners.
All modules which are not installed by defau

eugene-rozov
eugene-rozov commented Apr 29, 2019

Is your feature request related to a problem? Please describe.
Right now if guides option enabled, there are 2 horizontal and 2 vertical dashed lines appear when a crop box is turned on. For some cases, when image is big enough and a rotation should be done with a good precision, this is not enough.

Describe the solution you'd like
It would be great to allow configuration of guide lin

albumentations
VolkerH
VolkerH commented Aug 13, 2019

Description

It appears that label2rgb does not provide the option to make the background label transparent when the labels are drawn on a greyvalue image.

Way to reproduce

The coin segmentation example provides an exmaple. The whole image outside the coins is covered in a reddish tint (which happens to be the color for the backgroud label). When drawing over a greyvalue image it is

Zyl9393
Zyl9393 commented Jul 13, 2019

Gamma correction is among the things most often done wrong by graphics programming novices. It's almost as bad as missing scene-related color transforms and linear volume sliders in the average video game. The code example in the readme should definitely mention to adjust.Gamma(img, 1/2.2) before doing any color mixing and adjust.Gamma(img, 2.2) before saving back to file (for as long as _bild

vincentkerdraon
vincentkerdraon commented May 2, 2017

Expected behavior

Builder exists and works for argument : keepAspectRatio
(feature is precious because round on reduction will have a few pixel difference with requested size)
Example : expecting 500x1000px and got 499x1000px

Actual behavior

keepAspectRatio arg is not mentioned in examples

##Suggestion of example
Thumbnails.of(dir_in.listFiles()).size(width, height).keepAspectRati

fasterpython
fasterpython commented Aug 31, 2018

In README.md, it says:
SETX PATH C:/Python27/;C:/Python27/Scripts/;C:/OpenCV2.3/opencv/build/x86/vc10/bin/;%PATH%
SETX PYTHONPATH C:/OpenCV2.3/opencv/build/python/2.7/;%PYTHONPATH%

however, the correct one should be:
SETX PYTHONPATH C:\OpenCV2.3\opencvbuild\python\2.7;%PYTHONPATH%
SETX PATH C:\Python27;C:\Python27\Scripts;C:\OpenCV2.3\opencv\build\x86\vc10\bin;%PATH%

and also, it's only

You can’t perform that action at this time.