Giter Site home page Giter Site logo

Comments (7)

tbrettallen avatar tbrettallen commented on May 30, 2024 1

Merge request has been approved and merged into the dev branch. Change has been deployed to version 2.0.4 of augraphy on pypi.

from augraphy.

shaheryar1 avatar shaheryar1 commented on May 30, 2024

Hi @kwcckw . Thanks for highlighting this.
The BrightnessAugmentation adjusts the brightness using HSV space. It can be applied to any phase (ink, paper,post) using self.layer argument.
But the "ink" phase inputs the image as Grayscale image with 1 channel only. Hence, its not compatible with hsv = cv2.cvtColor(img.astype("uint8"),cv2.COLOR_BGR2HSV) . It should be first converted into BGR format.

 def __init__(self, layer, range=(0.8, 1.4), probability=0.5):
    super().__init__(probability=probability)
    self.range = range
    self.layer = layer

I have adjusted the code, and I will push it in my PR. @jboarman

from augraphy.

kwcckw avatar kwcckw commented on May 30, 2024

Hi @kwcckw . Thanks for highlighting this.
The BrightnessAugmentation adjusts the brightness using HSV space. It can be applied to any phase (ink, paper,post) using self.layer argument.
But the "ink" phase inputs the image as Grayscale image with 1 channel only. Hence, its not compatible with hsv = cv2.cvtColor(img.astype("uint8"),cv2.COLOR_BGR2HSV) . It should be first converted into BGR format.

 def __init__(self, layer, range=(0.8, 1.4), probability=0.5):
    super().__init__(probability=probability)
    self.range = range
    self.layer = layer

I have adjusted the code, and I will push it in my PR. @jboarman

Thanks, and in this case, since 'ink' phase input is in grayscale, probably we can just adjust the code similarly?

Right now i can see it is applied in saturation and value channel of hsv image, so if the input is grayscale, why don't we just apply it directly to the grayscale values?

from augraphy.

shaheryar1 avatar shaheryar1 commented on May 30, 2024

Yes this can also be done , as for single channel images to increase brightness we can tweak the saturation channel only.

from augraphy.

kwcckw avatar kwcckw commented on May 30, 2024

Yes this can also be done , as for single channel images to increase brightness we can tweak the saturation channel only.

Sorry but how can we get saturation channel in single channel image? Merge same single channel image to bgr ( 3 channels of grayscale) , convert them to hsv and adjust the saturation channel?

from augraphy.

shaheryar909 avatar shaheryar909 commented on May 30, 2024

Yes you are right @kwcckw . We have to convert grayscale into bgr to get the saturation channel and adjust it.

from augraphy.

kwcckw avatar kwcckw commented on May 30, 2024

Yes you are right @kwcckw . We have to convert grayscale into bgr to get the saturation channel and adjust it.

Alright thanks for the clarification again.

from augraphy.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.