郑天宇
郑天宇
okay, update something about the Nan/Inf problem: in losses.affinity_loss function the edge seems good, the not_ignore seems good. But when it runs to tf.logical_and: `edge = tf.logical_and(edge, not_ignore)` the output...
I think the problem is just caused by: `edge_indices = tf.where(tf.reshape(edge, [-1]))` because 'edge' sometimes will be a completely zero-matrix, so the shape of edge_indices will be (0,1) sometimes. Then...
Hi, have you solved this problem? I apply the affinity loss function to Deeplab, tensorflow=1.7.0, python=3.6, system=Windows. I met the same problem, the loss value is NaN. If you solved...
Hi Christian, thanks for your great work which helps me a lot :) Bayer format image is obtained directly from the image sensor, without any post-processings. A simple architecture: [https://images.app.goo.gl/F1P4CprJJAZqgYe59](url)...
Hi, The reason why I open this issue, is that I noticed YUView support various raw file like raw RGB, raw YUV, etc... So I was wondering there should be...
Hi Christian, this is an implementation, supporting 4 kinds of bayer format (default: GBRG) [https://github.com/zhengtianyu1996/bayer_image_process](https://github.com/zhengtianyu1996/bayer_image_process) Just try it. Contact me freely if you have any questions. Thank you so much!
btw, for demosaic method, which affects final performance a lot, I would say bilinear method is enough for the current moment. It's easy to implement without time consuming. Some other...
I added example files in [my repo](https://github.com/zhengtianyu1996/bayer_image_process), including a raw file, a ground truth RGB image and a reconstructed RGB image that you could refer to. I could also rewrite...
Hi ulfzie, 1.The GBRG format is commonly used in sensor manufacturing like [Samsung](https://www.notebookcheck.net/The-Google-Pixel-6-may-feature-a-Samsung-ISOCELL-camera-instead-of-the-ageing-Sony-IMX363.532067.0.html) or Sony, so does RGBG(I haven't used this kind of sensor so I didn't support it in...
I took a look in the document. I think the CCP2 protocol is used for compressed transmission. I am not sure whether CCP2 is used in all the cameras like...