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

Bicubic sampler in GIL #576

Open
1 of 3 tasks
Scramjet911 opened this issue Mar 13, 2021 · 10 comments · May be fixed by #588
Open
1 of 3 tasks

Bicubic sampler in GIL #576

Scramjet911 opened this issue Mar 13, 2021 · 10 comments · May be fixed by #588

Comments

@Scramjet911
Copy link
Contributor

Scramjet911 commented Mar 13, 2021

Is your feature request related to a problem? Please describe.

In the current image resizing algorithms in GIL, there is nearest neighbour and bilinear sampler. But bicubic sampler is not available. Bicubic interpolation is also a very popular algorithm which might be needed useful for resizing.

Describe the solution you'd like

Implementing a bicubic sampler in sampler.hpp

C++ Example

So the way I have currently implemented it is using this as a reference, here

But there are issues with my implementation, I cannot figure out why image artifacts are being generated in the output image.

Can someone help me with what I am missing?

Describe alternatives you've considered

Another method for bicubic interpolation is using convolution like this

Additional context

Bicubic interpolation is a very popular technique for image interpolation because it is smoother than bilinear interpolation and nearest neighbour interpolation, though it requires higher computational power.

PR #588

Future milestones :

  • (maybe?) Clean up sampler.hpp comments
  • Add tests
  • Ensure all tests pass
@Sayan-Chaudhuri
Copy link

Has anyone resolved this issue?

@mloskot
Copy link
Member

mloskot commented Mar 29, 2021

@Sayan-Chaudhuri If you don't see any related PR or commits or code then the answer is No.

@Scramjet911
Copy link
Contributor Author

Has anyone resolved this issue?

I was working on the testcases, haven't updated it here. will put in a pr soon

@Sayan-Chaudhuri
Copy link

Ok,I got it.

@mloskot
Copy link
Member

mloskot commented Mar 29, 2021

@Scramjet911 Please, add the PR #NNNN reference to the description of this issue, so it is clear what to follow.

@Scramjet911 Scramjet911 linked a pull request Apr 15, 2021 that will close this issue
4 tasks
@Scramjet911
Copy link
Contributor Author

@Scramjet911 Please, add the PR #NNNN reference to the description of this issue, so it is clear what to follow.

I have added a PR for this issue. Can someone look into it?

@mloskot
Copy link
Member

mloskot commented Apr 15, 2021

You've marked it as WIP, means you are still working on it aka not ready for review.

@Scramjet911
Copy link
Contributor Author

You've marked it as WIP, means you are still working on it aka not ready for review.

Oh sorry, I thought WIP meant that it hasn't been reviewed yet, changed it.

@mloskot
Copy link
Member

mloskot commented Apr 15, 2021

See https://github.com/boostorg/gil/blob/develop/CONTRIBUTING.md#pull-requests
The WIP is an equivalent of marking a PR as Draft:

The issue with Draft is that

Any user with write access to the repository can convert a pull request to a draft pull request.

Similarly, marking with status/work-in-progress label requires such higher permissions.

So, ad-hoc contributors can just stick WIP: in the PR title.

@Scramjet911
Copy link
Contributor Author

See https://github.com/boostorg/gil/blob/develop/CONTRIBUTING.md#pull-requests
The WIP is an equivalent of marking a PR as Draft:

* https://github.blog/2019-02-14-introducing-draft-pull-requests/

* https://github.blog/changelog/2020-04-08-convert-pull-request-to-draft/

The issue with Draft is that

Any user with write access to the repository can convert a pull request to a draft pull request.

Similarly, marking with status/work-in-progress label requires such higher permissions.

So, ad-hoc contributors can just stick WIP: in the PR title.

Oh, I see. I added 'WIP:' because I wanted input on how I implemented it and if I should change the way I implemented it.

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 a pull request may close this issue.

3 participants