karansher / computer-graphics-raster-images

Computer Graphics Assignment about Raster Images
1 stars 0 forks source link

demosaic.cpp #65

Closed HELENCUICUI closed 1 year ago

HELENCUICUI commented 1 year ago

Can someone give some hint on why mine demosaic.ppm look like this?

Screen Shot 2022-09-19 at 4 11 35 PM
abhimadan commented 1 year ago

It's difficult to tell, since there are a variety of places where you can introduce bugs. One common case is related to doing integer division (e.g., between two unsigned chars) when you really need to divide two floats.

HELENCUICUI commented 1 year ago

Thanks! I tried that. But I still got the same colour image.Is there a reason why the particular colour of the image? Am I missing anything in the interpolation calculation that leads to this colours? I have no clue what I might have done wrong.

Screen Shot 2022-09-19 at 11 57 04 PM
Tahmeem commented 1 year ago

did you figure this out? I'm getting a similar image using the stuff that was taught in lecture.