Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

606 extend histogram #646

Draft
wants to merge 15 commits into
base: master
Choose a base branch
from

Conversation

B-LechCode
Copy link
Collaborator

No description provided.

src/histogram.rs Outdated
}
if has_alpha{
let alpha: f32 = chunk[USEFUL_CN].into();
transparent_pixels += (alpha<=f32::EPSILON && trans) as u64;
Copy link

@awxkee awxkee Feb 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think this is correct. I think there is specialization needed

trait AlphaTest{ 
fn is_transparent_alpha(self)
}

impl AlphaTest for u8 {
fn is_transparent_alpha(self) {
 self != 255
}
}

something like that.

Also it is not seems to be correct for edge cases image
https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=e96e6185633076b554739d50d5a210cf

https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=8a14359060a12b05b7485345da5239f3

Copy link
Collaborator Author

@B-LechCode B-LechCode Feb 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmm, I just adapted it to the old logic, where only vectors with all zero components are counted:
fn is_pixel_fully_transparent(p: &Rgba) -> bool {
p.0 == [0, 0, 0, 0]
}
For this I think it's correct?

NaN and Inf is a really good hint, what would you do with them?
I'd think:
NaN => 0
Inf => 1

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I believe there is should be

    if f.is_nan() {
        f32::MAX // Or any local positive extremum, as 1, 255, 65535 etc
    } else if f32::INFINITY == f {
        f32::MAX // Or any local positive extremum, as 1, 255, 65535 etc
    } else if f32::NEG_INFINITY == f {
        f32::MIN  // Or any local negative extremum, 0 if u8, u16 type required
    } else if f.is_subnormal() {
        0. // Non-transparent value, since 1/65535 is subnormal, but for 16 bit-depth it is not transparent :)
    } else {
        f
    }

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I believe there is should be

    if f.is_nan() {
        f32::MAX // Or any local positive extremum, as 1, 255, 65535 etc
    } else if f32::INFINITY == f {
        f32::MAX // Or any local positive extremum, as 1, 255, 65535 etc
    } else if f32::NEG_INFINITY == f {
        f32::MIN  // Or any local negative extremum, 0 if u8, u16 type required
    } else if f.is_subnormal() {
        0. // Non-transparent value, since 1/65535 is subnormal, but for 16 bit-depth it is not transparent :)
    } else {
        f
    }

You're right - except for the subnormals, I think: https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=aff576713b574afb03c086b2f776d826

So adding the trait you suggested makes sense here, because we don't need all these branches for u8 and u16.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants