alr-internship / self-supervised-depth-denoising

Denoising YCB Objects with a self-supervised deep neural network
MIT License
9 stars 0 forks source link

split region mask and nan mask #21

Open claudius-kienle opened 2 years ago

claudius-kienle commented 2 years ago

Due to the new masking algorithmus, the nan and region mask fall together to one mask. This is because of the region mask that is computed by identifying where nans are in filtered point clouds.

The solution would be the following: Compute the filtered pcds as before but compare the resulting images with the original ones. If the pixel was already a nan before filtering, it is not because of the filterung but because of the not raw, calibrated images containing this nan value. Those pixels should not be False in the region mask as they are already in the nan mask.

claudius-kienle commented 2 years ago

This actually is hardly possible, I don't think the proposed solution would work correctly.