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

Handling no data in the fusion seems not to be working. #11

Open
rajexp opened this issue Jun 20, 2023 · 0 comments
Open

Handling no data in the fusion seems not to be working. #11

rajexp opened this issue Jun 20, 2023 · 0 comments

Comments

@rajexp
Copy link

rajexp commented Jun 20, 2023

We were doing some debugging on getting some anomalous values in dataset having no data values. Seems like no data values are not address in the way we perceived it.

Function __global__ void limit_a_CalcuRela_pairs and __global__ void Blending2_pairs are using the following blocks.

int b=Idx/(Height*Width);  
int j=(Idx-(Height*Width)*b)/Width; 
int i=(Idx-(Height*Width)*b)%Width;

on solving these mathematically the i and j will turn out to be 0 for any value of Idx. So, what it was intended to do?
Also handling of no data is still not clear we are getting garbage values in no data region in the test images which spread out to the whole window.

Here is some permalink of addressed lines.

int b=Idx/(Height*Width);

int j=(Idx-(Height*Width)*b)/Width;

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

No branches or pull requests

1 participant