Git Product home page Git Product logo

Comments (3)

fintelia avatar fintelia commented on September 26, 2024 1

After calling grayscale there are no longer red / green / blue pixel values, there's only a single "luma" value that ranges from black (0) to white (255 or 65535 depending on the bit-depth).

Specifically, the type of pixel within your loop is Luma<u16> so based on that documentation page, you can get contents by doing pixel.0[0]. If you hadn't converted to grayscale, you would be working with an RGB image and your pixel would have type Rgb<u16> and you could do:

for pixel in my_rgb_image.pixels() {
    let red = pixel.0[0];
    let green = pixel.0[1];
    let blue = pixel.0[2];
}

As a side note, most images are 8-bits per channel, so calling to_rgb8 would work just as well as to_rgb16

from image.

dddictionary avatar dddictionary commented on September 26, 2024

https://pastebin.com/LZzRZTdf

This is my function to actually do the image manipulation.

from image.

dddictionary avatar dddictionary commented on September 26, 2024

yep, this seems to be doing what i want, thank you :)

from image.

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.