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,338 public repositories matching this topic...

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

filepond
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

JaronrH
JaronrH commented Jul 20, 2018

Just in case anyone else had issues getting Darkflow running on Windows 10, here's the steps that I was able to use to get it working. Hopefully it will help save time for someone else!

  1. Install Python 3.5
  2. [Optional] Create virtualenv
  3. Install Tensorflow: pip3 install --upgrade tensorflow
  4. Install cython: pip3 install cython
  5. Install opencv: pip3 install opencv-python
  6. Bu
albumentations
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

You can’t perform that action at this time.