You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
There is a bug in the SourceImage.cc at line 68.
The line:
image_bytes.assign(rgba, rgba + width * height *3);
should be modified to:
image_bytes.assign(rgba, rgba + width * height *4);
The text was updated successfully, but these errors were encountered:
Describe the bug
There is a bug in the
SourceImage.cc
at line 68.The line:
image_bytes.assign(rgba, rgba + width * height *3);
should be modified to:
image_bytes.assign(rgba, rgba + width * height *4);
The text was updated successfully, but these errors were encountered: