Ask Your Question

JAy's profile - activity

2016-10-25 08:50:57 -0600 commented question MHT Demosaicing not available in 3.1.0?

WORKS:

  • demosaicing(img, img, COLOR_BayerRG2BGR, 0); //bilinear interpolation
  • demosaicing(img, img, COLOR_BayerRG2BGR_EA, 0); //eadge aware interpolation

WORKS NOT:

  • demosaicing(img, img, COLOR_BayerRG2BGR_MHT, 0); //high quality interpolation, malvar et al.
  • cvtColor(img, img, COLOR_BayerRG2BGR_MHT, 0); //high quality interpolation, malvar et al.

seems it is not defined anymore. is there any other 5x5 interpolation implemented in opencv? i cant find any information about the size of the filterkernels in the documentation

2016-10-25 08:47:54 -0600 commented question MHT Demosaicing not available in 3.1.0?

Link

i tried that, but only bilinear interpolation works, "COLOR_BayerRG2BGR_MHT" gives a "not defined" error.

Is there maybe another 5x5 debayering method in opencv?

2016-10-25 08:34:32 -0600 asked a question MHT Demosaicing not available in 3.1.0?

The Debayering Algorithm of Malvar et al. is still in the documentation, but i couldn't find it in the imgproc.h. Isn't it available anymore?